garden-1.0.9/0000755000175000017500000000000012457302476007774 500000000000000garden-1.0.9/build-aux/0000755000175000017500000000000012457302475011665 500000000000000garden-1.0.9/build-aux/ltmain.sh0000644000175000017500000116612712457276446013453 00000000000000#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.4 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2014 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. # GNU Libtool 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. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.4 package_revision=2.4.4 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2014-01-03.01; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2014 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. # 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. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES 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 . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! 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 # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! 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 ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=$PATH_SEPARATOR for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # func_quote_for_expand ARG # ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2014-01-07.03; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2014 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. # 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 . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do eval $_G_hook '"$@"' # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift done func_quote_for_eval ${1+"$@"} func_run_hooks_result=$func_quote_for_eval_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, remove any # options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # func_quote_for_eval ${1+"$@"} # my_options_prep_result=$func_quote_for_eval_result # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # ;; # *) set dummy "$_G_opt" "$*"; shift; break ;; # esac # done # # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # func_quote_for_eval ${1+"$@"} # my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # # You'll alse need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd func_options_prep ${1+"$@"} eval func_parse_options \ ${func_options_prep_result+"$func_options_prep_result"} eval func_validate_options \ ${func_parse_options_result+"$func_parse_options_result"} eval func_run_hooks func_options \ ${func_validate_options_result+"$func_validate_options_result"} # save modified positional parameters for caller func_options_result=$func_run_hooks_result } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propogate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} # Adjust func_parse_options positional parameters to match eval set dummy "$func_run_hooks_result"; shift # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) test $# = 0 && func_missing_arg $_G_opt && break case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.4' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=$long_help_message" MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname (GNU libtool) 2.4.4 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: garden-1.0.9/build-aux/missing0000755000175000017500000001533012457276454013215 00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written by Fran,cois 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, see . # 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. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: garden-1.0.9/build-aux/compile0000755000175000017500000001624512457276454013202 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. # Written by Tom Tromey . # # 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, see . # 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. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # 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-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: garden-1.0.9/build-aux/config.sub0000755000175000017500000010541212457276454013602 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2013 Free Software Foundation, Inc. timestamp='2013-10-01' # 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 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 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. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches with a ChangeLog entry to config-patches@gnu.org. # # 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. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # 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 1992-2013 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 ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # 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 ;; * ) 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-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) 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 | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -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 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -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/'` ;; -sco5v6*) # 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*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -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 \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 \ | or1k | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # 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-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # 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 ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; 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 ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; 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 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; 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*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 ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; 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 ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; 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 ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; 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 ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; 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 | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) 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 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; 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 ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; 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 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; 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 ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; 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 ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-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 ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) 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. -auroraux) os=-auroraux ;; -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* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -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* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -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* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # 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* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -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 ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -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 score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) 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 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or1k-*) 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 ;; *-haiku) os=-haiku ;; *-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 ;; -cnk*|-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 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: garden-1.0.9/build-aux/config.guess0000755000175000017500000013135512457276454014144 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. timestamp='2013-11-29' # 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 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 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. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches with a ChangeLog entry to config-patches@gnu.org. 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 1992-2013 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 ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # 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 "$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 ; set_cc_for_build= ;' # 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_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` ;; esac # 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 tuples: *-*-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 ;; sh5el) machine=sh5le-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 -q __ELF__ 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 ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; 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'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; 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 ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; 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 ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; 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 ;; 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 ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; 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 ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # 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 ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; 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 && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; 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 ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????: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 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; 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 ;; *: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 if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi 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 ;; *:AIX:*:[4567]) 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 ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 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 eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 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 && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; 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 ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; 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 ;; 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 ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; 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 ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *: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/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; 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 -q ld.so.1 if test "$?" = 0 ; then LIBC="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; or1k:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; or32:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; 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-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; 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 ;; 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 ;; 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 ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; 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 ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. 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 ;; 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 ;; 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 i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; 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 ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 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; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' 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; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *: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 ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; 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 ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *: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 ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *: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 ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac 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\n"); 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 && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # 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 ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; 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: garden-1.0.9/build-aux/depcomp0000755000175000017500000005601612457276455013202 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2013 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, see . # 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 outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} 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" # Avoid interferences from the environment. gccflag= dashmflag= # 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 cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc 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. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## 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). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - 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 -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # 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. ## 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. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -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 -ne 0; then 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 ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # 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 ;; 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. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then 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" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; 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. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # 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 ;; #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 "X$1" != 'X--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|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | 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 "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi 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. -arch) eat=yes ;; -*|$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" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | 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 "X$1" != 'X--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 -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [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. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # 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 ;; 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-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: garden-1.0.9/build-aux/install-sh0000755000175000017500000003325512457276454013630 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-11-20.07; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # 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. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # 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 $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: garden-1.0.9/m4/0000755000175000017500000000000012457302475010313 500000000000000garden-1.0.9/m4/ltoptions.m40000644000175000017500000003426212457276447012550 00000000000000# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004-2005, 2007-2009, 2011-2014 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # 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 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option '$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the 'shared' and # 'disable-shared' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --with-aix-soname flag, and support the `aix-soname=aix' # and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT # is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_WITH([aix-soname], [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) with_aix_soname=$lt_cv_with_aix_soname]) AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) garden-1.0.9/m4/ltsugar.m40000644000175000017500000001044012457276447012166 00000000000000# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2014 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # 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 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) garden-1.0.9/m4/allegro.m40000644000175000017500000002016112457263273012124 00000000000000# Configure paths for Allegro # Shamelessly stolen from libxml.a4 # Jon Rafkind 2004-06-06 # Adapted from: # Configure paths for libXML # Toshio Kuratomi 2001-04-21 # Adapted from: # Configure paths for GLIB # Owen Taylor 97-11-3 dnl AM_PATH_allegro([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for allegro, and define allegro_CFLAGS and allegro_LIBS dnl AC_DEFUN([AM_PATH_ALLEGRO],[ AC_ARG_WITH(allegro-prefix, [ --with-allegro-prefix=PFX Prefix where liballegro is installed (optional)], ALLEGRO_CONFIG_prefix="$withval", ALLEGRO_CONFIG_prefix="") AC_ARG_WITH(allegro-exec-prefix, [ --with-allegro-exec-prefix=PFX Exec prefix where liballegro is installed (optional)], ALLEGRO_CONFIG_exec_prefix="$withval", ALLEGRO_CONFIG_exec_prefix="") AC_ARG_ENABLE(allegrotest, [ --disable-allegrotest Do not try to compile and run a test LIBallegro program],, enable_allegrotest=yes) if test x$ALLEGRO_CONFIG_exec_prefix != x ; then ALLEGRO_CONFIG_args="$ALLEGRO_CONFIG_args --exec-prefix=$ALLEGRO_CONFIG_exec_prefix" if test x${ALLEGRO_CONFIG+set} != xset ; then ALLEGRO_CONFIG=$ALLEGRO_CONFIG_exec_prefix/bin/allegro-config fi fi if test x$ALLEGRO_CONFIG_prefix != x ; then ALLEGRO_CONFIG_args="$ALLEGRO_CONFIG_args --prefix=$ALLEGRO_CONFIG_prefix" if test x${ALLEGRO_CONFIG+set} != xset ; then ALLEGRO_CONFIG=$ALLEGRO_CONFIG_prefix/bin/allegro-config fi fi AC_PATH_PROG(ALLEGRO_CONFIG, allegro-config, no) min_allegro_version=ifelse([$1], ,4.0.0,[$1]) AC_MSG_CHECKING(for Allegro - version >= $min_allegro_version) no_allegro="" if test "$ALLEGRO_CONFIG" = "no" ; then no_allegro=yes else allegro_CFLAGS=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --cflags` allegro_LIBS=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --libs` ALLEGRO_CONFIG_major_version=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ALLEGRO_CONFIG_minor_version=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ALLEGRO_CONFIG_micro_version=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test "x$enable_allegrotest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $allegro_CFLAGS" LIBS="$allegro_LIBS $LIBS" dnl dnl Now check if the installed liballegro is sufficiently new. dnl (Also sanity checks the results of allegro-config to some extent) dnl rm -f conf.allegrotest AC_TRY_RUN([ #include #include #include #include int main() { int allegro_major_version, allegro_minor_version, allegro_micro_version; int major, minor, micro; char *tmp_version; int tmp_int_version; system("touch conf.allegrotest"); /* Capture allegro-config output via autoconf/configure variables */ /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = (char *)strdup("$min_allegro_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string from allegro-config\n", "$min_allegro_version"); free(tmp_version); exit(1); } free(tmp_version); /* Capture the version information from the header files */ allegro_major_version = ALLEGRO_VERSION; allegro_minor_version = ALLEGRO_SUB_VERSION; allegro_micro_version = ALLEGRO_WIP_VERSION; /* Compare allegro-config output to the Allegro headers */ if ((allegro_major_version != $ALLEGRO_CONFIG_major_version) || (allegro_minor_version != $ALLEGRO_CONFIG_minor_version)) { printf("*** Allegro header files (version %d.%d.%d) do not match\n", allegro_major_version, allegro_minor_version, allegro_micro_version); printf("*** allegro-config (version %d.%d.%d)\n", $ALLEGRO_CONFIG_major_version, $ALLEGRO_CONFIG_minor_version, $ALLEGRO_CONFIG_micro_version); return 1; } /* Compare the headers to the library to make sure we match */ /* Less than ideal -- doesn't provide us with return value feedback, * only exits if there's a serious mismatch between header and library. */ /* TODO: * This doesnt work! */ /* ALLEGRO_TEST_VERSION; */ /* Test that the library is greater than our minimum version */ if (($ALLEGRO_CONFIG_major_version > major) || (($ALLEGRO_CONFIG_major_version == major) && ($ALLEGRO_CONFIG_minor_version > minor)) || (($ALLEGRO_CONFIG_major_version == major) && ($ALLEGRO_CONFIG_minor_version == minor) && ($ALLEGRO_CONFIG_micro_version >= micro))) { return 0; } else { printf("\n*** An old version of Allegro (%d.%d.%d) was found.\n", allegro_major_version, allegro_minor_version, allegro_micro_version); printf("*** You need a version of Allegro newer than %d.%d.%d. The latest version of\n", major, minor, micro); printf("*** Allegro is always available from http://alleg.sf.net.\n"); printf("***\n"); printf("*** If you have already installed a sufficiently new version, this error\n"); printf("*** probably means that the wrong copy of the allegro-config shell script is\n"); printf("*** being found. The easiest way to fix this is to remove the old version\n"); printf("*** of Allegro, but you can also set the ALLEGRO_CONFIG environment to point to the\n"); printf("*** correct copy of allegro-config. (In this case, you will have to\n"); printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); printf("*** so that the correct libraries are found at run-time))\n"); } return 1; } END_OF_MAIN() ],, no_allegro=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_allegro" = x ; then AC_MSG_RESULT(yes (version $ALLEGRO_CONFIG_major_version.$ALLEGRO_CONFIG_minor_version.$ALLEGRO_CONFIG_micro_version)) ifelse([$2], , :, [$2]) else AC_MSG_RESULT(no) if test "$ALLEGRO_CONFIG" = "no" ; then echo "*** The allegro-config script installed by Allegro could not be found" echo "*** If Allegro was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the ALLEGRO_CONFIG environment variable to the" echo "*** full path to allegro-config." else if test -f conf.allegrotest ; then : else echo "*** Could not run Allegro test program, checking why..." CFLAGS="$CFLAGS $allegro_CFLAGS" LIBS="$LIBS $allegro_LIBS" AC_TRY_LINK([ #include #include ], [ ALLEGRO_TEST_VERSION; return 0;], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding Allegro or finding the wrong" echo "*** version of Allegro. If it is not finding Allegro, 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 Allegro was incorrectly installed" echo "*** or that you have moved Allegro since it was installed. In the latter case, you" echo "*** may want to edit the allegro-config script: $ALLEGRO_CONFIG" ]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi allegro_CFLAGS="" allegro_LIBS="" ifelse([$3], , :, [$3]) fi AC_SUBST(allegro_CFLAGS) AC_SUBST(allegro_LIBS) rm -f conf.allegrotest ]) garden-1.0.9/m4/ltversion.m40000644000175000017500000000127312457276447012536 00000000000000# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004, 2011-2014 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # 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. # @configure_input@ # serial 4151 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.4]) m4_define([LT_PACKAGE_REVISION], [2.4.4]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.4' macro_revision='2.4.4' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) garden-1.0.9/m4/lt~obsolete.m40000644000175000017500000001377412457276447013074 00000000000000# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2014 Free Software # Foundation, Inc. # Written by Scott James Remnant, 2004. # # 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 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) garden-1.0.9/m4/libtool.m40000644000175000017500000112101212457276446012147 00000000000000# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2014 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # 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. m4_define([_LT_COPYING], [dnl # Copyright (C) 2014 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. # GNU Libtool 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 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool 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 . ]) # serial 58 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the 'libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to 'config.status' so that its # declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags='_LT_TAGS'dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into 'config.status', and then the shell code to quote escape them in # for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[[012]][[,.]]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test no = "$hard_links"; then AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$1"; then lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) 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. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname 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 yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # 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 yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # 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. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test yes != "$solaris_use_stlport4"; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test yes != "$solaris_use_stlport4"; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS garden-1.0.9/AUTHORS0000644000175000017500000000024512457263274010767 00000000000000Programmed by: Linley Henzell Initial Linux adaptation: Miriam Ruiz Correct data storing stuff: Thomas Harte Continued unix adaptation and maintenance: Matěj Týč garden-1.0.9/pkgs/0000755000175000017500000000000012457302474010736 500000000000000garden-1.0.9/pkgs/w32/0000755000175000017500000000000012457302475011352 500000000000000garden-1.0.9/pkgs/w32/winstaller.nsi.in0000644000175000017500000002022512457263274014602 00000000000000;This is a NSIS (see http://nsis.sourceforge.net) script file. ;You have to have a `makensis` utility (available for free under Windows and Linux) to generate .exe installer files. ;In order to be succesful, you also have to supply required files (look at the uninstaller section where they are mentioned at one place) ; ;NSIS Modern User Interface ;Written by Matěj Týč ;-------------------------------- ;Include Modern UI !include "MUI.nsh" ;-------------------------------- ;General ;Name and file Name "Garden of coloured lights" OutFile "garden-@PACKAGE_VERSION@.exe" ;Default installation folder InstallDir "$PROGRAMFILES\garden" ;Get installation folder from registry if available InstallDirRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\garden" "InstallLocation" ;Request application privileges for Windows Vista RequestExecutionLevel user ;-------------------------------- ;Interface Settings !define MUI_ABORTWARNING !define MUI_WELCOMEFINISHPAGE_BITMAP "../../resources/strip.bmp" ;-------------------------------- ;Variables Var StartMenuFolder ;-------------------------------- ;Pages !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_LICENSE ../../COPYING ; !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_STARTMENU "garden" $StartMenuFolder !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_WELCOME !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES !insertmacro MUI_UNPAGE_FINISH ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" ;-------------------------------- ;Installer Sections Section # "Mandatory" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\garden" \ "DisplayName" "garden of coloured lights, an extraordinary shoot-em-up" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\garden" \ "UninstallString" "$INSTDIR\uninstall.exe" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\garden" \ "InstallLocation" "$INSTDIR" CreateDirectory "$INSTDIR" ;Create uninstaller WriteUninstaller "$INSTDIR\uninstall.exe" !insertmacro MUI_STARTMENU_WRITE_BEGIN garden CreateDirectory "$SMPROGRAMS\$StartMenuFolder" CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall garden.lnk" "$INSTDIR\uninstall.exe" !insertmacro MUI_STARTMENU_WRITE_END SectionEnd Section "garden" GARDEN_BIN SetOutPath "$INSTDIR" file ../../bin/garden.exe file mingwm10.dll file @ALLEGRO_LIB@.dll !insertmacro MUI_STARTMENU_WRITE_BEGIN garden createShortCut "$SMPROGRAMS\$StartMenuFolder\garden.lnk" "$INSTDIR\garden.exe" "" "$INSTDIR\garden.exe" createShortCut "$SMPROGRAMS\$StartMenuFolder\configuration.lnk" "$INSTDIR\init.txt" createShortCut "$SMPROGRAMS\$StartMenuFolder\README.lnk" "$INSTDIR\README.txt" !insertmacro MUI_STARTMENU_WRITE_END SectionEnd Section "garden" GARDEN_DATA SetOutPath "$INSTDIR" file ../../data/init.txt file /oname=README.txt ../../README SetOutPath "$INSTDIR\beat" file ../../data/beat/arp.wav file ../../data/beat/beam.wav file ../../data/beat/blip.wav file ../../data/beat/cymbal1.wav file ../../data/beat/dline.wav file ../../data/beat/drum1.wav file ../../data/beat/drum2.wav file ../../data/beat/drum3.wav file ../../data/beat/drum4.wav file ../../data/beat/flute.wav file ../../data/beat/flute2_l.wav file ../../data/beat/flute2_s.wav file ../../data/beat/flute_l.wav file ../../data/beat/food.wav file ../../data/beat/funny.wav file ../../data/beat/light.wav file ../../data/beat/line1.wav file ../../data/beat/line2.wav file ../../data/beat/line3.wav file ../../data/beat/long.wav file ../../data/beat/long2.wav file ../../data/beat/multi.wav file ../../data/beat/multi2.wav file ../../data/beat/nice.wav file ../../data/beat/nice2.wav file ../../data/beat/pan.wav file ../../data/beat/piano.wav file ../../data/beat/saw.wav file ../../data/beat/spinner.wav file ../../data/beat/square.wav file ../../data/beat/stage4.wav file ../../data/beat/string.wav file ../../data/beat/sweet.wav file ../../data/beat/sweet2.wav file ../../data/beat/synth.wav file ../../data/beat/thing4.wav file ../../data/beat/voice.wav file ../../data/beat/walker.wav file ../../data/beat/xline.wav SetOutPath "$INSTDIR\gfx" file ../../data/gfx/garden.dat file ../../data/gfx/large.bmp file ../../data/gfx/multi.bmp file ../../data/gfx/platform.bmp file ../../data/gfx/small.bmp file ../../data/gfx/splash.bmp file ../../data/gfx/trans.bmp SetOutPath "$INSTDIR\wavs" file ../../data/wavs/bang.wav file ../../data/wavs/bang2.wav file ../../data/wavs/blop.wav file ../../data/wavs/cannon.wav file ../../data/wavs/extra.wav file ../../data/wavs/fire.wav file ../../data/wavs/level.wav file ../../data/wavs/lwbeam.wav file ../../data/wavs/mgun.wav file ../../data/wavs/mouth.wav file ../../data/wavs/p_bang.wav file ../../data/wavs/rect.wav file ../../data/wavs/rect2.wav file ../../data/wavs/scatter.wav file ../../data/wavs/swbeam.wav file ../../data/wavs/whoosh.wav file ../../data/wavs/worms.wav SectionEnd ; uninstaller section Section "Uninstall" Delete $INSTDIR\beat\arp.wav Delete $INSTDIR\beat\beam.wav Delete $INSTDIR\beat\blip.wav Delete $INSTDIR\beat\cymbal1.wav Delete $INSTDIR\beat\dline.wav Delete $INSTDIR\beat\drum1.wav Delete $INSTDIR\beat\drum2.wav Delete $INSTDIR\beat\drum3.wav Delete $INSTDIR\beat\drum4.wav Delete $INSTDIR\beat\flute.wav Delete $INSTDIR\beat\flute2_l.wav Delete $INSTDIR\beat\flute2_s.wav Delete $INSTDIR\beat\flute_l.wav Delete $INSTDIR\beat\food.wav Delete $INSTDIR\beat\funny.wav Delete $INSTDIR\beat\light.wav Delete $INSTDIR\beat\line1.wav Delete $INSTDIR\beat\line2.wav Delete $INSTDIR\beat\line3.wav Delete $INSTDIR\beat\long.wav Delete $INSTDIR\beat\long2.wav Delete $INSTDIR\beat\multi.wav Delete $INSTDIR\beat\multi2.wav Delete $INSTDIR\beat\nice.wav Delete $INSTDIR\beat\nice2.wav Delete $INSTDIR\beat\pan.wav Delete $INSTDIR\beat\piano.wav Delete $INSTDIR\beat\saw.wav Delete $INSTDIR\beat\spinner.wav Delete $INSTDIR\beat\square.wav Delete $INSTDIR\beat\stage4.wav Delete $INSTDIR\beat\string.wav Delete $INSTDIR\beat\sweet.wav Delete $INSTDIR\beat\sweet2.wav Delete $INSTDIR\beat\synth.wav Delete $INSTDIR\beat\thing4.wav Delete $INSTDIR\beat\voice.wav Delete $INSTDIR\beat\walker.wav Delete $INSTDIR\beat\xline.wav RMDir $INSTDIR\beat Delete $INSTDIR\gfx\garden.dat Delete $INSTDIR\gfx\large.bmp Delete $INSTDIR\gfx\multi.bmp Delete $INSTDIR\gfx\platform.bmp Delete $INSTDIR\gfx\small.bmp Delete $INSTDIR\gfx\splash.bmp Delete $INSTDIR\gfx\trans.bmp RMDir $INSTDIR\gfx Delete $INSTDIR\wavs\bang.wav Delete $INSTDIR\wavs\bang2.wav Delete $INSTDIR\wavs\blop.wav Delete $INSTDIR\wavs\cannon.wav Delete $INSTDIR\wavs\extra.wav Delete $INSTDIR\wavs\fire.wav Delete $INSTDIR\wavs\level.wav Delete $INSTDIR\wavs\lwbeam.wav Delete $INSTDIR\wavs\mgun.wav Delete $INSTDIR\wavs\mouth.wav Delete $INSTDIR\wavs\p_bang.wav Delete $INSTDIR\wavs\rect.wav Delete $INSTDIR\wavs\rect2.wav Delete $INSTDIR\wavs\scatter.wav Delete $INSTDIR\wavs\swbeam.wav Delete $INSTDIR\wavs\whoosh.wav Delete $INSTDIR\wavs\worms.wav RMDir $INSTDIR\wavs Delete $INSTDIR\init.txt Delete $INSTDIR\README.txt Delete $INSTDIR\garden.exe Delete $INSTDIR\mingwm10.dll Delete $INSTDIR\@ALLEGRO_LIB@.dll Delete $INSTDIR\uninstall.exe ; delete self (see explanation below why this works) RMDir $INSTDIR !insertmacro MUI_STARTMENU_GETFOLDER garden $StartMenuFolder Delete "$SMPROGRAMS\$StartMenuFolder\garden.lnk" Delete "$SMPROGRAMS\$StartMenuFolder\Uninstall garden.lnk" Delete "$SMPROGRAMS\$StartMenuFolder\configuration.lnk" Delete "$SMPROGRAMS\$StartMenuFolder\README.lnk" RMDir "$SMPROGRAMS\$StartMenuFolder" DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\garden" SectionEnd ;-------------------------------- ;Descriptions ;Language strings ; LangString DESC_Sec ${LANG_ENGLISH} "" ;Assign language strings to sections ; !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN ; !insertmacro MUI_FUNCTION_DESCRIPTION_END ;-------------------------------- garden-1.0.9/COPYING0000644000175000017500000010451312457263275010756 00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. 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 them 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 prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. 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. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey 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; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If 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 convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU 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 that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. 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. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . garden-1.0.9/INSTALL0000644000175000017500000003661012457276454010761 00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell command `./configure && make && make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. 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, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. 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 you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' 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. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. 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 can use 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 `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer 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. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= 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'. 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. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS 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 machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. 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. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. garden-1.0.9/aclocal.m40000644000175000017500000012216712457276730011570 00000000000000# generated automatically by aclocal 1.14.1 -*- Autoconf -*- # Copyright (C) 1996-2013 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_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. 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-2013 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. # 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.14' 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.14.1], [], [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.14.1])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-2013 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. # 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-2013 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. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$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-2013 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. # 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", "OBJC", "OBJCXX", "UPC", or "GJC". # 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 m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" 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 10 /bin/sh. echo '/* dummy */' > 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], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) 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-2013 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. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf 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"` # 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'`; 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"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2013 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 macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # 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.65])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], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) 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], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [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([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # 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])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro 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 # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi]) 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-2013 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. # 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-2013 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. # 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-2013 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. # 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-2013 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. # 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 is modern enough. # If it is, 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 --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2013 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. # _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])]) # Copyright (C) 1999-2013 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. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2013 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. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2013 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. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # 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 ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file 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 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 if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done 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]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2013 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. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2013 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. # 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-2013 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. # _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-2013 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. # _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}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} 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/allegro.m4]) m4_include([m4/libtool.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) garden-1.0.9/configure0000755000175000017500000160345512457276734011650 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for GARDEN 1.0.9. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 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 # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # 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 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+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} 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 test -x / || 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 -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || 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 : export CONFIG_SHELL # 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 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+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 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 and $0: bubla@users.sourceforge.net 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_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_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; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # 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 -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' 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 as_test_x='test -x' as_executable_p=as_fn_executable_p # 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'" SHELL=${CONFIG_SHELL-/bin/sh} 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='GARDEN' PACKAGE_TARNAME='garden' PACKAGE_VERSION='1.0.9' PACKAGE_STRING='GARDEN 1.0.9' PACKAGE_BUGREPORT='bubla@users.sourceforge.net' PACKAGE_URL='' ac_unique_file="src/input.h" # 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_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS ALLEGRO_LIB allegro_LIBS allegro_CFLAGS ALLEGRO_CONFIG DATADIR_NAME WINDOWS_VERSION_FALSE WINDOWS_VERSION_TRUE WANT_FREEDESKTOP_FALSE WANT_FREEDESKTOP_TRUE HAVE_FREEDESKTOP_FALSE HAVE_FREEDESKTOP_TRUE have_freedesktop RC CPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL 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 AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V 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_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_silent_rules enable_debug enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock enable_desktop_install enable_datadir with_allegro_prefix with_allegro_exec_prefix enable_allegrotest ' 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_TARNAME}' 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 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 GARDEN 1.0.9 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/garden] --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] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of GARDEN 1.0.9:";; esac 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] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-debug Builds the debug version of the library [[default = no]] --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --enable-desktop-install Whether you want to install the garden.desktop file if applicable. !!! DO NOT USE if you are a PACKAGER!!! --enable-datadir=path-to-your-garden-datafiles Normally you dont have to use this, but it is handy when you want to play the game without installing it or if you want to use already installed data. In the first case, use for instance --enable-datadir=`pwd`/data (if it makes sense) --disable-allegrotest Do not try to compile and run a test LIBallegro program Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-allegro-prefix=PFX Prefix where liballegro is installed (optional) --with-allegro-exec-prefix=PFX Exec prefix where liballegro is installed (optional) 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 . _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 GARDEN configure 1.0.9 generated by GNU Autoconf 2.69 Copyright (C) 2012 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 || 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_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_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_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;} ( $as_echo "## ------------------------------------------ ## ## Report this to bubla@users.sourceforge.net ## ## ------------------------------------------ ##" ) | sed "s/^/$as_me: WARNING: /" >&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_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 cat >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 GARDEN $as_me 1.0.9, which was generated by GNU Autoconf 2.69. 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 # 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 build-aux "$srcdir"/build-aux; 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 build-aux \"$srcdir\"/build-aux" "$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. am__api_version='1.14' # 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 as_fn_executable_p "$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; } # 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 ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file 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 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 if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done 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; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file 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 --is-lightweight"; then am_missing_run="$MISSING " 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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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; } 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 as_fn_executable_p "$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 # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' 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='garden' VERSION='1.0.9' 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"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # 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}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi ac_config_headers="$ac_config_headers src/configure.h" # Check whether --enable-debug was given. if test "${enable_debug+set}" = set; then : enableval=$enable_debug; else enable_debug="no" fi if test "x$enable_debug" = "xyes"; then : CFLAGS="${CFLAGS} -g -O0" fi # Checks for programs. 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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 struct stat; /* 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 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 whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" 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 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 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 10 /bin/sh. echo '/* dummy */' > 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 case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.4' macro_revision='2.4.4' ltmain=$ac_aux_dir/ltmain.sh # 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 # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case $ECHO in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_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 do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_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 '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "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_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_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_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $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" as_fn_executable_p "$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" as_fn_executable_p "$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 fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_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 fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_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 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "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_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_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_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&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. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname 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 yes = "$with_gnu_ld"; 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 ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &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 ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" 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_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$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 DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" 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_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$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_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" 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 DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; 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, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n "$lt_cv_sys_max_cmd_len"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; 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_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $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 OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; 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_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $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_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" 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 OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; 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_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $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 DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; 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_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $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_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" 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 DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar 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_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$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 AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar 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_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$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_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" 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 AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi 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 as_fn_executable_p "$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 as_fn_executable_p "$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 test -z "$STRIP" && STRIP=: 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 as_fn_executable_p "$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 as_fn_executable_p "$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 test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 $as_echo "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 $as_echo_n "checking for a working dd... " >&6; } if ${ac_cv_path_lt_DD+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_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 do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in dd; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 $as_echo "$ac_cv_path_lt_DD" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 $as_echo_n "checking how to truncate binary pipes... " >&6; } if ${lt_cv_truncate_bin+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 $as_echo "$lt_cv_truncate_bin" >&6; } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else 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 cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext 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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; 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_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $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 MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; 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_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $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_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" 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 MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; 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_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $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 DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; 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_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $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_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" 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 DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; 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_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $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 NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; 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_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $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_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" 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 NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; 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_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $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 LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; 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_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $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_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" 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 LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; 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_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $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 OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; 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_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $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_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" 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 OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; 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_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $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 OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; 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_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $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_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" 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 OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; 10.[012][,.]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac 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 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 # 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 for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac else pic_mode=default fi # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac else enable_fast_install=yes fi shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 $as_echo_n "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test "${with_aix_soname+set}" = set; then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else if ${lt_cv_with_aix_soname+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 $as_echo "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/${ac_tool_prefix}file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC=$CC 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 # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test no = "$hard_links"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # 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 yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' $wl-bernotok' allow_undefined_flag=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # 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. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi 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 export_dynamic_flag_spec='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # 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*) if test yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; osf3*) if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='$wl-z,text' allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen=shl_load else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=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_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen=dlopen else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $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 dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=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_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $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 dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=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_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $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 dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=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_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi fi fi fi fi fi ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $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; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report what library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } 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 CC=$lt_save_CC ac_config_commands="$ac_config_commands libtool" # Only expand once: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args. set dummy ${ac_tool_prefix}windres; 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_RC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RC"; then ac_cv_prog_RC="$RC" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RC="${ac_tool_prefix}windres" $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 RC=$ac_cv_prog_RC if test -n "$RC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RC" >&5 $as_echo "$RC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RC"; then ac_ct_RC=$RC # Extract the first word of "windres", so it can be a program name with args. set dummy windres; 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_RC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RC"; then ac_cv_prog_ac_ct_RC="$ac_ct_RC" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RC="windres" $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_RC=$ac_cv_prog_ac_ct_RC if test -n "$ac_ct_RC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RC" >&5 $as_echo "$ac_ct_RC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RC" = x; then RC="" 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 RC=$ac_ct_RC fi else RC="$ac_cv_prog_RC" fi # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o objext_RC=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC compiler_RC=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` lt_cv_prog_compiler_c_o_RC=yes if test -n "$compiler"; then : fi GCC=$lt_save_GCC 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 CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS # Extract the first word of "update-desktop-database", so it can be a program name with args. set dummy update-desktop-database; 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_have_freedesktop+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$have_freedesktop"; then ac_cv_prog_have_freedesktop="$have_freedesktop" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_have_freedesktop="yes" $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 have_freedesktop=$ac_cv_prog_have_freedesktop if test -n "$have_freedesktop"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_freedesktop" >&5 $as_echo "$have_freedesktop" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$have_freedesktop" = "xyes"; then HAVE_FREEDESKTOP_TRUE= HAVE_FREEDESKTOP_FALSE='#' else HAVE_FREEDESKTOP_TRUE='#' HAVE_FREEDESKTOP_FALSE= fi if test "x$enable_desktop_install" = "xyes"; then WANT_FREEDESKTOP_TRUE= WANT_FREEDESKTOP_FALSE='#' else WANT_FREEDESKTOP_TRUE='#' WANT_FREEDESKTOP_FALSE= fi # Check whether --enable-desktop-install was given. if test "${enable_desktop_install+set}" = set; then : enableval=$enable_desktop_install; fi case $host in #( *mingw* | *cygwin*) : $as_echo "#define WINDOWS_VERSION 1" >>confdefs.h windows_version="yes" ;; #( *) : ;; esac if test "x$windows_version" = "xyes" ; then WINDOWS_VERSION_TRUE= WINDOWS_VERSION_FALSE='#' else WINDOWS_VERSION_TRUE='#' WINDOWS_VERSION_FALSE= fi # Check whether --enable-datadir was given. if test "${enable_datadir+set}" = set; then : enableval=$enable_datadir; DATADIR_NAME="$enableval" else DATADIR_NAME='$(datadir)/'garden fi # Sets the data subdirectory # Checks for libraries. ac_fn_c_check_header_mongrel "$LINENO" "allegro.h" "ac_cv_header_allegro_h" "$ac_includes_default" if test "x$ac_cv_header_allegro_h" = xyes; then : else have_allegro="no" as_fn_error $? "You don't even have Allegro headers... Get Allegro first!" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sin in -lm" >&5 $as_echo_n "checking for sin in -lm... " >&6; } if ${ac_cv_lib_m_sin+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $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 sin (); int main () { return sin (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_sin=yes else ac_cv_lib_m_sin=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_m_sin" >&5 $as_echo "$ac_cv_lib_m_sin" >&6; } if test "x$ac_cv_lib_m_sin" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF LIBS="-lm $LIBS" fi test "x$host_os" != "x$build_os" && CROSS_COMPILING="yes" try_link_allegro () { LIBS_SAVE=$LIBS LIBS="$LIBS $1" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Allegro using $1" >&5 $as_echo_n "checking for Allegro using $1... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default #include int main () { allegro_init(); ; return 0; }END_OF_MAIN() _ACEOF if ac_fn_c_try_link "$LINENO"; then : have_allegro="yes" else have_allegro="no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_allegro" >&5 $as_echo "$have_allegro" >&6; } LIBS=$LIBS_SAVE if test "x$have_allegro" == "xyes"; then : return 0 else return 1 fi } # first check for 'official allegro' # The official allegro does not support cross-compiling, though... # Check whether --with-allegro-prefix was given. if test "${with_allegro_prefix+set}" = set; then : withval=$with_allegro_prefix; ALLEGRO_CONFIG_prefix="$withval" else ALLEGRO_CONFIG_prefix="" fi # Check whether --with-allegro-exec-prefix was given. if test "${with_allegro_exec_prefix+set}" = set; then : withval=$with_allegro_exec_prefix; ALLEGRO_CONFIG_exec_prefix="$withval" else ALLEGRO_CONFIG_exec_prefix="" fi # Check whether --enable-allegrotest was given. if test "${enable_allegrotest+set}" = set; then : enableval=$enable_allegrotest; else enable_allegrotest=yes fi if test x$ALLEGRO_CONFIG_exec_prefix != x ; then ALLEGRO_CONFIG_args="$ALLEGRO_CONFIG_args --exec-prefix=$ALLEGRO_CONFIG_exec_prefix" if test x${ALLEGRO_CONFIG+set} != xset ; then ALLEGRO_CONFIG=$ALLEGRO_CONFIG_exec_prefix/bin/allegro-config fi fi if test x$ALLEGRO_CONFIG_prefix != x ; then ALLEGRO_CONFIG_args="$ALLEGRO_CONFIG_args --prefix=$ALLEGRO_CONFIG_prefix" if test x${ALLEGRO_CONFIG+set} != xset ; then ALLEGRO_CONFIG=$ALLEGRO_CONFIG_prefix/bin/allegro-config fi fi # Extract the first word of "allegro-config", so it can be a program name with args. set dummy allegro-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_ALLEGRO_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ALLEGRO_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ALLEGRO_CONFIG="$ALLEGRO_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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ALLEGRO_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_ALLEGRO_CONFIG" && ac_cv_path_ALLEGRO_CONFIG="no" ;; esac fi ALLEGRO_CONFIG=$ac_cv_path_ALLEGRO_CONFIG if test -n "$ALLEGRO_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ALLEGRO_CONFIG" >&5 $as_echo "$ALLEGRO_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi min_allegro_version=4.2.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Allegro - version >= $min_allegro_version" >&5 $as_echo_n "checking for Allegro - version >= $min_allegro_version... " >&6; } no_allegro="" if test "$ALLEGRO_CONFIG" = "no" ; then no_allegro=yes else allegro_CFLAGS=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --cflags` allegro_LIBS=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --libs` ALLEGRO_CONFIG_major_version=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ALLEGRO_CONFIG_minor_version=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` ALLEGRO_CONFIG_micro_version=`$ALLEGRO_CONFIG $ALLEGRO_CONFIG_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test "x$enable_allegrotest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $allegro_CFLAGS" LIBS="$allegro_LIBS $LIBS" rm -f conf.allegrotest 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 int main() { int allegro_major_version, allegro_minor_version, allegro_micro_version; int major, minor, micro; char *tmp_version; int tmp_int_version; system("touch conf.allegrotest"); /* Capture allegro-config output via autoconf/configure variables */ /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = (char *)strdup("$min_allegro_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string from allegro-config\n", "$min_allegro_version"); free(tmp_version); exit(1); } free(tmp_version); /* Capture the version information from the header files */ allegro_major_version = ALLEGRO_VERSION; allegro_minor_version = ALLEGRO_SUB_VERSION; allegro_micro_version = ALLEGRO_WIP_VERSION; /* Compare allegro-config output to the Allegro headers */ if ((allegro_major_version != $ALLEGRO_CONFIG_major_version) || (allegro_minor_version != $ALLEGRO_CONFIG_minor_version)) { printf("*** Allegro header files (version %d.%d.%d) do not match\n", allegro_major_version, allegro_minor_version, allegro_micro_version); printf("*** allegro-config (version %d.%d.%d)\n", $ALLEGRO_CONFIG_major_version, $ALLEGRO_CONFIG_minor_version, $ALLEGRO_CONFIG_micro_version); return 1; } /* Compare the headers to the library to make sure we match */ /* Less than ideal -- doesn't provide us with return value feedback, * only exits if there's a serious mismatch between header and library. */ /* TODO: * This doesnt work! */ /* ALLEGRO_TEST_VERSION; */ /* Test that the library is greater than our minimum version */ if (($ALLEGRO_CONFIG_major_version > major) || (($ALLEGRO_CONFIG_major_version == major) && ($ALLEGRO_CONFIG_minor_version > minor)) || (($ALLEGRO_CONFIG_major_version == major) && ($ALLEGRO_CONFIG_minor_version == minor) && ($ALLEGRO_CONFIG_micro_version >= micro))) { return 0; } else { printf("\n*** An old version of Allegro (%d.%d.%d) was found.\n", allegro_major_version, allegro_minor_version, allegro_micro_version); printf("*** You need a version of Allegro newer than %d.%d.%d. The latest version of\n", major, minor, micro); printf("*** Allegro is always available from http://alleg.sf.net.\n"); printf("***\n"); printf("*** If you have already installed a sufficiently new version, this error\n"); printf("*** probably means that the wrong copy of the allegro-config shell script is\n"); printf("*** being found. The easiest way to fix this is to remove the old version\n"); printf("*** of Allegro, but you can also set the ALLEGRO_CONFIG environment to point to the\n"); printf("*** correct copy of allegro-config. (In this case, you will have to\n"); printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); printf("*** so that the correct libraries are found at run-time))\n"); } return 1; } END_OF_MAIN() _ACEOF if ac_fn_c_try_run "$LINENO"; then : else no_allegro=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_allegro" = x ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (version $ALLEGRO_CONFIG_major_version.$ALLEGRO_CONFIG_minor_version.$ALLEGRO_CONFIG_micro_version)" >&5 $as_echo "yes (version $ALLEGRO_CONFIG_major_version.$ALLEGRO_CONFIG_minor_version.$ALLEGRO_CONFIG_micro_version)" >&6; } : else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "$ALLEGRO_CONFIG" = "no" ; then echo "*** The allegro-config script installed by Allegro could not be found" echo "*** If Allegro was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the ALLEGRO_CONFIG environment variable to the" echo "*** full path to allegro-config." else if test -f conf.allegrotest ; then : else echo "*** Could not run Allegro test program, checking why..." CFLAGS="$CFLAGS $allegro_CFLAGS" LIBS="$LIBS $allegro_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { ALLEGRO_TEST_VERSION; 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 Allegro or finding the wrong" echo "*** version of Allegro. If it is not finding Allegro, 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 Allegro was incorrectly installed" echo "*** or that you have moved Allegro since it was installed. In the latter case, you" echo "*** may want to edit the allegro-config script: $ALLEGRO_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 allegro_CFLAGS="" allegro_LIBS="" : fi rm -f conf.allegrotest try_link_allegro "$allegro_LIBS" if test "x$?" == "x0"; then : LIBS="$LIBS $allegro_LIBS" ALLEGRO_LIB=`echo $allegro_LIBS | sed -e 's/.*-l\([^[:blank:]]*\).*/\1/'` have_allegro="yes" fi ALLEGRO_RELEASE_LIBS="alleg alleg42 alleg44" ALLEGRO_DEBUG_LIBS="alld42 alleg44-debug" if test "x$enable_debug" = "xyes"; then : ALLEGRO_LIBS="$ALLEGRO_DEBUG_LIBS $ALLEGRO_RELEASE_LIBS" else ALLEGRO_LIBS="$ALLEGRO_RELEASE_LIBS $ALLEGRO_DEBUG_LIBS" fi for lib in $ALLEGRO_LIBS do ldflag="-l$lib" if test "x$have_allegro" == "xyes"; then : break fi try_link_allegro $ldflag if test "x$?" == "x0"; then : LIBS="$LIBS $ldflag" ALLEGRO_LIB="$lib" have_allegro="yes" fi done if test "x$have_allegro" != "xyes"; then : as_fn_error $? "Unable to find Allegro game programming library 4.2, check out www.allegro.cc (or your distro repositories if you use a unix-like system)" "$LINENO" 5 fi # Checks for header files. for ac_header in string.h sys/stat.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 # Checks for typedefs, structures, and compiler characteristics. { $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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99" >&5 $as_echo_n "checking for stdbool.h that conforms to C99... " >&6; } if ${ac_cv_header_stdbool_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifndef bool "error: bool is not defined" #endif #ifndef false "error: false is not defined" #endif #if false "error: false is not 0" #endif #ifndef true "error: true is not defined" #endif #if true != 1 "error: true is not 1" #endif #ifndef __bool_true_false_are_defined "error: __bool_true_false_are_defined is not defined" #endif struct s { _Bool s: 1; _Bool t; } s; char a[true == 1 ? 1 : -1]; char b[false == 0 ? 1 : -1]; char c[__bool_true_false_are_defined == 1 ? 1 : -1]; char d[(bool) 0.5 == true ? 1 : -1]; /* See body of main program for 'e'. */ char f[(_Bool) 0.0 == false ? 1 : -1]; char g[true]; char h[sizeof (_Bool)]; char i[sizeof s.t]; enum { j = false, k = true, l = false * true, m = true * 256 }; /* The following fails for HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. */ _Bool n[m]; char o[sizeof n == m * sizeof n[0] ? 1 : -1]; char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1]; /* Catch a bug in an HP-UX C compiler. See http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html */ _Bool q = true; _Bool *pq = &q; int main () { bool e = &s; *pq |= q; *pq |= ! q; /* Refer to every declared value, to avoid compiler optimizations. */ return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + !m + !n + !o + !p + !q + !pq); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdbool_h=yes else ac_cv_header_stdbool_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h" >&5 $as_echo "$ac_cv_header_stdbool_h" >&6; } ac_fn_c_check_type "$LINENO" "_Bool" "ac_cv_type__Bool" "$ac_includes_default" if test "x$ac_cv_type__Bool" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE__BOOL 1 _ACEOF fi if test $ac_cv_header_stdbool_h = yes; then $as_echo "#define HAVE_STDBOOL_H 1" >>confdefs.h fi # Checks for library functions. ac_config_files="$ac_config_files Makefile src/Makefile data/Makefile resources/Makefile docs/garden.doxyfile pkgs/w32/winstaller.nsi" 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } 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 "${HAVE_FREEDESKTOP_TRUE}" && test -z "${HAVE_FREEDESKTOP_FALSE}"; then as_fn_error $? "conditional \"HAVE_FREEDESKTOP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WANT_FREEDESKTOP_TRUE}" && test -z "${WANT_FREEDESKTOP_FALSE}"; then as_fn_error $? "conditional \"WANT_FREEDESKTOP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WINDOWS_VERSION_TRUE}" && test -z "${WINDOWS_VERSION_FALSE}"; then as_fn_error $? "conditional \"WINDOWS_VERSION\" 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 -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' 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 # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # 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 GARDEN $as_me 1.0.9, which was generated by GNU Autoconf 2.69. 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 ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ GARDEN config.status 1.0.9 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 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 # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LD_RC='`$ECHO "$LD_RC" | $SED "$delay_single_quote_subst"`' reload_flag_RC='`$ECHO "$reload_flag_RC" | $SED "$delay_single_quote_subst"`' reload_cmds_RC='`$ECHO "$reload_cmds_RC" | $SED "$delay_single_quote_subst"`' old_archive_cmds_RC='`$ECHO "$old_archive_cmds_RC" | $SED "$delay_single_quote_subst"`' compiler_RC='`$ECHO "$compiler_RC" | $SED "$delay_single_quote_subst"`' GCC_RC='`$ECHO "$GCC_RC" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_RC='`$ECHO "$lt_prog_compiler_no_builtin_flag_RC" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_RC='`$ECHO "$lt_prog_compiler_pic_RC" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_RC='`$ECHO "$lt_prog_compiler_wl_RC" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_RC='`$ECHO "$lt_prog_compiler_static_RC" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_RC='`$ECHO "$lt_cv_prog_compiler_c_o_RC" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_RC='`$ECHO "$archive_cmds_need_lc_RC" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_RC='`$ECHO "$enable_shared_with_static_runtimes_RC" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_RC='`$ECHO "$export_dynamic_flag_spec_RC" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_RC='`$ECHO "$whole_archive_flag_spec_RC" | $SED "$delay_single_quote_subst"`' compiler_needs_object_RC='`$ECHO "$compiler_needs_object_RC" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_RC='`$ECHO "$old_archive_from_new_cmds_RC" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_RC='`$ECHO "$old_archive_from_expsyms_cmds_RC" | $SED "$delay_single_quote_subst"`' archive_cmds_RC='`$ECHO "$archive_cmds_RC" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_RC='`$ECHO "$archive_expsym_cmds_RC" | $SED "$delay_single_quote_subst"`' module_cmds_RC='`$ECHO "$module_cmds_RC" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_RC='`$ECHO "$module_expsym_cmds_RC" | $SED "$delay_single_quote_subst"`' with_gnu_ld_RC='`$ECHO "$with_gnu_ld_RC" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_RC='`$ECHO "$allow_undefined_flag_RC" | $SED "$delay_single_quote_subst"`' no_undefined_flag_RC='`$ECHO "$no_undefined_flag_RC" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_RC='`$ECHO "$hardcode_libdir_flag_spec_RC" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_RC='`$ECHO "$hardcode_libdir_separator_RC" | $SED "$delay_single_quote_subst"`' hardcode_direct_RC='`$ECHO "$hardcode_direct_RC" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_RC='`$ECHO "$hardcode_direct_absolute_RC" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_RC='`$ECHO "$hardcode_minus_L_RC" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_RC='`$ECHO "$hardcode_shlibpath_var_RC" | $SED "$delay_single_quote_subst"`' hardcode_automatic_RC='`$ECHO "$hardcode_automatic_RC" | $SED "$delay_single_quote_subst"`' inherit_rpath_RC='`$ECHO "$inherit_rpath_RC" | $SED "$delay_single_quote_subst"`' link_all_deplibs_RC='`$ECHO "$link_all_deplibs_RC" | $SED "$delay_single_quote_subst"`' always_export_symbols_RC='`$ECHO "$always_export_symbols_RC" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_RC='`$ECHO "$export_symbols_cmds_RC" | $SED "$delay_single_quote_subst"`' exclude_expsyms_RC='`$ECHO "$exclude_expsyms_RC" | $SED "$delay_single_quote_subst"`' include_expsyms_RC='`$ECHO "$include_expsyms_RC" | $SED "$delay_single_quote_subst"`' prelink_cmds_RC='`$ECHO "$prelink_cmds_RC" | $SED "$delay_single_quote_subst"`' postlink_cmds_RC='`$ECHO "$postlink_cmds_RC" | $SED "$delay_single_quote_subst"`' file_list_spec_RC='`$ECHO "$file_list_spec_RC" | $SED "$delay_single_quote_subst"`' hardcode_action_RC='`$ECHO "$hardcode_action_RC" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib \ LD_RC \ reload_flag_RC \ compiler_RC \ lt_prog_compiler_no_builtin_flag_RC \ lt_prog_compiler_pic_RC \ lt_prog_compiler_wl_RC \ lt_prog_compiler_static_RC \ lt_cv_prog_compiler_c_o_RC \ export_dynamic_flag_spec_RC \ whole_archive_flag_spec_RC \ compiler_needs_object_RC \ with_gnu_ld_RC \ allow_undefined_flag_RC \ no_undefined_flag_RC \ hardcode_libdir_flag_spec_RC \ hardcode_libdir_separator_RC \ exclude_expsyms_RC \ include_expsyms_RC \ file_list_spec_RC; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec \ reload_cmds_RC \ old_archive_cmds_RC \ old_archive_from_new_cmds_RC \ old_archive_from_expsyms_cmds_RC \ archive_cmds_RC \ archive_expsym_cmds_RC \ module_cmds_RC \ module_expsym_cmds_RC \ export_symbols_cmds_RC \ prelink_cmds_RC \ postlink_cmds_RC; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' _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 "src/configure.h") CONFIG_HEADERS="$CONFIG_HEADERS src/configure.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;; "resources/Makefile") CONFIG_FILES="$CONFIG_FILES resources/Makefile" ;; "docs/garden.doxyfile") CONFIG_FILES="$CONFIG_FILES docs/garden.doxyfile" ;; "pkgs/w32/winstaller.nsi") CONFIG_FILES="$CONFIG_FILES pkgs/w32/winstaller.nsi" ;; *) 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 "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf 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"` # 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'`; 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 } ;; "libtool":C) # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2014 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. # GNU Libtool 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 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool 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 . # The names of the tagged configurations supported by this script. available_tags='RC ' # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: RC # The linker used to build libraries. LD=$lt_LD_RC # How to create reloadable object files. reload_flag=$lt_reload_flag_RC reload_cmds=$lt_reload_cmds_RC # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_RC # A language specific compiler. CC=$lt_compiler_RC # Is the compiler the GNU compiler? with_gcc=$GCC_RC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_RC # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_RC # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_RC # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_RC # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_RC # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_RC # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_RC # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_RC # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_RC # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_RC # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_RC # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_RC archive_expsym_cmds=$lt_archive_expsym_cmds_RC # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_RC module_expsym_cmds=$lt_module_expsym_cmds_RC # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_RC # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_RC # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_RC # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_RC # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_RC # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_RC # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_RC # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_RC # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_RC # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_RC # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_RC # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_RC # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_RC # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_RC # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_RC # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_RC # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_RC # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_RC # Specify filename containing input files. file_list_spec=$lt_file_list_spec_RC # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_RC # ### END LIBTOOL TAG CONFIG: RC _LT_EOF ;; 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 garden-1.0.9/docs/0000755000175000017500000000000012457302475010723 500000000000000garden-1.0.9/docs/garden.doxyfile.in0000644000175000017500000017133412457263274014271 00000000000000# Doxyfile 1.5.7.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = @PACKAGE_NAME@ # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @PACKAGE_VERSION@ # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, # Spanish, Swedish, and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter # and setter methods for a property. Setting this option to YES (the default) # will make doxygen to replace the get and set methods by a property in the # documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penality. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by # doxygen. The layout file controls the global structure of the generated output files # in an output format independent way. The create the layout file that represents # doxygen's defaults, run doxygen with the -l option. You can optionally specify a # file name after the option, if omitted DoxygenLayout.xml will be used as the name # of the layout file. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER # are set, an additional index file will be generated that can be used as input for # Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated # HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # Qt Help Project / Namespace. QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # Qt Help Project / Virtual Folders. QHP_VIRTUAL_FOLDER = doc # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file . QHG_LOCATION = # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to FRAME, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. Other possible values # for this tag are: HIERARCHIES, which will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list; # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which # disables this behavior completely. For backwards compatibility with previous # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE # respectively. GENERATE_TREEVIEW = NONE # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # By default doxygen will write a font called FreeSans.ttf to the output # directory and reference it in all dot files that doxygen generates. This # font does not include all possible unicode characters however, so when you need # these (or just want a differently looking font) you can specify the font name # using DOT_FONTNAME. You need need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = FreeSans # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO garden-1.0.9/src/0000755000175000017500000000000012457302475010562 500000000000000garden-1.0.9/src/cloud.c0000644000175000017500000001240512457263274011761 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include #include "allegro.h" #include "globvars.h" #include "stuff.h" #include "cloud.h" #include "palette.h" void init_clouds (void) { int c; for (c = 0; c < NO_CLOUDS; c++) { cloud[c].type = CLOUD_NONE; } } int create_cloud (int type) { int c; for (c = 0; c < NO_CLOUDS; c++) { if (cloud[c].type == CLOUD_NONE) break; if (c == NO_CLOUDS - 1) return -1; } cloud[c].type = type; cloud[c].timeout = 0; cloud[c].x_speed = 0; cloud[c].y_speed = 0; cloud[c].drag = 0; return c; } void destroy_cloud (int c) { cloud[c].type = CLOUD_NONE; } void run_clouds (void) { int c; for (c = 0; c < NO_CLOUDS; c++) { if (cloud[c].type == CLOUD_NONE) continue; // if (arena.counter % 8 == 0) cloud[c].timeout--; if (cloud[c].timeout <= 0) { destroy_cloud (c); continue; } if (cloud[c].drag != 0) { cloud[c].x_speed *= cloud[c].drag; cloud[c].x_speed /= 1000; cloud[c].y_speed *= cloud[c].drag; cloud[c].y_speed /= 1000; } switch (cloud[c].type) { case CLOUD_SCIRCLE: cloud[c].timeout -= 2; if (cloud[c].timeout <= 0) destroy_cloud (c); break; case CLOUD_DELAY1: cloud[c].angle--; if (cloud[c].angle == 0) { cloud[c].type = CLOUD_DELAY2; cloud[c].angle = cloud[c].y2; cloud[c].x2 = 1; } break; case CLOUD_DELAY2: cloud[c].angle--; if (cloud[c].angle & 3) cloud[c].x2++; if (cloud[c].angle == 0) { cloud[c].type = CLOUD_DELAY3; // cloud[c].angle = 15; } break; case CLOUD_DELAY3: // cloud[c].angle --; if (cloud[c].timeout & 3) cloud[c].x2--; if (cloud[c].x2 <= 0) { destroy_cloud (c); } break; case CLOUD_BURN: cloud[c].x += cloud[c].x_speed; cloud[c].y += cloud[c].y_speed; cloud[c].y_speed += 200; if (cloud[c].y > 490000 || cloud[c].x < -5000 || cloud[c].x > 645000) { destroy_cloud (c); break; } if (cloud[c].timeout & 1) quick_cloud (CLOUD_CIRCLE5, cloud[c].x + grand (8000) - grand (8000), cloud[c].y + grand (8000) - grand (8000), cloud[c].x_speed, cloud[c].y_speed, cloud[c].timeout / 3 + 18 + grand (15), TCOL_SH2, 900); else quick_cloud (CLOUD_CIRCLE3, cloud[c].x + grand (8000) - grand (8000), cloud[c].y + grand (8000) - grand (8000), cloud[c].x_speed, cloud[c].y_speed, cloud[c].timeout / 8 + 10 + grand (10), TCOL_ORANGE, 900); cloud[c].timeout -= cloud[c].colour; break; case CLOUD_SPAWNER: cloud[c].x += cloud[c].x_speed; cloud[c].y += cloud[c].y_speed; // if (grand(3) == 0) quick_cloud (CLOUD_CIRCLE2, cloud[c].x + grand (18000) - grand (18000), cloud[c].y + grand (18000) - grand (18000), 0, 0, 20 + grand (20), cloud[c].colour, 950); break; case CLOUD_MSHOCK: // if (arena.counter % 8 != 0) // cloud[c].timeout ++; break; case CLOUD_LSHOCK: case CLOUD_HSHOCK: if (arena.level == 2) cloud[c].timeout--; break; case CLOUD_MGSHOCK: // cloud[c].x += cloud[c].x_speed; // cloud[c].y += cloud[c].y_speed; if (arena.counter % 2 == 0) cloud[c].timeout++; break; case CLOUD_PETAL1: cloud[c].x += cloud[c].x_speed; cloud[c].y += cloud[c].y_speed; cloud[c].timeout--; break; case CLOUD_PETAL1_DEBRIS: case CLOUD_PETAL2_DEBRIS: case CLOUD_PETAL3_DEBRIS: cloud[c].x += cloud[c].x_speed; cloud[c].y += cloud[c].y_speed; cloud[c].x_speed *= 1.01; cloud[c].y_speed *= 1.01; cloud[c].angle += cloud[c].x2; if (cloud[c].x < -20000 || cloud[c].x > 660000 || cloud[c].y < -20000 || cloud[c].y > 500000) destroy_cloud (c); break; case CLOUD_TSHOCK: if (arena.counter % 2 == 0) cloud[c].timeout++; break; case CLOUD_SLINE: // cloud[c].timeout = 1; // destroy_cloud(c); break; case CLOUD_PRING: cloud[c].timeout -= 10; break; case CLOUD_CARRIER1_BANG: cloud[c].x2 += 8; cloud[c].x2 &= 1023; break; default: cloud[c].x += cloud[c].x_speed; cloud[c].y += cloud[c].y_speed; break; } // cloud may be destroyed here } } int quick_cloud (int type, int x, int y, int x_speed, int y_speed, int timeout, int colour, int drag) { int c; c = create_cloud (type); if (c != -1) { cloud[c].x = x; cloud[c].y = y; cloud[c].timeout = timeout; cloud[c].colour = colour; cloud[c].drag = drag; cloud[c].x_speed = x_speed; cloud[c].y_speed = y_speed; } return c; } garden-1.0.9/src/display.c0000644000175000017500000037654312457263274012340 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include "allegro.h" #include "globvars.h" #include "palette.h" #include "display.h" #include "game.h" #include "stuff.h" #define TRANS_MODE drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); #define END_TRANS_MODE drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); extern RGB palet[2][256]; BITMAP *display; extern volatile int frames_per_second; extern int slacktime; extern int long_slacktime_store; BITMAP *underlay; struct RLE_STRUCT eRLE_flower[5][50]; RLE_SPRITE *platform_RLE[PLATFORM_RLES]; int platform_tile[9][PLAT_Y]; int platform_position; int platform_step; // externed in game.cc RLE_SPRITE *island1_RLE[ISLAND1_RLES]; int island1_tile[9][ISLAND1_Y]; int island1_position; int island1_step; int star_x[NO_STARS][3]; int star_y[NO_STARS][3]; int star_y_speed[NO_STARS][3]; //int star_col [NO_STARS] [3]; RLE_SPRITE *bone_RLE[BONE_RLES]; RLE_SPRITE *trans_RLE[TRANS_RLES]; void draw_background (void); void draw_background2 (void); void draw_background3 (void); void draw_background4 (void); void shift_message (void); int damage_per_time; void indicate_fps (BITMAP * bmp, int play); void draw_player (int show); void draw_HUD (void); int detect_player_collision (void); int check_pixel (int x, int y); void draw_enemies (void); void draw_an_enemy (int e); void draw_clouds (void); void draw_a_cloud (int c); void draw_darter1 (int x, int y, int xa, int ya); void draw_darter2 (int x, int y, int out2, int out1); void draw_stopper1 (int x, int y, int front_down, int fx, int fy, int mx, int my, int bx, int by); void draw_carrier1 (int x, int y, int out); void draw_carrier1_part (int x, int y, int out, int out2); void draw_diver1 (int x, int y, int xa, int ya); void draw_pod1 (int x, int y, int out, int up_out, int e); void draw_ebullets (void); void draw_an_ebullet (int b); void draw_dart (int x, int y, int angle, int out, int timeout, int cord_col, int col); void draw_diamond (int x, int y, int angle, int out1, int out2, int cord_colour); void draw_pbullets (void); void draw_a_pbullet (int b); void fcircle (int x, int y, int size, int col); void pline (BITMAP * bmp, int x1, int y1, int x2, int y2, int colour); void poly4 (BITMAP * target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col); struct RLE_STRUCT dart_bullet[SMALL_ROTATIONS][9]; struct RLE_STRUCT diamond_bullet[SMALL_ROTATIONS][9]; struct RLE_STRUCT sdart_bullet[SMALL_ROTATIONS][9]; struct RLE_STRUCT RLE_beam[SMALL_ROTATIONS]; //struct RLE_STRUCT splinter [SMALL_ROTATIONS]; RLE_SPRITE *RLE_circle[RLE_CIRCLES][9]; struct RLE_STRUCT RLE_mshock[4][20]; struct RLE_STRUCT RLE_lshock[4][50]; struct RLE_STRUCT RLE_hshock[4][50]; struct RLE_STRUCT RLE_blade[SMALL_ROTATIONS]; struct RLE_STRUCT RLE_lwbeamshock[15]; struct RLE_STRUCT RLE_rshock[5][20]; struct RLE_STRUCT RLE_mg_shock[10]; struct RLE_STRUCT RLE_ring[20]; struct RLE_STRUCT petal1[SMALL_ROTATIONS]; struct RLE_STRUCT petal2[SMALL_ROTATIONS]; struct RLE_STRUCT petal3[SMALL_ROTATIONS]; RLE_SPRITE *eRLE_small1[S_ENEMY_RLES]; RLE_SPRITE *eRLE_large1[L_ENEMY_RLES]; struct RLE_STRUCT RLE_multi[WPN_TYPES][8]; int points4[8]; void print_number (int x, int y, int n); #ifdef TRUE #define TRACK_SIZE 10 struct trackstruct { int type; int multiple; int count; int count2; // int next_track; int delay; int total; int x[TRACK_SIZE + 1]; int y[TRACK_SIZE + 1]; int reverse; int style; int x_target[MAX_TARGETS]; int y_target[MAX_TARGETS]; int target_time; }; extern struct trackstruct track[TRACK_SIZE]; extern int next_track; extern int overtrack_pos; extern int overtrack_pos2; #endif void run_display (int show) { clear_to_color (display, COL_OUTLINE); if (show == 1) { switch (arena.level) { default: draw_background (); break; case 2: draw_background2 (); break; case 3: draw_background3 (); break; case 4: draw_background4 (); break; } draw_enemies (); } if (player.in_play == 1) draw_player (show); draw_ebullets (); if (player.in_play == 1 && player.grace == 0) { if (detect_player_collision () == 1) player_hit (); } if (show == 0) return; // skip the frame draw_pbullets (); draw_clouds (); draw_HUD (); //#define SDFSDFG // int i, count = 0, ypos = 100; #ifdef SDFSDFG textprintf_ex (display, font, 10, ypos, -1, -1, "%i fps", frames_per_second); textprintf_ex (display, font, 10, ypos + 15, -1, -1, "Press Escape to quit"); for (i = 0; i < NO_ENEMIES; i++) { if (enemy[i].type != ENEMY_NONE) count++; } textprintf_ex (display, font, 10, ypos + 30, -1, -1, "e %i", count); count = 0; for (i = 0; i < NO_EBULLETS; i++) { if (ebullet[i].type != EBULLET_NONE) count++; } textprintf_ex (display, font, 10, ypos + 45, -1, -1, "b %i", count); count = 0; for (i = 0; i < NO_PBULLETS; i++) { if (pbullet[i].type != PBULLET_NONE) count++; } textprintf_ex (display, font, 10, ypos + 60, -1, -1, "p %i", count); count = 0; for (i = 0; i < NO_CLOUDS; i++) { if (cloud[i].type != CLOUD_NONE) count++; } textprintf_ex (display, font, 10, ypos + 75, -1, -1, "c %i", count); /* print_number(10, ypos + 90, player.wxp [0]); print_number(10, ypos + 105, player.wxp [1]); print_number(10, ypos + 120, player.wxp [2]);*/ print_number (10, ypos + 180, damage_per_time); print_number (10, ypos + 90, track[0].count); print_number (10, ypos + 105, track[1].count); print_number (10, ypos + 120, track[2].count); print_number (10, ypos + 135, next_track); print_number (10, ypos + 150, overtrack_pos); print_number (10, ypos + 165, overtrack_pos2); #endif // textprintf_ex(display, font, 10, 10, COL_WHITE, -1, "%i fps", frames_per_second); if (arena.level_finished > 0 && arena.level_finished < 140) { int y = 140 - arena.level_finished; if (y > 17) y = 17; if (arena.level_finished < 17) y = arena.level_finished; int x = 140 - arena.level_finished; x *= 4; if (x > 110) x = 110; if (arena.level_finished < 20) { x = arena.level_finished * 4; if (x > 110) x = 110; } rectfill (display, 278, 188 - y * 3, 292, 188 + y * 3, TRANS_B3_IN - 1); rect (display, 277, 187 - y * 3, 293, 189 + y * 3, TRANS_B3_OUT - 1); rectfill (display, 348, 188 - y * 3, 362, 188 + y * 3, TRANS_B3_IN - 1); rect (display, 347, 187 - y * 3, 363, 189 + y * 3, TRANS_B3_OUT - 1); rectfill (display, 240, 188 - y * 2, 250, 188 + y * 2, TRANS_B2_IN - 1); rect (display, 239, 187 - y * 2, 251, 189 + y * 2, TRANS_B2_OUT - 1); rectfill (display, 390, 188 - y * 2, 400, 188 + y * 2, TRANS_B2_IN - 1); rect (display, 389, 187 - y * 2, 401, 189 + y * 2, TRANS_B2_OUT - 1); rectfill (display, 320 - x, 188 - y, 320 + x, 188 + y, TRANS_B5_IN - 1); rect (display, 319 - x, 187 - y, 321 + x, 189 + y, TRANS_B5_OUT - 1); if (arena.level_finished < 120 && arena.level_finished > 20) switch (arena.level) { case 1: textprintf_centre_ex (display, font, 320, 180, -1, -1, "STAGE ONE COMPLETE"); break; case 2: textprintf_centre_ex (display, font, 320, 180, -1, -1, "STAGE TWO COMPLETE"); break; case 3: textprintf_centre_ex (display, font, 320, 180, -1, -1, "STAGE THREE COMPLETE"); break; case 4: textprintf_centre_ex (display, font, 320, 180, -1, -1, "FINAL STAGE COMPLETE"); break; } // textprintf_centre_ex(display, font, 320, 200, -1, -1, "SEE WWW.SHMUP-DEV.COM FOR THE COMPETITION VERSION!"); } if (arena.game_over > 0) { // TRANS_MODE int y = 200 - arena.game_over; if (y > 17) y = 17; int x = 200 - arena.game_over; x *= 4; if (x > 80) x = 80; rectfill (display, 320 - x, 188 - y, 320 + x, 188 + y, TRANS_YELLOW_IN - 1); rect (display, 319 - x, 187 - y, 321 + x, 189 + y, TRANS_YELLOW_OUT - 1); rectfill (display, 220, 188 - y, 230, 188 + y, TRANS_ORANGE_IN - 1); rect (display, 219, 187 - y, 231, 189 + y, TRANS_ORANGE_OUT - 1); rectfill (display, 410, 188 - y, 420, 188 + y, TRANS_ORANGE_IN - 1); rect (display, 409, 187 - y, 421, 189 + y, TRANS_ORANGE_OUT - 1); rectfill (display, 200, 188 - y, 210, 188 + y, TRANS_SH1_IN - 1); rect (display, 199, 187 - y, 211, 189 + y, TRANS_SH1_OUT - 1); rectfill (display, 430, 188 - y, 440, 188 + y, TRANS_SH1_IN - 1); rect (display, 429, 187 - y, 441, 189 + y, TRANS_SH1_OUT - 1); if (arena.game_over < 180) textprintf_centre_ex (display, font, 320, 180, -1, -1, "G A M E O V E R"); } if (arena.new_level_sign > 0) { int y = 120 - arena.new_level_sign; if (y > 17) y = 17; if (arena.new_level_sign < 17) y = arena.new_level_sign; int x = 120 - arena.new_level_sign; x *= 4; if (x > 80) x = 80; if (arena.new_level_sign < 20) { x = arena.new_level_sign * 4; if (x > 80) x = 80; } rectfill (display, 278, 188 - y * 3, 292, 188 + y * 3, TRANS_B3_IN - 1); rect (display, 277, 187 - y * 3, 293, 189 + y * 3, TRANS_B3_OUT - 1); rectfill (display, 348, 188 - y * 3, 362, 188 + y * 3, TRANS_B3_IN - 1); rect (display, 347, 187 - y * 3, 363, 189 + y * 3, TRANS_B3_OUT - 1); rectfill (display, 250, 188 - y * 2, 260, 188 + y * 2, TRANS_B2_IN - 1); rect (display, 249, 187 - y * 2, 261, 189 + y * 2, TRANS_B2_OUT - 1); rectfill (display, 380, 188 - y * 2, 390, 188 + y * 2, TRANS_B2_IN - 1); rect (display, 379, 187 - y * 2, 391, 189 + y * 2, TRANS_B2_OUT - 1); rectfill (display, 320 - x, 188 - y, 320 + x, 188 + y, TRANS_B5_IN - 1); rect (display, 319 - x, 187 - y, 321 + x, 189 + y, TRANS_B5_OUT - 1); /* rectfill(display, 220, 188 - y, 230, 188 + y, TRANS_B3_IN - 1); rect(display, 219, 187 - y, 231, 189 + y, TRANS_B3_OUT - 1); rectfill(display, 410, 188 - y, 420, 188 + y, TRANS_B3_IN - 1); rect(display, 409, 187 - y, 421, 189 + y, TRANS_B3_OUT - 1); rectfill(display, 200, 188 - y, 210, 188 + y, TRANS_B2_IN - 1); rect(display, 199, 187 - y, 211, 189 + y, TRANS_B2_OUT - 1); rectfill(display, 430, 188 - y, 440, 188 + y, TRANS_B2_IN - 1); rect(display, 429, 187 - y, 441, 189 + y, TRANS_B2_OUT - 1); */ if (arena.new_level_sign < 100 && arena.new_level_sign > 20) switch (arena.level) { case 1: textprintf_centre_ex (display, font, 320, 180, -1, -1, "S T A G E O N E"); break; case 2: textprintf_centre_ex (display, font, 320, 180, -1, -1, "S T A G E T W O"); break; case 3: textprintf_centre_ex (display, font, 320, 180, -1, -1, "S T A G E T H R E E"); break; case 4: textprintf_centre_ex (display, font, 320, 180, -1, -1, "F I N A L S T A G E"); break; } } if (arena.shift_message > 0) shift_message (); if (arena.change_palette != -1) { // int newpal = build_new_palette(arena.change_palette, 0, 0, 0); int newpal = build_new_palette (arena.level, 0, 0, 0); // vsync(); if (options.run_vsync > 0) vsync (); if (arena.new_level_sign > 118) clear_bitmap (screen); else blit (display, screen, 0, 0, 0, 0, 640, 480); // vsync(); set_palette (palet[newpal]); if (arena.shift_palette == 0) arena.change_palette = -1; } else { if (options.run_vsync == 2) vsync (); /* clear_bitmap(display); textprintf_right_ex(display, font, 600, 200, -1, -1, "LOADING"); textprintf_right_ex(display, font, 600, 240, -1, -1, "PLEASE WAIT"); textprintf_right_ex(display, font, 600, 260, -1, -1, "WWW.SHMUP-DEV.COM"); textprintf_right_ex(display, font, 600, 280, -1, -1, "2007 OPTIONS COMPETITION"); */ blit (display, screen, 0, 0, 0, 0, 640, 480); } } int detect_player_collision (void) { int x = player.x / GRAIN; int y = player.y / GRAIN; if (check_pixel (x, y) || check_pixel (x + 1, y + 1) || check_pixel (x + 1, y - 1) || check_pixel (x - 1, y + 1) || check_pixel (x - 1, y - 1)) return 1; if ( //check_pixel(x, y) || check_pixel (x - 2, y - 2) || check_pixel (x + 2, y - 2) || check_pixel (x - 2, y + 2) || check_pixel (x + 2, y + 2) || check_pixel (x + 2, y + 2) || check_pixel (x, y + 2)) // || check_pixel(x, y - 3) // || check_pixel(x - 1, y - 3) //|| check_pixel(x + 1, y - 3)) return 1; return 0; } int check_pixel (int x, int y) { int pix = getpixel (display, x, y); if ((pix >= TRANS_B1_IN && pix < TRANS_B2_OUT) || (pix >= TRANS_B2_IN && pix < TRANS_B3_OUT) || (pix >= TRANS_B3_IN && pix < TRANS_B4_OUT) || (pix >= TRANS_B4_IN && pix < TRANS_B5_OUT) || (pix >= TRANS_B5_IN)) return 1; return 0; } void draw_player (int show) { int x = player.x / GRAIN; int y = player.y / GRAIN; int xa, ya, xb = 0, yb; // drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); draw_rle_sprite (display, eRLE_small1[S_ENEMY_PLAYER], x - 10, y - 7); // draw_rle_sprite(display, eRLE_small1 [xa], x - 10, y - 7); draw_rle_sprite (display, eRLE_small1[S_ENEMY_PLAYER_UP_L], x - 11 + player.wings1 / 10, y - 8); draw_rle_sprite (display, eRLE_small1[S_ENEMY_PLAYER_UP_R], x + 2 + player.wings1 / 10, y - 8); draw_rle_sprite (display, eRLE_small1[S_ENEMY_PLAYER_DOWN_L], x - 10 - player.wings2 / 10, y + 2 - player.wings2 / 10); draw_rle_sprite (display, eRLE_small1[S_ENEMY_PLAYER_DOWN_R], x + 2 + player.wings2 / 10, y + 2 - player.wings2 / 10); xa = S_ENEMY_PLAYER1; if (player.recycle_speed > 0 && player.recycle > 0) { // ya = player.recycle / player.recycle_speed; /* ya /= 8; if (ya < 0) ya = 0; if (ya > 2) ya = 2; xa += ya;*/ xa = S_ENEMY_PLAYER1; ya = 0; draw_rle_sprite (display, eRLE_small1[xa], x - 7 - ya, y - 2); } if (show == 0) return; // if (grand(3) == 0) //rect(display, x-2, y-2, x+2, y+2, COL_COL1 + grand(4)); // circlefill(display, x, y, 15, COL_WHITE); // circle(display, x, y, 15, COL_OUTLINE); // drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); // rectfill(display, x - 5, y - 4, x + 5, y + 4, COL_WHITE); // rect(display, x - 6, y - 5, x + 6, y + 5, COL_OUTLINE); int i, j, old_x, old_y, old_x2, old_y2, k = 0; for (i = 0; i < 3; i++) { xa = player.wx[i] / GRAIN; ya = player.wy[i] / GRAIN; k = 0; if (player.wstyle[i] == WSTYLE_ORBITAL) { /* xb = ANGLE_2; if (i == 2) xb = ANGLE_3; yb = ANGLE_1 - player.orbital_angle; yb *= 2; for (j = 0; j < i + 1; j ++) { if (player.recycle [i] > 0) fcircle(xa + xpart(yb, 9), ya + ypart(yb, 9), 1, TCOL_ORANGE); else fcircle(xa + xpart(yb, 9), ya + ypart(yb, 9), 2, TCOL_YELLOW); yb += xb; }*/ xb = TCOL_YELLOW; yb = 2; if (player.recycle[i] > 0) { xb = TCOL_ORANGE; yb = 1; } switch (i) { case 0: fcircle (xa, ya + 6, yb + 2, xb); break; case 1: fcircle (xa + 5, ya + 5, yb + 1, xb); fcircle (xa - 5, ya + 5, yb + 1, xb); break; case 2: fcircle (xa, ya + 6, yb + 1, xb); fcircle (xa + 7, ya + 5, yb + 0, xb); fcircle (xa - 7, ya + 5, yb + 0, xb); break; } } switch (player.weapon[i]) { case WPN_CANNON: if (player.wfired == i) { k = (player.recycle[i] - 500) / 100; if (k < 0) k = 0; if (k > 3) k = 3; } draw_rle_sprite (display, RLE_multi[WPN_CANNON][k].sprite, xa - RLE_multi[WPN_CANNON][k].x, ya - RLE_multi[WPN_CANNON][k].y); break; case WPN_MGUN: // if (player.wfired == i) { k = (player.recycle[i]) / 180; if (k < 0) k = 0; if (k > 4) k = 4; } draw_rle_sprite (display, RLE_multi[WPN_MGUN][k].sprite, xa - RLE_multi[WPN_MGUN][k].x, ya - RLE_multi[WPN_MGUN][k].y - 3); break; case WPN_SCATTER: // if (player.wfired == i) { k = (player.recycle[i]) / 330; if (k < 0) k = 0; if (k > 3) k = 3; } draw_rle_sprite (display, RLE_multi[WPN_SCATTER][k].sprite, xa - RLE_multi[WPN_SCATTER][k].x, ya - RLE_multi[WPN_SCATTER][k].y); break; case WPN_SEEKER: // if (player.wfired == i) { k = (player.recycle[i] - 300) / 60; if (k < 0) k = 0; if (k > 4) k = 4; } draw_rle_sprite (display, RLE_multi[WPN_SEEKER][k].sprite, xa - RLE_multi[WPN_SEEKER][k].x, ya - RLE_multi[WPN_SEEKER][k].y); break; case WPN_RECT: // if (player.wfired == i) { k = (player.recycle[i]) / 60 - 10; if (k < 0) k = 0; if (k > 3) k = 3; } draw_rle_sprite (display, RLE_multi[WPN_RECT][k].sprite, xa - RLE_multi[WPN_RECT][k].x, ya - RLE_multi[WPN_RECT][k].y); break; case WPN_LWBEAM: /* if (player.wfired == i) { k = (player.recycle) / 330; if (k < 0) k = 0; if (k > 3) k = 3; }*/ k = 0; if (player.beam_open[i] > 4) k = 1; if (player.beam_open[i] > 7) k = 2; draw_rle_sprite (display, RLE_multi[WPN_LWBEAM][k].sprite, xa - RLE_multi[WPN_LWBEAM][k].x, ya - RLE_multi[WPN_LWBEAM][k].y); break; case WPN_SWBEAM: // if (player.wfired == i) { k = (player.recycle[i]) / 330; if (k < 0) k = 0; if (k > 2) k = 2; } draw_rle_sprite (display, RLE_multi[WPN_SWBEAM][k].sprite, xa - RLE_multi[WPN_SWBEAM][k].x, ya - RLE_multi[WPN_SWBEAM][k].y); break; case WPN_EIGHT: draw_rle_sprite (display, RLE_multi[WPN_EIGHT][k].sprite, xa - RLE_multi[WPN_EIGHT][k].x, ya - RLE_multi[WPN_EIGHT][k].y); break; default: circlefill (display, xa, ya, 3, COL_LGREY); circle (display, xa, ya, 3, COL_OUTLINE); break; case WPN_BLADE: if (player.swing_state > BLADE_RIGHT) draw_rle_sprite (display, RLE_multi[WPN_BLADE][1].sprite, xa - 3, ya - 3); else draw_rle_sprite (display, RLE_multi[WPN_BLADE][0].sprite, xa - 4, ya - 4); xb = RLE_blade[player.swing_sprite_angle].x - xpart (player.swing_sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 14); yb = RLE_blade[player.swing_sprite_angle].y - ypart (player.swing_sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 14); draw_trans_rle_sprite (display, RLE_blade[player.swing_sprite_angle].sprite, xa - xb, ya - yb); j = player.swing_pos; k = 0; TRANS_MODE do { old_x = player.swing_x[j] / GRAIN; old_y = player.swing_y[j] / GRAIN; old_x2 = player.swing_x2[j] / GRAIN; old_y2 = player.swing_y2[j] / GRAIN; j--; if (j == -1) j = 9; k++; if (j == player.swing_pos || k >= player.swing_length) break; pline (display, old_x, old_y, player.swing_x[j] / GRAIN, player.swing_y[j] / GRAIN, TRANS_YELLOW_OUT); xa = (player.swing_length - k); xa /= player.swing_strength[j]; xb = player.wlevel[player.blade_index]; // xa *= 10 + xb; // xa /= 10; fcircle (player.swing_x[j] / GRAIN, player.swing_y[j] / GRAIN, xa, TCOL_YELLOW); if (xb > 3) { xa *= 10 + xb; xa /= 10; fcircle (player.swing_x[j] / GRAIN, player.swing_y[j] / GRAIN, xa, TCOL_ORANGE); } } while (TRUE); END_TRANS_MODE break; // end blade } } // print_number(100,100,player.swing_hold); for (i = 0; i < 3; i++) { if (player.beam[i] != -1 || player.beam_flicker[i] > 0) { xa = player.wx[i] / GRAIN; ya = player.wy[i] / GRAIN - 4; if (player.beam_flicker[i] == 0) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); if (player.wlevel[i] == 0) { vline (display, xa, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 1, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 1, ya, 0, TRANS_ORANGE_OUT); xb = (player.beam_counter[i] / 3) % 15; } if (player.wlevel[i] > 0 && player.wlevel[i] <= 3) { vline (display, xa, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 2, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 2, ya, 0, TRANS_ORANGE_OUT); xb = (player.beam_counter[i] / 2) % 15; } if (player.wlevel[i] > 3 && player.wlevel[i] <= 6) { vline (display, xa, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 2, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 2, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 3, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 3, ya, 0, TRANS_ORANGE_OUT); xb = (player.beam_counter[i]) % 15; } if (player.wlevel[i] > 6 && player.wlevel[i] <= 8) { vline (display, xa, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 2, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 2, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 3, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 3, ya, 0, TRANS_ORANGE_OUT); vline (display, xa - 6, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 6, ya, 0, TRANS_ORANGE_OUT); xb = (player.beam_counter[i]) % 15; } if (player.wlevel[i] > 8) { vline (display, xa, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 1, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 2, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 2, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 3, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 3, ya, 0, TRANS_ORANGE_OUT); vline (display, xa - 6, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 6, ya, 0, TRANS_ORANGE_OUT); vline (display, xa - 7, ya, 0, TRANS_ORANGE_IN); vline (display, xa + 7, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 8, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 8, ya, 0, TRANS_ORANGE_OUT); xb = (player.beam_counter[i]) % 15; } } else { if (player.wlevel[i] == 0) xb = (player.beam_counter[i] / 3) % 15; if (player.wlevel[i] > 0 && player.wlevel[i] <= 3) xb = (player.beam_counter[i] / 2) % 15; if (player.wlevel[i] > 3 && player.wlevel[i] <= 6) xb = (player.beam_counter[i]) % 15; if (player.wlevel[i] > 6 && player.wlevel[i] <= 8) xb = (player.beam_counter[i]) % 15; if (player.wlevel[i] > 8) xb = (player.beam_counter[i]) % 15; } fcircle (xa, ya - 3, 9 + grand (5), TCOL_ORANGE); fcircle (xa, ya - 2 - grand (3), 3 + grand (3), TCOL_YELLOW); if (xb < 1) xb = 1; if (xb > 15) xb = 15; yb = RLE_lwbeamshock[xb].x; draw_trans_rle_sprite (display, RLE_lwbeamshock[xb].sprite, xa - yb, ya - yb - 3); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } if (player.beam_fade[i] > 0 || player.beam_flicker[i] > 0) { xa = player.wx[i] / GRAIN; ya = player.wy[i] / GRAIN - 4; fcircle (xa, ya - 3, player.beam_fade[i] + grand (4), TCOL_ORANGE); // if (player.beam_fade [i] > 5 // || (player.wlevel [i] > 0 && player.beam_flicker [i] > 0)) if (player.wlevel[i] > 0 && (player.beam_fade[i] > 5 || player.beam_flicker[i] > 0)) { TRANS_MODE vline (display, xa, ya, 0, TRANS_ORANGE_IN); vline (display, xa - 1, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 1, ya, 0, TRANS_ORANGE_OUT); /* rectfill(display, xa - 55, 0, xa + 55, ya, TRANS_SH1_IN); rect(display, xa - 56, 0, xa + 56, ya + 1, TRANS_SH1_OUT); rectfill(display, 0, 100, 640, 150, TRANS_SH1_IN); rectfill(display, 0, 200, 640, 350, TRANS_SH2_IN); rectfill(display, 100, 0, 150, 480, TRANS_SH1_OUT); rectfill(display, 400, 0, 450, 480, TRANS_SH2_OUT);*/ if (player.wlevel[i] > 6) { vline (display, xa - 6, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + 6, ya, 0, TRANS_ORANGE_OUT); } END_TRANS_MODE } else if (player.beam_fade[i] > 1) { TRANS_MODE vline (display, xa, ya, 0, TRANS_ORANGE_OUT); /* if (player.wlevel [player.beam_index] > 6) { vline(display, xa - 5, ya, 0, TRANS_ORANGE_OUT); vline(display, xa + 5, ya, 0, TRANS_ORANGE_OUT); }*/ END_TRANS_MODE } // if (player.beam_fade > 6) // fcircle(xa, ya - 2 - grand(3), player.be + grand(3), 8); } if (player.swbeam[i] > 0) { xa = player.swbeam_x1[i] / GRAIN; ya = player.swbeam_y1[i] / GRAIN - 4; TRANS_MODE xb = (player.swbeam[i] - 4) / 3; if (xb > -1) { rectfill (display, xa - xb, ya, xa + xb, 0, TRANS_YELLOW_IN); vline (display, xa - xb - 1, ya, 0, TRANS_YELLOW_OUT); vline (display, xa + xb + 1, ya, 0, TRANS_YELLOW_OUT); } else vline (display, xa, ya, 0, TRANS_YELLOW_OUT); xb = player.swbeam[i] - 1; if (xb > 1) { rectfill (display, xa - xb, ya, xa + xb, 0, TRANS_ORANGE_IN); vline (display, xa - xb - 1, ya, 0, TRANS_ORANGE_OUT); vline (display, xa + xb + 1, ya, 0, TRANS_ORANGE_OUT); } else vline (display, xa, ya, 0, TRANS_ORANGE_OUT); fcircle (xa, ya - 3, (xb * 2) + 5 + grand (5), TCOL_ORANGE); fcircle (xa, ya - 2 - grand (3), (xb * 2) + 3 + grand (3), TCOL_YELLOW); END_TRANS_MODE } } for (i = 0; i < 3; i++) { if (player.wgained[i] > 0) { xa = player.wx[i] / GRAIN; ya = player.wy[i] / GRAIN; xb = player.wgained[i] / 3; yb = 25 - player.wgained[i]; TRANS_MODE rectfill (display, 0, ya - xb, xa - yb, ya + xb, TRANS_ORANGE_IN); hline (display, 0, ya - xb - 1, xa - yb, TRANS_ORANGE_OUT); hline (display, 0, ya + xb + 1, xa - yb, TRANS_ORANGE_OUT); rectfill (display, xa + yb, ya - xb, 640, ya + xb, TRANS_ORANGE_IN); hline (display, xa + yb, ya - xb - 1, 640, TRANS_ORANGE_OUT); hline (display, xa + yb, ya + xb + 1, 640, TRANS_ORANGE_OUT); END_TRANS_MODE xb = 15 - player.wgained[i]; if (xb < 1) xb = 1; if (xb > 14) xb = 14; yb = RLE_lwbeamshock[xb].x; draw_trans_rle_sprite (display, RLE_lwbeamshock[xb].sprite, xa - yb, ya - yb - 3); } } #define SPIN_SPEED 16 if (player.grace > 0) { xa = player.x / GRAIN; ya = player.y / GRAIN; xb = player.grace / 3; if (xb > 5) xb = 5; yb = 25 + xpart (arena.counter * 64, 8); fcircle (xa + xpart (arena.counter * SPIN_SPEED, yb), ya + ypart (arena.counter * SPIN_SPEED, yb), xb, TCOL_ORANGE); fcircle (xa + xpart (arena.counter * SPIN_SPEED + ANGLE_4, yb), ya + ypart (arena.counter * SPIN_SPEED + ANGLE_4, yb), xb, TCOL_ORANGE); fcircle (xa + xpart (arena.counter * SPIN_SPEED - ANGLE_4, yb), ya + ypart (arena.counter * SPIN_SPEED - ANGLE_4, yb), xb, TCOL_ORANGE); fcircle (xa + xpart (arena.counter * SPIN_SPEED - ANGLE_2, yb), ya + ypart (arena.counter * SPIN_SPEED - ANGLE_2, yb), xb, TCOL_ORANGE); // yb = 25 + xpart(ANGLE_1 - ((arena.counter * 32) & 1023) + ANGLE_6, 13); yb = 25 - xpart (arena.counter * 64, 8); fcircle (xa + xpart (ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart (ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_YELLOW); fcircle (xa + xpart (ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart (ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_YELLOW); fcircle (xa + xpart (ANGLE_2 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart (ANGLE_2 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_YELLOW); fcircle (xa + xpart (-ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart (-ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_YELLOW); /* xb *= 15; xb /= 10; fcircle(xa + xpart(ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart(ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_ORANGE); fcircle(xa + xpart(ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart(ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_ORANGE); fcircle(xa + xpart(ANGLE_2 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart(ANGLE_2 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_ORANGE); fcircle(xa + xpart(- ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), ya + ypart(- ANGLE_4 + ANGLE_1 - ((arena.counter * SPIN_SPEED) & 1023), yb), xb, TCOL_ORANGE);*/ } } void draw_HUD (void) { int i, k, xa, ya; textprintf_right_ex (display, font, 635, 10, -1, -1, "%i", player.score); textprintf_right_ex (display, font, 635, 45, -1, -1, "%i%%", arena.phase_bonus); // textprintf_right_ex(display, font, 635, 80, -1, -1, "%i", arena.max_stage_score); // print_number(10, 180, damage_per_time); for (i = 0; i < player.lives; i++) { rectfill (display, 635 - i * 10 - 2, 30, 635 - i * 10 - 10, 38, COL_WHITE); rect (display, 635 - i * 10 - 2, 30, 635 - i * 10 - 10, 38, COL_OUTLINE); } for (i = 0; i < 3; i++) { xa = 2; ya = 15 * i + 1; rect (display, 2, ya, 58, ya + 14, COL_OUTLINE); rect (display, 3, ya + 1, 57, ya + 13, COL_LGREY); rect (display, 4, ya + 2, 56, ya + 12, COL_OUTLINE); TRANS_MODE if (player.rpixels[i] > 0) { if (player.rpixels[i] == 50) { rect (display, 5, ya + 3, 5 + player.rpixels[i], ya + 11, TRANS_YELLOW_OUT); rectfill (display, 6, ya + 4, 4 + player.rpixels[i], ya + 10, TRANS_YELLOW_IN); } else { rect (display, 5, ya + 3, 5 + player.rpixels[i], ya + 11, TRANS_ORANGE_OUT); rectfill (display, 6, ya + 4, 4 + player.rpixels[i], ya + 10, TRANS_ORANGE_IN); } } END_TRANS_MODE xa = 2; ya = 19 * i + 50; if (player.wlevel[i] < 9) { rect (display, 2, ya, 2 + player.wpixels2[i] + 6, ya + 12, COL_OUTLINE); rect (display, 3, ya + 1, 2 + player.wpixels2[i] + 5, ya + 11, COL_LGREY); rect (display, 4, ya + 2, 2 + player.wpixels2[i] + 4, ya + 10, COL_OUTLINE); TRANS_MODE if (player.wpixels[i] > 0) { rect (display, 5, ya + 3, 5 + player.wpixels[i] + 1, ya + 9, TRANS_ORANGE_OUT); rectfill (display, 6, ya + 4, 5 + player.wpixels[i] + 0, ya + 8, TRANS_ORANGE_IN); } END_TRANS_MODE } TRANS_MODE for (k = 0; k < player.wlevel[i]; k++) { rect (display, 4 + k * 5, ya + 13, 7 + k * 5, ya + 18, TRANS_YELLOW_OUT); rectfill (display, 5 + k * 5, ya + 14, 6 + k * 5, ya + 17, TRANS_YELLOW_IN); } END_TRANS_MODE } if (boss.fight) { int line_x = (boss.hp * 100) / boss.max_hp; if (line_x > boss.hp_bar_size) line_x = boss.hp_bar_size; TRANS_MODE // if (boss.hp > 0) if (line_x > 0) { rectfill (display, 320 - line_x + 1, 10, 320 + line_x - 1, 15, TRANS_YELLOW_IN); rect (display, 320 - line_x, 9, 320 + line_x, 16, TRANS_YELLOW_OUT); } END_TRANS_MODE line_x = boss.hp_bar_size; rect (display, 320 - 1 - line_x, 8, 320 + 1 + line_x, 17, COL_OUTLINE); rect (display, 320 - 2 - line_x, 7, 320 + 2 + line_x, 18, COL_WHITE); rect (display, 320 - 3 - line_x, 6, 320 + 3 + line_x, 19, COL_OUTLINE); } } void draw_enemies (void) { int e; for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; if (eclass[enemy[e].type].priority == 0) draw_an_enemy (e); } for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; if (eclass[enemy[e].type].priority == 1) draw_an_enemy (e); } for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; if (eclass[enemy[e].type].priority == 2) draw_an_enemy (e); } } void draw_an_enemy (int e) { int x = enemy[e].x / GRAIN; int y = enemy[e].y / GRAIN; int xa, ya, xb, yb; int angle; int i; switch (enemy[e].type) { case ENEMY_BOSS2: draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS2_CORE], x - 27, y - 14); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS2_IN_L], x - 85 - boss.out_sides, y - 47); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS2_IN_R], x + 16 + boss.out_sides, y - 47); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS2_OUT_L], x - 104 - boss.out_sides - boss.out_sides2, y - 2); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS2_OUT_R], x + 73 + boss.out_sides + boss.out_sides2, y - 2); circlefill (display, x - 53 - boss.out_sides, y + 40, 10, COL_COL4); circle (display, x - 53 - boss.out_sides, y + 40, 10, COL_OUTLINE); circlefill (display, x - 53 - boss.out_sides, y + 40, 7, COL_COL1); circle (display, x - 53 - boss.out_sides, y + 40, 7, COL_OUTLINE); circlefill (display, x - 53 - boss.out_sides + xpart (boss.t_angle[0], 5), y + 40 + ypart (boss.t_angle[0], 5), 2, COL_COL1); circle (display, x - 53 - boss.out_sides + xpart (boss.t_angle[0], 5), y + 40 + ypart (boss.t_angle[0], 5), 2, COL_OUTLINE); circlefill (display, x - 32 - boss.out_sides, y - 20, 10, COL_COL4); circle (display, x - 32 - boss.out_sides, y - 20, 10, COL_OUTLINE); circlefill (display, x - 32 - boss.out_sides, y - 20, 7, COL_COL1); circle (display, x - 32 - boss.out_sides, y - 20, 7, COL_OUTLINE); circlefill (display, x - 32 - boss.out_sides + xpart (boss.t_angle[3], 5), y - 20 + ypart (boss.t_angle[3], 5), 2, COL_COL1); circle (display, x - 32 - boss.out_sides + xpart (boss.t_angle[3], 5), y - 20 + ypart (boss.t_angle[3], 5), 2, COL_OUTLINE); circlefill (display, x + 53 + boss.out_sides, y + 40, 10, COL_COL4); circle (display, x + 53 + boss.out_sides, y + 40, 10, COL_OUTLINE); circlefill (display, x + 53 + boss.out_sides, y + 40, 7, COL_COL1); circle (display, x + 53 + boss.out_sides, y + 40, 7, COL_OUTLINE); circlefill (display, x + 53 + boss.out_sides + xpart (boss.t_angle[2], 5), y + 40 + ypart (boss.t_angle[2], 5), 2, COL_COL1); circle (display, x + 53 + boss.out_sides + xpart (boss.t_angle[2], 5), y + 40 + ypart (boss.t_angle[2], 5), 2, COL_OUTLINE); circlefill (display, x + 32 + boss.out_sides, y - 20, 10, COL_COL4); circle (display, x + 32 + boss.out_sides, y - 20, 10, COL_OUTLINE); circlefill (display, x + 32 + boss.out_sides, y - 20, 7, COL_COL1); circle (display, x + 32 + boss.out_sides, y - 20, 7, COL_OUTLINE); circlefill (display, x + 32 + boss.out_sides + xpart (boss.t_angle[1], 5), y - 20 + ypart (boss.t_angle[1], 5), 2, COL_COL1); circle (display, x + 32 + boss.out_sides + xpart (boss.t_angle[1], 5), y - 20 + ypart (boss.t_angle[1], 5), 2, COL_OUTLINE); break; case ENEMY_BOSS1: draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_CORE], x - 77, y - 47); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_OUT_L], x - 103 - boss.out_sides2, y - 32); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_OUT_R], x + 46 + boss.out_sides2, y - 32); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_UL], x - 101 - boss.out_sides2, y - 76 - boss.out_out_up); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_UR], x + boss.out_sides2, y - 76 - boss.out_out_up); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_DL], x - 101 - boss.out_sides2, y + 13 + boss.out_out_up); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_DR], x + boss.out_sides2, y + 13 + boss.out_out_up); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_U], x - 34, y - 47 - boss.out_up); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_D], x - 34, y + 17 + boss.out_up); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_L], x - 48 - boss.out_sides, y - 33); draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS1_R], x + 18 + boss.out_sides, y - 33); circlefill (display, x, y, 19, COL_COL1); circle (display, x, y, 19, COL_OUTLINE); circlefill (display, x - 71 - boss.out_sides2, y, 16, COL_COL1); circle (display, x - 71 - boss.out_sides2, y, 16, COL_OUTLINE); // circlefill(display, x - 71 - boss.out_sides2 + xpart(boss.angle2, 11), y + ypart(boss.angle2, 11), 3, COL_COL1); // circle(display, x - 71 - boss.out_sides2 + xpart(boss.angle2, 11), y + ypart(boss.angle2, 11), 3, COL_OUTLINE); circlefill (display, x - 71 - boss.out_sides2 + xpart (boss.t_angle[0], 11), y + ypart (boss.t_angle[0], 11), 3, COL_COL1); circle (display, x - 71 - boss.out_sides2 + xpart (boss.t_angle[0], 11), y + ypart (boss.t_angle[0], 11), 3, COL_OUTLINE); circlefill (display, x - 71 - boss.out_sides2 - xpart (boss.t_angle[0], 11), y - ypart (boss.t_angle[0], 11), 3, COL_COL1); circle (display, x - 71 - boss.out_sides2 - xpart (boss.t_angle[0], 11), y - ypart (boss.t_angle[0], 11), 3, COL_OUTLINE); circlefill (display, x + 71 + boss.out_sides2, y, 16, COL_COL1); circle (display, x + 71 + boss.out_sides2, y, 16, COL_OUTLINE); circlefill (display, x + 71 + boss.out_sides2 + xpart (boss.t_angle[1], 11), y + ypart (boss.t_angle[1], 11), 3, COL_COL1); circle (display, x + 71 + boss.out_sides2 + xpart (boss.t_angle[1], 11), y + ypart (boss.t_angle[1], 11), 3, COL_OUTLINE); circlefill (display, x + 71 + boss.out_sides2 - xpart (boss.t_angle[1], 11), y - ypart (boss.t_angle[1], 11), 3, COL_COL1); circle (display, x + 71 + boss.out_sides2 - xpart (boss.t_angle[1], 11), y - ypart (boss.t_angle[1], 11), 3, COL_OUTLINE); /* L_ENEMY_BOSS1_CORE, L_ENEMY_BOSS1_UL, L_ENEMY_BOSS1_UR, L_ENEMY_BOSS1_DL, L_ENEMY_BOSS1_DR, L_ENEMY_BOSS1_U, L_ENEMY_BOSS1_D, L_ENEMY_BOSS1_L, L_ENEMY_BOSS1_R, L_ENEMY_BOSS1_OUT_L, L_ENEMY_BOSS1_OUT_R,*/ break; case ENEMY_BEAMER: xa = 0; if (enemy[e].phase == 1) // opening { xa = (20 - enemy[e].target_time) / 5; } if (enemy[e].phase == 2) // shooting xa = 4; if (enemy[e].phase == 3) // closing { xa = (enemy[e].target_time) / 5; } draw_rle_sprite (display, eRLE_small1[S_ENEMY_BEAMER_CORE], x - 19, y - 18); draw_rle_sprite (display, eRLE_small1[S_ENEMY_BEAMER_L], x - 39 - xa, y - 14); draw_rle_sprite (display, eRLE_small1[S_ENEMY_BEAMER_R], x + 5 + xa, y - 14); draw_rle_sprite (display, eRLE_small1[S_ENEMY_BEAMER_U], x - 11, y - 26 - 4 + xa); draw_rle_sprite (display, eRLE_small1[S_ENEMY_BEAMER_D], x - 9, y + 14 + 4 - xa); circlefill (display, x, y, 11, COL_COL3); circle (display, x, y, 11, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 10), y + ypart (enemy[e].angle1, 10), 3, COL_COL3); circle (display, x + xpart (enemy[e].angle1, 10), y + ypart (enemy[e].angle1, 10), 3, COL_OUTLINE); break; case ENEMY_SHOOTER: xa = 0; if (enemy[e].phase == 1) // opening { xa = (20 - enemy[e].target_time) / 5; } if (enemy[e].phase == 2) // shooting xa = 4; if (enemy[e].phase == 3) // closing { xa = (enemy[e].target_time) / 5; } draw_rle_sprite (display, eRLE_small1[S_ENEMY_BEAMER_CORE], x - 19, y - 18); draw_rle_sprite (display, eRLE_small1[S_ENEMY_SHOOTER_L], x - 39 - xa, y - 14); draw_rle_sprite (display, eRLE_small1[S_ENEMY_SHOOTER_R], x + 5 + xa, y - 14); draw_rle_sprite (display, eRLE_small1[S_ENEMY_SHOOTER_U], x - 11, y - 26 - 4 + xa); draw_rle_sprite (display, eRLE_small1[S_ENEMY_BEAMER_D], x - 9, y + 14 + 4 - xa); circlefill (display, x, y, 11, COL_COL3); circle (display, x, y, 11, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 10), y + ypart (enemy[e].angle1, 10), 3, COL_COL3); circle (display, x + xpart (enemy[e].angle1, 10), y + ypart (enemy[e].angle1, 10), 3, COL_OUTLINE); break; case ENEMY_DRIFTER1: xa = enemy[e].status / 4; draw_rle_sprite (display, eRLE_small1[S_ENEMY_DRIFTER1_CORE], x - 19, y - 15); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DRIFTER1_L], x - 25 - xa, y - 2 + xa); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DRIFTER1_R], x + 6 + xa, y - 2 + xa); break; case ENEMY_DRIFTER2: xa = enemy[e].status / 4; draw_rle_sprite (display, eRLE_small1[S_ENEMY_DRIFTER2_CORE], x - 19, y - 15); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DRIFTER2_L], x - 25 - xa, y - 2 + xa); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DRIFTER2_R], x + 10 + xa, y - 2 + xa); break; case ENEMY_ESCORT: xa = enemy[e].status / 4; draw_rle_sprite (display, eRLE_small1[S_ENEMY_ESCORT_CORE], x - 20, y - 14); draw_rle_sprite (display, eRLE_small1[S_ENEMY_ESCORT_L], x - 22 - xa, y - 14); draw_rle_sprite (display, eRLE_small1[S_ENEMY_ESCORT_R], x + 7 + xa, y - 14); break; case ENEMY_RISER: xa = 0; if (enemy[e].phase == 1) // opening xa = (eclass[ENEMY_RISER].speed3 - enemy[e].target_time) / 5; if (enemy[e].phase == 2) // shooting xa = 4; if (enemy[e].phase == 3) // closing xa = enemy[e].target_time / 5; xa -= enemy[e].status / 8; if (xa < 0) xa = 0; // xa = enemy[e].status / 4; draw_rle_sprite (display, eRLE_small1[S_ENEMY_RISER1_L], x - 18 - xa, y - 8); draw_rle_sprite (display, eRLE_small1[S_ENEMY_RISER1_R], x + 8 + xa, y - 8); draw_rle_sprite (display, eRLE_small1[S_ENEMY_RISER1_CORE], x - 13, y - 8); break; case ENEMY_SMALL2: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_SMALL_CORE2], x - 7, y - 9); draw_rle_sprite (display, eRLE_small1[S_ENEMY_SMALL_OUTER_L], x - 14 - xa, y - 16); draw_rle_sprite (display, eRLE_small1[S_ENEMY_SMALL_OUTER_R], x - 0 + xa, y - 16); for (i = 0; i < 3; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; if (i == 1 || i == 2) { xb = petal2[ya].x - xpart (enemy[e].petal_angle[i], 32); yb = petal2[ya].y - ypart (enemy[e].petal_angle[i], 32); draw_trans_rle_sprite (display, petal2[ya].sprite, x - xb, y - yb); } else { xb = petal1[ya].x - xpart (enemy[e].petal_angle[i], 36); yb = petal1[ya].y - ypart (enemy[e].petal_angle[i], 36); draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb); } } break; case ENEMY_SMALL: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_SMALL_CORE1], x - 7, y - 9); draw_rle_sprite (display, eRLE_small1[S_ENEMY_SMALL_OUTER_L], x - 14 - xa, y - 16); draw_rle_sprite (display, eRLE_small1[S_ENEMY_SMALL_OUTER_R], x - 0 + xa, y - 16); // circle(display, x, y, 3, COL_WHITE); for (i = 0; i < 3; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x - xpart (enemy[e].petal_angle[i], 36); yb = petal1[ya].y - ypart (enemy[e].petal_angle[i], 36); draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb); // circle(display, x + xb, y + yb, 3, COL_WHITE); } break; case ENEMY_LARGER: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_LARGER_CORE1], x - 10, y - 10); draw_rle_sprite (display, eRLE_small1[S_ENEMY_LARGER_OUTER_L], x - 17 - xa, y - 23); draw_rle_sprite (display, eRLE_small1[S_ENEMY_LARGER_OUTER_R], x - 0 + xa, y - 23); for (i = 0; i < 4; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x - xpart (enemy[e].petal_angle[i], 43); yb = petal1[ya].y - ypart (enemy[e].petal_angle[i], 43); draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb); // circle(display, x + xb, y + yb, 3, COL_WHITE); } // circle(display, x, y, 1, COL_OUTLINE); /* for (i = 0; i < 3; i ++) { ya = enemy[e].petal_angle [i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1 [ya].x - xpart(enemy[e].petal_angle [i], 36); yb = petal1 [ya].y - ypart(enemy[e].petal_angle [i], 36); draw_trans_rle_sprite(display, petal1 [ya].sprite, x - xb, y - yb); // circle(display, x + xb, y + yb, 3, COL_WHITE); }*/ // pline(display, x, y, enemy[e].x_target [0] / 1000, enemy[e].y_target [0] / 1000, COL_WHITE); // pline(display, enemy[e].x_target [0] / 1000, enemy[e].y_target [0] / 1000, enemy[e].x_target [1] / 1000, enemy[e].y_target [1] / 1000, COL_COL1); break; case ENEMY_LARGER2: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_LARGER_CORE2], x - 10, y - 10); draw_rle_sprite (display, eRLE_small1[S_ENEMY_LARGER_OUTER_L], x - 17 - xa, y - 23); draw_rle_sprite (display, eRLE_small1[S_ENEMY_LARGER_OUTER_R], x - 0 + xa, y - 23); for (i = 0; i < 3; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x - xpart (enemy[e].petal_angle[i], 41); yb = petal1[ya].y - ypart (enemy[e].petal_angle[i], 41); draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb); } for (i = 3; i < 6; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal2[ya].x - xpart (enemy[e].petal_angle[i], 35); yb = petal2[ya].y - ypart (enemy[e].petal_angle[i], 35); draw_trans_rle_sprite (display, petal2[ya].sprite, x - xb, y - yb); } break; case ENEMY_WINGS: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_WINGS_CORE1], x - 11, y - 20); draw_rle_sprite (display, eRLE_small1[S_ENEMY_WINGS_OUTER_L], x - 21 - xa, y - 26); draw_rle_sprite (display, eRLE_small1[S_ENEMY_WINGS_OUTER_R], x - 0 + xa, y - 26); for (i = 0; i < 2; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal3[ya].x - xpart (enemy[e].petal_angle[i], 55); yb = petal3[ya].y - ypart (enemy[e].petal_angle[i], 55) + 10; draw_trans_rle_sprite (display, petal3[ya].sprite, x - xb, y - yb); } for (i = 2; i < 4; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x - xpart (enemy[e].petal_angle[i], 42); yb = petal1[ya].y - ypart (enemy[e].petal_angle[i], 42); // + 10; draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb); } for (i = 4; i < 6; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal2[ya].x - xpart (enemy[e].petal_angle[i], 35); yb = petal2[ya].y - ypart (enemy[e].petal_angle[i], 35); // + 10; draw_trans_rle_sprite (display, petal2[ya].sprite, x - xb, y - yb); } break; case ENEMY_WINGS2: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_WINGS_CORE2], x - 11, y - 20); draw_rle_sprite (display, eRLE_small1[S_ENEMY_WINGS_OUTER_L], x - 21 - xa, y - 26); draw_rle_sprite (display, eRLE_small1[S_ENEMY_WINGS_OUTER_R], x - 0 + xa, y - 26); for (i = 0; i < 6; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x - xpart (enemy[e].petal_angle[i], 50); yb = petal1[ya].y - ypart (enemy[e].petal_angle[i], 50) + 10; draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb); } ya = ANGLE_4 / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal2[ya].x - xpart (ANGLE_4, 42); yb = petal2[ya].y - ypart (ANGLE_4, 42); // + 10; draw_trans_rle_sprite (display, petal2[ya].sprite, x - xb, y - yb); break; case ENEMY_MEGA: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_MEGA_CORE], x - 21, y - 35); draw_rle_sprite (display, eRLE_small1[S_ENEMY_MEGA_OUTER_L], x - 38 - xa, y - 44); draw_rle_sprite (display, eRLE_small1[S_ENEMY_MEGA_OUTER_R], x - 0 + xa, y - 44); for (i = 0; i < 4; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal3[ya].x - xpart (enemy[e].petal_angle[i], 75); yb = petal3[ya].y - ypart (enemy[e].petal_angle[i], 75); draw_trans_rle_sprite (display, petal3[ya].sprite, x - xb, y - yb - 6); } for (i = 4; i < 7; i++) { ya = enemy[e].petal_angle[i] / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x - xpart (enemy[e].petal_angle[i], 65); yb = petal1[ya].y - ypart (enemy[e].petal_angle[i], 65); draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb - 6); } break; case ENEMY_BOSS3: xa = enemy[e].pulse1; draw_rle_sprite (display, eRLE_small1[S_ENEMY_BOSS3_CORE], x - 21, y - 35); draw_rle_sprite (display, eRLE_small1[S_ENEMY_MEGA_OUTER_L], x - 38 - xa, y - 44); draw_rle_sprite (display, eRLE_small1[S_ENEMY_MEGA_OUTER_R], x - 0 + xa, y - 44); for (i = 0; i < 9; i++) { xa = boss.petal_angle[0] + (ANGLE_1 / 9) * i; xa &= 1023; ya = xa / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal2[ya].x - xpart (xa, boss.petal_out[0]); yb = petal2[ya].y - ypart (xa, boss.petal_out[0]); draw_trans_rle_sprite (display, petal2[ya].sprite, x - xb, y - yb - 6); } for (i = 0; i < 7; i++) { xa = boss.petal_angle[1] + (ANGLE_1 / 7) * i; xa &= 1023; ya = xa / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x - xpart (xa, boss.petal_out[1]); yb = petal1[ya].y - ypart (xa, boss.petal_out[1]); draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb - 6); } for (i = 0; i < 5; i++) { xa = boss.petal_angle[2] + (ANGLE_1 / 5) * i; xa &= 1023; ya = xa / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal3[ya].x - xpart (xa, boss.petal_out[2]); yb = petal3[ya].y - ypart (xa, boss.petal_out[2]); draw_trans_rle_sprite (display, petal3[ya].sprite, x - xb, y - yb - 6); } break; case ENEMY_CRUISER1: draw_rle_sprite (display, eRLE_large1[L_ENEMY_CRUISER1], x - 49, y - 62); circlefill (display, x, y, 14, COL_COL4); circle (display, x, y, 14, COL_OUTLINE); circlefill (display, x, y, 11, COL_COL3); circle (display, x, y, 11, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle, 10), y + ypart (enemy[e].angle, 10), 3, COL_COL3); circle (display, x + xpart (enemy[e].angle, 10), y + ypart (enemy[e].angle, 10), 3, COL_OUTLINE); circlefill (display, x, y - 41, 10, COL_COL4); circle (display, x, y - 41, 10, COL_OUTLINE); circlefill (display, x, y - 41, 7, COL_COL3); circle (display, x, y - 41, 7, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 6), y - 41 + ypart (enemy[e].angle1, 6), 2, COL_COL3); circle (display, x + xpart (enemy[e].angle1, 6), y - 41 + ypart (enemy[e].angle1, 6), 2, COL_OUTLINE); break; case ENEMY_CRUISER2: draw_rle_sprite (display, eRLE_large1[L_ENEMY_CRUISER2], x - 55, y - 24); circlefill (display, x, y, 11, COL_COL4); circle (display, x, y, 11, COL_OUTLINE); circlefill (display, x, y, 9, COL_COL3); circle (display, x, y, 9, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 8), y + ypart (enemy[e].angle1, 8), 3, COL_COL3); circle (display, x + xpart (enemy[e].angle1, 8), y + ypart (enemy[e].angle1, 8), 3, COL_OUTLINE); break; case ENEMY_CRUISER3: draw_rle_sprite (display, eRLE_large1[L_ENEMY_CRUISER3], x - 59, y - 60); circlefill (display, x, y, 23, COL_COL4); circle (display, x, y, 23, COL_OUTLINE); circlefill (display, x, y, 20, COL_COL3); circle (display, x, y, 20, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 19), y + ypart (enemy[e].angle1, 19), 4, COL_COL3); circle (display, x + xpart (enemy[e].angle1, 19), y + ypart (enemy[e].angle1, 19), 4, COL_OUTLINE); break; case ENEMY_CRUISER4: draw_rle_sprite (display, eRLE_large1[L_ENEMY_CRUISER4], x - 47, y - 54); circlefill (display, x, y, 18, COL_COL3); circle (display, x, y, 18, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 17), y + ypart (enemy[e].angle1, 17), 4, COL_COL3); circle (display, x + xpart (enemy[e].angle1, 17), y + ypart (enemy[e].angle1, 17), 4, COL_OUTLINE); break; case ENEMY_POD1: draw_rle_sprite (display, eRLE_large1[L_ENEMY_POD1_CORE], x - 32, y - 58); if (enemy[e].phase == 0 || enemy[e].phase == 4) draw_pod1 (x, y, 0, 0, e); if (enemy[e].phase == 1) // opening draw_pod1 (x, y, (100 - enemy[e].target_time) / 3, (100 - enemy[e].target_time) / 2, e); if (enemy[e].phase == 2) // shooting draw_pod1 (x, y, (100) / 3, (100) / 2, e); if (enemy[e].phase == 3) // closing draw_pod1 (x, y, enemy[e].target_time / 3, enemy[e].target_time / 2, e); circlefill (display, x, y, 21, COL_COL3); circle (display, x, y, 21, COL_OUTLINE); // circlefill(display, x + xpart(enemy[e].angle1, 18), y + ypart(enemy[e].angle1, 18), 3, COL_COL3); // circle(display, x + xpart(enemy[e].angle1, 18), y + ypart(enemy[e].angle1, 18), 3, COL_OUTLINE); circlefill (display, x - xpart (enemy[e].angle1, 18), y - ypart (enemy[e].angle1, 18), 3, COL_COL3); circle (display, x - xpart (enemy[e].angle1, 18), y - ypart (enemy[e].angle1, 18), 3, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1 + ANGLE_4 - ANGLE_16, 18), y + ypart (enemy[e].angle1 + ANGLE_4 - ANGLE_16, 18), 2, COL_COL3); circle (display, x + xpart (enemy[e].angle1 + ANGLE_4 - ANGLE_16, 18), y + ypart (enemy[e].angle1 + ANGLE_4 - ANGLE_16, 18), 2, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1 - ANGLE_4 + ANGLE_16, 18), y + ypart (enemy[e].angle1 - ANGLE_4 + ANGLE_16, 18), 2, COL_COL3); circle (display, x + xpart (enemy[e].angle1 - ANGLE_4 + ANGLE_16, 18), y + ypart (enemy[e].angle1 - ANGLE_4 + ANGLE_16, 18), 2, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1 + ANGLE_4 + ANGLE_8, 18), y + ypart (enemy[e].angle1 + ANGLE_4 + ANGLE_8, 18), 2, COL_COL3); circle (display, x + xpart (enemy[e].angle1 + ANGLE_4 + ANGLE_8, 18), y + ypart (enemy[e].angle1 + ANGLE_4 + ANGLE_8, 18), 2, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1 - ANGLE_4 - ANGLE_8, 18), y + ypart (enemy[e].angle1 - ANGLE_4 - ANGLE_8, 18), 2, COL_COL3); circle (display, x + xpart (enemy[e].angle1 - ANGLE_4 - ANGLE_8, 18), y + ypart (enemy[e].angle1 - ANGLE_4 - ANGLE_8, 18), 2, COL_OUTLINE); break; case ENEMY_HOOK: xa = 2 - enemy[e].pulse1; if (xa < 0) xa = 0; draw_rle_sprite (display, eRLE_small1[S_ENEMY_HOOK1 + xa], x - 16, y - 17); // pline(display, x, y, enemy[e].x_target [0] / 1000, enemy[e].y_target [0] / 1000, COL_WHITE); // pline(display, enemy[e].x_target [0] / 1000, enemy[e].y_target [0] / 1000, enemy[e].x_target [1] / 1000, enemy[e].y_target [1] / 1000, COL_COL1); break; case ENEMY_HOOK2: xa = 2 - enemy[e].pulse1; if (xa < 0) xa = 0; draw_rle_sprite (display, eRLE_small1[S_ENEMY_HOOK2_1 + xa], x - 17, y - 17); break; case ENEMY_DROPPER: xa = enemy[e].pulse1; if (xa > 2) xa = 2; draw_rle_sprite (display, eRLE_small1[S_ENEMY_DROPPER3 - xa], x - 14, y - 23 + xa); break; case ENEMY_HUNTER: xa = 2 - enemy[e].pulse1; if (xa < 0) xa = 0; draw_rle_sprite (display, eRLE_small1[S_ENEMY_HUNTER1 + xa], x - 28, y - 27 + xa); break; case ENEMY_RING: xa = 2 - enemy[e].pulse1; if (xa < 0) xa = 0; draw_rle_sprite (display, eRLE_small1[S_ENEMY_RING1 + xa], x - 24 - xa, y - 24 - xa); break; case ENEMY_BOSS4: draw_rle_sprite (display, eRLE_large1[L_ENEMY_BOSS4], x - 114, y - 100); break; case ENEMY_SWOOPER1: /* eRLE_small1 [S_ENEMY_SWOOPER1_1] circlefill(display, x, y, 12, COL_COL2); circle(display, x, y, 12, COL_OUTLINE);*/ /* xa = ;//;(arena.counter / 4) % 8; if (xa > 3) xa = 7 - xa;*/ xa = 3 - enemy[e].pulse1; switch (xa) { case 3: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER1_1], x - 15, y - 17); break; case 2: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER1_2], x - 16, y - 17); break; case 1: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER1_3], x - 17, y - 17); break; case 0: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER1_4], x - 18, y - 18); break; } // print_number(x, y + 20, enemy[e].pulse1); // print_number(x, y + 30, enemy[e].pulse2); // pline(display, x, y, enemy[e].x_target [0] / 1000, enemy[e].y_target [0] / 1000, COL_WHITE); // pline(display, x, y, enemy[e].x_target [1] / 1000, enemy[e].y_target [1] / 1000, COL_COL1); // textprintf_ex(display, font, x, y - 30, COL_WHITE, -1, "%i", enemy[e].target); // textprintf_ex(display, font, x, y - 40, COL_WHITE, -1, "%i", enemy[e].angle1); break; case ENEMY_SWOOPER2: xa = 3 - enemy[e].pulse1; switch (xa) { case 3: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER2_1], x - 20, y - 20); break; case 2: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER2_2], x - 21, y - 20); break; case 1: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER2_3], x - 22, y - 20); break; case 0: draw_rle_sprite (display, eRLE_small1[S_ENEMY_SWOOPER2_4], x - 23, y - 20); break; } break; case ENEMY_DIVER1: draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_CENTRE], x - 17, y - 29); if (enemy[e].phase == 0) { draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_INNER_L], x - 18, y - 29); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_OUTER_L], x - 26, y - 23); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_INNER_R], x + 9, y - 29); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_OUTER_R], x + 18, y - 23); break; } if (enemy[e].phase == 5) { draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_INNER_L], x - 18, y - 29); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_OUTER_L], x - 26, y - 23 + 18); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_INNER_R], x + 9, y - 29); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_OUTER_R], x + 18, y - 23 + 18); break; } if (enemy[e].phase == 1) draw_diver1 (x, y, 4 - (enemy[e].target_time / 5), 0); if (enemy[e].phase == 2) draw_diver1 (x, y, 4, 19 - (enemy[e].target_time / 3)); if (enemy[e].phase == 3) draw_diver1 (x, y, enemy[e].target_time / 5, 18); break; case ENEMY_DARTER1: draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER1_CENTRE], x - 13, y - 18); circlefill (display, x, y - 1, 10, COL_DGREY); circle (display, x, y - 1, 10, COL_OUTLINE); circlefill (display, x, y, 7, COL_COL1); circle (display, x, y, 7, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 5), y + ypart (enemy[e].angle1, 5), 2, COL_COL1); circle (display, x + xpart (enemy[e].angle1, 5), y + ypart (enemy[e].angle1, 5), 2, COL_OUTLINE); if (enemy[e].phase == 0 || enemy[e].phase == 4 || enemy[e].phase == 5) draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER1_MAIN], x - 24, y - 19); // textprintf_ex(display, font, x, y, COL_COL1, COL_COL4, "%i ", enemy[e].x); // pline(display, x, y, enemy[e].x_target [0] / 1000, enemy[e].y_target [0] / 1000, COL_WHITE); if (enemy[e].phase == 1) draw_darter1 (x, y, 5 - (enemy[e].target_time / 6), 15 - (enemy[e].target_time / 2)); if (enemy[e].phase == 2) draw_darter1 (x, y, 5, 15); if (enemy[e].phase == 3) draw_darter1 (x, y, (enemy[e].target_time / 6), (enemy[e].target_time / 2)); /* draw_rle_sprite(display, eRLE_small1 [S_ENEMY_DARTER1_CENTRE], x - 13, y - 10); xa = 5 - (enemy[e].target_time / 6); ya = 10 - (enemy[e].target_time / 3); draw_rle_sprite(display, eRLE_small1 [S_ENEMY_DARTER1_TOP], x - 13, y - 19 - xa); draw_rle_sprite(display, eRLE_small1 [S_ENEMY_DARTER1_INNER_L], x - 16 - xa, y - 9); draw_rle_sprite(display, eRLE_small1 [S_ENEMY_DARTER1_OUTER_L], x - 24 - xa, y - 6 - ya); draw_rle_sprite(display, eRLE_small1 [S_ENEMY_DARTER1_INNER_R], x + 3 + xa, y - 9); draw_rle_sprite(display, eRLE_small1 [S_ENEMY_DARTER1_OUTER_R], x + 16 + xa, y - 6 - ya); */ break; case ENEMY_WALKER: xa = 2 - enemy[e].pulse1; if (xa < 0) xa = 0; draw_rle_sprite (display, eRLE_large1[L_ENEMY_WALKER1 + xa], x - 76, y - 70); break; case ENEMY_SPINNER: xa = 2 - enemy[e].pulse1; if (xa < 0) xa = 0; draw_rle_sprite (display, eRLE_large1[L_ENEMY_SPINNER1 + xa], x - 52, y - 86 + xa); break; case ENEMY_DARTER2: draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER2_CORE], x - 12, y - 12); circlefill (display, x, y, 6, COL_COL1); circle (display, x, y, 6, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 5), y + ypart (enemy[e].angle1, 5), 2, COL_COL1); circle (display, x + xpart (enemy[e].angle1, 5), y + ypart (enemy[e].angle1, 5), 2, COL_OUTLINE); if (enemy[e].phase == 0 || enemy[e].phase == 4 || enemy[e].phase == 5) draw_darter2 (x, y, 0, 0); if (enemy[e].phase == 1) draw_darter2 (x, y, 5 - (enemy[e].target_time / 6), 15 - (enemy[e].target_time / 2)); if (enemy[e].phase == 2) draw_darter2 (x, y, 5, 15); if (enemy[e].phase == 3) draw_darter2 (x, y, (enemy[e].target_time / 6), (enemy[e].target_time / 2)); break; case ENEMY_CARRIER1_PART: draw_rle_sprite (display, eRLE_small1[S_ENEMY_C1P1_CORE], x - 12, y - 10); circlefill (display, x, y, 5, COL_COL1); circle (display, x, y, 5, COL_OUTLINE); circlefill (display, x + xpart (enemy[e].angle1, 4), y + ypart (enemy[e].angle1, 4), 1, COL_COL1); circle (display, x + xpart (enemy[e].angle1, 4), y + ypart (enemy[e].angle1, 4), 1, COL_OUTLINE); if (enemy[e].phase == 0 || enemy[e].phase == 4 || enemy[e].phase == 5) draw_carrier1_part (x, y, 0, 0); xa = enemy[e].pulse1 / 3; ya = enemy[e].pulse1 / 2; if (enemy[e].phase == 1) draw_carrier1_part (x, y, 3 - (enemy[e].target_time / 10) + xa, 6 - (enemy[e].target_time / 5) + ya); if (enemy[e].phase == 2) draw_carrier1_part (x, y, 3 + xa, 6 + ya); if (enemy[e].phase == 3) draw_carrier1_part (x, y, enemy[e].target_time / 10 + xa, enemy[e].target_time / 5 + ya); break; case ENEMY_CARRIER1: // circle(display, x, y, 5, COL_WHITE); // draw_rle_sprite(display, eRLE_large1 [L_ENEMY_CARRIER1_CORE], x - 68, y - 85); draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_CORE], x - 69, y - 85); if (enemy[e].phase == 0 || enemy[e].phase == 4) draw_carrier1 (x, y, 0); if (enemy[e].phase == 1) // opening draw_carrier1 (x, y, (eclass[ENEMY_CARRIER1].speed3 - enemy[e].target_time) / 3); if (enemy[e].phase == 2) // shooting draw_carrier1 (x, y, (eclass[ENEMY_CARRIER1].speed3) / 3); if (enemy[e].phase == 3) // closing draw_carrier1 (x, y, enemy[e].target_time / 3); circlefill (display, x, y, 21, COL_COL1); circle (display, x, y, 21, COL_OUTLINE); angle = enemy[e].angle1; circlefill (display, x + xpart (angle, 22), y + ypart (angle, 22), 4, COL_COL1); circle (display, x + xpart (angle, 22), y + ypart (angle, 22), 4, COL_OUTLINE); angle += ANGLE_3; circlefill (display, x + xpart (angle, 22), y + ypart (angle, 22), 4, COL_COL1); circle (display, x + xpart (angle, 22), y + ypart (angle, 22), 4, COL_OUTLINE); angle += ANGLE_3 + 8; circlefill (display, x + xpart (angle, 22), y + ypart (angle, 22), 4, COL_COL1); circle (display, x + xpart (angle, 22), y + ypart (angle, 22), 4, COL_OUTLINE); /* circlefill(display, x + 55, y - 1, 12, COL_COL1); circle(display, x + 55, y - 1, 12, COL_OUTLINE); circlefill(display, x - 55, y - 1, 12, COL_COL1); circle(display, x - 55, y - 1, 12, COL_OUTLINE);*/ break; case ENEMY_STOPPER1: // draw_rle_sprite(display, eRLE_large1 [L_ENEMY_STOPPER1], x - 46, y - 101); draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_CENTRE], x - 45, y - 49); if (enemy[e].phase == 0 || enemy[e].phase == 4) draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1], x - 46, y - 101); if (enemy[e].phase == 1) draw_stopper1 (x, y, 5 - (enemy[e].target_time / 12), 5 - (enemy[e].target_time / 12), 5 - (enemy[e].target_time / 12), 10 - (enemy[e].target_time / 6), 0, 5 - (enemy[e].target_time / 12), 10 - (enemy[e].target_time / 6)); if (enemy[e].phase == 2) draw_stopper1 (x, y, 5, 5, 5, 10, 0, 5, 10); if (enemy[e].phase == 3) draw_stopper1 (x, y, (enemy[e].target_time / 12), (enemy[e].target_time / 12), (enemy[e].target_time / 12), (enemy[e].target_time / 6), 0, (enemy[e].target_time / 12), (enemy[e].target_time / 6)); break; } // print_number(x, y + 40, enemy[e].hp); /* rect(display, x - eclass[enemy[e].type].xsize / 1000 + eclass[enemy[e].type].xoffset / 1000, y - eclass[enemy[e].type].ysize / 1000 + eclass[enemy[e].type].yoffset / 1000, x + eclass[enemy[e].type].xsize / 1000 + eclass[enemy[e].type].xoffset / 1000, y + eclass[enemy[e].type].ysize / 1000 + eclass[enemy[e].type].yoffset / 1000, COL_WHITE); */ } void draw_pod1 (int x, int y, int out, int up_out, int e) { int out1 = out; if (out1 > 3) out1 = 3; draw_rle_sprite (display, eRLE_large1[L_ENEMY_POD1_BODYL], x - 55 - out1 - enemy[e].pulse1, y - 53); draw_rle_sprite (display, eRLE_large1[L_ENEMY_POD1_BODYR], x + 3 + out1 + enemy[e].pulse1, y - 53); out1 = out - 25; if (out1 < 0) out1 = 0; if (up_out > 45) up_out = 45; draw_rle_sprite (display, eRLE_large1[L_ENEMY_POD1_TOPL], x - 20 - out1 + enemy[e].pulse1 / 2, y - 55 - up_out); draw_rle_sprite (display, eRLE_large1[L_ENEMY_POD1_TOPR], x - 1 + out1 - enemy[e].pulse1 / 2, y - 55 - up_out); out *= 0.7; draw_rle_sprite (display, eRLE_large1[L_ENEMY_POD1_TOPC], x - 9, y - 56 - out); } void draw_stopper1 (int x, int y, int front_down, int fx, int fy, int mx, int my, int bx, int by) { draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_FRONT], x - 21, y + 25 + front_down); draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_F_L], x - 40 - fx, y + 8 + fy); draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_M_L], x - 46 - mx, y - 75 + my); draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_B_L], x - 21 - bx, y - 102 - by); draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_F_R], x + 15 + fx, y + 8 + fy); draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_M_R], x + 15 + mx, y - 75 + my); draw_rle_sprite (display, eRLE_large1[L_ENEMY_STOPPER1_B_R], x + 0 + bx, y - 102 - by); } void draw_carrier1 (int x, int y, int out) { int save_out = out; draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_TOP1], x - 32, y - 85 - out); out *= (float) 0.8; draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_TOP2], x - 52, y - 74 - out); out *= (float) 0.5; draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_TOP3], x - 64, y - 54 - out); out = save_out; draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_BOTTOM2], x - 46, y + 37 + out); out *= (float) 0.8; draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_BOTTOM1], x - 62, y + 12 + out); out = save_out; int out2 = out / 3; draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_MIDL1], x - 68 - out, y - 31 - out2); draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_MIDL2], x - 68 - out, y - 1 + out2); draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_MIDR1], x + 18 + out, y - 31 - out2); draw_rle_sprite (display, eRLE_large1[L_ENEMY_CARRIER1_MIDR2], x + 20 + out, y - 1 + out2); } void draw_carrier1_part (int x, int y, int out, int out2) { // if (out < 3) if (out2 > 5) { rectfill (display, x - 1, y + 15, x + 2, y + 13 + out2, COL_LGREY); vline (display, x - 2, y + 13, y + 13 + out2, COL_OUTLINE); vline (display, x + 2, y + 13, y + 13 + out2, COL_OUTLINE); } draw_rle_sprite (display, eRLE_small1[S_ENEMY_C1P1_TOP], x - 8, y - 10 - out); draw_rle_sprite (display, eRLE_small1[S_ENEMY_C1P1_BOTTOM1], x - 11, y + 5 + out); draw_rle_sprite (display, eRLE_small1[S_ENEMY_C1P1_BOTTOM2], x - 8, y + 10 + out2); draw_rle_sprite (display, eRLE_small1[S_ENEMY_C1P1_MIDL], x - 12 - out2, y - 6); draw_rle_sprite (display, eRLE_small1[S_ENEMY_C1P1_MIDR], x + out2, y - 6); } void draw_darter1 (int x, int y, int xa, int ya) { draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER1_TOP], x - 13, y - 19 - xa); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER1_INNER_L], x - 16 - xa, y - 9); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER1_OUTER_L], x - 24 - xa, y - 6 - ya); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER1_INNER_R], x + 3 + xa, y - 9); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER1_OUTER_R], x + 16 + xa, y - 6 - ya); } void draw_darter2 (int x, int y, int out2, int out1) { draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER2_TOP], x - 6, y - 23 - out2); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER2_BOTTOM], x - 6, y + 3 + out2); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER2_OUTER_L], x - 33 - out2, y - 19 + out1); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER2_INNER_L], x - 18 - out2, y - 19 - out1); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER2_OUTER_R], x + 18 + out2, y - 19 + out1); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DARTER2_INNER_R], x + 6 + out2, y - 19 - out1); } void draw_diver1 (int x, int y, int xa, int ya) { draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_INNER_L], x - 18 - xa, y - 29); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_OUTER_L], x - 26 - xa, y - 23 + ya); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_INNER_R], x + 9 + xa, y - 29); draw_rle_sprite (display, eRLE_small1[S_ENEMY_DIVER1_OUTER_R], x + 18 + xa, y - 23 + ya); } void draw_ebullets (void) { int b; for (b = 0; b < NO_EBULLETS; b++) { if (ebullet[b].type == EBULLET_NONE) continue; draw_an_ebullet (b); } } void draw_an_ebullet (int b) { int x = ebullet[b].x / GRAIN; int y = ebullet[b].y / GRAIN; int xb, yb, xa, ya, xc, yc, xd, yd, xe, ye, i; switch (ebullet[b].type) { case EBULLET_SPIN: TRANS_MODE circle (display, x, y, ebullet[b].status, ebullet[b].cord_colour); END_TRANS_MODE xa = ANGLE_1 / ebullet[b].y_speed; ya = ebullet[b].angle; for (i = 0; i < ebullet[b].y_speed; i++) { fcircle (x + xpart (ya, ebullet[b].status), y + ypart (ya, ebullet[b].status), ebullet[b].x_speed, ebullet[b].colour); fcircle (x + xpart (ya, ebullet[b].status), y + ypart (ya, ebullet[b].status), ebullet[b].x_speed + 4, ebullet[b].accel); fcircle (x + xpart (ya + ANGLE_32, ebullet[b].status), y + ypart (ya + ANGLE_32, ebullet[b].status), ebullet[b].x_speed / 2, ebullet[b].accel); fcircle (x + xpart (ya - ANGLE_32, ebullet[b].status), y + ypart (ya - ANGLE_32, ebullet[b].status), ebullet[b].x_speed / 2, ebullet[b].accel); ya += xa; } break; case EBULLET_BEAM2: xd = ebullet[b].status * 45; xc = ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS); xa = 0; //ebullet[b].angle2; if (ebullet[b].angle2 > 100) { ya = 120 - ebullet[b].angle2; fcircle (ebullet[b].x_speed / GRAIN, ebullet[b].y_speed / GRAIN, ya + grand (4), TCOL_B5); fcircle (ebullet[b].x_speed / GRAIN - xpart (xc, 25), ebullet[b].y_speed / GRAIN - ypart (xc, 25), ya / 2 + grand (10), TCOL_B5); fcircle (ebullet[b].x_speed / GRAIN - xpart (xc, 35), ebullet[b].y_speed / GRAIN - ypart (xc, 35), ya / 3 + grand (4), TCOL_B5); break; } fcircle (x + xpart (xc, xd), y + ypart (xc, xd), 7 + grand (5), TCOL_B5); ya = ebullet[b].angle2; if (ya > 15) ya = 15; fcircle (ebullet[b].x_speed / GRAIN - xpart (xc, 25), ebullet[b].y_speed / GRAIN - ypart (xc, 25), ya / 2 + grand (10), TCOL_B5); fcircle (ebullet[b].x_speed / GRAIN - xpart (xc, 35), ebullet[b].y_speed / GRAIN - ypart (xc, 35), ya / 3 + grand (4), TCOL_B5); if (ebullet[b].angle2 < 20) { fcircle (ebullet[b].x_speed / GRAIN, ebullet[b].y_speed / GRAIN, ebullet[b].angle2 + grand (4), TCOL_B5); xc = ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS); xb = ebullet[b].angle2 / 5 + 1; xd = ebullet[b].status * 45; TRANS_MODE poly4 (display, x + xpart (xc + ANGLE_4, xb), y + ypart (xc + ANGLE_4, xb), x + xpart (xc - ANGLE_4, xb), y + ypart (xc - ANGLE_4, xb), x + xpart (xc, xd) + xpart (xc - ANGLE_4, xb), y + ypart (xc, xd) + ypart (xc - ANGLE_4, xb), x + xpart (xc, xd) + xpart (xc + ANGLE_4, xb), y + ypart (xc, xd) + ypart (xc + ANGLE_4, xb), TRANS_B5_OUT); END_TRANS_MODE break; } fcircle (ebullet[b].x_speed / GRAIN, ebullet[b].y_speed / GRAIN, 19 + grand (4), TCOL_B5); for (i = 0; i < ebullet[b].status; i++) { xb = RLE_beam[ebullet[b].sprite_angle].x; yb = RLE_beam[ebullet[b].sprite_angle].y; draw_trans_rle_sprite (display, RLE_beam[ebullet[b].sprite_angle].sprite, x + xpart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 23 + 45 * i + xa) - xb, y + ypart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 23 + 45 * i + xa) - yb); fcircle (x + xpart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 45 * i + xa), y + ypart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 45 * i + xa), 5 + grand (2), TCOL_B5); // fcircle(x + xpart(ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 22 + 45 * i + xa), y + ypart(ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 22 + 45 * i + xa), 5, TCOL_B5); } break; case EBULLET_BEAM: xa = 0; //ebullet[b].angle2; if (ebullet[b].angle2 < 20) { fcircle (ebullet[b].x_speed / GRAIN, ebullet[b].y_speed / GRAIN, ebullet[b].angle2 + grand (4), TCOL_B5); xc = ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS); xb = ebullet[b].angle2 / 5 + 1; xd = ebullet[b].status * 45; TRANS_MODE poly4 (display, x + xpart (xc + ANGLE_4, xb), y + ypart (xc + ANGLE_4, xb), x + xpart (xc - ANGLE_4, xb), y + ypart (xc - ANGLE_4, xb), x + xpart (xc, xd) + xpart (xc - ANGLE_4, xb), y + ypart (xc, xd) + ypart (xc - ANGLE_4, xb), x + xpart (xc, xd) + xpart (xc + ANGLE_4, xb), y + ypart (xc, xd) + ypart (xc + ANGLE_4, xb), TRANS_B5_OUT); END_TRANS_MODE break; } fcircle (ebullet[b].x_speed / GRAIN, ebullet[b].y_speed / GRAIN, 19 + grand (4), TCOL_B5); for (i = 0; i < ebullet[b].status; i++) { xb = RLE_beam[ebullet[b].sprite_angle].x; yb = RLE_beam[ebullet[b].sprite_angle].y; draw_trans_rle_sprite (display, RLE_beam[ebullet[b].sprite_angle].sprite, x + xpart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 23 + 45 * i + xa) - xb, y + ypart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 23 + 45 * i + xa) - yb); fcircle (x + xpart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 45 * i + xa), y + ypart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 45 * i + xa), 5, TCOL_B5); fcircle (x + xpart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 22 + 45 * i + xa), y + ypart (ebullet[b].sprite_angle * (ANGLE_1 / SMALL_ROTATIONS), 22 + 45 * i + xa), 5, TCOL_B5); } break; case EBULLET_SHOT: xb = dart_bullet[ebullet[b].sprite_angle][0].x; yb = dart_bullet[ebullet[b].sprite_angle][0].y; if (ebullet[b].time < 20 && ebullet[b].new_ebullet == 1) { xa = ebullet[b].angle; ya = (ebullet[b].time * 12) / 17; yc = (ebullet[b].time * 15) / 17; drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); poly4 (display, x + xpart (xa, ya), y + ypart (xa, ya), x + xpart (xa + ANGLE_4 + ANGLE_8, ya), y + ypart (xa + ANGLE_4 + ANGLE_8, ya), x - xpart (xa, yc), y - ypart (xa, yc), x + xpart (xa - ANGLE_4 - ANGLE_8, ya), y + ypart (xa - ANGLE_4 - ANGLE_8, ya), ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else draw_trans_rle_sprite (display, dart_bullet[ebullet[b].sprite_angle][ebullet[b]. colour]. sprite, x - xb, y - yb); // textprintf_ex(display, font, x, y, COL_WHITE, -1, "%i", ebullet[b].sprite_angle); if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; case EBULLET_SDART: xb = sdart_bullet[ebullet[b].sprite_angle][0].x; yb = sdart_bullet[ebullet[b].sprite_angle][0].y; if (ebullet[b].time < 20 && ebullet[b].new_ebullet == 1) { xa = ebullet[b].angle; ya = (ebullet[b].time * 10) / 17; yc = (ebullet[b].time * 12) / 17; drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); poly4 (display, x + xpart (xa, ya), y + ypart (xa, ya), x + xpart (xa + ANGLE_4 + ANGLE_8, ya), y + ypart (xa + ANGLE_4 + ANGLE_8, ya), x - xpart (xa, yc), y - ypart (xa, yc), x + xpart (xa - ANGLE_4 - ANGLE_8, ya), y + ypart (xa - ANGLE_4 - ANGLE_8, ya), ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else draw_trans_rle_sprite (display, sdart_bullet[ebullet[b].sprite_angle][ebullet[b]. colour]. sprite, x - xb, y - yb); if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; case EBULLET_WING_DIAMOND: for (i = 0; i < 3; i++) { xc = (int) (ebullet[b].angle2 + (i * ANGLE_3)) / (ANGLE_1 / SMALL_ROTATIONS); xc &= SMALL_ROTATIONS - 1; xb = dart_bullet[xc][0].x; yb = dart_bullet[xc][0].y; xd = x + xpart (xc * 8, 21); yd = y + ypart (xc * 8, 21); if (ebullet[b].time < 40) { xa = xc * 8; //ebullet[b].angle; ya = (ebullet[b].time * 6) / 17; yc = (ebullet[b].time * 7) / 17; drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); poly4 (display, xd + xpart (xa, ya), yd + ypart (xa, ya), xd + xpart (xa + ANGLE_4 + ANGLE_8, ya), yd + ypart (xa + ANGLE_4 + ANGLE_8, ya), xd - xpart (xa, yc), yd - ypart (xa, yc), xd + xpart (xa - ANGLE_4 - ANGLE_8, ya), yd + ypart (xa - ANGLE_4 - ANGLE_8, ya), ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else draw_trans_rle_sprite (display, dart_bullet[xc][ebullet[b].colour + 1].sprite, xd - xb, yd - yb); } // fall through... if (ebullet[b].time < 30) { TRANS_MODE circlefill (display, x, y, ebullet[b].time / 10, ebullet[b].cord_colour); END_TRANS_MODE } else fcircle (x, y, 3, ebullet[b].colour + 4); if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; /* case EBULLET_WING_DIAMOND: for (i = 0; i < 2; i ++) { if (i == 0) xc = (int) (ebullet[b].angle + ANGLE_2 + ebullet[b].angle2) / (ANGLE_1 / SMALL_ROTATIONS); else xc = (int) (ebullet[b].angle + ANGLE_2 - ebullet[b].angle2) / (ANGLE_1 / SMALL_ROTATIONS); // if (xc > SMALL_ROTATIONS) // xc %= SMALL_ROTATIONS; xc &= SMALL_ROTATIONS - 1; xb = dart_bullet [xc] [0].x; yb = dart_bullet [xc] [0].y; // xd = x - xpart(ebullet[b].angle, 6); // yd = y - ypart(ebullet[b].angle, 6); xd = x + xpart(xc * 8, 21); yd = y + ypart(xc * 8, 21); if (ebullet[b].time < 40) { xa = xc * 8; //ebullet[b].angle; ya = (ebullet[b].time * 6) / 17; yc = (ebullet[b].time * 7) / 17; drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); poly4(display, xd + xpart(xa, ya), yd + ypart(xa, ya), xd + xpart(xa + ANGLE_4 + ANGLE_8, ya), yd + ypart(xa + ANGLE_4 + ANGLE_8, ya), xd - xpart(xa, yc), yd - ypart(xa, yc), xd + xpart(xa - ANGLE_4 - ANGLE_8, ya), yd + ypart(xa - ANGLE_4 - ANGLE_8, ya), ebullet[b].cord_colour); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); } else draw_trans_rle_sprite(display, dart_bullet [xc] [ebullet[b].colour - 1].sprite, xd - xb, yd - yb); } // fall through...*/ case EBULLET_SHOT2: case EBULLET_DDART: case EBULLET_CURVE: xc = (int) ebullet[b].angle / (ANGLE_1 / SMALL_ROTATIONS); // if (xc > SMALL_ROTATIONS) // xc %= SMALL_ROTATIONS; xc &= SMALL_ROTATIONS - 1; xb = diamond_bullet[xc][0].x; yb = diamond_bullet[xc][0].y; if (ebullet[b].time < 40 && ebullet[b].new_ebullet == 1) { xa = ebullet[b].angle; ya = (ebullet[b].time * 9) / 37; yc = (ebullet[b].time * 15) / 37; drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); poly4 (display, x + xpart (xa, yc), y + ypart (xa, yc), x + xpart (xa + ANGLE_4, ya), y + ypart (xa + ANGLE_4, ya), x - xpart (xa, yc), y - ypart (xa, yc), x + xpart (xa - ANGLE_4, ya), y + ypart (xa - ANGLE_4, ya), ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else { // print_number(x, y, xc); // blit(display, screen, 0, 0, 0, 0, 640, 480); draw_trans_rle_sprite (display, diamond_bullet[xc][ebullet[b].colour].sprite, x - xb, y - yb); // blit(display, screen, 0, 0, 0, 0, 640, 480); } // draw_trans_rle_sprite(display, diamond_bullet [0] [xc].sprite, x - xb, y - yb); // draw_trans_rle_sprite(display, diamond_bullet [ebullet[b].colour] [xc].sprite, x - xb, y - yb); // textprintf_ex(display, font, x, y, COL_WHITE, -1, "%i", ebullet[b].sprite_angle); if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; case EBULLET_TRACKER: if (ebullet[b].timeout < ebullet[b].status * 5) { xa = ebullet[b].timeout / 6; fcircle (x, y, xa, ebullet[b].colour + TCOL_B1); break; } xa = ebullet[b].time / 3; if (xa > ebullet[b].status) { xa = ebullet[b].status; fcircle (x, y, xa, ebullet[b].colour + TCOL_B1); fcircle (x, y, xa + 3, TCOL_B1); } else { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); circlefill (display, x, y, xa + 3, TRANS_B1_OUT); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; case EBULLET_DOT: if (ebullet[b].timeout < ebullet[b].status * 5) { xa = ebullet[b].timeout / 5; fcircle (x, y, xa, ebullet[b].colour + TCOL_B1); xb = xa * 1.8; TRANS_MODE circle (display, x, y, xb, ebullet[b].cord_colour); END_TRANS_MODE break; } xa = ebullet[b].time / 3; if (xa > ebullet[b].status) { xa = ebullet[b].status; fcircle (x, y, xa, ebullet[b].colour + TCOL_B1); xb = xa * 1.8; TRANS_MODE circle (display, x, y, xb, ebullet[b].cord_colour); END_TRANS_MODE } else { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); circlefill (display, x, y, xa, ebullet[b].cord_colour); xb = xa * 1.8; circle (display, x, y, xb, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; /* case EBULLET_DOT: if (ebullet[b].timeout < ebullet[b].status * 5) { xa = ebullet[b].timeout / 5; fcircle(x, y, xa, ebullet[b].colour + TCOL_B1); xb = xa * 1.3; TRANS_MODE circle(display, x, y, xb, ebullet[b].cord_colour); END_TRANS_MODE break; } xa = ebullet[b].time / 3; if (xa > ebullet[b].status) { xa = ebullet[b].status; fcircle(x, y, xa, ebullet[b].colour + TCOL_B1); } else { drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); circlefill(display, x, y, xa, TRANS_B5_OUT); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); } if (ebullet[b].cord_wait > -1) { drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); pline(display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle(display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); } break;*/ case EBULLET_SEED: case EBULLET_LSEED: xb = dart_bullet[ebullet[b].sprite_angle][0].x; yb = dart_bullet[ebullet[b].sprite_angle][0].y; if (ebullet[b].time < 20) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); circlefill (display, x, y, ebullet[b].time / 5, TRANS_B5_OUT); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else fcircle (x, y, 4, TCOL_B5); if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, TRANS_B5_OUT); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, TRANS_B5_OUT); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; case EBULLET_SEED2: xb = dart_bullet[ebullet[b].sprite_angle][0].x; yb = dart_bullet[ebullet[b].sprite_angle][0].y; switch (ebullet[b].colour) { case 0: xa = TRANS_B2_OUT; // inner circle cord colour yc = TCOL_B2; // inner circle fcircle colour xd = EBCOL_B2; // inner bullet colour ya = TRANS_B1_OUT; // outer cord colour xc = EBCOL_B1; // outer bullet colour break; case 1: xa = TRANS_B3_OUT; // inner circle cord colour yc = TCOL_B3; // inner circle fcircle colour xd = EBCOL_B3; // inner bullet colour ya = TRANS_B2_OUT; // outer cord colour xc = EBCOL_B2; // outer bullet colour break; case 2: xa = TRANS_B3_OUT; // inner circle cord colour yc = TCOL_B3; // inner circle fcircle colour xd = EBCOL_B3; // inner bullet colour ya = TRANS_B1_OUT; // outer cord colour xc = EBCOL_B1; // outer bullet colour break; case 3: xa = TRANS_B4_OUT; // inner circle cord colour yc = TCOL_B4; // inner circle fcircle colour xd = EBCOL_B4; // inner bullet colour ya = TRANS_B1_OUT; // outer cord colour xc = EBCOL_B1; // outer bullet colour break; } if (ebullet[b].timeout < 40) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); circlefill (display, x, y, ebullet[b].timeout / 5, xa); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else fcircle (x, y, 8, yc); ye = ebullet[b].timeout; if (ye > 130) ye = 160 - ye; xe = ye; if (xe > 21) xe = 21; for (i = 0; i < 3; i++) { draw_dart (x, y, ebullet[b].angle + (i * ANGLE_3) + ANGLE_6, xe, ye, ya, xc); } if (xe > 17) xe = 17; for (i = 0; i < 3; i++) { // draw_dart(x, y, (ANGLE_1 - (ebullet[b].angle + (i * ANGLE_3))) & 1023, xe, ye, xa, xd); draw_dart (x, y, ebullet[b].angle + (i * ANGLE_3), xe, ye, xa, xd); } break; case EBULLET_LSEED2: xb = dart_bullet[ebullet[b].sprite_angle][0].x; yb = dart_bullet[ebullet[b].sprite_angle][0].y; switch (ebullet[b].colour) { case 0: xa = TRANS_B2_OUT; // inner circle cord colour yc = TCOL_B2; // inner circle fcircle colour xd = EBCOL_B2; // inner bullet colour ya = TRANS_B1_OUT; // outer cord colour xc = EBCOL_B1; // outer bullet colour break; case 1: xa = TRANS_B3_OUT; // inner circle cord colour yc = TCOL_B3; // inner circle fcircle colour xd = EBCOL_B3; // inner bullet colour ya = TRANS_B2_OUT; // outer cord colour xc = EBCOL_B2; // outer bullet colour break; case 2: xa = TRANS_B3_OUT; // inner circle cord colour yc = TCOL_B3; // inner circle fcircle colour xd = EBCOL_B3; // inner bullet colour ya = TRANS_B1_OUT; // outer cord colour xc = EBCOL_B1; // outer bullet colour break; case 3: xa = TRANS_B4_OUT; // inner circle cord colour yc = TCOL_B4; // inner circle fcircle colour xd = EBCOL_B4; // inner bullet colour ya = TRANS_B1_OUT; // outer cord colour xc = EBCOL_B1; // outer bullet colour break; } if (ebullet[b].timeout < 40) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); circlefill (display, x, y, ebullet[b].timeout / 5, xa); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else fcircle (x, y, 8, yc); ye = ebullet[b].timeout; if (ye > 130) ye = 160 - ye; xe = ye; if (xe > 26) xe = 26; for (i = 0; i < 5; i++) { draw_dart (x, y, ebullet[b].angle + (i * ANGLE_5) + ANGLE_8, xe, ye, ya, xc); } if (xe > 16) xe = 16; for (i = 0; i < 5; i++) { // draw_dart(x, y, (ANGLE_1 - (ebullet[b].angle + (i * ANGLE_3))) & 1023, xe, ye, xa, xd); draw_dart (x, y, ebullet[b].angle + (i * ANGLE_5), xe, ye, xa, xd); } break; case EBULLET_BURST: if (ebullet[b].time < 20) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); circlefill (display, x, y, ebullet[b].time / 5, TRANS_B2_OUT); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else fcircle (x, y, 4, TCOL_B2); for (i = 0; i < 3; i++) { xe = x + xpart (ebullet[b].angle2 + i * ANGLE_3, 22); ye = y + ypart (ebullet[b].angle2 + i * ANGLE_3, 22); xc = (int) (ebullet[b].angle2 + i * ANGLE_3) / (ANGLE_1 / SMALL_ROTATIONS); xc &= SMALL_ROTATIONS - 1; xb = diamond_bullet[xc][0].x; yb = diamond_bullet[xc][0].y; if (ebullet[b].time < 40) { // draw_diamond(xe, ye, ebullet[b].angle2 + i * ANGLE_4, (ebullet[b].time * 12) / 37, (ebullet[b].time * 20) / 37, ebullet[b].cord_colour); draw_diamond (xe, ye, ebullet[b].angle2 + i * ANGLE_3, (ebullet[b].time * 9) / 37, (ebullet[b].time * 15) / 37, ebullet[b].cord_colour); } else { draw_trans_rle_sprite (display, diamond_bullet[xc][ebullet[b].colour].sprite, xe - xb, ye - yb); } } ye = ebullet[b].time; xe = ye; if (xe > 22) xe = 22; for (i = 0; i < 3; i++) { draw_dart (x, y, ebullet[b].angle2 + (i * ANGLE_3) + ANGLE_6, xe, ye, TRANS_B1_OUT, EBCOL_B1); } if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; /* case EBULLET_BURST: if (ebullet[b].time < 20) { drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); circlefill(display, x, y, ebullet[b].time / 5, TRANS_B2_OUT); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); } else fcircle(x, y, 4, TCOL_B2); for (i = 0; i < 4; i ++) { xe = x + xpart(ebullet[b].angle2 + i * ANGLE_4, 22); ye = y + ypart(ebullet[b].angle2 + i * ANGLE_4, 22); xc = (int) (ebullet[b].angle2 + i * ANGLE_4) / (ANGLE_1 / SMALL_ROTATIONS); xc &= SMALL_ROTATIONS - 1; xb = diamond_bullet [xc] [0].x; yb = diamond_bullet [xc] [0].y; if (ebullet[b].time < 40) { // draw_diamond(xe, ye, ebullet[b].angle2 + i * ANGLE_4, (ebullet[b].time * 12) / 37, (ebullet[b].time * 20) / 37, ebullet[b].cord_colour); draw_diamond(xe, ye, ebullet[b].angle2 + i * ANGLE_4, (ebullet[b].time * 9) / 37, (ebullet[b].time * 15) / 37, ebullet[b].cord_colour); } else { draw_trans_rle_sprite(display, diamond_bullet [xc] [ebullet[b].colour].sprite, xe - xb, ye - yb); } } ye = ebullet[b].time; xe = ye; if (xe > 22) xe = 22; for (i = 0; i < 4; i ++) { draw_dart(x, y, ebullet[b].angle2 + (i * ANGLE_4) + ANGLE_8, xe, ye, TRANS_B1_OUT, EBCOL_B1); } if (ebullet[b].cord_wait > -1) { drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); pline(display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle(display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); } break; */ case EBULLET_STREAM: xe = x; // + xpart(ebullet[b].angle2 + i * ANGLE_4, 22); ye = y; // + ypart(ebullet[b].angle2 + i * ANGLE_4, 22); xc = (int) (ebullet[b].angle + ANGLE_4) / (ANGLE_1 / SMALL_ROTATIONS); xc &= SMALL_ROTATIONS - 1; xb = diamond_bullet[xc][0].x; yb = diamond_bullet[xc][0].y; if (ebullet[b].time < 40) { // draw_diamond(xe, ye, ebullet[b].angle2 + i * ANGLE_4, (ebullet[b].time * 12) / 37, (ebullet[b].time * 20) / 37, ebullet[b].cord_colour); draw_diamond (xe, ye, ebullet[b].angle + ANGLE_4, (ebullet[b].time * 9) / 37, (ebullet[b].time * 15) / 37, ebullet[b].cord_colour); } else { draw_trans_rle_sprite (display, diamond_bullet[xc][ebullet[b].colour].sprite, xe - xb, ye - yb); } if (ebullet[b].cord_wait > -1) { drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); pline (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, x, y, ebullet[b].cord_colour); circle (display, ebullet[b].cord_x / GRAIN, ebullet[b].cord_y / GRAIN, 1, ebullet[b].cord_colour); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } break; /* case EBULLET_SEED2: xb = dart_bullet [ebullet[b].sprite_angle] [0].x; yb = dart_bullet [ebullet[b].sprite_angle] [0].y; if (ebullet[b].timeout < 40) { drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); circlefill(display, x, y, ebullet[b].timeout / 5, TRANS_B3_OUT); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); } else fcircle(x, y, 8, TCOL_B3); ye = ebullet[b].timeout; if (ye > 130) ye = 160 - ye; xe = ye; if (xe > 30) xe = 30; // if (ebullet[b].timeout > 130) // xe = 160 - ebullet[b].timeout; for (i = 0; i < 5; i ++) { xc = (int) (ebullet[b].angle + (i * ANGLE_5)) / (ANGLE_1 / SMALL_ROTATIONS); xc &= SMALL_ROTATIONS - 1; xb = dart_bullet [xc] [0].x; yb = dart_bullet [xc] [0].y; xd = x + xpart(xc * 8, 1 + xe); yd = y + ypart(xc * 8, 1 + xe); // if (ebullet[b].timeout < 40 || ebullet[b].timeout > 130) if (ye < 30) { xa = xc * 8; //ebullet[b].angle; ya = (ye * 8) / 17; yc = (ye * 9) / 17; drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); poly4(display, xd + xpart(xa, ya), yd + ypart(xa, ya), xd + xpart(xa + ANGLE_4 + ANGLE_8, ya), yd + ypart(xa + ANGLE_4 + ANGLE_8, ya), xd - xpart(xa, yc), yd - ypart(xa, yc), xd + xpart(xa - ANGLE_4 - ANGLE_8, ya), yd + ypart(xa - ANGLE_4 - ANGLE_8, ya), TRANS_B2_OUT); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); } else draw_trans_rle_sprite(display, dart_bullet [xc] [1].sprite, xd - xb, yd - yb); } break; */ } } void draw_dart (int x, int y, int angle, int out, int timeout, int cord_col, int col) { int xc = (int) angle / (ANGLE_1 / SMALL_ROTATIONS); xc &= SMALL_ROTATIONS - 1; int xb = dart_bullet[xc][0].x; int yb = dart_bullet[xc][0].y; int xd = x + xpart (xc * 8, 1 + out); int yd = y + ypart (xc * 8, 1 + out); if (timeout < 30) { int xa = xc * 8; //ebullet[b].angle; int ya = (timeout * 8) / 17; int yc = (timeout * 9) / 17; drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); poly4 (display, xd + xpart (xa, ya), yd + ypart (xa, ya), xd + xpart (xa + ANGLE_4 + ANGLE_8, ya), yd + ypart (xa + ANGLE_4 + ANGLE_8, ya), xd - xpart (xa, yc), yd - ypart (xa, yc), xd + xpart (xa - ANGLE_4 - ANGLE_8, ya), yd + ypart (xa - ANGLE_4 - ANGLE_8, ya), cord_col); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } else draw_trans_rle_sprite (display, dart_bullet[xc][col].sprite, xd - xb, yd - yb); } void draw_diamond (int x, int y, int angle, int out1, int out2, int cord_colour) { TRANS_MODE poly4 (display, x + xpart (angle, out2), y + ypart (angle, out2), x + xpart (angle + ANGLE_4, out1), y + ypart (angle + ANGLE_4, out1), x - xpart (angle, out2), y - ypart (angle, out2), x + xpart (angle - ANGLE_4, out1), y + ypart (angle - ANGLE_4, out1), cord_colour); END_TRANS_MODE } void draw_pbullets (void) { int b; for (b = 0; b < NO_PBULLETS; b++) { if (pbullet[b].type == PBULLET_NONE) continue; draw_a_pbullet (b); } } void draw_a_pbullet (int b) { int x = pbullet[b].x / GRAIN; int y = pbullet[b].y / GRAIN; int i, xa, ya; //, xa, ya; switch (pbullet[b].type) { case PBULLET_RING: ya = pbullet[b].status / 10 + xpart (arena.counter * 64, 2) - 2; if (ya < 1) ya = 1; /* if (xa < 1) xa = 1; if (xa > 50) xa = 50; xb = cloud[c].colour; ya = ;*/ draw_trans_rle_sprite (display, RLE_ring[ya].sprite, x - RLE_ring[ya].x, y - RLE_ring[ya].y); break; case PBULLET_SCATTER: xa = grand (pbullet[b].level) / 2; fcircle (x, y, 1 + grand (2) + xa, TCOL_YELLOW); fcircle (x, y, 4 + grand (2) + xa, TCOL_ORANGE); // fcircle(x - xpart(pbullet[b].angle, 4), y - ypart(pbullet[b].angle, 4), 3 + grand(2), 7); fcircle (x - xpart (pbullet[b].angle, 6 + xa), y - ypart (pbullet[b].angle, 6 + xa), 3 + grand (2) + xa, TCOL_ORANGE); fcircle (x - xpart (pbullet[b].angle, 10 + xa), y - ypart (pbullet[b].angle, 9 + xa), 2 + grand (2) + xa, TCOL_ORANGE); break; case PBULLET_CANNON: case PBULLET_RECT: ya = grand (pbullet[b].level) / 2; fcircle (x, y, 7 + grand (2) + ya, TCOL_YELLOW); fcircle (x, y + 2, 12 + grand (3) + ya, TCOL_ORANGE); break; case PBULLET_SEEKER: fcircle (x, y, 4, TCOL_YELLOW); /* if (pbullet[b].target != -1) { pline(display, x, y, enemy[pbullet[b].target].x / GRAIN, enemy[pbullet[b].target].y / GRAIN, COL_LGREY); }*/ break; case PBULLET_MGUN: xa = pbullet[b].level * 2; drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); vline (display, x, y, y + 16 + xa, TRANS_ORANGE_IN); vline (display, x - 1, y, y + 16 + xa, TRANS_ORANGE_OUT); vline (display, x + 1, y, y + 16 + xa, TRANS_ORANGE_OUT); putpixel (display, x, y - 1, TRANS_ORANGE_OUT); putpixel (display, x, y + 17 + xa, TRANS_ORANGE_OUT); for (i = 0; i < 3 + pbullet[b].level / 2; i++) { ya = y + grand (14 + xa); putpixel (display, x - 1, ya, TRANS_ORANGE_IN); putpixel (display, x + 1, ya, TRANS_ORANGE_IN); putpixel (display, x - 2, ya, TRANS_ORANGE_OUT); putpixel (display, x + 2, ya, TRANS_ORANGE_OUT); } drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); break; } } void draw_clouds (void) { int c; for (c = 0; c < NO_CLOUDS; c++) { if (cloud[c].type == CLOUD_NONE) continue; draw_a_cloud (c); } } void draw_a_cloud (int c) { int x = cloud[c].x / GRAIN; int y = cloud[c].y / GRAIN; int xa, ya, xb, i, angle, yb; switch (cloud[c].type) { case CLOUD_SCIRCLE: TRANS_MODE circle (display, x, y, cloud[c].timeout, cloud[c].colour); END_TRANS_MODE break; case CLOUD_DELAY1: break; case CLOUD_DELAY2: case CLOUD_DELAY3: case CLOUD_DELAY4: fcircle (x, y, cloud[c].x2, cloud[c].colour); xa = cloud[c].x2 - 5; if (xa > 0) fcircle (x, y, xa, cloud[c].colour + 1); break; case CLOUD_PETAL1_DEBRIS: ya = cloud[c].angle / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal1[ya].x; // - xpart(cloud[c].angle, 36); yb = petal1[ya].y; // - ypart(cloud[c].angle, 36); draw_trans_rle_sprite (display, petal1[ya].sprite, x - xb, y - yb); break; case CLOUD_PETAL2_DEBRIS: ya = cloud[c].angle / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal2[ya].x; // - xpart(cloud[c].angle, 36); yb = petal2[ya].y; // - ypart(cloud[c].angle, 36); draw_trans_rle_sprite (display, petal2[ya].sprite, x - xb, y - yb); break; case CLOUD_PETAL3_DEBRIS: ya = cloud[c].angle / (ANGLE_1 / SMALL_ROTATIONS); ya &= SMALL_ROTATIONS - 1; xb = petal3[ya].x; // - xpart(cloud[c].angle, 36); yb = petal3[ya].y; // - ypart(cloud[c].angle, 36); draw_trans_rle_sprite (display, petal3[ya].sprite, x - xb, y - yb); break; case CLOUD_PETAL1: TRANS_MODE xa = cloud[c].timeout; xb = cloud[c].timeout / 2; angle = cloud[c].angle; poly4 (display, x, y, x + xpart (angle + ANGLE_8 - ANGLE_32, xb), y + ypart (angle + ANGLE_8 - ANGLE_32, xb), x + xpart (angle, xa), y + ypart (angle, xa), x + xpart (angle - ANGLE_8 + ANGLE_32, xb), y + ypart (angle - ANGLE_8 + ANGLE_32, xb), TRANS_SH2_OUT); END_TRANS_MODE break; case CLOUD_PRING: ya = cloud[c].timeout / 10; if (ya < 0) ya = 0; draw_trans_rle_sprite (display, RLE_ring[ya].sprite, x - RLE_ring[ya].x, y - RLE_ring[ya].y); break; case CLOUD_SLINE: TRANS_MODE pline (display, x, y, cloud[c].x2 / GRAIN, cloud[c].y2 / GRAIN, cloud[c].colour); if (cloud[c].timeout <= 1) fcircle (x, y, 2, TCOL_ORANGE); // circle(display, x, y, 1, TRANS_ORANGE_OUT); END_TRANS_MODE break; case CLOUD_ESLINE: TRANS_MODE pline (display, x, y, cloud[c].x2 / GRAIN, cloud[c].y2 / GRAIN, cloud[c].colour); if (cloud[c].timeout <= 1) circle (display, x, y, 1, cloud[c].colour); END_TRANS_MODE break; case CLOUD_RSHOCK1: case CLOUD_RSHOCK2: case CLOUD_RSHOCK3: case CLOUD_RSHOCK4: case CLOUD_RSHOCK5: xa = cloud[c].timeout; if (xa < 1) xa = 1; if (xa > 20) xa = 20; xb = cloud[c].type - CLOUD_RSHOCK1; ya = RLE_rshock[xb][20 - xa].x; draw_trans_rle_sprite (display, RLE_rshock[xb][20 - xa].sprite, x - ya, y - ya); break; case CLOUD_MSHOCK: xa = cloud[c].timeout; if (xa < 1) xa = 1; if (xa > 20) xa = 20; xb = cloud[c].colour; ya = RLE_mshock[xb][20 - xa].x; draw_trans_rle_sprite (display, RLE_mshock[xb][20 - xa].sprite, x - ya, y - ya); break; case CLOUD_LSHOCK: xa = cloud[c].timeout; if (xa < 1) xa = 1; if (xa > 50) xa = 50; xb = cloud[c].colour; ya = RLE_lshock[xb][50 - xa].x; draw_trans_rle_sprite (display, RLE_lshock[xb][50 - xa].sprite, x - ya, y - ya); break; case CLOUD_HSHOCK: xa = cloud[c].timeout; // xa = 5 - (xa / 10); if (xa < 1) xa = 1; if (xa > 50) xa = 50; xb = cloud[c].colour; ya = RLE_hshock[xb][50 - xa].x; draw_trans_rle_sprite (display, RLE_hshock[xb][50 - xa].sprite, x - ya, y - ya); break; case CLOUD_TSHOCK: xa = 12 - cloud[c].timeout; ya = RLE_mg_shock[xa].x; if (xa >= 9) { TRANS_MODE circle (display, x, y, xa + 2, TRANS_ORANGE_OUT); END_TRANS_MODE break; } draw_trans_rle_sprite (display, RLE_mg_shock[xa].sprite, x - ya, y - ya); break; case CLOUD_MGSHOCK: xa = 12 - cloud[c].timeout; // textprintf_ex(display, font, x, y + 20, COL_WHITE, -1, "%i", xa); if (cloud[c].timeout > 5) fcircle (x, y, cloud[c].timeout - 5, TCOL_YELLOW); if (xa >= 9) { TRANS_MODE circle (display, x, y, xa + 2, TRANS_ORANGE_OUT); END_TRANS_MODE break; } ya = RLE_mg_shock[xa].x; draw_trans_rle_sprite (display, RLE_mg_shock[xa].sprite, x - ya, y - ya); if (xa < 10) { angle = cloud[c].x2; for (i = 0; i < 4; i++) { fcircle (x + xpart (angle, ya + 2), y + ypart (angle, ya + 2), (10 - xa) / 1, TCOL_ORANGE); angle += ANGLE_4; } } /*if (xa < 10) { fcircle(x - ya + 2, y - ya + 2, (10 - xa) / 1, 7); fcircle(x + ya - 2, y - ya + 2, (10 - xa) / 1, 7); fcircle(x - ya + 2, y + ya - 2, (10 - xa) / 1, 7); fcircle(x + ya - 2, y + ya - 2, (10 - xa) / 1, 7); } */ // circle(display, x, y, 10, COL_WHITE); break; case CLOUD_CIRCLE10: fcircle (x, y, cloud[c].timeout / 10, cloud[c].colour); break; case CLOUD_CIRCLE5: fcircle (x, y, cloud[c].timeout / 5, cloud[c].colour); break; case CLOUD_CIRCLE3: fcircle (x, y, cloud[c].timeout / 3, cloud[c].colour); break; case CLOUD_CIRCLE2: fcircle (x, y, cloud[c].timeout / 2, cloud[c].colour); break; case CLOUD_CIRCLE1: // case CLOUD_SCIRCLE: fcircle (x, y, cloud[c].timeout, cloud[c].colour); break; case CLOUD_CARRIER1_BANG: xa = 100 - cloud[c].timeout; ya = (cloud[c].timeout); angle = cloud[c].x2; for (i = 0; i < 6; i++) { fcircle (x + xpart (angle, xa), y + ypart (angle, xa), ya, TCOL_SH1); fcircle (x + xpart (angle, xa - 4), y + ypart (angle, xa - 4), ya / 2, TCOL_SH2); angle += ANGLE_6; angle &= 1023; } angle = ANGLE_1 - cloud[c].x2; angle &= 1023; for (i = 0; i < 6; i++) { fcircle (x + xpart (angle, xa), y + ypart (angle, xa), ya, TCOL_SH1); fcircle (x + xpart (angle, xa - 4), y + ypart (angle, xa - 4), ya / 2, TCOL_SH2); angle += ANGLE_6; angle &= 1023; } break; } } void draw_background (void) { int i, j; int x, y, xb; //, xa, xb; int start = platform_step; int across = 0; // blit(underlay, display, 0, arena.underlay_position, 0, 0, 640, 480); clear_to_color (display, COL_OUTLINE); for (i = 0; i < 20; i++) { xb = arena.block2_y[i] / 100; rectfill (display, arena.block2_x[i] - arena.block2_size[i], xb - arena.block2_size[i], arena.block2_x[i] + arena.block2_size[i], xb + arena.block2_size[i], COL_BACK1); /* drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); rect(display, arena.block2_x [i] - arena.block2_size [i] - 1, xb - arena.block2_size [i] - 1, arena.block2_x [i] + arena.block2_size [i] + 1, xb + arena.block2_size [i] + 1, TRANS_BACK2_OUTLINE); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0);*/ // circlefill(display, arena.block2_x [i], arena.block2_y [i], arena.block2_size [i], COL_BACK1); // circle(display, arena.block2_x [i], arena.block2_y [i], arena.block2_size [i], COL_OUTLINE); } for (i = 0; i < 20; i++) { // circlefill(display, arena.block2_x [i], arena.block1_y [i], arena.block1_size [i], COL_BACK2); // circle(display, arena.block1_x [i], arena.block1_y [i], arena.block1_size [i], COL_OUTLINE); xb = arena.block1_y[i] / 100; rectfill (display, arena.block1_x[i] - arena.block1_size[i], xb - arena.block1_size[i], arena.block1_x[i] + arena.block1_size[i], xb + arena.block1_size[i], COL_BACK2); drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); rect (display, arena.block1_x[i] - arena.block1_size[i] - 1, xb - arena.block1_size[i] - 1, arena.block1_x[i] + arena.block1_size[i] + 1, xb + arena.block1_size[i] + 1, TRANS_BACK3_OUTLINE); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } for (j = 0; j < 7; j++) { across = start - j; if (across < 0) across += PLAT_Y; if (across >= PLAT_Y) across -= PLAT_Y; for (i = 0; i < 9; i++) { if (platform_tile[i][across] != PLATFORM_EMPTY) { x = i * 91 - 82; y = j * 91 - 95 + platform_position; if (platform_tile[i][across] >= PLATFORM_NODE2) { xb = arena.flower_turn1 / 10; if ((i + across) % 3 == 0) xb = arena.flower_turn2 / 10; if ((i + across) % 2 == 0) xb = 39 - xb; /* if (xb < 0) xb = 0; if (xb > 19) xb = 19;*/ draw_rle_sprite (display, eRLE_flower[0][xb].sprite, x - eRLE_flower[0][xb].x + 42 + 3, y - eRLE_flower[0][xb].y + 47); } } } } for (j = 0; j < 7; j++) { across = start - j; if (across < 0) across += PLAT_Y; if (across >= PLAT_Y) across -= PLAT_Y; for (i = 0; i < 9; i++) { if (platform_tile[i][across] != PLATFORM_EMPTY) { x = i * 91 - 82; y = j * 91 - 95 + platform_position; draw_rle_sprite (display, platform_RLE[platform_tile[i][across]], x, y); } } } } void draw_background2 (void) { int i, j; int x, y, xb; //, xa, xb; int start = island1_step; int across = 0; clear_to_color (display, COL_OUTLINE); for (i = 0; i < NO_STARS; i++) { for (j = 0; j < 3; j++) { xb = star_y[i][j] / GRAIN; y = (star_y[i][j] - star_y_speed[i][j]) / GRAIN; if (xb == y) { putpixel (display, star_x[i][j], xb, COL_BACK3 - j); putpixel (display, star_x[i][j] + 1, xb, COL_OUTLINE); putpixel (display, star_x[i][j] - 1, xb, COL_OUTLINE); putpixel (display, star_x[i][j], xb + 1, COL_OUTLINE); putpixel (display, star_x[i][j], xb - 1, COL_OUTLINE); } else { vline (display, star_x[i][j], xb, y, COL_BACK3 - j); vline (display, star_x[i][j] - 1, xb, y, COL_OUTLINE); vline (display, star_x[i][j] + 1, xb, y, COL_OUTLINE); putpixel (display, star_x[i][j], xb + 1, COL_OUTLINE); putpixel (display, star_x[i][j], y - 1, COL_OUTLINE); } /* xb = star_y [i] [j] / GRAIN; putpixel(display, star_x [i] [j], xb, COL_BACK3 - j); putpixel(display, star_x [i] [j] + 1, xb, COL_OUTLINE); putpixel(display, star_x [i] [j] - 1, xb, COL_OUTLINE); putpixel(display, star_x [i] [j], xb + 1, COL_OUTLINE); putpixel(display, star_x [i] [j], xb - 1, COL_OUTLINE); */ } } for (j = 0; j < 7; j++) { across = start - j; if (across < 0) across += ISLAND1_Y; if (across >= ISLAND1_Y) across -= ISLAND1_Y; for (i = 0; i < 9; i++) { if (island1_tile[i][across] > ISLAND1_EMPTY && island1_tile[i][across] < ISLAND1_RLES) { x = i * 91 - 82; y = j * 91 - 95 + island1_position; draw_rle_sprite (display, island1_RLE[island1_tile[i][across]], x, y); // rect(display, x + 20, y + 20, x + 70, y + 70, COL_WHITE); // rect(display, x, y, x + 90, y + 90, COL_WHITE); } } } } void draw_background3 (void) { int i, j, out, col, waved, cy; int p_rank = arena.part_rank; END_TRANS_MODE clear_to_color (display, COL_BACK1); int i_dir; for (j = 0; j < 14; j++) { if (p_rank % 2 == 0) { i = 15; i_dir = -1; } else { i = 0; i_dir = 1; } // for (i = 0; i < 16; i ++) do { col = COL_BACK2; out = 0; cy = (-40 + (j * 40) + arena.part_cy[i][p_rank] + arena.part_flow) * 1000; if (arena.wave_y > cy - 90000 && arena.wave_y < cy + 90000) { waved = arena.wave_y - cy; if (waved < 0) waved *= -1; out = (90000 - waved) / 18000; col += (90000 - waved) / 23000; if (col > COL_BACK5) col = COL_BACK5; } if ((i + p_rank) % 2 == 0) out += arena.part_pulse1 / 2; else out += arena.part_pulse2 / 2; rectfill (display, 20 + (i * 40) + arena.part_x1[i][p_rank] - out, -40 + (j * 40) + arena.part_y1[i][p_rank] + arena.part_flow - out, 20 + (i * 40) + arena.part_x2[i][p_rank] + out, -40 + (j * 40) + arena.part_y2[i][p_rank] + arena.part_flow + out, col); rect (display, 20 + (i * 40) + arena.part_x1[i][p_rank] - out, -40 + (j * 40) + arena.part_y1[i][p_rank] + arena.part_flow - out, 20 + (i * 40) + arena.part_x2[i][p_rank] + out, -40 + (j * 40) + arena.part_y2[i][p_rank] + arena.part_flow + out, COL_OUTLINE); i += i_dir; if (i < 0 || i > 15) break; } while (TRUE); p_rank--; if (p_rank < 0) p_rank = 13; } } void draw_background4 (void) { clear_to_color (display, COL_BACK1); int i; for (i = 0; i < NO_BONES; i++) { // circle(display, arena.bone_x [0] [i], arena.bone_y [0] [i], 10, COL_WHITE); if (arena.bone_y[0][i] > -50) { switch (arena.bone_type[0][i]) { case 0: draw_rle_sprite (display, bone_RLE[BONE_B_HOOK1 + arena.bone_subtype[0][i]], arena.bone_x[0][i] - 4, arena.bone_y[0][i] - 4); break; case 1: draw_rle_sprite (display, bone_RLE[BONE_B_DROP1 + arena.bone_subtype[0][i]], arena.bone_x[0][i] - 5, arena.bone_y[0][i] - 4); break; case 2: draw_rle_sprite (display, bone_RLE[BONE_B_RING1 + arena.bone_subtype[0][i]], arena.bone_x[0][i] - 11, arena.bone_y[0][i] - 11); break; case 3: draw_rle_sprite (display, bone_RLE[BONE_B_HUNTER1 + arena.bone_subtype[0][i]], arena.bone_x[0][i] - 13, arena.bone_y[0][i] - 11); break; case 4: draw_rle_sprite (display, bone_RLE[BONE_B_SPINNER], arena.bone_x[0][i] - 32, arena.bone_y[0][i] - 53); break; case 5: draw_rle_sprite (display, bone_RLE[BONE_B_WALKER1 + arena.bone_subtype[0][i]], arena.bone_x[0][i] - 44, arena.bone_y[0][i] - 37); break; } } } for (i = 0; i < 20; i++) { // circle(display, arena.bone_x [0] [i], arena.bone_y [0] [i], 10, COL_WHITE); if (arena.bone_y[1][i] > -30) { switch (arena.bone_type[1][i]) { case 0: draw_rle_sprite (display, bone_RLE[BONE_HOOK1 + arena.bone_subtype[1][i]], arena.bone_x[1][i] - 11, arena.bone_y[1][i] - 10); break; case 1: draw_rle_sprite (display, bone_RLE[BONE_DROP1 + arena.bone_subtype[1][i]], arena.bone_x[1][i] - 12, arena.bone_y[1][i] - 17); break; case 2: draw_rle_sprite (display, bone_RLE[BONE_RING1 + arena.bone_subtype[1][i]], arena.bone_x[1][i] - 19, arena.bone_y[1][i] - 19); break; case 3: draw_rle_sprite (display, bone_RLE[BONE_HUNTER1 + arena.bone_subtype[1][i]], arena.bone_x[1][i] - 22, arena.bone_y[1][i] - 20); break; } } } } void shift_message (void) { int x, y, angle, xa, ya, i; switch (arena.level) { case 1: x = (arena.shift_message * 2) + 40; if (x < 350) x = 350; y = 430; if (arena.shift_message < 50) y = 480 - arena.shift_message; rectfill (display, x, y, 640, y + 23, COL_BACK3); rect (display, x, y, 640, y + 23, COL_OUTLINE); x += 25; y += 5; switch (arena.phase) { case 0: textprintf_ex (display, font, x, y, -1, -1, "YOU ARE BORN INTO SPRING"); break; case 1: textprintf_ex (display, font, x, y, -1, -1, "THE SUN IS HIGH ABOVE"); break; case 2: textprintf_ex (display, font, x, y, -1, -1, "AUTUMN IS THE WINDING DOWN"); break; case 3: textprintf_ex (display, font, x, y, -1, -1, "NO NEW LIFE WITHOUT DEATH"); break; case 4: textprintf_ex (display, font, x, y, -1, -1, "THE CYCLE IS RENEWED"); break; } if (arena.shift_message < 150) { x = 50 / 3; if (arena.shift_message > 100) { x = 150 - arena.shift_message; x /= 3; } if (arena.shift_message < 50) { x = arena.shift_message; x /= 3; } angle = arena.phase * ANGLE_4 - ANGLE_4 - ANGLE_4; if (arena.shift_message <= 100) { y = ((100 - arena.shift_message)) * 5; if (y > ANGLE_4) y = ANGLE_4; if (y < 0) y = 0; angle += y; } angle &= 1023; if (arena.phase == 0) angle = ANGLE_4 + ANGLE_2; else if (arena.shift_message < 50) angle = arena.phase * ANGLE_4 - ANGLE_4; if (x > 0) { circlefill (display, 350, 441, x, TRANS_YELLOW_IN + 2); circle (display, 350, 441, x, TRANS_YELLOW_OUT + 2); // circle(display, 350, 441, x * 1.2, TRANS_YELLOW_OUT + 2); // circle(display, 350, 441, x, COL_OUTLINE); } x /= 3; if (x > 0) { circlefill (display, 350 + xpart (angle, 28), 441 + ypart (angle, 28), x, COL_COL4); circle (display, 350 + xpart (angle, 28), 441 + ypart (angle, 28), x, COL_OUTLINE); } } break; case 2: x = (arena.shift_message * 2) + 40; if (x < 340) x = 340; y = 430; if (arena.shift_message < 50) y = 480 - arena.shift_message; rectfill (display, x, y, 640, y + 23, COL_BACK3); rect (display, x, y, 640, y + 23, COL_OUTLINE); x += 25; y += 5; switch (arena.phase) { case 0: textprintf_ex (display, font, x, y, -1, -1, "IT IS COLD IN THE VOID"); break; case 1: textprintf_ex (display, font, x, y, -1, -1, "DISTANT STARS WARM THE DUST"); break; case 2: textprintf_ex (display, font, x, y, -1, -1, "DESTRUCTION BLOWS A HOT WIND"); break; case 3: textprintf_ex (display, font, x, y, -1, -1, "ORDER TURNS TO BOILING CHAOS"); break; case 4: textprintf_ex (display, font, x, y, -1, -1, "THE EQUILIBRIUM OF HEAT DEATH"); break; } if (arena.shift_message < 150) { x = 50 / 3; if (arena.shift_message > 100) { x = 150 - arena.shift_message; x /= 3; } if (arena.shift_message < 50) { x = arena.shift_message; x /= 3; } TRANS_MODE switch (arena.phase) { case 0: if (x > 7) x = 7; fcircle (340, 441, x, TCOL_B3); break; case 1: if (x > 9) x = 9; fcircle (340, 441, x, TCOL_SH1); break; case 2: fcircle (340, 441, x, TCOL_SH2); y = (arena.shift_message / 2) % 6; circle (display, 340, 441, x - y + 5, TRANS_SH1_OUT); break; case 3: fcircle (340 + grand (3) - grand (3), 441 + grand (3) - grand (3), x, TCOL_ORANGE); fcircle (340 + grand (4) - grand (4), 441 + grand (4) - grand (4), x + 5 + grand (3), TCOL_SH2); y = (arena.shift_message / 2) % 8; circle (display, 340, 441, x - y + 8, TRANS_SH2_OUT); break; case 4: fcircle (340 + grand (4) - grand (4), 441 + grand (4) - grand (4), x, TCOL_YELLOW); fcircle (340 + grand (4) - grand (4), 441 + grand (4) - grand (4), x + 6 + grand (3), TCOL_ORANGE); y = (arena.shift_message / 1) % 9; circle (display, 340, 441, x - y + 10, TRANS_YELLOW_OUT); break; } END_TRANS_MODE } break; case 3: x = (arena.shift_message * 2) + 40; if (x < 330) x = 330; y = 430; if (arena.shift_message < 50) y = 480 - arena.shift_message; rectfill (display, x, y, 640, y + 23, COL_BACK3); rect (display, x, y, 640, y + 23, COL_OUTLINE); x += 8; y += 5; switch (arena.phase) { case 0: textprintf_ex (display, font, x, y, -1, -1, "MOTION BENDS THE FABRIC OF SPACE"); break; case 1: textprintf_ex (display, font, x, y, -1, -1, "THE WAVES SEEM TO ACCELERATE"); break; case 2: textprintf_ex (display, font, x, y, -1, -1, "THE OUTER REGIONS CALL TO YOU"); break; case 3: textprintf_ex (display, font, x, y, -1, -1, "SPEED SHIFTS LIGHT TO BLUE"); break; case 4: textprintf_ex (display, font, x, y, -1, -1, "THERE IS NO PATH BACK FROM HERE"); break; } if (arena.shift_message < 200) { y = 10; if (arena.shift_message > 160) { y = (200 - arena.shift_message) / 4; } if (arena.shift_message < 40) { y = arena.shift_message / 4; } if (y <= 0) break; TRANS_MODE angle = arena.shift_message * ((1 + arena.phase * 9) * 4); angle &= 1023; int old_angle = (arena.shift_message + 1) * ((1 + arena.phase * 9) * 4); for (i = 0; i < 25; i++) { // angle += 30 + (arena.phase * 60); // old_angle = angle - y * (10 + (arena.phase * 8)); angle += 30 + (arena.phase * 20); old_angle = angle - y * (10 + (arena.phase * 4)); x = 215 + i * 5; xa = xpart (angle, 10); ya = xpart (old_angle, 10); // if (abs(xa - ya) > ) // ya = y; vline (display, x, 441 + xa, 441 + ya, TRANS_ORANGE_OUT); } /* angle = arena.shift_message * (5 + arena.phase); angle &= 1023; int old_angle; for (i = 0; i < 15; i ++) { old_angle = angle; angle += (5 + arena.phase) * 29; x = 250 + i * 4; xa = xpart(angle, 7); if (angle < old_angle) ya = old_angle - angle; else ya = angle - old_angle; if (ya > y) ya = y; rectfill(display, x - 1, 441 + xa, x + 4, 445 + xa + ya, TRANS_ORANGE_IN); rect(display, x - 2, 440 + xa, x + 5, 446 + xa + ya, TRANS_ORANGE_OUT); }*/ END_TRANS_MODE } break; case 4: x = (arena.shift_message * 2) + 40; if (x < 330) x = 330; y = 430; if (arena.shift_message < 50) y = 480 - arena.shift_message; rectfill (display, x, y, 640, y + 23, COL_BACK3); rect (display, x, y, 640, y + 23, COL_OUTLINE); x += 8; y += 5; switch (arena.phase) { case 0: textprintf_ex (display, font, x, y, -1, -1, "THINGS COME HERE TO DIE"); break; case 1: textprintf_ex (display, font, x, y, -1, -1, "BONES FADE INTO THE GLOOM"); break; case 2: textprintf_ex (display, font, x, y, -1, -1, "CRUMBLING IN SILENCE"); break; case 3: textprintf_ex (display, font, x, y, -1, -1, "GONE THEN FORGOTTEN"); break; case 4: textprintf_ex (display, font, x, y, -1, -1, "DUST TO DUST"); break; } break; } } void display_pause (int pc) { vsync (); rectfill (screen, 200, 100, 440, 200, TRANS_ORANGE_IN - 1); rect (screen, 200, 100, 440, 200, TRANS_ORANGE_OUT - 1); rect (screen, 190, 90, 450, 210, TRANS_YELLOW_IN - 1); rect (screen, 191, 91, 449, 209, TRANS_YELLOW_OUT - 1); rect (screen, 189, 89, 451, 211, TRANS_YELLOW_OUT - 1); textprintf_centre_ex (screen, font, 320, 125, -1, -1, "QUIT?"); textprintf_centre_ex (screen, font, 320, 150, -1, -1, "PRESS 'Y' TO QUIT"); textprintf_centre_ex (screen, font, 320, 165, -1, -1, "OR 'N' TO CONTINUE"); } /* void run_underlay(void) { arena.underlay_position -= 2; if (arena.underlay_position <= 0) arena.underlay_position += 480; } */ void fcircle (int x, int y, int size, int col) { if (size < 0) size = 0; if (size >= RLE_CIRCLES) size = RLE_CIRCLES - 1; draw_trans_rle_sprite (display, RLE_circle[size][col], x - size - 1, y - size - 1); } /* Use this instead of Allegro's line function - it has better bounds checking. Sometimes for some reason I get an extremely long line which slows things down. */ void pline (BITMAP * bmp, int x1, int y1, int x2, int y2, int colour) { if (x1 < -500 || x1 > 900 || x2 < -500 || x2 > 900 || y2 < -500 || y2 > 900 || y2 < -500 || y2 > 900) return; line (bmp, x1, y1, x2, y2, colour); } void poly4 (BITMAP * target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col) { points4[0] = x1; points4[1] = y1; points4[2] = x2; points4[3] = y2; points4[4] = x3; points4[5] = y3; points4[6] = x4; points4[7] = y4; polygon (target, 4, points4, col); } void print_number (int x, int y, int n) { textprintf_ex (display, font, x, y, -1, -1, "%i", n); } garden-1.0.9/src/palette.h0000644000175000017500000000513712457263274012322 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void define_palette (void); int build_new_palette (int base, int rshift, int gshift, int bshift); void run_palette_shift (void); void set_base_palette (void); enum { BASECOL_L1_SPRING, BASECOL_L1_SUMMER, BASECOL_L1_AUTUMN, BASECOL_L1_WINTER, BASECOL_L1_SPRING2, BASECOL_L2_1, BASECOL_L2_2, BASECOL_L2_3, BASECOL_L2_4, BASECOL_L2_5, BASECOL_L3_1, BASECOL_L3_2, BASECOL_L3_3, BASECOL_L3_4, BASECOL_L3_5, BASECOL_L4_1, BASECOL_L4_2, BASECOL_L4_3, BASECOL_L4_4, BASECOL_L4_5, BASECOL_CFLOWER, BASECOL_END }; enum { COL_OUTLINE = 1, COL_WHITE, COL_LGREY, COL_DGREY, COL_COL1, COL_COL2, COL_COL3, COL_COL4, COL_BACK1, COL_BACK2, COL_BACK3, COL_BACK4, COL_BACK5 }; /* See the ebullet drawing function in display.c for how to use transparent colours. Only these colours may be used (there is more flexibility if you decide to use 16 or higher colour depth, but I like 8). */ enum { TRANS_SH1_OUT = 15, TRANS_SH1_IN = 28, TRANS_SH2_OUT = 41, TRANS_SH2_IN = 54, TRANS_ORANGE_OUT = 67, TRANS_ORANGE_IN = 80, TRANS_YELLOW_OUT = 93, TRANS_YELLOW_IN = 106, TRANS_B1_OUT = 119, TRANS_B1_IN = 132, TRANS_B2_OUT = 145, TRANS_B2_IN = 158, TRANS_B3_OUT = 171, TRANS_B3_IN = 184, TRANS_B4_OUT = 197, TRANS_B4_IN = 210, TRANS_B5_OUT = 223, TRANS_B5_IN = 236 }; enum { TCOL_SH1, TCOL_SH2, TCOL_ORANGE, TCOL_YELLOW, TCOL_B1, TCOL_B2, TCOL_B3, TCOL_B4, TCOL_B5 }; enum { EBCOL_B1, EBCOL_B2, EBCOL_B3, EBCOL_B4, EBCOL_B5 }; #define TRANS_BACK2_OUTLINE 237 #define TRANS_BACK3_OUTLINE 238 enum { TRANS_CONVERT_1 = 239, TRANS_CONVERT_2, TRANS_CONVERT_3, TRANS_CONVERT_4, TRANS_CONVERT_5, TRANS_CONVERT_6, TRANS_CONVERT_7, TRANS_CONVERT_8, TRANS_CONVERT_9, CONVERT_WHITE_TO_GREY }; // don't think these do anything at the moment: #define TRANS_REVERSE 225 #define TRANS_DARKEN 226 #define FIX_BITMAP 244 int colour_to_trans (int y); garden-1.0.9/src/display_init.c0000644000175000017500000023163312457263274013351 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include "allegro.h" #include #include "globvars.h" #include "palette.h" #include "stuff.h" #include "display.h" enum { FLIP_H, FLIP_V, FLIP_VH }; extern volatile unsigned char ticked; extern BITMAP *display; //extern RGB palet [256]; extern RGB palet [1] [256]; extern RLE_SPRITE *icon_RLEs [30]; // in menu.c extern RLE_SPRITE *player_icon_RLE; extern RLE_SPRITE *platform_RLE [PLATFORM_RLES]; extern RLE_SPRITE *island1_RLE [ISLAND1_RLES]; extern RLE_SPRITE *bone_RLE [BONE_RLES]; extern RLE_SPRITE *eRLE_small1 [S_ENEMY_RLES]; extern RLE_SPRITE *eRLE_large1 [L_ENEMY_RLES]; BITMAP *new_bitmap(int x, int y, const char errtxt []); void bordered_poly4(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col, int border_col); void bordered_poly6(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int x5, int y5, int x6, int y6, int col, int border_col); void bordered_triangle(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int col, int border_col); void fast_bordered_poly4(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col, int border_col, int fillx, int filly); void fast_bordered_triangle(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int col, int border_col, int fillx, int filly); void new_rle_struct(BITMAP *source, const char errtxt [], struct RLE_STRUCT *str, int bl); void prepare_enemy_bullets(void); void prepare_platform_rles(void); void prepare_s_enemy_rles(void); void prepare_l_enemy_rles(void); void prepare_trans_rles(void); void prepare_blades(void); void prepare_multi_rles(void); void prepare_rings(void); void prepare_petals(void); //void prepare_icon_rles(void); void prepare_lwbeamwaves(void); void prepare_mshockwaves(void); void prepare_lshockwaves(void); void prepare_hshockwaves(void); void prepare_rshockwaves(void); void prepare_various_effects(void); void fix_outline(BITMAP *source); void fix_trans(BITMAP *source); void coat_sprite(BITMAP *target, int col); void coat_file_sprite_xy(BITMAP *target, int col, int x1, int y1, int x2, int y2); void prepare_flowers(void); void extract_rle_struct(BITMAP *source, int x1, int y1, int x2, int y2, const char errtxt [], struct RLE_STRUCT *str, int bl); void extract_rle_struct2(BITMAP *source, struct RLE_STRUCT *str, int x_source, int y_source, int x, int y, int b1); void prepare_underlay(void); void new_rle_struct_colours(BITMAP *source, const char errtxt [], struct RLE_STRUCT str [SMALL_ROTATIONS] [9], int bl, int index2, int col1, int col2); extern struct RLE_STRUCT eRLE_flower [5] [50]; extern struct RLE_STRUCT dart_bullet [SMALL_ROTATIONS] [9]; extern struct RLE_STRUCT diamond_bullet [SMALL_ROTATIONS] [9]; //extern struct RLE_STRUCT diamond_bullet [SMALL_ROTATIONS] [9]; extern struct RLE_STRUCT sdart_bullet [SMALL_ROTATIONS] [9]; extern RLE_SPRITE *trans_RLE [TRANS_RLES]; extern RLE_SPRITE *RLE_circle [RLE_CIRCLES] [9]; extern struct RLE_STRUCT RLE_mg_shock [10]; extern struct RLE_STRUCT RLE_blade [SMALL_ROTATIONS]; extern struct RLE_STRUCT RLE_multi [WPN_TYPES] [8]; extern struct RLE_STRUCT petal1 [SMALL_ROTATIONS]; extern struct RLE_STRUCT petal2 [SMALL_ROTATIONS]; extern struct RLE_STRUCT petal3 [SMALL_ROTATIONS]; extern struct RLE_STRUCT RLE_beam [SMALL_ROTATIONS]; extern BITMAP *underlay; extern struct RLE_STRUCT RLE_mshock [4] [20]; extern struct RLE_STRUCT RLE_lshock [4] [50]; extern struct RLE_STRUCT RLE_hshock [4] [50]; extern struct RLE_STRUCT RLE_lwbeamshock [15]; extern struct RLE_STRUCT RLE_ring [20]; extern struct RLE_STRUCT RLE_rshock [5] [20]; char filename_buffer [DATADIR_SIZE]; BITMAP *load_up_bitmap(const char fname []); RLE_SPRITE *extract_rle_sprite(BITMAP *source, int x_source, int y_source, int x, int y); RLE_SPRITE *extract_flip_rle_sprite(BITMAP *source, int x_source, int y_source, int x, int y, int flip_type); RLE_SPRITE *sized_rle_sprite(BITMAP *source, int x, int y, const char errtxt []); RLE_SPRITE *new_rle_sprite(BITMAP *source, const char errtxt []); /* Basic display init functions. */ /* Call during start-up. */ void prepare_display(void) { /* int col [3] [3]; col [0] [0] = 5; col [0] [1] = 0; col [0] [2] = 0; col [1] [0] = 0; col [1] [1] = 5; col [1] [2] = 5; col [2] [0] = 0; col [2] [1] = 0; col [2] [2] = 5;*/ define_palette(); clear_to_color(screen, COL_OUTLINE); strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/garden.dat", sizeof(char) * DATADIR_SIZE); DATAFILE *datf = load_datafile(filename_buffer); if (datf == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Error: Couldn't find data.dat (expected it at %s)!", filename_buffer ); allegro_message(""); exit(1); } // int i, j; font = (FONT *)datf[0].dat; /* splash bitmap */ RGB splash_palette [256]; memset(& splash_palette, 0, sizeof(splash_palette)); strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/splash.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *splash_bitmap = load_bitmap(filename_buffer, splash_palette); if (splash_bitmap == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Failed to load in bitmap! (File not found?) %s", filename_buffer); exit(1); } /* strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/wait.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *wait_bitmap = load_bitmap(filename_buffer, splash_palette); if (wait_bitmap == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Failed to load in bitmap! (File not found?) %s", "wait.bmp"); exit(1); }*/ vsync(); set_palette(splash_palette); blit(splash_bitmap, screen, 0, 0, 0, 0, 640, 480); // blit(wait_bitmap, screen, 0, 0, 0, 0, 440, 300); destroy_bitmap(splash_bitmap); /* end splash */ // define_palette(0); // textprintf_right_ex(screen, font, 600, 200, -1, -1, "LOADING"); // textprintf_right_ex(screen, font, 600, 240, -1, -1, "PLEASE WAIT"); // textprintf_ex(screen, font, 100, 120, -1, -1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"); //#define FIX_FONT #ifdef FIX_FONT int i, j; BITMAP *font_bitmap = load_up_bitmap("g_font4.bmp"); /* do { i ++; } while(key [KEY_SPACE] == 0);*/ int back_col = getpixel(font_bitmap, 0, 0); int back_col2 = getpixel(font_bitmap, 1, 0); int out_col = getpixel(font_bitmap, 4, 17); int white_col = getpixel(font_bitmap, 4, 18); int lgrey_col = getpixel(font_bitmap, 8, 19); for (i = 0; i < font_bitmap->w; i ++) { for (j = 0; j < font_bitmap->h; j ++) { if (getpixel(font_bitmap, i, j) == back_col || getpixel(font_bitmap, i, j) == back_col2) { putpixel(font_bitmap, i, j, 255); continue; } if (getpixel(font_bitmap, i, j) == out_col) { putpixel(font_bitmap, i, j, COL_OUTLINE); continue; } if (getpixel(font_bitmap, i, j) == white_col) { putpixel(font_bitmap, i, j, COL_WHITE); continue; } if (getpixel(font_bitmap, i, j) == lgrey_col) { putpixel(font_bitmap, i, j, COL_LGREY); continue; } } } save_bitmap("g_font3.bmp", font_bitmap, palet [0]); #endif /* for (i = 0; i < 13; i ++) { for (j = 0; j < 19; j ++) { rectfill(screen, i * 10, j * 10, i * 10 + 10, j * 10 + 10, j * 13 + i + 1); } } circlefill(screen, 250, 250, 100, COL_COL2); circle(screen, 250, 250, 100, COL_OUTLINE); drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); rectfill(screen, 200, 10, 300, 200, TRANS_ORANGE_IN); rect(screen, 199, 9, 301, 201, TRANS_ORANGE_OUT); rectfill(screen, 210, 20, 410, 110, TRANS_B1_IN); rect(screen, 209, 19, 411, 111, TRANS_B1_OUT); rectfill(screen, 320, 10, 400, 230, TRANS_ORANGE_IN); rect(screen, 319, 9, 401, 231, TRANS_ORANGE_OUT); rectfill(screen, 310, 120, 450, 230, TRANS_ORANGE_IN); rect(screen, 309, 119, 451, 231, TRANS_ORANGE_OUT); */ drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); prepare_various_effects(); prepare_trans_rles(); prepare_s_enemy_rles(); prepare_l_enemy_rles(); prepare_enemy_bullets(); prepare_platform_rles(); prepare_flowers(); prepare_lwbeamwaves(); prepare_mshockwaves(); prepare_rshockwaves(); prepare_lshockwaves(); prepare_hshockwaves(); prepare_blades(); prepare_multi_rles(); prepare_rings(); prepare_petals(); //prepare_icon_rles(); display = new_bitmap(640, 480, "Display"); // clear_to_color(display, COL_OUTLINE); // clear_bitmap(screen); /* int i; for (i = 0; i < 50; i ++) { rectfill(screen, i*22, 10, i* 22 + 8, 20, i); rect(screen, i*22, 10, i* 22 + 8, 20, COL_WHITE); textprintf_centre_ex(screen, font, i * 22 + 4, 25, -1, -1, "%i", i); } do { i ++; } while (key [KEY_SPACE] == 0); */ } void prepare_s_enemy_rles(void) { strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/small.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *file_bitmap = load_up_bitmap(filename_buffer); fix_outline(file_bitmap); eRLE_small1 [S_ENEMY_SWOOPER1_1] = extract_rle_sprite(file_bitmap, 1, 1, 31, 32); eRLE_small1 [S_ENEMY_SWOOPER1_2] = extract_rle_sprite(file_bitmap, 33, 1, 33, 32); eRLE_small1 [S_ENEMY_SWOOPER1_3] = extract_rle_sprite(file_bitmap, 67, 1, 35, 32); eRLE_small1 [S_ENEMY_SWOOPER1_4] = extract_rle_sprite(file_bitmap, 103, 1, 37, 34); eRLE_small1 [S_ENEMY_DARTER1_MAIN] = extract_rle_sprite(file_bitmap, 141, 1, 49, 51); eRLE_small1 [S_ENEMY_DARTER1_CENTRE] = extract_rle_sprite(file_bitmap, 219, 1, 27, 28); eRLE_small1 [S_ENEMY_DARTER1_TOP] = extract_rle_sprite(file_bitmap, 191, 1, 27, 14); eRLE_small1 [S_ENEMY_DARTER1_INNER_L] = extract_rle_sprite(file_bitmap, 192, 16, 14, 41); eRLE_small1 [S_ENEMY_DARTER1_OUTER_L] = extract_rle_sprite(file_bitmap, 207, 16, 9, 31); eRLE_small1 [S_ENEMY_DARTER1_INNER_R] = extract_flip_rle_sprite(file_bitmap, 192, 16, 14, 41, FLIP_H); eRLE_small1 [S_ENEMY_DARTER1_OUTER_R] = extract_flip_rle_sprite(file_bitmap, 207, 16, 9, 31, FLIP_H); player_icon_RLE = extract_rle_sprite(file_bitmap, 277, 38, 23, 31); eRLE_small1 [S_ENEMY_PLAYER] = extract_rle_sprite(file_bitmap, 219, 30, 21, 18); eRLE_small1 [S_ENEMY_PLAYER_UP_L] = extract_rle_sprite(file_bitmap, 242, 32, 10, 8); eRLE_small1 [S_ENEMY_PLAYER_UP_R] = extract_flip_rle_sprite(file_bitmap, 242, 32, 10, 8, FLIP_H); eRLE_small1 [S_ENEMY_PLAYER_DOWN_L] = extract_rle_sprite(file_bitmap, 242, 41, 9, 20); eRLE_small1 [S_ENEMY_PLAYER_DOWN_R] = extract_flip_rle_sprite(file_bitmap, 242, 41, 9, 20, FLIP_H); eRLE_small1 [S_ENEMY_PLAYER1] = extract_rle_sprite(file_bitmap, 249, 1, 15, 10); eRLE_small1 [S_ENEMY_PLAYER2] = extract_rle_sprite(file_bitmap, 265, 1, 17, 11); eRLE_small1 [S_ENEMY_PLAYER3] = extract_rle_sprite(file_bitmap, 283, 1, 19, 12); eRLE_small1 [S_ENEMY_DIVER1_CENTRE] = extract_rle_sprite(file_bitmap, 325, 35, 35, 43); eRLE_small1 [S_ENEMY_DIVER1_INNER_L] = extract_rle_sprite(file_bitmap, 314, 35, 10, 42); eRLE_small1 [S_ENEMY_DIVER1_OUTER_L] = extract_rle_sprite(file_bitmap, 304, 37, 9, 13); eRLE_small1 [S_ENEMY_DIVER1_INNER_R] = extract_flip_rle_sprite(file_bitmap, 314, 35, 10, 42, FLIP_H); eRLE_small1 [S_ENEMY_DIVER1_OUTER_R] = extract_flip_rle_sprite(file_bitmap, 304, 37, 9, 13, FLIP_H); eRLE_small1 [S_ENEMY_C1P1_CORE] = extract_rle_sprite(file_bitmap, 368, 38, 25, 25); eRLE_small1 [S_ENEMY_C1P1_TOP] = extract_rle_sprite(file_bitmap, 395, 38, 17, 5); eRLE_small1 [S_ENEMY_C1P1_BOTTOM1] = extract_rle_sprite(file_bitmap, 395, 57, 23, 6); eRLE_small1 [S_ENEMY_C1P1_BOTTOM2] = extract_rle_sprite(file_bitmap, 395, 64, 17, 5); eRLE_small1 [S_ENEMY_C1P1_MIDL] = extract_rle_sprite(file_bitmap, 395, 44, 13, 12); eRLE_small1 [S_ENEMY_C1P1_MIDR] = extract_flip_rle_sprite(file_bitmap, 395, 44, 13, 12, FLIP_H); eRLE_small1 [S_ENEMY_SWOOPER2_1] = extract_rle_sprite(file_bitmap, 458, 47, 41, 43); eRLE_small1 [S_ENEMY_SWOOPER2_2] = extract_rle_sprite(file_bitmap, 500, 47, 43, 42); eRLE_small1 [S_ENEMY_SWOOPER2_3] = extract_rle_sprite(file_bitmap, 544, 47, 45, 41); eRLE_small1 [S_ENEMY_SWOOPER2_4] = extract_rle_sprite(file_bitmap, 590, 47, 47, 41); eRLE_small1 [S_ENEMY_DARTER2_CORE] = extract_rle_sprite(file_bitmap, 689, 9, 25, 25); eRLE_small1 [S_ENEMY_DARTER2_TOP] = extract_rle_sprite(file_bitmap, 675, 5, 13, 21); eRLE_small1 [S_ENEMY_DARTER2_BOTTOM] = extract_rle_sprite(file_bitmap, 675, 31, 13, 16); eRLE_small1 [S_ENEMY_DARTER2_INNER_L] = extract_rle_sprite(file_bitmap, 660, 2, 13, 48); eRLE_small1 [S_ENEMY_DARTER2_OUTER_L] = extract_rle_sprite(file_bitmap, 638, 2, 16, 48); eRLE_small1 [S_ENEMY_DARTER2_INNER_R] = extract_flip_rle_sprite(file_bitmap, 660, 2, 13, 48, FLIP_H); eRLE_small1 [S_ENEMY_DARTER2_OUTER_R] = extract_flip_rle_sprite(file_bitmap, 638, 2, 16, 48, FLIP_H); eRLE_small1 [S_ENEMY_SMALL_OUTER_L] = extract_rle_sprite(file_bitmap, 544, 3, 15, 29); eRLE_small1 [S_ENEMY_SMALL_OUTER_R] = extract_flip_rle_sprite(file_bitmap, 544, 3, 15, 29, FLIP_H); eRLE_small1 [S_ENEMY_SMALL_CORE1] = extract_rle_sprite(file_bitmap, 561, 2, 15, 19); eRLE_small1 [S_ENEMY_SMALL_CORE2] = extract_rle_sprite(file_bitmap, 561, 21, 15, 19); eRLE_small1 [S_ENEMY_LARGER_OUTER_L] = extract_rle_sprite(file_bitmap, 578, 4, 18, 35); eRLE_small1 [S_ENEMY_LARGER_OUTER_R] = extract_flip_rle_sprite(file_bitmap, 578, 4, 18, 35, FLIP_H); eRLE_small1 [S_ENEMY_LARGER_CORE1] = extract_rle_sprite(file_bitmap, 597, 2, 21, 18); eRLE_small1 [S_ENEMY_LARGER_CORE2] = extract_rle_sprite(file_bitmap, 597, 20, 21, 18); eRLE_small1 [S_ENEMY_WINGS_OUTER_L] = extract_rle_sprite(file_bitmap, 716, 4, 22, 43); eRLE_small1 [S_ENEMY_WINGS_OUTER_R] = extract_flip_rle_sprite(file_bitmap, 716, 4, 22, 43, FLIP_H); eRLE_small1 [S_ENEMY_WINGS_CORE1] = extract_rle_sprite(file_bitmap, 739, 3, 23, 32); eRLE_small1 [S_ENEMY_WINGS_CORE2] = extract_rle_sprite(file_bitmap, 739, 36, 23, 32); eRLE_small1 [S_ENEMY_MEGA_OUTER_L] = extract_rle_sprite(file_bitmap, 776, 4, 39, 76); eRLE_small1 [S_ENEMY_MEGA_OUTER_R] = extract_flip_rle_sprite(file_bitmap, 776, 4, 39, 76, FLIP_H); eRLE_small1 [S_ENEMY_MEGA_CORE] = extract_rle_sprite(file_bitmap, 816, 4, 43, 62); eRLE_small1 [S_ENEMY_BOSS3_CORE] = extract_rle_sprite(file_bitmap, 1030, 1, 43, 62); eRLE_small1 [S_ENEMY_DRIFTER1_CORE] = extract_rle_sprite(file_bitmap, 638, 53, 39, 31); eRLE_small1 [S_ENEMY_DRIFTER1_L] = extract_rle_sprite(file_bitmap, 678, 64, 20, 19); eRLE_small1 [S_ENEMY_DRIFTER1_R] = extract_flip_rle_sprite(file_bitmap, 678, 64, 20, 19, FLIP_H); eRLE_small1 [S_ENEMY_BEAMER_CORE] = extract_rle_sprite(file_bitmap, 862, 12, 39, 42); eRLE_small1 [S_ENEMY_BEAMER_L] = extract_rle_sprite(file_bitmap, 901, 19, 35, 42); eRLE_small1 [S_ENEMY_BEAMER_R] = extract_flip_rle_sprite(file_bitmap, 901, 19, 35, 42, FLIP_H); eRLE_small1 [S_ENEMY_BEAMER_U] = extract_rle_sprite(file_bitmap, 904, 3, 23, 15); eRLE_small1 [S_ENEMY_BEAMER_D] = extract_rle_sprite(file_bitmap, 873, 56, 19, 12); /* eRLE_small1 [S_ENEMY_RISER1_CORE] = extract_rle_sprite(file_bitmap, 911, 69, 11, 15); eRLE_small1 [S_ENEMY_RISER1_L] = extract_rle_sprite(file_bitmap, 894, 63, 16, 29); eRLE_small1 [S_ENEMY_RISER1_R] = extract_flip_rle_sprite(file_bitmap, 894, 63, 16, 29, FLIP_H);*/ eRLE_small1 [S_ENEMY_RISER1_CORE] = extract_rle_sprite(file_bitmap, 905, 62, 27, 30); eRLE_small1 [S_ENEMY_RISER1_L] = extract_rle_sprite(file_bitmap, 894, 62, 11, 23); eRLE_small1 [S_ENEMY_RISER1_R] = extract_flip_rle_sprite(file_bitmap, 894, 62, 11, 23, FLIP_H); eRLE_small1 [S_ENEMY_DRIFTER2_CORE] = extract_rle_sprite(file_bitmap, 936, 2, 39, 31); eRLE_small1 [S_ENEMY_DRIFTER2_L] = extract_rle_sprite(file_bitmap, 976, 3, 16, 39); eRLE_small1 [S_ENEMY_DRIFTER2_R] = extract_flip_rle_sprite(file_bitmap, 976, 3, 16, 39, FLIP_H); eRLE_small1 [S_ENEMY_ESCORT_CORE] = extract_rle_sprite(file_bitmap, 934, 57, 41, 25); eRLE_small1 [S_ENEMY_ESCORT_L] = extract_rle_sprite(file_bitmap, 977, 58, 16, 25); eRLE_small1 [S_ENEMY_ESCORT_R] = extract_flip_rle_sprite(file_bitmap, 977, 58, 16, 25, FLIP_H); eRLE_small1 [S_ENEMY_SHOOTER_L] = extract_rle_sprite(file_bitmap, 995, 17, 33, 42); eRLE_small1 [S_ENEMY_SHOOTER_R] = extract_flip_rle_sprite(file_bitmap, 995, 17, 33, 42, FLIP_H); eRLE_small1 [S_ENEMY_SHOOTER_U] = extract_rle_sprite(file_bitmap, 998, 1, 23, 14); eRLE_small1 [S_ENEMY_HOOK3] = extract_rle_sprite(file_bitmap, 1075, 1, 33, 32); eRLE_small1 [S_ENEMY_HOOK2] = extract_rle_sprite(file_bitmap, 1109, 1, 33, 32); eRLE_small1 [S_ENEMY_HOOK1] = extract_rle_sprite(file_bitmap, 1143, 1, 33, 33); eRLE_small1 [S_ENEMY_DROPPER1] = extract_rle_sprite(file_bitmap, 1080, 35, 29, 43); eRLE_small1 [S_ENEMY_DROPPER2] = extract_rle_sprite(file_bitmap, 1110, 34, 29, 44); eRLE_small1 [S_ENEMY_DROPPER3] = extract_rle_sprite(file_bitmap, 1140, 34, 29, 45); eRLE_small1 [S_ENEMY_RING1] = extract_rle_sprite(file_bitmap, 1177, 1, 49, 49); eRLE_small1 [S_ENEMY_RING2] = extract_rle_sprite(file_bitmap, 1227, 0, 51, 51); eRLE_small1 [S_ENEMY_RING3] = extract_rle_sprite(file_bitmap, 1279, 0, 53, 53); eRLE_small1 [S_ENEMY_HUNTER3] = extract_rle_sprite(file_bitmap, 1333, 1, 57, 51); eRLE_small1 [S_ENEMY_HUNTER2] = extract_rle_sprite(file_bitmap, 1391, 0, 57, 52); eRLE_small1 [S_ENEMY_HUNTER1] = extract_rle_sprite(file_bitmap, 1449, 0, 57, 53); eRLE_small1 [S_ENEMY_HOOK2_3] = extract_rle_sprite(file_bitmap, 1170, 56, 35, 35); eRLE_small1 [S_ENEMY_HOOK2_2] = extract_rle_sprite(file_bitmap, 1206, 56, 35, 35); eRLE_small1 [S_ENEMY_HOOK2_1] = extract_rle_sprite(file_bitmap, 1242, 56, 35, 35); destroy_bitmap(file_bitmap); } /* void prepare_icon_rles(void) { strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/icons.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *file_bitmap = load_up_bitmap(filename_buffer); fix_outline(file_bitmap); int i; for (i = 0; i < 11; i ++) { icon_RLEs [i] = extract_rle_sprite(file_bitmap, 1 + i * 41, 1, 40, 40); } destroy_bitmap(file_bitmap); } */ //#define FIXING void prepare_l_enemy_rles(void) { //#define FIXING // add_outline(file_bitmap, 0, 0); #ifdef FIXING RGB temp_palette [256]; strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/large.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *temp_bitmap = load_bitmap(filename_buffer, temp_palette); // set_palette(temp_palette); int col = getpixel(temp_bitmap, 2058, 23); coat_file_sprite_xy(temp_bitmap, col, 2200, 0, 2474, 199); save_bitmap("olarge.bmp", temp_bitmap, temp_palette); #endif strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/large.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *file_bitmap = load_up_bitmap(filename_buffer); fix_outline(file_bitmap); eRLE_large1 [L_ENEMY_STOPPER1] = extract_rle_sprite(file_bitmap, 1, 1, 93, 146); eRLE_large1 [L_ENEMY_STOPPER1_FRONT] = extract_rle_sprite(file_bitmap, 100, 1, 43, 20); eRLE_large1 [L_ENEMY_STOPPER1_CENTRE] = extract_rle_sprite(file_bitmap, 130, 100, 91, 95); eRLE_large1 [L_ENEMY_STOPPER1_F_L] = extract_rle_sprite(file_bitmap, 100, 23, 27, 29); eRLE_large1 [L_ENEMY_STOPPER1_F_R] = extract_flip_rle_sprite(file_bitmap, 100, 23, 27, 29, FLIP_H); eRLE_large1 [L_ENEMY_STOPPER1_M_L] = extract_rle_sprite(file_bitmap, 97, 53, 33, 86); eRLE_large1 [L_ENEMY_STOPPER1_M_R] = extract_flip_rle_sprite(file_bitmap, 97, 53, 33, 86, FLIP_H); eRLE_large1 [L_ENEMY_STOPPER1_B_L] = extract_rle_sprite(file_bitmap, 132, 21, 22, 77); eRLE_large1 [L_ENEMY_STOPPER1_B_R] = extract_flip_rle_sprite(file_bitmap, 132, 21, 22, 77, FLIP_H); eRLE_large1 [L_ENEMY_CARRIER1_CORE] = extract_rle_sprite(file_bitmap, 224, 6, 137, 154); eRLE_large1 [L_ENEMY_CARRIER1_TOP1] = extract_rle_sprite(file_bitmap, 366, 1, 65, 12); eRLE_large1 [L_ENEMY_CARRIER1_TOP2] = extract_rle_sprite(file_bitmap, 366, 14, 105, 40); eRLE_large1 [L_ENEMY_CARRIER1_TOP3] = extract_rle_sprite(file_bitmap, 365, 55, 129, 44); eRLE_large1 [L_ENEMY_CARRIER1_MIDL1] = extract_rle_sprite(file_bitmap, 364, 100, 51, 31); eRLE_large1 [L_ENEMY_CARRIER1_MIDL2] = extract_rle_sprite(file_bitmap, 423, 99, 49, 31); eRLE_large1 [L_ENEMY_CARRIER1_MIDR1] = extract_flip_rle_sprite(file_bitmap, 364, 100, 51, 31, FLIP_H); eRLE_large1 [L_ENEMY_CARRIER1_MIDR2] = extract_flip_rle_sprite(file_bitmap, 423, 99, 49, 31, FLIP_H); eRLE_large1 [L_ENEMY_CARRIER1_BOTTOM1] = extract_rle_sprite(file_bitmap, 367, 131, 125, 37); eRLE_large1 [L_ENEMY_CARRIER1_BOTTOM2] = extract_rle_sprite(file_bitmap, 378, 168, 93, 31); eRLE_large1 [L_ENEMY_POD1_CORE] = extract_rle_sprite(file_bitmap, 555, 101, 65, 94); eRLE_large1 [L_ENEMY_POD1_BODYL] = extract_rle_sprite(file_bitmap, 500, 48, 53, 90); eRLE_large1 [L_ENEMY_POD1_BODYR] = extract_flip_rle_sprite(file_bitmap, 500, 48, 53, 90, FLIP_H); eRLE_large1 [L_ENEMY_POD1_TOPC] = extract_rle_sprite(file_bitmap, 528, 139, 19, 36); eRLE_large1 [L_ENEMY_POD1_TOPL] = extract_rle_sprite(file_bitmap, 500, 139, 22, 44); eRLE_large1 [L_ENEMY_POD1_TOPR] = extract_flip_rle_sprite(file_bitmap, 500, 139, 22, 44, FLIP_H); eRLE_large1 [L_ENEMY_CRUISER1] = extract_rle_sprite(file_bitmap, 633, 17, 99, 125); eRLE_large1 [L_ENEMY_CRUISER2] = extract_rle_sprite(file_bitmap, 744, 4, 111, 60); eRLE_large1 [L_ENEMY_CRUISER3] = extract_rle_sprite(file_bitmap, 748, 68, 119, 120); eRLE_large1 [L_ENEMY_CRUISER4] = extract_rle_sprite(file_bitmap, 869, 3, 95, 95); eRLE_large1 [L_ENEMY_BOSS1_CORE] = extract_rle_sprite(file_bitmap, 976, 12, 155, 95); eRLE_large1 [L_ENEMY_BOSS1_UL] = extract_rle_sprite(file_bitmap, 957, 119, 102, 63); eRLE_large1 [L_ENEMY_BOSS1_UR] = extract_flip_rle_sprite(file_bitmap, 957, 119, 102, 63, FLIP_H); eRLE_large1 [L_ENEMY_BOSS1_DR] = extract_flip_rle_sprite(file_bitmap, 957, 119, 102, 63, FLIP_VH); eRLE_large1 [L_ENEMY_BOSS1_DL] = extract_flip_rle_sprite(file_bitmap, 957, 119, 102, 63, FLIP_V); eRLE_large1 [L_ENEMY_BOSS1_OUT_L] = extract_rle_sprite(file_bitmap, 888, 122, 58, 65); eRLE_large1 [L_ENEMY_BOSS1_OUT_R] = extract_flip_rle_sprite(file_bitmap, 888, 122, 58, 65, FLIP_H); eRLE_large1 [L_ENEMY_BOSS1_U] = extract_rle_sprite(file_bitmap, 1069, 118, 69, 31); eRLE_large1 [L_ENEMY_BOSS1_D] = extract_flip_rle_sprite(file_bitmap, 1069, 118, 69, 31, FLIP_V); eRLE_large1 [L_ENEMY_BOSS1_L] = extract_rle_sprite(file_bitmap, 1146, 127, 31, 67); eRLE_large1 [L_ENEMY_BOSS1_R] = extract_flip_rle_sprite(file_bitmap, 1146, 127, 31, 67, FLIP_H); eRLE_large1 [L_ENEMY_BOSS2_CORE] = extract_rle_sprite(file_bitmap, 1255, 36, 55, 73); eRLE_large1 [L_ENEMY_BOSS2_IN_L] = extract_rle_sprite(file_bitmap, 1182, 20, 70, 105); eRLE_large1 [L_ENEMY_BOSS2_IN_R] = extract_flip_rle_sprite(file_bitmap, 1182, 20, 70, 105, FLIP_H); eRLE_large1 [L_ENEMY_BOSS2_OUT_L] = extract_rle_sprite(file_bitmap, 1143, 29, 32, 58); eRLE_large1 [L_ENEMY_BOSS2_OUT_R] = extract_flip_rle_sprite(file_bitmap, 1143, 29, 32, 58, FLIP_H); eRLE_large1 [L_ENEMY_WALKER2] = extract_rle_sprite(file_bitmap, 1312, 2, 153, 127); eRLE_large1 [L_ENEMY_WALKER1] = extract_rle_sprite(file_bitmap, 1466, 2, 153, 127); eRLE_large1 [L_ENEMY_WALKER3] = extract_rle_sprite(file_bitmap, 1620, 2, 153, 127); eRLE_large1 [L_ENEMY_SPINNER3] = extract_rle_sprite(file_bitmap, 1774, 3, 105, 166); eRLE_large1 [L_ENEMY_SPINNER2] = extract_rle_sprite(file_bitmap, 1882, 2, 105, 168); eRLE_large1 [L_ENEMY_SPINNER1] = extract_rle_sprite(file_bitmap, 1988, 1, 105, 170); eRLE_large1 [L_ENEMY_BOSS4] = extract_rle_sprite(file_bitmap, 2098, 0, 229, 202); destroy_bitmap(file_bitmap); } void prepare_trans_rles(void) { strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/trans.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *file_bitmap = load_up_bitmap(filename_buffer); fix_trans(file_bitmap); extract_rle_struct2(file_bitmap, RLE_mg_shock, 1, 1, 1, 1, 0); extract_rle_struct2(file_bitmap, RLE_mg_shock, 3, 1, 3, 3, 1); extract_rle_struct2(file_bitmap, RLE_mg_shock, 7, 1, 7, 7, 2); extract_rle_struct2(file_bitmap, RLE_mg_shock, 15, 1, 9, 9, 3); extract_rle_struct2(file_bitmap, RLE_mg_shock, 25, 1, 11, 11, 4); extract_rle_struct2(file_bitmap, RLE_mg_shock, 37, 1, 13, 13, 5); extract_rle_struct2(file_bitmap, RLE_mg_shock, 51, 1, 17, 17, 6); extract_rle_struct2(file_bitmap, RLE_mg_shock, 69, 1, 19, 19, 7); extract_rle_struct2(file_bitmap, RLE_mg_shock, 89, 1, 21, 21, 8); // trans_RLE [RLE_TRANS_MGBULLET1] = extract_rle_sprite(file_bitmap, 1, 1, 5, 23); /* trans_RLE [RLE_TRANS_MGBULLET1] = extract_rle_sprite(file_bitmap, 1, 1, 5, 23); trans_RLE [RLE_TRANS_MGBULLET2] = extract_rle_sprite(file_bitmap, 7, 1, 5, 23); trans_RLE [RLE_TRANS_MGBULLET3] = extract_rle_sprite(file_bitmap, 13, 1, 5, 23); trans_RLE [RLE_TRANS_MGBULLET4] = extract_rle_sprite(file_bitmap, 19, 1, 5, 23);*/ destroy_bitmap(file_bitmap); } void prepare_enemy_bullets(void) { int i;//, o; BITMAP *temp_bitmap; temp_bitmap = new_bitmap(50, 50, "prepare_glass_bullets"); int inc = ANGLE_1 / SMALL_ROTATIONS; int angle; int col = TRANS_B1_IN, border = TRANS_B1_OUT; /* for (o = 0; o < 3; o ++) { switch(o) { default: case 0: col = TRANS_RED_IN; border = TRANS_RED_OUT; break; case 1: col = TRANS_GREEN_IN; border = TRANS_GREEN_OUT; break; case 2: col = TRANS_BLUE_IN; border = TRANS_BLUE_OUT; break; }*/ for (i = 0; i < SMALL_ROTATIONS; i ++) { clear_bitmap(temp_bitmap); angle = i * inc; bordered_poly4(temp_bitmap, 25 + xpart(angle, 23), 25 + ypart(angle, 23), 25 + xpart(angle + ANGLE_8, 11), 25 + ypart(angle + ANGLE_8, 11), 25, 25, 25 + xpart(angle - ANGLE_8, 11), 25 + ypart(angle - ANGLE_8, 11), col, border); /* bordered_poly4(temp_bitmap, 25 + xpart(angle, 12), 25 + ypart(angle, 12), 25 + xpart(angle + ANGLE_4 + ANGLE_8, 12), 25 + ypart(angle + ANGLE_4 + ANGLE_8, 12), 25 - xpart(angle, 15), 25 - ypart(angle, 15), 25 + xpart(angle - ANGLE_4 - ANGLE_8, 12), 25 + ypart(angle - ANGLE_4 - ANGLE_8, 12), col, border);*/ /* bordered_triangle(temp_bitmap, 15 + xpart(angle, 12), 15 + ypart(angle, 12), 15 + xpart(angle + ANGLE_4 + ANGLE_8, 12), 15 + ypart(angle + ANGLE_4 + ANGLE_8, 12), 15 + xpart(angle - ANGLE_4 - ANGLE_8, 12), 15 + ypart(angle - ANGLE_4 - ANGLE_8, 12), col, border);*/ // new_rle_struct(temp_bitmap, "prepare dart bullets", &dart_bullet [o] [i], -1); new_rle_struct_colours(temp_bitmap, "prepare dart bullets", dart_bullet, -1, i, TCOL_B1, TCOL_B5); // Now let's make small darts: clear_bitmap(temp_bitmap); angle = i * inc; /* bordered_poly4(temp_bitmap, 25 + xpart(angle, 20), 25 + ypart(angle, 20), 25 + xpart(angle + ANGLE_4, 12), 25 + ypart(angle + ANGLE_4, 12), 25 - xpart(angle, 20), 25 - ypart(angle, 20), 25 + xpart(angle - ANGLE_4, 12), 25 + ypart(angle - ANGLE_4, 12), col, border);*/ bordered_poly4(temp_bitmap, 25 + xpart(angle, 17), 25 + ypart(angle, 17), 25 + xpart(angle + ANGLE_8, 7), 25 + ypart(angle + ANGLE_8, 7), 25, 25, 25 + xpart(angle - ANGLE_8, 7), 25 + ypart(angle - ANGLE_8, 7), col, border); new_rle_struct_colours(temp_bitmap, "prepare sdart bullets", sdart_bullet, -1, i, TCOL_B1, TCOL_B5); // Now let's make diamond bullets: clear_bitmap(temp_bitmap); angle = i * inc; bordered_poly4(temp_bitmap, 25 + xpart(angle, 15), 25 + ypart(angle, 15), 25 + xpart(angle + ANGLE_4, 9), 25 + ypart(angle + ANGLE_4, 9), 25 - xpart(angle, 15), 25 - ypart(angle, 15), 25 + xpart(angle - ANGLE_4, 9), 25 + ypart(angle - ANGLE_4, 9), col, border); /* bordered_poly4(temp_bitmap, 25 + xpart(angle, 20), 25 + ypart(angle, 20), 25 + xpart(angle + ANGLE_4, 12), 25 + ypart(angle + ANGLE_4, 12), 25 - xpart(angle, 20), 25 - ypart(angle, 20), 25 + xpart(angle - ANGLE_4, 12), 25 + ypart(angle - ANGLE_4, 12), col, border); */ // circlefill(temp_bitmap, 25, 25, 3, border); // new_rle_struct(temp_bitmap, "prepare diamond bullets", &diamond_bullet [o] [i], -1); new_rle_struct_colours(temp_bitmap, "prepare diamond bullets", diamond_bullet, -1, i, TCOL_B1, TCOL_B5); } destroy_bitmap(temp_bitmap); // now let's do circles!! int j; for (i = 0; i < RLE_CIRCLES; i ++) { temp_bitmap = new_bitmap((i + 1) * 2, (i + 1) * 2, "prepare circles"); clear_bitmap(temp_bitmap); // clear_to_color(temp_bitmap, TRANS_YELLOW_OUT); for (j = 0; j < 9; j ++) { circlefill(temp_bitmap, i + 1, i + 1, i, 28 + j * 26); circle(temp_bitmap, i + 1, i + 1, i, 15 + j * 26); RLE_circle [i] [j] = get_rle_sprite(temp_bitmap); } destroy_bitmap(temp_bitmap); } // now it's beam time! temp_bitmap = new_bitmap(60, 60, "prepare beams"); for (i = 0; i < SMALL_ROTATIONS; i ++) { clear_bitmap(temp_bitmap); angle = i * inc; fast_bordered_poly4(temp_bitmap, 30 + xpart(angle, 25) + xpart(angle + ANGLE_4, 4), 30 + ypart(angle, 25) + ypart(angle + ANGLE_4, 4), 30 + xpart(angle, 25) + xpart(angle - ANGLE_4, 4), 30 + ypart(angle, 25) + ypart(angle - ANGLE_4, 4), 30 - xpart(angle, 25) + xpart(angle - ANGLE_4, 4), 30 - ypart(angle, 25) + ypart(angle - ANGLE_4, 4), 30 - xpart(angle, 25) + xpart(angle + ANGLE_4, 4), 30 - ypart(angle, 25) + ypart(angle + ANGLE_4, 4), TRANS_B5_IN,TRANS_B5_OUT, 30, 30); new_rle_struct(temp_bitmap, "beam RLE", &RLE_beam [i], -1); } destroy_bitmap(temp_bitmap); } void prepare_blades(void) { int i; BITMAP *temp_bitmap; temp_bitmap = new_bitmap(80, 80, "prepare_blades"); int inc = ANGLE_1 / SMALL_ROTATIONS; int angle; for (i = 0; i < SMALL_ROTATIONS; i ++) { clear_bitmap(temp_bitmap); angle = i * inc; bordered_poly4(temp_bitmap, 40 + xpart(angle, 23), 40 + ypart(angle, 23), 40 - xpart(angle + ANGLE_4 + ANGLE_8, 8), 40 - ypart(angle + ANGLE_4 + ANGLE_8, 8), 40, 40, 40 - xpart(angle - ANGLE_4 - ANGLE_8, 8), 40 - ypart(angle - ANGLE_4 - ANGLE_8, 8), /* 25 + xpart(angle, 12), 25 + ypart(angle, 12), 25 + xpart(angle + ANGLE_4 + ANGLE_8, 8), 25 + ypart(angle + ANGLE_4 + ANGLE_8, 8), 25 - xpart(angle, 15), 25 - ypart(angle, 15), 25 + xpart(angle - ANGLE_4 - ANGLE_8, 8), 25 + ypart(angle - ANGLE_4 - ANGLE_8, 8),*/ TRANS_YELLOW_IN, TRANS_YELLOW_OUT); new_rle_struct(temp_bitmap, "blade RLE", &RLE_blade [i], -1); } // end for i destroy_bitmap(temp_bitmap); } void prepare_petals(void) { int i; BITMAP *temp_bitmap; temp_bitmap = new_bitmap(80, 80, "prepare_petals"); int inc = ANGLE_1 / SMALL_ROTATIONS; int angle; for (i = 0; i < SMALL_ROTATIONS; i ++) { clear_bitmap(temp_bitmap); angle = i * inc; bordered_poly4(temp_bitmap, 40 + xpart(angle, 23), 40 + ypart(angle, 23), 40 - xpart(angle + ANGLE_4 + ANGLE_8, 8), 40 - ypart(angle + ANGLE_4 + ANGLE_8, 8), 40, 40, 40 - xpart(angle - ANGLE_4 - ANGLE_8, 8), 40 - ypart(angle - ANGLE_4 - ANGLE_8, 8), TRANS_SH1_IN, TRANS_SH1_OUT); bordered_poly4(temp_bitmap, 40 + xpart(angle, 33), 40 + ypart(angle, 33), 40 - xpart(angle + ANGLE_4 + ANGLE_8, 12), 40 - ypart(angle + ANGLE_4 + ANGLE_8, 12), 40 + xpart(angle, 5), 40 + ypart(angle, 5), 40 - xpart(angle - ANGLE_4 - ANGLE_8, 12), 40 - ypart(angle - ANGLE_4 - ANGLE_8, 12), TRANS_SH2_IN, TRANS_SH2_OUT); circlefill(temp_bitmap, 40 + xpart(angle, 12), 40 + ypart(angle, 12), 3, TRANS_SH1_IN); circle(temp_bitmap, 40 + xpart(angle, 12), 40 + ypart(angle, 12), 3, TRANS_SH2_OUT); /* bordered_poly4(temp_bitmap, 40 + xpart(angle, 33), 40 + ypart(angle, 33), 40 - xpart(angle + ANGLE_4 + ANGLE_8, 12), 40 - ypart(angle + ANGLE_4 + ANGLE_8, 12), 40 + xpart(angle, 15), 40 + ypart(angle, 15), 40 - xpart(angle - ANGLE_4 - ANGLE_8, 12), 40 - ypart(angle - ANGLE_4 - ANGLE_8, 12), TRANS_SH2_IN, TRANS_SH2_OUT);*/ new_rle_struct(temp_bitmap, "petal1 RLE", &petal1 [i], -1); } // end for i for (i = 0; i < SMALL_ROTATIONS; i ++) { clear_bitmap(temp_bitmap); angle = i * inc; bordered_poly4(temp_bitmap, 40 + xpart(angle, 22), 40 + ypart(angle, 22), 40 - xpart(angle + ANGLE_4 + ANGLE_8, 7), 40 - ypart(angle + ANGLE_4 + ANGLE_8, 6), 40, 40, 40 - xpart(angle - ANGLE_4 - ANGLE_8, 7), 40 - ypart(angle - ANGLE_4 - ANGLE_8, 6), TRANS_SH1_IN, TRANS_SH1_OUT); /* bordered_poly4(temp_bitmap, 40 + xpart(angle, 33), 40 + ypart(angle, 33), 40 - xpart(angle + ANGLE_4 + ANGLE_8, 12), 40 - ypart(angle + ANGLE_4 + ANGLE_8, 12), 40 + xpart(angle, 5), 40 + ypart(angle, 5), 40 - xpart(angle - ANGLE_4 - ANGLE_8, 12), 40 - ypart(angle - ANGLE_4 - ANGLE_8, 12), TRANS_SH2_IN, TRANS_SH2_OUT); circlefill(temp_bitmap, 40 + xpart(angle, 12), 40 + ypart(angle, 12), 3, TRANS_SH1_IN); circle(temp_bitmap, 40 + xpart(angle, 12), 40 + ypart(angle, 12), 3, TRANS_SH2_OUT);*/ new_rle_struct(temp_bitmap, "petal2 RLE", &petal2 [i], -1); } // end for i destroy_bitmap(temp_bitmap); temp_bitmap = new_bitmap(120, 120, "prepare petal3"); for (i = 0; i < SMALL_ROTATIONS; i ++) { clear_bitmap(temp_bitmap); angle = i * inc; bordered_poly4(temp_bitmap, 60 + xpart(angle, 45), 60 + ypart(angle, 45), 60 - xpart(angle + ANGLE_4 + ANGLE_8, 12), 60 - ypart(angle + ANGLE_4 + ANGLE_8, 12), 60, 60, 60 - xpart(angle - ANGLE_4 - ANGLE_8, 12), 60 - ypart(angle - ANGLE_4 - ANGLE_8, 12), TRANS_SH1_IN, TRANS_SH1_OUT); bordered_poly6(temp_bitmap, 60 + xpart(angle, 55), 60 + ypart(angle, 55), 60 + xpart(angle - ANGLE_16, 45), 60 + ypart(angle - ANGLE_16, 45), 60 - xpart(angle + ANGLE_4 + ANGLE_8, 18), 60 - ypart(angle + ANGLE_4 + ANGLE_8, 18), 60 + xpart(angle, 9), 60 + ypart(angle, 9), 60 - xpart(angle - ANGLE_4 - ANGLE_8, 18), 60 - ypart(angle - ANGLE_4 - ANGLE_8, 18), 60 + xpart(angle + ANGLE_16, 45), 60 + ypart(angle + ANGLE_16, 45), TRANS_SH2_IN, TRANS_SH2_OUT); /* bordered_poly4(temp_bitmap, 60 + xpart(angle, 55), 60 + ypart(angle, 55), 60 - xpart(angle + ANGLE_4 + ANGLE_8, 18), 60 - ypart(angle + ANGLE_4 + ANGLE_8, 18), 60 + xpart(angle, 9), 60 + ypart(angle, 9), 60 - xpart(angle - ANGLE_4 - ANGLE_8, 18), 60 - ypart(angle - ANGLE_4 - ANGLE_8, 18), TRANS_SH2_IN, TRANS_SH2_OUT);*/ circlefill(temp_bitmap, 60 + xpart(angle, 25), 60 + ypart(angle, 25), 4, TRANS_SH1_IN); circle(temp_bitmap, 60 + xpart(angle, 25), 60 + ypart(angle, 25), 4, TRANS_SH2_OUT); // circlefill(temp_bitmap, 60 + xpart(angle, 22), 60 + ypart(angle, 22), 3, TRANS_SH1_IN); // circle(temp_bitmap, 60 + xpart(angle, 22), 60 + ypart(angle, 22), 3, TRANS_SH2_OUT); circlefill(temp_bitmap, 60 + xpart(angle, 38), 60 + ypart(angle, 38), 3, TRANS_SH1_IN); circle(temp_bitmap, 60 + xpart(angle, 38), 60 + ypart(angle, 38), 3, TRANS_SH2_OUT); new_rle_struct(temp_bitmap, "petal1 RLE", &petal3 [i], -1); } // end for i destroy_bitmap(temp_bitmap); } void prepare_multi_rles(void) { strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/multi.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *file_bitmap = load_up_bitmap(filename_buffer); fix_outline(file_bitmap); int i; RLE_multi [WPN_CANNON] [0].sprite = extract_rle_sprite(file_bitmap, 3, 1, 11, 11); RLE_multi [WPN_CANNON] [0].x = 5; RLE_multi [WPN_CANNON] [0].y = 5; RLE_multi [WPN_CANNON] [1].sprite = extract_rle_sprite(file_bitmap, 2, 13, 13, 11); RLE_multi [WPN_CANNON] [1].x = 6; RLE_multi [WPN_CANNON] [1].y = 5; RLE_multi [WPN_CANNON] [2].sprite = extract_rle_sprite(file_bitmap, 1, 25, 15, 11); RLE_multi [WPN_CANNON] [2].x = 7; RLE_multi [WPN_CANNON] [2].y = 5; RLE_multi [WPN_CANNON] [3].sprite = extract_rle_sprite(file_bitmap, 1, 37, 15, 11); RLE_multi [WPN_CANNON] [3].x = 7; RLE_multi [WPN_CANNON] [3].y = 5; RLE_multi [WPN_BLADE] [0].sprite = extract_rle_sprite(file_bitmap, 17, 1, 9, 9); RLE_multi [WPN_BLADE] [0].x = 4; RLE_multi [WPN_BLADE] [0].y = 4; RLE_multi [WPN_BLADE] [1].sprite = extract_rle_sprite(file_bitmap, 19, 11, 7, 7); RLE_multi [WPN_BLADE] [1].x = 3; RLE_multi [WPN_BLADE] [1].y = 3; for (i = 0; i < 5; i ++) { RLE_multi [WPN_MGUN] [i].sprite = extract_rle_sprite(file_bitmap, 27, 1 + i * 12, 19, 11); RLE_multi [WPN_MGUN] [i].x = 9; RLE_multi [WPN_MGUN] [i].y = 6; } for (i = 0; i < 4; i ++) { RLE_multi [WPN_SCATTER] [i].sprite = extract_rle_sprite(file_bitmap, 47, 1 + i * 13, 13, 11); RLE_multi [WPN_SCATTER] [i].x = 6; RLE_multi [WPN_SCATTER] [i].y = 5; } RLE_multi [WPN_LWBEAM] [0].sprite = extract_rle_sprite(file_bitmap, 101, 1, 11, 11); RLE_multi [WPN_LWBEAM] [0].x = 5; RLE_multi [WPN_LWBEAM] [0].y = 5; RLE_multi [WPN_LWBEAM] [1].sprite = extract_rle_sprite(file_bitmap, 100, 13, 13, 11); RLE_multi [WPN_LWBEAM] [1].x = 6; RLE_multi [WPN_LWBEAM] [1].y = 5; RLE_multi [WPN_LWBEAM] [2].sprite = extract_rle_sprite(file_bitmap, 99, 25, 15, 11); RLE_multi [WPN_LWBEAM] [2].x = 7; RLE_multi [WPN_LWBEAM] [2].y = 5; RLE_multi [WPN_SWBEAM] [0].sprite = extract_rle_sprite(file_bitmap, 73, 1, 11, 11); RLE_multi [WPN_SWBEAM] [0].x = 5; RLE_multi [WPN_SWBEAM] [0].y = 5; RLE_multi [WPN_SWBEAM] [1].sprite = extract_rle_sprite(file_bitmap, 73, 13, 11, 11); RLE_multi [WPN_SWBEAM] [1].x = 5; RLE_multi [WPN_SWBEAM] [1].y = 4; RLE_multi [WPN_SWBEAM] [2].sprite = extract_rle_sprite(file_bitmap, 73, 25, 11, 11); RLE_multi [WPN_SWBEAM] [2].x = 5; RLE_multi [WPN_SWBEAM] [2].y = 3; RLE_multi [WPN_SEEKER] [0].sprite = extract_rle_sprite(file_bitmap, 85, 1, 13, 12); RLE_multi [WPN_SEEKER] [0].x = 6; RLE_multi [WPN_SEEKER] [0].y = 7; RLE_multi [WPN_SEEKER] [1].sprite = extract_rle_sprite(file_bitmap, 85, 14, 13, 12); RLE_multi [WPN_SEEKER] [1].x = 6; RLE_multi [WPN_SEEKER] [1].y = 7; RLE_multi [WPN_SEEKER] [2].sprite = extract_rle_sprite(file_bitmap, 85, 27, 13, 12); RLE_multi [WPN_SEEKER] [2].x = 6; RLE_multi [WPN_SEEKER] [2].y = 7; RLE_multi [WPN_SEEKER] [3].sprite = extract_rle_sprite(file_bitmap, 85, 40, 13, 12); RLE_multi [WPN_SEEKER] [3].x = 6; RLE_multi [WPN_SEEKER] [3].y = 7; RLE_multi [WPN_SEEKER] [4].sprite = extract_rle_sprite(file_bitmap, 85, 53, 13, 12); RLE_multi [WPN_SEEKER] [4].x = 6; RLE_multi [WPN_SEEKER] [4].y = 7; RLE_multi [WPN_RECT] [0].sprite = extract_rle_sprite(file_bitmap, 115, 1, 15, 11); RLE_multi [WPN_RECT] [0].x = 7; RLE_multi [WPN_RECT] [0].y = 5; RLE_multi [WPN_RECT] [1].sprite = extract_rle_sprite(file_bitmap, 116, 13, 13, 11); RLE_multi [WPN_RECT] [1].x = 6; RLE_multi [WPN_RECT] [1].y = 5; RLE_multi [WPN_RECT] [2].sprite = extract_rle_sprite(file_bitmap, 117, 25, 11, 11); RLE_multi [WPN_RECT] [2].x = 5; RLE_multi [WPN_RECT] [2].y = 5; RLE_multi [WPN_RECT] [3].sprite = extract_rle_sprite(file_bitmap, 117, 37, 11, 11); RLE_multi [WPN_RECT] [3].x = 5; RLE_multi [WPN_RECT] [3].y = 5; RLE_multi [WPN_EIGHT] [0].sprite = extract_rle_sprite(file_bitmap, 131, 1, 13, 13); RLE_multi [WPN_EIGHT] [0].x = 6; RLE_multi [WPN_EIGHT] [0].y = 6; destroy_bitmap(file_bitmap); } void prepare_platform_rles(void) { strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); strncat(filename_buffer, "gfx/platform.bmp", sizeof(char) * DATADIR_SIZE); BITMAP *file_bitmap = load_up_bitmap(filename_buffer); // int i, j; // exit(getpixel(file_bitmap, 0, 0)); fix_outline(file_bitmap); // int i; // for (i = 0; i < 2; i ++) // {/ platform_RLE [PLATFORM_LR] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_LR * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_UD] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UD * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_UL] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UL * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_DL] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UL * PLATFORM_SIZE, 1, 91, 91, 1); platform_RLE [PLATFORM_UR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UL * PLATFORM_SIZE, 1, 91, 91, 0); platform_RLE [PLATFORM_DR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UL * PLATFORM_SIZE, 1, 91, 91, 2); platform_RLE [PLATFORM_UDL] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UDL * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_UDR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UDL * PLATFORM_SIZE, 1, 91, 91, 0); platform_RLE [PLATFORM_ULR] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_ULR * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_DLR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_ULR * PLATFORM_SIZE, 1, 91, 91, 1); platform_RLE [PLATFORM_L] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_L * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_R] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_L * PLATFORM_SIZE, 1, 91, 91, 0); platform_RLE [PLATFORM_U] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_U * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_D] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_U * PLATFORM_SIZE, 1, 91, 91, 1); platform_RLE [PLATFORM_UR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UL * PLATFORM_SIZE, 1, 91, 91, 0); platform_RLE [PLATFORM_DR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_UL * PLATFORM_SIZE, 1, 91, 91, 2); platform_RLE [PLATFORM_NODE] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_NODE * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_NODE2] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_NODE2 * PLATFORM_SIZE, 1, 91, 91); platform_RLE [PLATFORM_NODE3] = extract_rle_sprite(file_bitmap, 1 + FILE_PLATFORM_NODE3 * PLATFORM_SIZE, 1, 91, 91); island1_RLE [ISLAND1_D] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_D * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_U] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_D * PLATFORM_SIZE, 93, 91, 91, FLIP_V); island1_RLE [ISLAND1_R] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_R * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_L] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_R * PLATFORM_SIZE, 93, 91, 91, FLIP_H); island1_RLE [ISLAND1_DR] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_DL] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 93, 91, 91, FLIP_H); island1_RLE [ISLAND1_UR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 93, 91, 91, FLIP_V); island1_RLE [ISLAND1_UL] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 93, 91, 91, FLIP_VH); island1_RLE [ISLAND1_NOT_UL] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_NOT_UR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 93, 91, 91, FLIP_H); island1_RLE [ISLAND1_NOT_DL] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 93, 91, 91, FLIP_V); island1_RLE [ISLAND1_NOT_DR] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 93, 91, 91, FLIP_VH); island1_RLE [ISLAND1_UL_DR] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_UL_DR * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_UR_DL] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_UL_DR * PLATFORM_SIZE, 93, 91, 91, FLIP_H); island1_RLE [ISLAND1_FULL] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_FULL * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_FULL2] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_FULL2 * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_FULL3] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_FULL3 * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_FULL4] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_FULL4 * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_FULL5] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_FULL5 * PLATFORM_SIZE, 93, 91, 91); island1_RLE [ISLAND1_D2] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_D * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_U2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_D * PLATFORM_SIZE, 185, 91, 91, FLIP_V); island1_RLE [ISLAND1_R2] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_R * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_L2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_R * PLATFORM_SIZE, 185, 91, 91, FLIP_H); island1_RLE [ISLAND1_DR2] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_DL2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_H); island1_RLE [ISLAND1_UR2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_V); island1_RLE [ISLAND1_UL2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_VH); island1_RLE [ISLAND1_NOT_UL2] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_NOT_UR2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91, FLIP_H); island1_RLE [ISLAND1_NOT_DL2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91, FLIP_V); island1_RLE [ISLAND1_NOT_DR2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91, FLIP_VH); island1_RLE [ISLAND1_UL_DR2] = extract_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_UL_DR * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_UR_DL2] = extract_flip_rle_sprite(file_bitmap, 1 + FILE_ISLAND1_UL_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_H); island1_RLE [ISLAND1_D3] = extract_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_D * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_U3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_D * PLATFORM_SIZE, 185, 91, 91, FLIP_V); island1_RLE [ISLAND1_R3] = extract_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_R * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_L3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_R * PLATFORM_SIZE, 185, 91, 91, FLIP_H); island1_RLE [ISLAND1_DR3] = extract_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_DL3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_H); island1_RLE [ISLAND1_UR3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_V); island1_RLE [ISLAND1_UL3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_VH); island1_RLE [ISLAND1_NOT_UL3] = extract_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_NOT_UR3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91, FLIP_H); island1_RLE [ISLAND1_NOT_DL3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91, FLIP_V); island1_RLE [ISLAND1_NOT_DR3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_NOT_UL * PLATFORM_SIZE, 185, 91, 91, FLIP_VH); island1_RLE [ISLAND1_UL_DR3] = extract_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_UL_DR * PLATFORM_SIZE, 185, 91, 91); island1_RLE [ISLAND1_UR_DL3] = extract_flip_rle_sprite(file_bitmap, 461 + FILE_ISLAND1_UL_DR * PLATFORM_SIZE, 185, 91, 91, FLIP_H); bone_RLE [BONE_HOOK1] = extract_rle_sprite(file_bitmap, 1, 278, 23, 22); bone_RLE [BONE_HOOK2] = extract_rle_sprite(file_bitmap, 25, 278, 23, 22); bone_RLE [BONE_HOOK3] = extract_rle_sprite(file_bitmap, 49, 278, 23, 22); bone_RLE [BONE_HOOK4] = extract_rle_sprite(file_bitmap, 76, 278, 20, 22); bone_RLE [BONE_HOOK5] = extract_rle_sprite(file_bitmap, 97, 278, 23, 18); bone_RLE [BONE_HOOK2F] = extract_flip_rle_sprite(file_bitmap, 25, 278, 23, 22, FLIP_H); bone_RLE [BONE_HOOK3F] = extract_flip_rle_sprite(file_bitmap, 49, 278, 23, 22, FLIP_H); bone_RLE [BONE_HOOK4F] = extract_flip_rle_sprite(file_bitmap, 76, 278, 20, 22, FLIP_H); bone_RLE [BONE_HOOK5F] = extract_flip_rle_sprite(file_bitmap, 97, 278, 23, 18, FLIP_H); bone_RLE [BONE_B_HOOK1] = extract_rle_sprite(file_bitmap, 1, 301, 11, 11); bone_RLE [BONE_B_HOOK2] = extract_rle_sprite(file_bitmap, 13, 301, 11, 11); bone_RLE [BONE_B_HOOK3] = extract_rle_sprite(file_bitmap, 25, 301, 11, 11); bone_RLE [BONE_B_HOOK4] = extract_rle_sprite(file_bitmap, 38, 301, 10, 11); bone_RLE [BONE_B_HOOK5] = extract_rle_sprite(file_bitmap, 49, 301, 11, 9); bone_RLE [BONE_B_HOOK2F] = extract_flip_rle_sprite(file_bitmap, 13, 301, 11, 11, FLIP_H); bone_RLE [BONE_B_HOOK3F] = extract_flip_rle_sprite(file_bitmap, 25, 301, 11, 11, FLIP_H); bone_RLE [BONE_B_HOOK4F] = extract_flip_rle_sprite(file_bitmap, 38, 301, 10, 11, FLIP_H); bone_RLE [BONE_B_HOOK5F] = extract_flip_rle_sprite(file_bitmap, 49, 301, 11, 9, FLIP_H); bone_RLE [BONE_DROP1] = extract_rle_sprite(file_bitmap, 122, 278, 23, 35); bone_RLE [BONE_DROP2] = extract_rle_sprite(file_bitmap, 146, 278, 23, 35); bone_RLE [BONE_DROP3] = extract_rle_sprite(file_bitmap, 170, 278, 23, 35); bone_RLE [BONE_DROP4] = extract_rle_sprite(file_bitmap, 194, 278, 23, 35); bone_RLE [BONE_DROP2F] = extract_flip_rle_sprite(file_bitmap, 146, 278, 23, 35, FLIP_H); bone_RLE [BONE_DROP3F] = extract_flip_rle_sprite(file_bitmap, 170, 278, 23, 35, FLIP_H); bone_RLE [BONE_DROP4F] = extract_flip_rle_sprite(file_bitmap, 194, 278, 23, 35, FLIP_H); bone_RLE [BONE_B_DROP1] = extract_rle_sprite(file_bitmap, 61, 301, 11, 16); bone_RLE [BONE_B_DROP2] = extract_rle_sprite(file_bitmap, 73, 301, 11, 16); bone_RLE [BONE_B_DROP3] = extract_rle_sprite(file_bitmap, 85, 301, 10, 16); bone_RLE [BONE_B_DROP4] = extract_rle_sprite(file_bitmap, 96, 304, 10, 13); bone_RLE [BONE_B_DROP2F] = extract_flip_rle_sprite(file_bitmap, 73, 301, 11, 16, FLIP_H); bone_RLE [BONE_B_DROP3F] = extract_flip_rle_sprite(file_bitmap, 85, 301, 10, 16, FLIP_H); bone_RLE [BONE_B_DROP4F] = extract_flip_rle_sprite(file_bitmap, 96, 304, 10, 13, FLIP_H); bone_RLE [BONE_RING1] = extract_rle_sprite(file_bitmap, 1, 322, 39, 39); bone_RLE [BONE_RING2] = extract_rle_sprite(file_bitmap, 41, 322, 39, 39); bone_RLE [BONE_RING3] = extract_rle_sprite(file_bitmap, 81, 322, 39, 39); bone_RLE [BONE_RING4] = extract_rle_sprite(file_bitmap, 121, 322, 39, 39); bone_RLE [BONE_RING5] = extract_rle_sprite(file_bitmap, 161, 322, 39, 39); bone_RLE [BONE_RING2FH] = extract_flip_rle_sprite(file_bitmap, 41, 322, 39, 39, FLIP_H); bone_RLE [BONE_RING3FH] = extract_flip_rle_sprite(file_bitmap, 81, 322, 39, 39, FLIP_H); bone_RLE [BONE_RING4FH] = extract_flip_rle_sprite(file_bitmap, 121, 322, 39, 39, FLIP_H); bone_RLE [BONE_RING5FH] = extract_flip_rle_sprite(file_bitmap, 161, 322, 39, 39, FLIP_H); bone_RLE [BONE_RING2FV] = extract_flip_rle_sprite(file_bitmap, 41, 322, 39, 39, FLIP_V); bone_RLE [BONE_RING3FV] = extract_flip_rle_sprite(file_bitmap, 81, 322, 39, 39, FLIP_V); bone_RLE [BONE_RING4FV] = extract_flip_rle_sprite(file_bitmap, 121, 322, 39, 39, FLIP_V); bone_RLE [BONE_RING5FV] = extract_flip_rle_sprite(file_bitmap, 161, 322, 39, 39, FLIP_V); bone_RLE [BONE_RING2FVH] = extract_flip_rle_sprite(file_bitmap, 41, 322, 39, 39, FLIP_VH); bone_RLE [BONE_RING3FVH] = extract_flip_rle_sprite(file_bitmap, 81, 322, 39, 39, FLIP_VH); bone_RLE [BONE_RING4FVH] = extract_flip_rle_sprite(file_bitmap, 121, 322, 39, 39, FLIP_VH); bone_RLE [BONE_RING5FVH] = extract_flip_rle_sprite(file_bitmap, 161, 322, 39, 39, FLIP_VH); bone_RLE [BONE_B_RING1] = extract_rle_sprite(file_bitmap, 1, 362, 23, 23); bone_RLE [BONE_B_RING2] = extract_rle_sprite(file_bitmap, 25, 362, 23, 23); bone_RLE [BONE_B_RING3] = extract_rle_sprite(file_bitmap, 49, 362, 23, 23); bone_RLE [BONE_B_RING4] = extract_rle_sprite(file_bitmap, 73, 362, 23, 23); bone_RLE [BONE_B_RING5] = extract_rle_sprite(file_bitmap, 97, 362, 23, 23); bone_RLE [BONE_B_RING2FH] = extract_flip_rle_sprite(file_bitmap, 25, 362, 23, 23, FLIP_H); bone_RLE [BONE_B_RING3FH] = extract_flip_rle_sprite(file_bitmap, 49, 362, 23, 23, FLIP_H); bone_RLE [BONE_B_RING4FH] = extract_flip_rle_sprite(file_bitmap, 73, 362, 23, 23, FLIP_H); bone_RLE [BONE_B_RING5FH] = extract_flip_rle_sprite(file_bitmap, 97, 362, 23, 23, FLIP_H); bone_RLE [BONE_B_RING2FV] = extract_flip_rle_sprite(file_bitmap, 25, 362, 23, 23, FLIP_V); bone_RLE [BONE_B_RING3FV] = extract_flip_rle_sprite(file_bitmap, 49, 362, 23, 23, FLIP_V); bone_RLE [BONE_B_RING4FV] = extract_flip_rle_sprite(file_bitmap, 73, 362, 23, 23, FLIP_V); bone_RLE [BONE_B_RING5FV] = extract_flip_rle_sprite(file_bitmap, 97, 362, 23, 23, FLIP_V); bone_RLE [BONE_B_RING2FVH] = extract_flip_rle_sprite(file_bitmap, 25, 362, 23, 23, FLIP_VH); bone_RLE [BONE_B_RING3FVH] = extract_flip_rle_sprite(file_bitmap, 49, 362, 23, 23, FLIP_VH); bone_RLE [BONE_B_RING4FVH] = extract_flip_rle_sprite(file_bitmap, 73, 362, 23, 23, FLIP_VH); bone_RLE [BONE_B_RING5FVH] = extract_flip_rle_sprite(file_bitmap, 97, 362, 23, 23, FLIP_VH); bone_RLE [BONE_HUNTER1] = extract_rle_sprite(file_bitmap, 201, 322, 45, 40); bone_RLE [BONE_HUNTER2] = extract_rle_sprite(file_bitmap, 247, 322, 45, 40); bone_RLE [BONE_HUNTER3] = extract_rle_sprite(file_bitmap, 293, 322, 45, 40); bone_RLE [BONE_HUNTER4] = extract_rle_sprite(file_bitmap, 339, 322, 41, 40); bone_RLE [BONE_HUNTER5] = extract_rle_sprite(file_bitmap, 381, 322, 45, 40); bone_RLE [BONE_HUNTER2F] = extract_flip_rle_sprite(file_bitmap, 247, 322, 45, 40, FLIP_H); bone_RLE [BONE_HUNTER3F] = extract_flip_rle_sprite(file_bitmap, 293, 322, 45, 40, FLIP_H); bone_RLE [BONE_HUNTER4F] = extract_flip_rle_sprite(file_bitmap, 339, 322, 41, 40, FLIP_H); bone_RLE [BONE_HUNTER5F] = extract_flip_rle_sprite(file_bitmap, 381, 322, 45, 40, FLIP_H); bone_RLE [BONE_B_HUNTER1] = extract_rle_sprite(file_bitmap, 199, 364, 27, 23); bone_RLE [BONE_B_HUNTER2] = extract_rle_sprite(file_bitmap, 227, 364, 27, 23); bone_RLE [BONE_B_HUNTER3] = extract_rle_sprite(file_bitmap, 255, 364, 27, 23); bone_RLE [BONE_B_HUNTER4] = extract_rle_sprite(file_bitmap, 285, 364, 25, 23); bone_RLE [BONE_B_HUNTER5] = extract_rle_sprite(file_bitmap, 311, 364, 27, 23); bone_RLE [BONE_B_HUNTER2F] = extract_flip_rle_sprite(file_bitmap, 227, 364, 27, 23, FLIP_H); bone_RLE [BONE_B_HUNTER3F] = extract_flip_rle_sprite(file_bitmap, 255, 364, 27, 23, FLIP_H); bone_RLE [BONE_B_HUNTER4F] = extract_flip_rle_sprite(file_bitmap, 285, 364, 25, 23, FLIP_H); bone_RLE [BONE_B_HUNTER5F] = extract_flip_rle_sprite(file_bitmap, 311, 364, 27, 23, FLIP_H); bone_RLE [BONE_B_SPINNER] = extract_rle_sprite(file_bitmap, 427, 288, 65, 107); bone_RLE [BONE_B_WALKER1] = extract_rle_sprite(file_bitmap, 493, 285, 89, 75); bone_RLE [BONE_B_WALKER2] = extract_rle_sprite(file_bitmap, 583, 285, 89, 75); bone_RLE [BONE_B_WALKER2F] = extract_flip_rle_sprite(file_bitmap, 583, 285, 89, 75, FLIP_H); destroy_bitmap(file_bitmap); } void prepare_flowers(void) { BITMAP *tmp = new_bitmap(200, 200, "prepare_flowers"); clear_bitmap(tmp); int i, j, angle = 0; for (j = 0; j < 40; j ++) { angle = j * (ANGLE_10 / 20); for (i = 0; i < 5; i ++) { fast_bordered_poly4(tmp, 100, 100, 100 + xpart(angle + (ANGLE_5 * i) - 46, 36), 100 + ypart(angle + (ANGLE_5 * i) - 46, 36), 100 + xpart(angle + (ANGLE_5 * i), 55), 100 + ypart(angle + (ANGLE_5 * i), 55), 100 + xpart(angle + (ANGLE_5 * i) + 46, 36), 100 + ypart(angle + (ANGLE_5 * i) + 46, 36), COL_BACK5,COL_OUTLINE, 100 + xpart(angle + (ANGLE_5 * i), 30), 100 + ypart(angle + (ANGLE_5 * i), 30)); } circlefill(tmp, 100, 100, 8, COL_COL3); circle(tmp, 100, 100, 8, COL_OUTLINE); // extract_rle_struct(tmp, 0, 0, 100, 100, "flower RLE", &eRLE_flower [0] [j], -1); new_rle_struct(tmp, "flower RLE", &eRLE_flower [0] [j], -2); clear_bitmap(tmp); } destroy_bitmap(tmp); } /* void prepare_mshockwaves(void) { int i, j; BITMAP *tmp = new_bitmap(90, 90, "prepare_mshockwaves tmp bitmap"); int rad1, rad2, c1, c2; i = 0; for (i = 0; i < 4; i ++) { switch(i) { case 0: c1 = TRANS_ORANGE_OUT; c2 = TRANS_ORANGE_IN; break; case 1: c1 = TRANS_YELLOW_OUT; c2 = TRANS_YELLOW_IN; break; case 2: c1 = TRANS_SH1_OUT; c2 = TRANS_SH1_IN; break; case 3: c1 = TRANS_SH2_OUT; c2 = TRANS_SH2_IN; break; } rad1 = 30; rad2 = 1; for (j = 0; j < 20; j ++) { clear_bitmap(tmp); rad2 += 2; if (j % 2 == 0) rad1 ++; circlefill(tmp, 45, 45, rad1, c2); circle(tmp, 45, 45, rad1, c1); circlefill(tmp, 45, 45, rad2, 0); circle(tmp, 45, 45, rad2, c1); new_rle_struct(tmp, "mshockwaves rle", &RLE_mshock [i] [j], -1); extract_rle_struct2(tmp, &RLE_mshock [i] [j], 1, 1, 1, 1, -1); } } destroy_bitmap(tmp); } */ void prepare_rings(void) { int i, j; BITMAP *tmp = new_bitmap(62, 62, "prepare_rings tmp bitmap"); int rad1, rad2, c1, c2; i = 0; c1 = TRANS_ORANGE_OUT; c2 = TRANS_ORANGE_IN; rad1 = 1; // rad2 = -5; for (j = 0; j < 20; j ++) { clear_bitmap(tmp); rad1 ++; // if (j % 2 == 0) // rad1 ++; rad2 = rad1 - 3; if (rad2 < 1) rad2 = 0; circlefill(tmp, rad1, rad1, rad1, c2); circle(tmp, rad1, rad1, rad1, c1); if (rad2 > 0) { circlefill(tmp, rad1, rad1, rad2, 0); circle(tmp, rad1, rad1, rad2, c1); } // new_rle_struct(tmp, "mshockwaves rle", &RLE_mshock [i] [j], -1); extract_rle_struct2(tmp, &RLE_ring [j], 0, 0, rad1 * 2 + 1, rad1 * 2 + 1, -1); } destroy_bitmap(tmp); } void prepare_lwbeamwaves(void) { int i, j; BITMAP *tmp = new_bitmap(62, 62, "prepare_lwbeamwaves tmp bitmap"); int rad1, rad2, c1, c2; i = 0; c1 = TRANS_ORANGE_OUT; c2 = TRANS_ORANGE_IN; rad1 = 10; rad2 = -5; for (j = 0; j < 15; j ++) { clear_bitmap(tmp); rad2 += 2; // if (j % 2 == 0) rad1 ++; if (j >= 18) { circle(tmp, rad1, rad1, rad1, c1); } else { circlefill(tmp, rad1, rad1, rad1, c2); circle(tmp, rad1, rad1, rad1, c1); if (rad2 > 1) { circlefill(tmp, rad1, rad1, rad2, 0); circle(tmp, rad1, rad1, rad2, c1); } } // new_rle_struct(tmp, "mshockwaves rle", &RLE_mshock [i] [j], -1); extract_rle_struct2(tmp, &RLE_lwbeamshock [j], 0, 0, rad1 * 2 + 1, rad1 * 2 + 1, -1); } destroy_bitmap(tmp); } void prepare_mshockwaves(void) { int i, j; BITMAP *tmp = new_bitmap(90, 90, "prepare_mshockwaves tmp bitmap"); int rad1, rad2, c1 = 0, c2 = 0; i = 0; for (i = 0; i < 4; i ++) { switch (i) { case 0: c1 = TRANS_ORANGE_OUT; c2 = TRANS_ORANGE_IN; break; case 1: c1 = TRANS_YELLOW_OUT; c2 = TRANS_YELLOW_IN; break; case 2: c1 = TRANS_SH1_OUT; c2 = TRANS_SH1_IN; break; case 3: c1 = TRANS_SH2_OUT; c2 = TRANS_SH2_IN; break; } rad1 = 30; rad2 = 1; for (j = 0; j < 20; j ++) { clear_bitmap(tmp); rad2 += 2; if (j % 2 == 0) rad1 ++; if (j >= 18) { circle(tmp, rad1, rad1, rad1, c1); } else { circlefill(tmp, rad1, rad1, rad1, c2); circle(tmp, rad1, rad1, rad1, c1); if (rad2 > 1) { circlefill(tmp, rad1, rad1, rad2, 0); circle(tmp, rad1, rad1, rad2, c1); } } // new_rle_struct(tmp, "mshockwaves rle", &RLE_mshock [i] [j], -1); extract_rle_struct2(tmp, &RLE_mshock [i] [j], 0, 0, rad1 * 2 + 1, rad1 * 2 + 1, -1); } } destroy_bitmap(tmp); } void prepare_lshockwaves(void) { int i, j; BITMAP *tmp = new_bitmap(200, 200, "prepare_lshockwaves tmp bitmap"); int rad1, rad2, c1 = 0, c2 = 0; i = 0; for (i = 0; i < 4; i ++) { switch (i) { case 0: c1 = TRANS_ORANGE_OUT; c2 = TRANS_ORANGE_IN; break; case 1: c1 = TRANS_YELLOW_OUT; c2 = TRANS_YELLOW_IN; break; case 2: c1 = TRANS_SH1_OUT; c2 = TRANS_SH1_IN; break; case 3: c1 = TRANS_SH2_OUT; c2 = TRANS_SH2_IN; break; } rad1 = 30; rad2 = 1; for (j = 0; j < 50; j ++) { clear_bitmap(tmp); if (j > 10) rad2 += 2; rad1 ++; /* circlefill(tmp, 100, 100, rad1, c2); circle(tmp, 100, 100, rad1, c1); circlefill(tmp, 100, 100, rad2, 0); circle(tmp, 100, 100, rad2, c1); new_rle_struct(tmp, "large_shockwaves2 rle", &RLE_lshock [i] [j], -1);*/ circlefill(tmp, rad1, rad1, rad1, c2); circle(tmp, rad1, rad1, rad1, c1); if (rad2 > 1) { circlefill(tmp, rad1, rad1, rad2, 0); circle(tmp, rad1, rad1, rad2, c1); } extract_rle_struct2(tmp, &RLE_lshock [i] [j], 0, 0, rad1 * 2 + 1, rad1 * 2 + 1, -1); // new_rle_struct(tmp, "large_shockwaves2 rle", &RLE_lshock [i] [j], -1); } } destroy_bitmap(tmp); } void prepare_hshockwaves(void) { int i, j; BITMAP *tmp = new_bitmap(300, 300, "prepare_hshockwaves tmp bitmap"); int rad1, rad2, c1 = 0, c2 = 0; i = 0; for (i = 0; i < 4; i ++) { switch (i) { case 0: c1 = TRANS_ORANGE_OUT; c2 = TRANS_ORANGE_IN; break; case 1: c1 = TRANS_YELLOW_OUT; c2 = TRANS_YELLOW_IN; break; case 2: c1 = TRANS_SH1_OUT; c2 = TRANS_SH1_IN; break; case 3: c1 = TRANS_SH2_OUT; c2 = TRANS_SH2_IN; break; } rad1 = 68; rad2 = 0; for (j = 0; j < 50; j ++) { clear_bitmap(tmp); if (j > 10) rad2 += 3; rad1 += 1;//2; circlefill(tmp, rad1, rad1, rad1, c2); circle(tmp, rad1, rad1, rad1, c1); if (rad2 > 1) { circlefill(tmp, rad1, rad1, rad2, 0); circle(tmp, rad1, rad1, rad2, c1); } extract_rle_struct2(tmp, &RLE_hshock [i] [j], 0, 0, rad1 * 2 + 1, rad1 * 2 + 1, -1); } } destroy_bitmap(tmp); } void prepare_rshockwaves(void) { int i, j; BITMAP *tmp = new_bitmap(250, 250, "prepare_rshockwaves tmp bitmap"); int rad1, rad2, c1, c2; i = 0; c1 = TRANS_ORANGE_OUT; c2 = TRANS_ORANGE_IN; for (i = 0; i < 5; i ++) { rad1 = 20 + i * 5; rad2 = 1 + i * 5; for (j = 0; j < 20; j ++) { clear_bitmap(tmp); // if (j % 2 == 0) rad1 += 3; rad2 += 4; if (j >= 18) { circle(tmp, rad1, rad1, rad1, c1); } else { circlefill(tmp, rad1, rad1, rad1, c2); circle(tmp, rad1, rad1, rad1, c1); if (rad2 > 1) { circlefill(tmp, rad1, rad1, rad2, 0); circle(tmp, rad1, rad1, rad2, c1); } } // new_rle_struct(tmp, "mshockwaves rle", &RLE_mshock [i] [j], -1); extract_rle_struct2(tmp, &RLE_rshock [i] [j], 0, 0, rad1 * 2 + 1, rad1 * 2 + 1, -1); } } destroy_bitmap(tmp); } void prepare_various_effects(void) { /* BITMAP *temp_bitmap; int i; int rad1, rad2; BITMAP *sbitmap = new_bitmap(210, 30, "sbitmap"); clear_bitmap(sbitmap); for (i = 0; i < 9; i ++) { temp_bitmap = new_bitmap((i + 3) * 2, (i + 3) * 2, "prepare mg shock"); clear_bitmap(temp_bitmap); // clear_to_color(temp_bitmap, TRANS_YELLOW_OUT); rad1 = i + 2; rad2 = 0; circlefill(temp_bitmap, i + 1, i + 1, i, TRANS_ORANGE_IN); circle(temp_bitmap, i + 1, i + 1, i, TRANS_ORANGE_OUT); if (i > 3) { rad2 = (i - 3) * 2; circlefill(temp_bitmap, i + 1, i + 1, rad2, 0); circle(temp_bitmap, i + 1, i + 1, rad2, TRANS_ORANGE_OUT); } if (i == 8) { clear_bitmap(temp_bitmap); circle(temp_bitmap, i + 1, i + 1, 9, TRANS_ORANGE_OUT); } RLE_mg_shock [i] = get_rle_sprite(temp_bitmap); draw_sprite(sbitmap, temp_bitmap, i * 20, 1); destroy_bitmap(temp_bitmap); } save_bitmap("shock.bmp", sbitmap, palet [0]); */ } /* void prepare_underlay(void) { return; underlay = new_bitmap(640, 1000, "underlay"); clear_to_color(underlay, COL_BACK1); int i, j, out_of_loop; int x, y, rad, x1, y1, x2, y2, col; int cx [20]; int cy [20]; int crad [20]; for (i = 0; i < 20; i ++) { cx [i] = -1; } for (i = 0; i < 20; i ++) { out_of_loop = 0; do { cx [i] = grand(640); cy [i] = grand(1000); crad [i] = 30 + grand(20) + grand(10); if (i > 0) { for (j = 0; j < i; j ++) { if (cx [i] - crad [i] > cx [j] + crad [j] || cx [i] + crad [i] < cx [j] - crad [j] || cy [i] - crad [i] > cy [j] + crad [j] || cy [i] + crad [i] < cy [j] - crad [j]) out_of_loop = 1; } } } while (out_of_loop == 0); } for (i = 0; i < 20; i ++) { x = cx [i]; y = cy [i]; rad = crad [i]; col = COL_BACK2; do { circlefill(underlay, x, y, rad, col); circle(underlay, x, y, rad, COL_OUTLINE); if (col == COL_BACK2) { col = COL_BACK1; rad -= 8 + grand(8); } else { col = COL_BACK2; rad -= 4 + grand(4); } } while(rad > 5); } */ /* int i, j; int x, y, rad, x1, y1, x2, y2; int bx [7] [10]; int by [7] [10]; int brad [7] [10]; for (i = 0; i < 7; i ++) { for (j = 0; j < 10; j ++) { bx [i] [j] = i * 100 + grand(20) - grand(20); by [i] [j] = j * 100 + grand(20) - grand(20); brad [i] [j] = 20 + grand(10) + grand(10); } } int x3; for (i = 0; i < 7; i ++) { for (j = 0; j < 10; j ++) { x = bx [i] [j]; y = by [i] [j]; rad = brad [i] [j]; circlefill(underlay, x, y, rad, COL_BACK2); drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); circle(underlay, x, y, rad + 1, TRANS_BACK_OUTLINE); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); x1 = x - grand(15) + grand(5); x2 = x + grand(15) - grand(5); if (x1 > x2) { x3 = x1; x1 = x2; x2 = x3; } if (x1 == x2) x2 += 3; rectfill(underlay, x1, y, x2, y + 100, COL_BACK2); drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); rect(underlay, x1 - 1, y, x2 + 1, y + 100, TRANS_BACK_OUTLINE); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); rectfill(underlay, x, y - grand(15) - 3, x + 100, y + grand(15) + 3, COL_BACK2); if (i == 0) { rectfill(underlay, 0, y - grand(10) - 5, x, y + grand(10) + 5, COL_BACK2); } } } // circlefill(underlay, 320, 500, 10, COL_BACK2); // circle(underlay, 320, 500, 10, COL_OUTLINE); */ //} /* Safe wrapper for the Allegro create_bitmap function. */ BITMAP *new_bitmap(int x, int y, const char errtxt []) { BITMAP *bmp = create_bitmap(x, y); if (bmp == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Bitmap creation failed! %s %s", allegro_error, errtxt); exit(1); } return bmp; } void bordered_poly4(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col, int border_col) { BITMAP *temp_bitmap = new_bitmap(target->w, target->h, "Bordered poly4 temp_bitmap"); clear_bitmap(temp_bitmap); int points [8]; points [0] = x1; points [1] = y1; points [2] = x2; points [3] = y2; points [4] = x3; points [5] = y3; points [6] = x4; points [7] = y4; polygon(temp_bitmap, 4, points, col); coat_sprite(temp_bitmap, border_col); draw_sprite(target, temp_bitmap, 0, 0); destroy_bitmap(temp_bitmap); } void bordered_poly6(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int x5, int y5, int x6, int y6, int col, int border_col) { BITMAP *temp_bitmap = new_bitmap(target->w, target->h, "Bordered poly4 temp_bitmap"); clear_bitmap(temp_bitmap); int points [12]; points [0] = x1; points [1] = y1; points [2] = x2; points [3] = y2; points [4] = x3; points [5] = y3; points [6] = x4; points [7] = y4; points [8] = x5; points [9] = y5; points [10] = x6; points [11] = y6; polygon(temp_bitmap, 6, points, col); coat_sprite(temp_bitmap, border_col); draw_sprite(target, temp_bitmap, 0, 0); destroy_bitmap(temp_bitmap); } void bordered_triangle(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int col, int border_col) { BITMAP *temp_bitmap = new_bitmap(target->w, target->h, "Bordered triangle temp_bitmap"); clear_bitmap(temp_bitmap); triangle(temp_bitmap, x1, y1, x2, y2, x3, y3, col); coat_sprite(temp_bitmap, border_col); draw_sprite(target, temp_bitmap, 0, 0); destroy_bitmap(temp_bitmap); } void coat_sprite(BITMAP *target, int col) { int i, j; for (i = 1; i < target->w - 1; i ++) { for (j = 1; j < target->h - 1; j ++) { if (getpixel(target, i, j) == 0) { if ((getpixel(target, i - 1, j) != 0 && getpixel(target, i - 1, j) != col) || (getpixel(target, i + 1, j) != 0 && getpixel(target, i + 1, j) != col) || (getpixel(target, i, j - 1) != 0 && getpixel(target, i, j - 1) != col) || (getpixel(target, i, j + 1) != 0 && getpixel(target, i, j + 1) != col)) putpixel(target, i, j, col); } } } } void coat_file_sprite_xy(BITMAP *target, int col, int x1, int y1, int x2, int y2) { int i, j; for (i = x1; i < x2; i ++) { for (j = y1; j < y2; j ++) { if (getpixel(target, i, j) == 0) { if ((getpixel(target, i - 1, j) != 0 && getpixel(target, i - 1, j) != col) || (getpixel(target, i + 1, j) != 0 && getpixel(target, i + 1, j) != col) || (getpixel(target, i, j - 1) != 0 && getpixel(target, i, j - 1) != col) || (getpixel(target, i, j + 1) != 0 && getpixel(target, i, j + 1) != col)) putpixel(target, i, j, col); } } } } void fast_bordered_poly4(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col, int border_col, int fillx, int filly) { BITMAP *temp_bitmap = new_bitmap(target->w, target->h, "Bordered poly4 temp_bitmap"); clear_bitmap(temp_bitmap); line(temp_bitmap, x1, y1, x2, y2, border_col); line(temp_bitmap, x2, y2, x3, y3, border_col); line(temp_bitmap, x3, y3, x4, y4, border_col); line(temp_bitmap, x4, y4, x1, y1, border_col); floodfill(temp_bitmap, fillx, filly, col); draw_sprite(target, temp_bitmap, 0, 0); destroy_bitmap(temp_bitmap); } void fast_bordered_triangle(BITMAP *target, int x1, int y1, int x2, int y2, int x3, int y3, int col, int border_col, int fillx, int filly) { BITMAP *temp_bitmap = new_bitmap(target->w, target->h, "Bordered triangle temp_bitmap"); clear_bitmap(temp_bitmap); line(temp_bitmap, x1, y1, x2, y2, border_col); line(temp_bitmap, x2, y2, x3, y3, border_col); line(temp_bitmap, x3, y3, x1, y1, border_col); floodfill(temp_bitmap, fillx, filly, col); draw_sprite(target, temp_bitmap, 0, 0); destroy_bitmap(temp_bitmap); } BITMAP *load_up_bitmap(const char fname []) { RGB temp_palette [256]; BITMAP *temp_bitmap = load_bitmap(fname, temp_palette); if (temp_bitmap == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Failed to load in bitmap! (File not found?) %s", fname); exit(1); } return temp_bitmap; } RLE_SPRITE *extract_rle_sprite(BITMAP *source, int x_source, int y_source, int x, int y) { BITMAP *tmp = new_bitmap(x, y, "extract_rle_sprite"); blit(source, tmp, x_source, y_source, 0, 0, x, y); RLE_SPRITE *retval = get_rle_sprite(tmp); if (retval == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Rle_sprite extraction failed! %s %s", allegro_error, "extract_rle_sprite"); exit(1); } destroy_bitmap(tmp); return retval; } RLE_SPRITE *extract_flip_rle_sprite(BITMAP *source, int x_source, int y_source, int x, int y, int flip_type) { BITMAP *tmp = new_bitmap(x, y, "extract_hflip_rle_sprite"); BITMAP *tmp2 = new_bitmap(x, y, "extract_hflip_rle_sprite"); clear_bitmap(tmp2); blit(source, tmp, x_source, y_source, 0, 0, x, y); switch (flip_type) { case FLIP_H: draw_sprite_h_flip(tmp2, tmp, 0, 0); break; case FLIP_V: draw_sprite_v_flip(tmp2, tmp, 0, 0); break; case FLIP_VH: draw_sprite_vh_flip(tmp2, tmp, 0, 0); break; } RLE_SPRITE *retval = get_rle_sprite(tmp2); if (retval == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Rle_sprite extraction failed! %s %s", allegro_error, "extract_rle_sprite"); exit(1); } destroy_bitmap(tmp); destroy_bitmap(tmp2); return retval; } RLE_SPRITE *sized_rle_sprite(BITMAP *source, int x, int y, const char errtxt []) { BITMAP *tmp = new_bitmap(x, y, errtxt); blit(source, tmp, 0, 0, 0, 0, x, y); RLE_SPRITE *retval = get_rle_sprite(tmp); if (retval == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Rle_sprite sized creation failed! %s %s", allegro_error, errtxt); exit(1); } destroy_bitmap(tmp); return retval; } RLE_SPRITE *new_rle_sprite(BITMAP *source, const char errtxt []) { RLE_SPRITE *retval = get_rle_sprite(source); if (retval == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Rle_sprite creation failed! %s %s", allegro_error, errtxt); exit(1); } return retval; } void new_rle_struct_colours(BITMAP *source, const char errtxt [], struct RLE_STRUCT str [SMALL_ROTATIONS] [9], int bl, int index2, int col1, int col2) { int i; int count = 0; int trans_col = 0; for (i = col1; i < col2 + 1; i ++) { switch (i) { case 0: trans_col = TRANS_CONVERT_1; break; case 1: trans_col = TRANS_CONVERT_2; break; case 2: trans_col = TRANS_CONVERT_3; break; case 3: trans_col = TRANS_CONVERT_4; break; case 4: trans_col = TRANS_CONVERT_5; break; case 5: trans_col = TRANS_CONVERT_6; break; case 6: trans_col = TRANS_CONVERT_7; break; case 7: trans_col = TRANS_CONVERT_8; break; case 8: trans_col = TRANS_CONVERT_9; break; } drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); rectfill(source, 0, 0, source->w, source->h, trans_col); drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); new_rle_struct(source, "new_rle_struct_colours", str [index2], i - col1); count ++; } } void extract_rle_struct2(BITMAP *source, struct RLE_STRUCT *str, int x_source, int y_source, int x, int y, int bl) { BITMAP *tmp = new_bitmap(x, y, "extract_rle_struct"); blit(source, tmp, x_source, y_source, 0, 0, x, y); // rect(tmp, 0, 0, tmp->w - 1, tmp->h - 1, TRANS_YELLOW_OUT); if (bl == -1) { str->sprite = get_rle_sprite(tmp); str->x = tmp->w / 2; str->y = tmp->h / 2; } else { str [bl].sprite = get_rle_sprite(tmp); str [bl].x = tmp->w / 2; str [bl].y = tmp->h / 2; } if (str->sprite == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Rle_struct extraction failed! %s %s", allegro_error, "extract_rle_struct"); exit(1); } destroy_bitmap(tmp); } void new_rle_struct(BITMAP *source, const char errtxt [], struct RLE_STRUCT *str, int bl) { int x1 = -1, y1 = -1, x2 = -1, y2 = -1; int i, j; for (i = 0; i < source->w; i ++) { for (j = 0; j < source->h; j ++) { if (getpixel(source, i, j) != 0) { x1 = i; break; } } if (x1 != -1) break; } for (j = 0; j < source->h; j ++) { for (i = 0; i < source->w; i ++) { if (getpixel(source, i, j) != 0) { y1 = j; break; } } if (y1 != -1) break; } for (i = source->w - 1; i >= 0; i --) { for (j = 0; j < source->h; j ++) { if (getpixel(source, i, j) != 0) { x2 = i; break; } } if (x2 != -1) break; } for (j = source->h - 1; j >= 0; j --) { for (i = 0; i < source->w; i ++) { if (getpixel(source, i, j) != 0) { y2 = j; break; } } if (y2 != -1) break; } BITMAP *tmp = new_bitmap(x2 - x1 + 1, y2 - y1 + 1, "new_rle_struct temp bitmap"); blit(source, tmp, x1, y1, 0, 0, x2 - x1 + 1, y2 - y1 + 1); //rect(tmp, 0, 0, tmp->w - 1, tmp->h - 1, TRANS_RED_OUT); if (bl == -1) { str->sprite = get_rle_sprite(tmp); // str->x = tmp->w / 2;//source->w / 2 - x1; // str->y = tmp->h / 2;//source->h / 2 - y1; str->x = tmp->w / 2;//source->w / 2 - x1; str->y = tmp->h / 2;//source->h / 2 - y1; } else { if (bl == -2) { str->sprite = get_rle_sprite(tmp); // str->x = tmp->w / 2;//source->w / 2 - x1; // str->y = tmp->h / 2;//source->h / 2 - y1; str->x = source->w / 2 - x1; str->y = source->h / 2 - y1; } else { str [bl].sprite = get_rle_sprite(tmp); str [bl].x = tmp->w / 2; //source->w / 2 - x1; str [bl].y = tmp->h / 2; //source->h / 2 - y1; } } destroy_bitmap(tmp); } void fix_outline(BITMAP *source) { int i, j, px; for (i = 0; i < source->w; i ++) { for (j = 0; j < source->h; j ++) { px = getpixel(source, i, j); switch (px) { case 116: putpixel(source, i, j, COL_OUTLINE); break; case 61: putpixel(source, i, j, COL_COL4); break; } } } } void fix_trans(BITMAP *source) { int i, j, px; for (i = 0; i < source->w; i ++) { for (j = 0; j < source->h; j ++) { px = getpixel(source, i, j); switch (px) { case 51://COL_WHITE: putpixel(source, i, j, TRANS_ORANGE_OUT); break; case 30://COL_LGREY: putpixel(source, i, j, TRANS_ORANGE_IN); break; } } } } void extract_rle_struct(BITMAP *source, int x1, int y1, int x2, int y2, const char errtxt [], struct RLE_STRUCT *str, int bl) { BITMAP *tmp = new_bitmap(x2, y2, "extract_rle_struct temp bitmap"); blit(source, tmp, x1, y1, 0, 0, x2, y2); new_rle_struct(tmp, errtxt, str, bl); destroy_bitmap(tmp); } garden-1.0.9/src/level.h0000644000175000017500000000155012457263274011766 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void init_level (void); void run_level (void); int get_max_stage_score (void); void create_boss3_dancer (int type); garden-1.0.9/src/menu.h0000644000175000017500000000141512457263274011623 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void startup_menu (void); garden-1.0.9/src/level.c0000644000175000017500000015624412457263274011774 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include "allegro.h" #include "globvars.h" #include "stuff.h" #include "enemy.h" #include "pbullet.h" #include "ebullet.h" #include "display.h" #include "cloud.h" #include "palette.h" #include #include "sound.h" #define NO_TRACKS 3 #define TRACK_SIZE 10 enum { TRACK_WANDER, TRACK_DARTER, TRACK_STOPPER, TRACK_SIDES, TRACK_DIVER, TRACK_DART_STOPPER, TRACK_DRIFTER, TRACK_CRUISER, TRACK_BOSS, TRACK_SLIDER, TRACK_WALK, TRACK_GLIDER, TRACK_MARCHER, TRACK_ATTACKER, TRACK_BEAMER, TRACK_BOSS1, TRACK_BOSS2, TRACK_MB1 }; enum { DIST_RANDOM, DIST_ALL_W, DIST_ALL_B, DIST_ALTERNATE_WB, DIST_ALTERNATE_BW, DIST_PART_WB, DIST_PART_BW }; struct trackstruct { int type; int multiple; int count; int count2; // int next_track; int delay; int total; int x[TRACK_SIZE + 1]; int y[TRACK_SIZE + 1]; int reverse; int style; int x_target[MAX_TARGETS]; int y_target[MAX_TARGETS]; int target_time; }; int next_track; struct trackstruct track[NO_TRACKS]; /* struct overtrackstruct { int subtrack [NO_TRACKS]; int position; }; struct overtrackstruct overtrack [OVERTRACK_SIZE]; */ enum { T_EMPTY, T_OVERTRACK_END, T_CHANGE_MUSIC, T_END_LEVEL, T_ESCORTS_0, T_ESCORTS_1, T_ESCORTS_2, T_ESCORTS_3, T_SWOOPER1, T_DARTER1, T_STOPPER1, T_DIVER1, T_CARRIER1, T_POD1, T_BOSS1, T_SWOOPER2, T_DARTER2, T_SMALL, T_LARGER, T_SMALL2, T_LARGER2, T_WINGS, T_WINGS2, T_MEGA, T_BOSS3, T_DRIFTER1, T_BEAMER, T_RISER, T_CRUISER1, T_CRUISER2, T_CRUISER3, T_CRUISER4, T_CRUISER5, T_DRIFTER2, T_SHOOTER, T_BOSS2, T_HOOK, T_WALK, T_DROPPER, T_RING, T_HUNTER, T_SPINNER, T_HOOK2, T_BOSS4, // remember to add to track_score! T_END }; int track_score[T_END][2] = { {0, 0}, //T_EMPTY, {0, 0}, //T_OVERTRACK_END, {0, 0}, //T_CHANGE_MUSIC, {0, 0}, //T_END_LEVEL, {0, 0}, //T_ESCORTS_0, {0, 0}, //T_ESCORTS_1, {0, 0}, //T_ESCORTS_2, {0, 0}, //T_ESCORTS_3, {4, ENEMY_SWOOPER1}, //T_SWOOPER1, {4, ENEMY_DARTER1}, //T_DARTER1, {1, ENEMY_STOPPER1}, //T_STOPPER1, {3, ENEMY_DIVER1}, //T_DIVER1, {1, ENEMY_CARRIER1}, //T_CARRIER1, {2, ENEMY_POD1}, //T_POD1, {0, 0}, //T_BOSS1, {4, ENEMY_SWOOPER2}, //T_SWOOPER2, {3, ENEMY_DARTER2}, //T_DARTER2, {3, ENEMY_SMALL}, //T_SMALL, {2, ENEMY_LARGER}, //T_LARGER, {3, ENEMY_SMALL2}, //T_SMALL2, {2, ENEMY_LARGER2}, //T_LARGER2, {2, ENEMY_WINGS}, //T_WINGS, {2, ENEMY_WINGS2}, //T_WINGS2, {1, ENEMY_MEGA}, //T_MEGA, {0, 0}, //T_BOSS3, {3, ENEMY_DRIFTER1}, //T_DRIFTER1, {3, ENEMY_BEAMER}, //T_BEAMER, {6, ENEMY_RISER}, //T_RISER, {1, ENEMY_CRUISER1}, //T_CRUISER1, {1, ENEMY_CRUISER2}, //T_CRUISER2, {1, ENEMY_CRUISER3}, //T_CRUISER3, {1, ENEMY_CRUISER4}, //T_CRUISER4, {1, ENEMY_CRUISER5}, //T_CRUISER5, {1, ENEMY_DRIFTER2}, //T_DRIFTER2, {2, ENEMY_SHOOTER}, //T_SHOOTER, {4, ENEMY_HOOK}, //T_SHOOTER, {1, ENEMY_WALKER}, //T_SHOOTER, {4, ENEMY_DROPPER}, //T_SHOOTER, {1, ENEMY_RING}, //T_SHOOTER, {2, ENEMY_HUNTER}, //T_SHOOTER, {1, ENEMY_SPINNER}, //T_SHOOTER, {4, ENEMY_HOOK2}, //T_SHOOTER, {0, 0}, //T_BOSS4, //T_END }; int overtrack_pos; int overtrack_pos2; #define OT_NEXT 3 #define OT_WAIT 4 int overtrack[4][71][5] = { { {T_SWOOPER1, T_EMPTY, T_EMPTY, 3, 2}, // doesn't appear /*{T_SWOOPER1, T_SWOOPER1, T_SWOOPER1, 160, 80}, {T_SWOOPER1, T_SWOOPER1, T_SWOOPER1, 160, 80}, {T_SWOOPER1, T_SWOOPER1, T_SWOOPER1, 160, 80},*/ //{T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, //{T_DIVER1, T_DIVER1, T_EMPTY, 160, 80}, {T_CHANGE_MUSIC, OVERMUSIC_L1_2, 0, 0, 0}, /*{T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, */ //{T_DARTER2, T_EMPTY, T_EMPTY, 160, 80}, //{T_DARTER2, T_EMPTY, T_EMPTY, 160, 80}, //{T_BOSS1, T_EMPTY, T_EMPTY, 150, 50}, {T_SWOOPER1, T_EMPTY, T_EMPTY, 150, 10}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_SWOOPER1, T_SWOOPER1, T_EMPTY, 160, 80}, //{T_END_LEVEL, T_EMPTY, T_EMPTY, 460, 80}, {T_SWOOPER1, T_DARTER1, T_EMPTY, 260, 80}, {T_SWOOPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_SWOOPER1, T_DARTER1, T_EMPTY, 360, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_SWOOPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_SWOOPER1, T_SWOOPER1, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_SWOOPER1, T_DARTER1, T_EMPTY, 160, 80}, {T_SWOOPER1, T_SWOOPER1, T_EMPTY, 260, 80}, {T_STOPPER1, T_DARTER1, T_EMPTY, 260, 80}, {T_SWOOPER1, T_SWOOPER1, T_EMPTY, 260, 80}, {T_DIVER1, T_SWOOPER1, T_EMPTY, 260, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_DIVER1, T_SWOOPER1, T_EMPTY, 160, 80}, {T_SWOOPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_POD1, T_EMPTY, T_EMPTY, 260, 80}, {T_SWOOPER1, T_DARTER1, T_EMPTY, 260, 80}, {T_DIVER1, T_STOPPER1, T_EMPTY, 260, 80}, {T_SWOOPER1, T_DARTER1, T_EMPTY, 260, 80}, {T_POD1, T_EMPTY, T_EMPTY, 260, 80}, {T_DIVER1, T_SWOOPER1, T_EMPTY, 360, 80}, {T_CARRIER1, T_EMPTY, T_EMPTY, 460, 80}, {T_SWOOPER1, T_SWOOPER1, T_EMPTY, 260, 80}, {T_STOPPER1, T_DARTER1, T_EMPTY, 260, 80}, {T_SWOOPER1, T_STOPPER1, T_EMPTY, 260, 80}, {T_DIVER1, T_SWOOPER1, T_EMPTY, 260, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_DIVER1, T_SWOOPER1, T_EMPTY, 160, 80}, {T_CARRIER1, T_EMPTY, T_EMPTY, 260, 80}, {T_SWOOPER1, T_SWOOPER1, T_EMPTY, 260, 80}, //{T_CARRIER1, T_EMPTY, T_EMPTY, 260, 80}, //{T_CARRIER1, T_EMPTY, T_EMPTY, 260, 80}, //{T_CARRIER1, T_EMPTY, T_EMPTY, 260, 80}, {T_SWOOPER2, T_DARTER2, T_EMPTY, 160, 80}, {T_POD1, T_EMPTY, T_EMPTY, 260, 80}, {T_SWOOPER2, T_EMPTY, T_EMPTY, 210, 80}, {T_SWOOPER2, T_SWOOPER1, T_EMPTY, 210, 80}, {T_SWOOPER2, T_EMPTY, T_EMPTY, 210, 80}, {T_SWOOPER2, T_DARTER2, T_EMPTY, 210, 80}, {T_SWOOPER2, T_DIVER1, T_EMPTY, 210, 80}, {T_SWOOPER2, T_SWOOPER1, T_EMPTY, 210, 80}, {T_CARRIER1, T_EMPTY, T_EMPTY, 860, 80}, {T_BOSS1, T_EMPTY, T_EMPTY, 5, 2}, {T_END_LEVEL, T_EMPTY, T_EMPTY, 460, 80}, /*{T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80}, {T_STOPPER1, T_EMPTY, T_EMPTY, 160, 80},*/ // need an end? }, // STAGE 2! { {T_SWOOPER1, T_EMPTY, T_EMPTY, 10, 5}, // doesn't appear {T_CHANGE_MUSIC, OVERMUSIC_L2_3, 0, 0, 0}, {T_DRIFTER1, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_DRIFTER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER1, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_EMPTY, T_EMPTY, 150, 5}, {T_RISER, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_RISER, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_BEAMER, T_EMPTY, T_EMPTY, 150, 5}, {T_ESCORTS_1, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_EMPTY, T_EMPTY, 150, 5}, {T_RISER, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_RISER, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_EMPTY, T_EMPTY, 150, 5}, {T_BEAMER, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER1, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER3, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER3, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER1, T_EMPTY, T_EMPTY, 150, 5}, {T_BEAMER, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER2, T_EMPTY, T_EMPTY, 150, 5}, {T_ESCORTS_2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER1, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER3, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER1, T_DRIFTER1, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER3, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER1, T_EMPTY, T_EMPTY, 150, 5}, {T_RISER, T_EMPTY, T_EMPTY, 150, 5}, {T_SHOOTER, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER2, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER4, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER4, T_EMPTY, T_EMPTY, 150, 5}, {T_DRIFTER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER2, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER4, T_EMPTY, T_EMPTY, 150, 5}, {T_CRUISER4, T_EMPTY, T_EMPTY, 150, 5}, {T_SHOOTER, T_EMPTY, T_EMPTY, 250, 5}, {T_BOSS2, T_EMPTY, T_EMPTY, 250, 5}, {T_END_LEVEL, T_EMPTY, T_EMPTY, 460, 80}, }, // STAGE 3! { {T_SWOOPER1, T_EMPTY, T_EMPTY, 10, 5}, // doesn't appear //{T_CHANGE_MUSIC, OVERMUSIC_L3_4, 0, 0, 0}, //{T_BOSS3, T_EMPTY, T_EMPTY, 5, 2}, {T_SMALL, T_EMPTY, T_EMPTY, 190, 50}, {T_SMALL, T_EMPTY, T_EMPTY, 190, 50}, {T_CHANGE_MUSIC, OVERMUSIC_L3_3, 0, 0, 0}, {T_SMALL, T_SMALL, T_SMALL, 190, 50}, {T_LARGER, T_SMALL, T_EMPTY, 190, 50}, {T_LARGER, T_SMALL, T_EMPTY, 190, 50}, {T_WINGS, T_EMPTY, T_EMPTY, 290, 50}, {T_SMALL, T_EMPTY, T_EMPTY, 190, 50}, {T_LARGER, T_SMALL, T_EMPTY, 190, 50}, {T_LARGER, T_SMALL, T_EMPTY, 190, 50}, {T_WINGS, T_EMPTY, T_EMPTY, 290, 50}, {T_LARGER, T_SMALL, T_EMPTY, 190, 50}, {T_MEGA, T_EMPTY, T_EMPTY, 400, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_SMALL, T_SMALL2, T_SMALL2, 190, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_WINGS, T_EMPTY, T_EMPTY, 290, 50}, {T_LARGER, T_SMALL2, T_EMPTY, 190, 50}, {T_SMALL, T_SMALL2, T_SMALL, 190, 50}, {T_SMALL, T_SMALL2, T_SMALL2, 190, 50}, {T_LARGER2, T_SMALL2, T_EMPTY, 190, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_MEGA, T_SMALL, T_EMPTY, 310, 50}, {T_MEGA, T_SMALL2, T_EMPTY, 310, 50}, {T_CHANGE_MUSIC, OVERMUSIC_L3_4, 0, 0, 0}, {T_WINGS2, T_EMPTY, T_EMPTY, 150, 50}, {T_WINGS, T_EMPTY, T_EMPTY, 150, 50}, {T_LARGER, T_EMPTY, T_EMPTY, 150, 50}, {T_LARGER2, T_EMPTY, T_EMPTY, 150, 50}, {T_SMALL, T_SMALL2, T_EMPTY, 150, 50}, {T_SMALL2, T_SMALL, T_SMALL, 150, 50}, {T_LARGER, T_EMPTY, T_EMPTY, 150, 50}, {T_SMALL, T_SMALL2, T_EMPTY, 150, 50}, {T_LARGER, T_LARGER2, T_EMPTY, 150, 50}, {T_MEGA, T_MEGA, T_EMPTY, 310, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_SMALL, T_SMALL, T_SMALL2, 190, 50}, {T_WINGS2, T_EMPTY, T_EMPTY, 210, 50}, {T_WINGS, T_SMALL, T_EMPTY, 210, 50}, {T_LARGER, T_SMALL2, T_EMPTY, 210, 50}, {T_LARGER2, T_SMALL, T_EMPTY, 210, 50}, {T_SMALL, T_SMALL, T_EMPTY, 210, 50}, {T_SMALL2, T_SMALL, T_EMPTY, 210, 50}, /* {T_LARGER, T_EMPTY, T_EMPTY, 210, 50}, {T_SMALL, T_SMALL2, T_EMPTY, 210, 50}, {T_LARGER, T_LARGER2, T_EMPTY, 210, 50}, {T_SMALL2, T_SMALL, T_EMPTY, 210, 50}, {T_LARGER, T_SMALL, T_EMPTY, 210, 50}, {T_LARGER2, T_SMALL2, T_EMPTY, 210, 50}, {T_LARGER, T_SMALL, T_EMPTY, 210, 50}, {T_LARGER2, T_LARGER2, T_EMPTY, 210, 50}, {T_SMALL2, T_SMALL, T_EMPTY, 250, 50},*/ {T_BOSS3, T_EMPTY, T_EMPTY, 250, 50}, {T_END_LEVEL, T_EMPTY, T_EMPTY, 460, 80}, }, // STAGE 4! { {T_SWOOPER1, T_EMPTY, T_EMPTY, 150, 5}, // doesn't appear // droppers need a low random number! //{T_BOSS4, T_EMPTY, T_EMPTY, 150, 50}, {T_RING, T_EMPTY, T_EMPTY, 250, 50}, {T_RING, T_EMPTY, T_EMPTY, 250, 50}, {T_HOOK, T_EMPTY, T_EMPTY, 250, 50}, {T_HOOK, T_EMPTY, T_EMPTY, 150, 50}, {T_HOOK, T_EMPTY, T_EMPTY, 150, 50}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_HOOK, T_EMPTY, T_EMPTY, 150, 50}, {T_SPINNER, T_HOOK, T_EMPTY, 150, 50}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_HOOK, T_EMPTY, T_EMPTY, 150, 50}, {T_RING, T_RING, T_EMPTY, 150, 50}, {T_HUNTER, T_EMPTY, T_EMPTY, 150, 50}, {T_HOOK, T_EMPTY, T_EMPTY, 150, 50}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_SPINNER, T_EMPTY, T_EMPTY, 150, 50}, {T_DROPPER, T_EMPTY, T_EMPTY, 250, 0}, {T_SPINNER, T_HOOK, T_EMPTY, 150, 50}, {T_DROPPER, T_HOOK, T_EMPTY, 150, 0}, {T_HUNTER, T_EMPTY, T_EMPTY, 150, 50}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_CHANGE_MUSIC, OVERMUSIC_L4_2, 0, 0, 0}, {T_WALK, T_HOOK, T_EMPTY, 150, 50}, {T_HOOK, T_EMPTY, T_EMPTY, 150, 50}, {T_RING, T_RING, T_EMPTY, 150, 50}, {T_WALK, T_EMPTY, T_EMPTY, 150, 50}, {T_HOOK, T_EMPTY, T_EMPTY, 150, 50}, {T_HUNTER, T_EMPTY, T_EMPTY, 150, 50}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_HOOK2, T_EMPTY, T_EMPTY, 150, 50}, {T_SPINNER, T_RING, T_EMPTY, 150, 50}, {T_DROPPER, T_HOOK, T_EMPTY, 150, 0}, {T_HOOK2, T_EMPTY, T_EMPTY, 150, 50}, {T_RING, T_RING, T_EMPTY, 150, 50}, {T_WALK, T_HOOK, T_EMPTY, 150, 50}, {T_DROPPER, T_EMPTY, T_EMPTY, 150, 0}, {T_SPINNER, T_EMPTY, T_EMPTY, 150, 50}, {T_HOOK2, T_EMPTY, T_EMPTY, 150, 50}, {T_WALK, T_HOOK, T_EMPTY, 150, 50}, {T_HUNTER, T_EMPTY, T_EMPTY, 350, 50}, {T_BOSS4, T_EMPTY, T_EMPTY, 350, 50}, {T_END_LEVEL, T_EMPTY, T_EMPTY, 460, 80}, } }; void spawn_enemy (int type, int pole); void make_track (int t); void run_tracks (void); void make_group_track (int t, int type); void set_dancer (int e, int t); void set_hook (int e, int t); void set_darter (int e, int t); void set_stopper (int e, int t); void set_diver (int e, int t); void set_glider (int e, int t); void set_attacker (int e, int t); void set_dart_stopper (int e, int t, int m); void set_drifter (int e, int t); void set_cruiser (int e, int t); void set_walker (int e, int t); void give_escort (int e, int etype, int x1, int y1, int x, int y); void set_beamer (int e, int t); void set_pauser (int e, int t); void place_marchers (int t); int create_part (int pe, int index, int type, int x, int y); void set_boss (int e, int t); void init_level (void) { init_pbullets (); init_ebullets (); init_enemies (); init_clouds (); int i; for (i = 0; i < NO_TRACKS; i++) { track[i].type = ENEMY_NONE; } overtrack_pos = 0; overtrack_pos2 = 0; // boss.fight = 0; arena.new_level_sign = 100; arena.beam = 0; arena.old_beam = 0; arena.level_finished = 0; arena.underlay_position = 0; next_track = 50; arena.cruiser_escorts = 0; // init_mtracks(); sound!!! replace // level_display_init(); } void run_level (void) { run_tracks (); } void run_tracks (void) { int t; int e; //if (boss.fight) // return; if (arena.level_finished > 0 || arena.game_over > 0) return; if (boss.fight == 0) { next_track--; if (next_track <= 0) { for (t = 0; t < 3; t++) { track[t].type = ENEMY_NONE; make_track (t); } next_track = overtrack[arena.level - 1][overtrack_pos][OT_NEXT]; // see also above } } for (t = 0; t < 3; t++) { if (track[t].type == ENEMY_NONE || track[t].multiple == 0) { continue; } if (track[t].count <= 0) { if (track[t].multiple == 0) { track[t].delay--; continue; } while (track[t].count <= 0 && track[t].multiple > 0) { /* if (track[t].style == TRACK_MARCHER) { place_marchers(t); track[t].multiple = 0; track[t].count = 0; track[t].type = ENEMY_NONE; continue; } */ // if (track[t].style == TRACK_BOSS1) // continue; e = create_enemy (track[t].type); if (e != -1) { enemy[e].x = track[t].x[track[t].multiple]; enemy[e].y = track[t].y[track[t].multiple]; enemy[e].angle = ANGLE_4; switch (eclass[enemy[e].type].ai) { default: case AI_DANCER: set_dancer (e, t); break; case AI_DARTER: set_darter (e, t); break; case AI_DART_STOPPER: set_dart_stopper (e, t, track[t].multiple); break; case AI_STOPPER: set_stopper (e, t); break; case AI_DIVER: set_diver (e, t); break; case AI_DRIFTER: set_drifter (e, t); break; case AI_CRUISER: set_cruiser (e, t); break; case AI_WALK: set_walker (e, t); break; case AI_BOSS: set_boss (e, t); break; case AI_HOOK: set_hook (e, t); break; /* case AI_DIVER: set_diver(e, t); break; case AI_GLIDER: set_glider(e, t); break; case AI_PAUSER: set_pauser(e, t); break; case AI_ATTACKER: set_attacker(e, t); break; case AI_BEAMER: set_beamer(e, t); break;*/ } } track[t].count = track[t].count2; track[t].multiple--; } } // count > 0. so -- it track[t].count--; } } void make_track (int t) { int etype; track[t].total = 0; track[t].reverse = -1; int track_number = grand (3); if (t == 0 && grand (2) == 0) track_number = 3; int s_etype = 3; overtrack_pos2++; if (overtrack_pos2 > 2) { overtrack_pos2 = 0; overtrack_pos++; if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_CHANGE_MUSIC) { change_music (overtrack[arena.level - 1][overtrack_pos][1]); overtrack_pos++; overtrack_pos2 = -1; // so with the increment above it'll be 0 return; // overtrack_pos2 = 0; // must reset this for every non-enemy overtrack entry!! } if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_ESCORTS_1) { arena.cruiser_escorts = 1; overtrack_pos++; overtrack_pos2 = -1; // so with the increment above it'll be 0 return; // overtrack_pos2 = 0; // must reset this for every non-enemy overtrack entry!! } if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_ESCORTS_2) { arena.cruiser_escorts = 2; overtrack_pos++; overtrack_pos2 = -1; // so with the increment above it'll be 0 return; // overtrack_pos2 = 0; // must reset this for every non-enemy overtrack entry!! } if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_ESCORTS_3) { arena.cruiser_escorts = 3; overtrack_pos++; overtrack_pos2 = -1; // so with the increment above it'll be 0 return; // overtrack_pos2 = 0; // must reset this for every non-enemy overtrack entry!! } if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_ESCORTS_0) { arena.cruiser_escorts = 0; overtrack_pos++; overtrack_pos2 = -1; // so with the increment above it'll be 0 return; // overtrack_pos2 = 0; // must reset this for every non-enemy overtrack entry!! } if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_END_LEVEL) { arena.level_finished = 300; return; } if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_OVERTRACK_END) overtrack_pos = 0; } if (overtrack[arena.level - 1][overtrack_pos][overtrack_pos2] == T_EMPTY) { track[t].multiple = 0; return; } s_etype = overtrack[arena.level - 1][overtrack_pos][overtrack_pos2]; switch (s_etype) { case T_BOSS1: etype = ENEMY_BOSS1; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_BOSS; make_group_track (t, etype); break; case T_BOSS2: etype = ENEMY_BOSS2; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_BOSS; make_group_track (t, etype); break; case T_BOSS3: etype = ENEMY_BOSS3; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_BOSS; make_group_track (t, etype); break; case T_BOSS4: etype = ENEMY_BOSS4; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_BOSS; make_group_track (t, etype); break; case T_CRUISER1: etype = ENEMY_CRUISER1; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_CRUISER; make_group_track (t, etype); break; case T_CRUISER2: etype = ENEMY_CRUISER2; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_CRUISER; make_group_track (t, etype); break; case T_CRUISER3: etype = ENEMY_CRUISER3; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_CRUISER; make_group_track (t, etype); break; case T_CRUISER4: etype = ENEMY_CRUISER4; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_CRUISER; make_group_track (t, etype); break; case T_CRUISER5: etype = ENEMY_CRUISER5; track[t].type = etype; track[t].multiple = 1; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_CRUISER; make_group_track (t, etype); break; case T_RISER: etype = ENEMY_RISER; track[t].type = etype; track[t].multiple = 6; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_BEAMER: etype = ENEMY_BEAMER; track[t].type = etype; track[t].multiple = 3; track[t].count = 2; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_SHOOTER: etype = ENEMY_SHOOTER; track[t].type = etype; track[t].multiple = 2; track[t].count = 2; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_DRIFTER1: etype = ENEMY_DRIFTER1; track[t].type = etype; track[t].multiple = 3; track[t].count = 25; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DRIFTER; make_group_track (t, etype); break; case T_DRIFTER2: etype = ENEMY_DRIFTER2; track[t].type = etype; track[t].multiple = 2; track[t].count = 2; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DRIFTER; make_group_track (t, etype); break; case T_MEGA: etype = ENEMY_MEGA; track[t].type = etype; track[t].multiple = 1; track[t].count = 2; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_WINGS: etype = ENEMY_WINGS; track[t].type = etype; track[t].multiple = 2; track[t].count = 2; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_WINGS2: etype = ENEMY_WINGS2; track[t].type = etype; track[t].multiple = 2; track[t].count = 2; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_SMALL: etype = ENEMY_SMALL; track[t].type = etype; track[t].multiple = 3; track[t].count = 30; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_WANDER; make_group_track (t, etype); break; case T_SMALL2: etype = ENEMY_SMALL2; track[t].type = etype; track[t].multiple = 3; track[t].count = 25; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_WANDER; make_group_track (t, etype); break; case T_LARGER: etype = ENEMY_LARGER; track[t].type = etype; track[t].multiple = 2; track[t].count = 5; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DART_STOPPER; make_group_track (t, etype); break; case T_LARGER2: etype = ENEMY_LARGER2; track[t].type = etype; track[t].multiple = 2; track[t].count = 5; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DART_STOPPER; make_group_track (t, etype); break; case T_SWOOPER1: etype = ENEMY_SWOOPER1; track[t].type = etype; track[t].multiple = 4; track[t].count = 20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_WANDER; make_group_track (t, etype); break; case T_SWOOPER2: etype = ENEMY_SWOOPER2; track[t].type = etype; track[t].multiple = 4; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_WANDER; make_group_track (t, etype); break; case T_DARTER1: etype = ENEMY_DARTER1; track[t].type = etype; track[t].multiple = 4; track[t].count = 0; //20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DARTER; make_group_track (t, etype); break; case T_DARTER2: etype = ENEMY_DARTER2; track[t].type = etype; track[t].multiple = 3; track[t].count = 0; //20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DARTER; make_group_track (t, etype); break; case T_STOPPER1: etype = ENEMY_STOPPER1; track[t].type = etype; track[t].multiple = 1; track[t].count = 0; //20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_CARRIER1: etype = ENEMY_CARRIER1; track[t].type = etype; track[t].multiple = 1; track[t].count = 0; //20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_DIVER1: etype = ENEMY_DIVER1; track[t].type = etype; track[t].multiple = 3; track[t].count = 0; //20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DIVER; make_group_track (t, etype); break; case T_POD1: etype = ENEMY_POD1; track[t].type = etype; track[t].multiple = 2; track[t].count = 1; //20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_HOOK: etype = ENEMY_HOOK; track[t].type = etype; track[t].multiple = 4; track[t].count = 10; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_SLIDER; make_group_track (t, etype); break; case T_HOOK2: etype = ENEMY_HOOK2; track[t].type = etype; track[t].multiple = 4; track[t].count = 15; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_SLIDER; make_group_track (t, etype); break; case T_WALK: etype = ENEMY_WALKER; track[t].type = etype; track[t].multiple = 1; track[t].count = 0; //20; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_WALK; make_group_track (t, etype); break; case T_DROPPER: etype = ENEMY_DROPPER; track[t].type = etype; track[t].multiple = 4; track[t].count = 45; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_CRUISER; make_group_track (t, etype); break; case T_RING: etype = ENEMY_RING; track[t].type = etype; track[t].multiple = 1; track[t].count = 1; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_DRIFTER; make_group_track (t, etype); break; case T_HUNTER: etype = ENEMY_HUNTER; track[t].type = etype; track[t].multiple = 2; track[t].count = 1 + grand (30); track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_STOPPER; make_group_track (t, etype); break; case T_SPINNER: etype = ENEMY_SPINNER; track[t].type = etype; track[t].multiple = 1; track[t].count = 1; track[t].count2 = track[t].count; track[t].delay = 80; track[t].style = TRACK_CRUISER; make_group_track (t, etype); break; } track[t].count = grand (overtrack[arena.level - 1][overtrack_pos][OT_WAIT]); } void make_group_track (int t, int type) { int a; //, b; int i; switch (track[t].style) { case TRACK_WALK: track[t].x[1] = 200000 + grand (240000); track[t].y[1] = -70000; break; case TRACK_CRUISER: track[t].x[1] = RAND_X_IN; track[t].y[1] = -70000; break; case TRACK_DRIFTER: for (i = 1; i < track[t].multiple + 1; i++) { switch (grand (5)) { default: track[t].x[i] = RAND_X; track[t].y[i] = -30000; break; case 0: track[t].x[i] = -30000; track[t].y[i] = RAND_Y_IN - 100000; break; case 1: track[t].x[i] = 670000; track[t].y[i] = RAND_Y_IN - 100000; break; } } break; case TRACK_STOPPER: if (type == ENEMY_POD1 || type == ENEMY_HUNTER) { // track[t].x [0] = 100000; track[t].x[1] = 100000 + grand (150000); track[t].x[2] = 540000 - grand (150000); track[t].y[1] = -40000; track[t].y[2] = -40000; break; } if (type == ENEMY_WINGS || type == ENEMY_WINGS2) { track[t].x[1] = 100000 + grand (150000); track[t].x[2] = 540000 - grand (150000); track[t].y[1] = 520000; track[t].y[2] = 520000; break; } if (type == ENEMY_BEAMER || type == ENEMY_SHOOTER) { track[t].x[1] = 100000 + grand (100000); track[t].x[2] = 540000 - grand (100000); track[t].x[3] = 270000 + grand (100000); track[t].y[1] = 520000; track[t].y[2] = 520000; track[t].y[3] = 520000; break; } if (type == ENEMY_RISER) { track[t].x[1] = 40000 + grand (50000); track[t].x[2] = 140000 + grand (50000); track[t].x[3] = 240000 + grand (50000); track[t].x[4] = 340000 + grand (50000); track[t].x[5] = 440000 + grand (50000); track[t].x[6] = 540000 + grand (50000); track[t].y[1] = 520000; track[t].y[2] = 520000; track[t].y[3] = 520000; track[t].y[4] = 520000; track[t].y[5] = 520000; track[t].y[6] = 520000; break; } track[t].x[1] = RAND_X_IN; track[t].y[1] = -40000; if (type == ENEMY_MEGA) track[t].y[1] = -70000; break; default: case TRACK_WANDER: track[t].x[0] = RAND_X; track[t].y[0] = -30000; if (type == ENEMY_SMALL || type == ENEMY_SMALL2) track[t].y[0] = -60000; // int tw = grand(2); for (i = 1; i < TRACK_SIZE; i++) { track[t].x[i] = track[t].x[0]; track[t].y[i] = track[t].y[0]; } switch (grand (3)) { case 0: // R-L-R default: track[t].x[0] = RAND_X; track[t].x[0] = (RAND_X / 3) + X_MAX / 3 * 2; // track[t].y [0] = 150000; track[t].x_target[0] = RAND_X / 5 + X_MAX / 8; // track[t].x_target [0] = RAND_X / 3; // track[t].y_target [0] = (RAND_Y / 3) * 2; track[t].y_target[0] = (RAND_Y / 2) + Y_MAX / 5; track[t].x_target[1] = (RAND_X / 3) + (X_MAX / 3) * 2; track[t].y_target[1] = (RAND_Y / 2) + Y_MAX / 5; // track[t].y_target [1] = (RAND_Y / 3) * 2; track[t].x_target[2] = -1; track[t].y_target[2] = -1; if (grand (2) == 0) { track[t].x[0] = X_MAX - track[t].x[0]; track[t].x_target[0] = X_MAX - track[t].x_target[0]; track[t].x_target[1] = X_MAX - track[t].x_target[1]; } break; } track[t].target_time = 250; break; case TRACK_SLIDER: track[t].x[0] = -30000; track[t].y[0] = RAND_Y; for (i = 1; i < TRACK_SIZE; i++) { track[t].x[i] = track[t].x[0]; track[t].y[i] = track[t].y[0]; } track[t].x_target[0] = 400000 + grand (200000); track[t].y_target[0] = RAND_Y; track[t].x_target[1] = 40000 + grand (200000); track[t].y_target[1] = RAND_Y; track[t].x_target[2] = 400000 + grand (200000); track[t].y_target[2] = RAND_Y; track[t].x_target[3] = -1; track[t].y_target[3] = -1; track[t].target_time = 250; break; case TRACK_DARTER: track[t].x[0] = grand (50000) * -1; track[t].y[0] = -30000 - grand (140000); for (i = 1; i < track[t].multiple + 1; i++) { track[t].x[i] = track[t].x[i - 1] + 120000; track[t].y[i] = -30000 - grand (140000); //track[t].y [0]; } break; case TRACK_DIVER: track[t].x[0] = grand (50000) * -1; track[t].y[0] = -30000 - grand (140000); for (i = 1; i < track[t].multiple + 1; i++) { track[t].x[i] = track[t].x[i - 1] + 120000 + grand (35000); track[t].y[i] = -30000 - 60000 * i; //grand(140000);//track[t].y [0]; } break; case TRACK_DART_STOPPER: // track[t].x [0] = grand(50000) * -1; // track[t].y [0] = -30000 - grand(140000); /* for (i = 1; i < track[t].multiple + 1; i ++) { track[t].y [i] = RAND_Y; track[t].x [i] = -50000; if (i % 2 == 0) track[t].x [i] = 690000; track[t].x_target [0] = RAND_X_IN; track[t].y_target [0] = RAND_Y_IN; track[t].x_target [1] = RAND_X_IN; track[t].y_target [1] = RAND_Y_IN; }*/ break; case TRACK_SIDES: track[t].reverse = grand (2); a = grand (2); track[t].x[0] = X_MIN + 40000 + grand (30000); // track[t].x [0] = 100000; if (a == 1) track[t].x[0] = X_MAX - 40000 - grand (30000); track[t].y[0] = -30000; for (i = 1; i < track[t].multiple + 1; i++) { if (i % 2 == 1) track[t].x[i] = X_MAX - track[t].x[0]; else track[t].x[i] = track[t].x[0]; track[t].y[i] = track[t].y[0]; } track[t].x_target[0] = X_MIN + RAND_X / 4; if (a == 1) track[t].x_target[0] = X_MAX - RAND_X / 4; track[t].y_target[0] = Y_MIN + RAND_Y / 3; track[t].x_target[1] = X_MIDDLE; track[t].y_target[1] = Y_MIDDLE; // rand? track[t].x_target[2] = X_MAX - RAND_X / 4; if (a == 1) track[t].x_target[2] = X_MIN + RAND_X / 4; track[t].y_target[2] = 500000; track[t].x_target[3] = -1; track[t].y_target[3] = -1; track[t].target_time = 280; break; /* case TRACK_DIVER: // exit(1); track[t].reverse = grand(2); a = 0; track[t].x [0] = X_MIN + 40000 + grand(30000); if (a == 1) track[t].x [0] = X_MAX - 50000; track[t].y [0] = -30000; for (i = 1; i < track[t].multiple + 1; i ++) { track[t].x [i] = track[t].x [0] + i * 75000; if (a == 1) track[t].x [i] = track[t].x [0] - i * 75000; track[t].y [i] = track[t].y [0]; } track[t].target_time = grand(30) + 20; break; case TRACK_GLIDER: track[t].x [0] = RAND_X; track[t].y [0] = -70000 + grand(23000); track[t].x_target [0] = track[t].x [0]; track[t].y_target [0] = 500000; for (i = 1; i < track[t].multiple + 1; i ++) { track[t].x [i] = track[t].x [0]; track[t].y [i] = track[t].y [0]; track[t].x_target [0] = track[t].x [0]; track[t].y_target [0] = 500000; } break; case TRACK_ATTACKER: // note i = 0 t = t; int str_x; int str_y = -20000 - grand(55000); if (grand(2) == 0) { // str_x = 30000 + grand(50000); str_x = -30000 + grand(75000); for (i = 0; i < track[t].multiple + 1; i ++) { track[t].x [i] = str_x + i * 90000; track[t].y [i] = str_y; } } else { // str_x = X_MAX - (30000 + grand(50000)); str_x = X_MAX - (-40000 + grand(45000)); for (i = 0; i < track[t].multiple + 1; i ++) { track[t].x [i] = str_x - (i * 90000); track[t].y [i] = str_y; } } // track[t].target_time = grand(30) + 30; break; case TRACK_BEAMER: for (i = 0; i < track[t].multiple + 1; i ++) { track[t].x [i] = RAND_X; track[t].y [i] = -70000; } break;*/ } } int get_max_stage_score (void) { int i, j; int s = 0; int ttype, etype; for (i = 0; i < 71; i++) { for (j = 0; j < 3; j++) { ttype = overtrack[arena.level - 1][i][j]; if (ttype == T_END_LEVEL) { i = 80; break; } etype = track_score[ttype][1]; if (track_score[ttype][0] == 0) continue; s += eclass[etype].xp * track_score[ttype][0]; // s += track_score [ttype] [0]; } } return s; } void give_escort (int e, int etype, int x1, int y1, int x, int y) { int e2 = create_enemy (etype); if (e2 != -1) { enemy[e2].x = x; enemy[e2].y = y; enemy[e2].angle = ANGLE_4; enemy[e2].persist = 1; enemy[e2].target = 0; enemy[e2].escorting = e; enemy[e2].pulse1 = x1; enemy[e2].pulse2 = y1; enemy[e2].target_time = eclass[etype].speed3; enemy[e2].phase = 0; enemy[e2].angle1 = ANGLE_4; enemy[e2].angle = ANGLE_4; enemy[e2].x_target[0] = enemy[e].x; enemy[e2].y_target[0] = enemy[e].y; // enemy[e2].angle = radians_to_angle(atan2(enemy [e].y_target [0] - enemy [e].y, enemy [e].x_target [0] - enemy [e].x)); // enemy[e2].angle = radians_to_angle(atan2(enemy [e].y_target [0] - enemy [e].y, enemy [e].x_target [0] - enemy [e].x)); enemy[e2].angle = grand (ANGLE_1); enemy[e2].x_speed = 0; //xpart(enemy[e2].angle, 3000); enemy[e2].y_speed = 0; //ypart(enemy[e2].angle, 3000); } } void set_boss (int e, int t) { int i; // enemy [e].target_time = track[t].target_time; enemy[e].persist = 1; // enemy [e].target = 0; // enemy [e].target_time = 60 + grand(60); // may be overridden below // enemy [e].max_target_time = track[t].target_time; // enemy [e].target = 0; // enemy[e].phase = 0; // enemy[e].phase2 = 0; enemy[e].x = 320000; enemy[e].y = -70000; enemy[e].x_speed = 0; enemy[e].y_speed = 2000; enemy[e].angle1 = ANGLE_4; enemy[e].angle = ANGLE_4; boss.fight = 1; boss.index = e; boss.phase = 0; boss.phase_count = 0; boss.recycle = 50; boss.status = 0; switch (enemy[e].type) { case ENEMY_BOSS1: boss.hp = 50000; // + arena.difficulty * 15000; // boss.hp = 1000 + arena.difficulty * 100; boss.max_hp = boss.hp; boss.hp_bar_size = 0; boss.phase_count = 100; boss.out_sides = 0; boss.out_sides2 = 0; boss.out_up = 0; boss.out_out_up = 0; boss.t_angle[0] = ANGLE_2; boss.t_angle_turning[0] = 0; boss.t_angle[1] = 0; boss.t_angle_turning[1] = 0; boss.t_status = 0; boss.t_recycle[0] = 10; break; case ENEMY_BOSS2: boss.hp = 60000; // + arena.difficulty * 16000; // boss.hp = 3000; boss.max_hp = boss.hp; boss.hp_bar_size = 0; enemy[e].y = 550000; enemy[e].x_speed = 0; enemy[e].y_speed = -7000; boss.phase_count = 60; boss.out_sides = 0; boss.out_sides2 = 0; boss.t_status = grand (4); boss.t_status_change = 1; for (i = 0; i < 4; i++) { boss.t_angle[i] = -ANGLE_4; boss.t_angle_turning[i] = 0; boss.t_recycle[i] = 10; boss.t_beam[i] = 0; } break; case ENEMY_BOSS3: boss.hp = 50000; // + arena.difficulty * 15000; //boss.hp = 3000; boss.max_hp = boss.hp; boss.hp_bar_size = 0; enemy[e].y = -250000; enemy[e].x_speed = 0; enemy[e].y_speed = 4000; boss.phase_count = 75; boss.phase2 = 3; boss.petal_angle[0] = grand (ANGLE_1); boss.petal_angle[1] = grand (ANGLE_1); boss.petal_angle[2] = grand (ANGLE_1); boss.petal_speed[0] = 4; boss.petal_speed[1] = 8; boss.petal_speed[2] = -6; boss.petal_out[0] = 90; boss.petal_out[1] = 140; boss.petal_out[2] = 190; boss.next_small = 50; // boss.out_sides = 0; // boss.out_sides2 = 0; // boss.t_status = grand(4); // boss.t_status_change = 1; break; case ENEMY_BOSS4: boss.hp = 70000; // + arena.difficulty * 18000; // boss.hp = 3000; boss.max_hp = boss.hp; boss.hp_bar_size = 0; enemy[e].y = -250000; boss.phase_count = 5000; boss.spin_size = 0; boss.spin_rad = 0; boss.spin_angle = 0; boss.spin_size2 = 0; boss.spin_rad2 = 0; boss.spin_angle2 = 0; boss.spin_size3 = 0; boss.spin_rad3 = 0; boss.spin_counter++; boss.sides_recycle = 30; boss.outer_fire_type = 1; boss.outer_fire_count = 10; boss.recycle = 200; break; } } void create_boss3_dancer (int type) { int i; int e = create_enemy (type); if (e == -1) return; enemy[e].persist = 1; enemy[e].angle1 = ANGLE_4; int t = 0; enemy[e].x = RAND_X; enemy[e].y = -60000; track[t].x[0] = RAND_X; track[t].x[0] = (RAND_X / 3) + X_MAX / 3 * 2; track[t].x_target[0] = RAND_X / 5 + X_MAX / 8; track[t].y_target[0] = (RAND_Y / 2) + Y_MAX / 5; track[t].x_target[1] = (RAND_X / 3) + (X_MAX / 3) * 2; track[t].y_target[1] = (RAND_Y / 2) + Y_MAX / 5; track[t].x_target[2] = -1; track[t].y_target[2] = -1; if (grand (2) == 0) { track[t].x[0] = X_MAX - track[t].x[0]; track[t].x_target[0] = X_MAX - track[t].x_target[0]; track[t].x_target[1] = X_MAX - track[t].x_target[1]; } track[t].target_time = 250; for (i = 0; i < MAX_TARGETS; i++) { enemy[e].x_target[i] = track[t].x_target[i]; //X_MIN + track[t].x_target [i]; if (track[t].x_target[i] == -1) enemy[e].x_target[i] = -1; enemy[e].y_target[i] = track[t].y_target[i]; //Y_MIN + track[t].y_target [i]; } /* if (reverse != 0) { for (i = 0; i < MAX_TARGETS; i ++) { enemy [e].x_target [i] = X_MAX - track[t].x_target [i]; if (track[t].x_target [i] == -1) enemy [e].x_target [i] = -1; enemy [e].y_target [i] = Y_MIN + track[t].y_target [i]; } } else { for (i = 0; i < MAX_TARGETS; i ++) { enemy [e].x_target [i] = X_MIN + track[t].x_target [i]; if (track[t].x_target [i] == -1) enemy [e].x_target [i] = -1; enemy [e].y_target [i] = Y_MIN + track[t].y_target [i]; } } */ enemy[e].target_time = track[t].target_time; enemy[e].max_target_time = track[t].target_time; enemy[e].target = 0; enemy[e].angle1_turning = 0; enemy[e].angle1_turning_count = 0; enemy[e].recycle = 5 + grand (10); switch (enemy[e].type) { case ENEMY_SMALL: case ENEMY_SMALL2: enemy[e].angle1 = radians_to_angle (atan2 (enemy[e].y_target[0] - enemy[e].y, enemy[e].x_target[0] - enemy[e].x)); enemy[e].petal_angle[0] = enemy[e].angle1 + ANGLE_2; enemy[e].petal_angle[1] = enemy[e].angle1 + ANGLE_2 - ANGLE_6; enemy[e].petal_angle[2] = enemy[e].angle1 + ANGLE_2 + ANGLE_6; enemy[e].max_target_time = 250; break; } } void set_hook (int e, int t) { int i; enemy[e].persist = 1; enemy[e].angle1 = 0; if (track[t].multiple & 1) { enemy[e].angle1 = ANGLE_2; enemy[e].x = 670000; for (i = 0; i < MAX_TARGETS; i++) { enemy[e].x_target[i] = X_MAX - track[t].x_target[i]; if (track[t].x_target[i] == -1) enemy[e].x_target[i] = -1; enemy[e].y_target[i] = track[t].y_target[i]; } } else { for (i = 0; i < MAX_TARGETS; i++) { enemy[e].x_target[i] = track[t].x_target[i]; if (track[t].x_target[i] == -1) enemy[e].x_target[i] = -1; enemy[e].y_target[i] = track[t].y_target[i]; } } enemy[e].target_time = track[t].target_time; enemy[e].max_target_time = track[t].target_time; enemy[e].target = 0; enemy[e].angle1_turning = 0; enemy[e].angle1_turning_count = 0; enemy[e].recycle = 5 + grand (10); } void set_dancer (int e, int t) { int i; enemy[e].persist = 1; enemy[e].angle1 = ANGLE_4; if (track[t].reverse != -1 && track[t].multiple % 2 == track[t].reverse) { for (i = 0; i < MAX_TARGETS; i++) { enemy[e].x_target[i] = X_MAX - track[t].x_target[i]; if (track[t].x_target[i] == -1) enemy[e].x_target[i] = -1; enemy[e].y_target[i] = Y_MIN + track[t].y_target[i]; } } else { for (i = 0; i < MAX_TARGETS; i++) { enemy[e].x_target[i] = X_MIN + track[t].x_target[i]; if (track[t].x_target[i] == -1) enemy[e].x_target[i] = -1; enemy[e].y_target[i] = Y_MIN + track[t].y_target[i]; } } enemy[e].target_time = track[t].target_time; enemy[e].max_target_time = track[t].target_time; enemy[e].target = 0; enemy[e].angle1_turning = 0; enemy[e].angle1_turning_count = 0; enemy[e].recycle = 5 + grand (10); switch (enemy[e].type) { case ENEMY_SMALL: case ENEMY_SMALL2: enemy[e].angle1 = radians_to_angle (atan2 (enemy[e].y_target[0] - enemy[e].y, enemy[e].x_target[0] - enemy[e].x)); enemy[e].petal_angle[0] = enemy[e].angle1 + ANGLE_2; enemy[e].petal_angle[1] = enemy[e].angle1 + ANGLE_2 - ANGLE_6; enemy[e].petal_angle[2] = enemy[e].angle1 + ANGLE_2 + ANGLE_6; enemy[e].max_target_time = 250; /* for (i = 0; i < 3; i ++) { enemy[e].petal_angle [i] = i * ANGLE_3; }*/ break; } } void set_darter (int e, int t) { // int i; // enemy [e].target_time = track[t].target_time; enemy[e].persist = 1; enemy[e].target = 0; enemy[e].target_time = 30 + grand (60); // enemy [e].max_target_time = track[t].target_time; // enemy [e].target = 0; enemy[e].phase = 0; enemy[e].phase2 = 0; enemy[e].x_speed = 0; enemy[e].y_speed = 4000; enemy[e].angle1 = ANGLE_4; enemy[e].angle = ANGLE_4; } void set_dart_stopper (int e, int t, int m) { enemy[e].persist = 1; enemy[e].target = 0; enemy[e].target_time = 30 + grand (60); enemy[e].phase = 0; enemy[e].phase2 = 0; enemy[e].x_speed = 0; enemy[e].y_speed = 0; enemy[e].x = -50000; switch (enemy[e].type) { default: case ENEMY_LARGER: enemy[e].status = 16; break; case ENEMY_LARGER2: enemy[e].status = 12; break; } if (m % 2 == 0) { enemy[e].x = 690000; enemy[e].status *= -1; } enemy[e].y = RAND_Y; enemy[e].x_target[0] = RAND_X; enemy[e].y_target[0] = RAND_Y; enemy[e].x_target[1] = RAND_X_IN; enemy[e].y_target[1] = RAND_Y_IN; // enemy [e].angle1 = ANGLE_4; enemy[e].angle = radians_to_angle (atan2 (enemy[e].y_target[0] - enemy[e].y, enemy[e].x_target[0] - enemy[e].x)); switch (enemy[e].type) { case ENEMY_LARGER: enemy[e].petal_angle[0] = enemy[e].angle + ANGLE_2 - ANGLE_4; enemy[e].petal_angle[1] = enemy[e].angle + ANGLE_2 - ANGLE_8; enemy[e].petal_angle[2] = enemy[e].angle + ANGLE_2 + ANGLE_8; enemy[e].petal_angle[3] = enemy[e].angle + ANGLE_2 + ANGLE_4; break; case ENEMY_LARGER2: enemy[e].petal_angle[0] = enemy[e].angle + ANGLE_2 - ANGLE_8; enemy[e].petal_angle[1] = enemy[e].angle + ANGLE_2; enemy[e].petal_angle[2] = enemy[e].angle + ANGLE_2 + ANGLE_8; enemy[e].petal_angle[3] = enemy[e].angle + ANGLE_2 - ANGLE_16; enemy[e].petal_angle[4] = enemy[e].angle + ANGLE_2; enemy[e].petal_angle[5] = enemy[e].angle + ANGLE_2 + ANGLE_16; break; } /* if (enemy[e].x < 0) enemy [e].angle = 0; else enemy [e].angle = ANGLE_2;*/ } void set_drifter (int e, int t) { // int i; // enemy [e].target_time = track[t].target_time; enemy[e].persist = 1; enemy[e].target = 0; enemy[e].target_time = eclass[enemy[e].type].speed3; enemy[e].phase = 0; // enemy[e].phase2 = 0; enemy[e].angle1 = ANGLE_4; enemy[e].angle = ANGLE_4; enemy[e].x_target[0] = RAND_X_IN; enemy[e].y_target[0] = RAND_Y_IN; enemy[e].angle = radians_to_angle (atan2 (enemy[e].y_target[0] - enemy[e].y, enemy[e].x_target[0] - enemy[e].x)); enemy[e].x_speed = xpart (enemy[e].angle, 3000); enemy[e].y_speed = ypart (enemy[e].angle, 3000); // may need to mirror some changes in give_escort switch (enemy[e].type) { case ENEMY_DRIFTER2: give_escort (e, ENEMY_ESCORT, -50000, 0, enemy[e].x, enemy[e].y); give_escort (e, ENEMY_ESCORT, 50000, 0, enemy[e].x, enemy[e].y); break; case ENEMY_RING: enemy[e].angle2 = pos_or_neg (7 + grand (5)); break; } } void set_stopper (int e, int t) { int se, i; // enemy [e].target_time = track[t].target_time; enemy[e].persist = 1; enemy[e].target = 0; enemy[e].target_time = 60 + grand (60); // may be overridden below // enemy [e].max_target_time = track[t].target_time; // enemy [e].target = 0; enemy[e].phase = 0; enemy[e].phase2 = 0; enemy[e].x_speed = 0; enemy[e].y_speed = eclass[enemy[e].type].speed1; enemy[e].angle1 = ANGLE_4; enemy[e].angle = ANGLE_4; switch (enemy[e].type) { case ENEMY_HUNTER: enemy[e].target_time = 20 + grand (30); break; case ENEMY_POD1: enemy[e].target_time = 30 + grand (40); break; case ENEMY_BEAMER: enemy[e].target_time = 50 + grand (10); enemy[e].angle = ANGLE_4; break; case ENEMY_SHOOTER: enemy[e].target_time = 40 + grand (20); enemy[e].angle = ANGLE_4; enemy[e].status = 9 + arena.difficulty * 3; // alse in enemy.c break; case ENEMY_RISER: enemy[e].target_time = 20 + grand (25); enemy[e].angle = ANGLE_4 + ANGLE_2; break; case ENEMY_WINGS: enemy[e].target_time = 50 + grand (10); enemy[e].petal_angle[0] = ANGLE_4 + ANGLE_16; enemy[e].petal_angle[1] = ANGLE_4 - ANGLE_16; enemy[e].petal_angle[2] = ANGLE_4 + ANGLE_32; enemy[e].petal_angle[3] = ANGLE_4 - ANGLE_32; enemy[e].petal_angle[4] = ANGLE_4 + ANGLE_64; enemy[e].petal_angle[5] = ANGLE_4 - ANGLE_64; break; case ENEMY_WINGS2: enemy[e].target_time = 50 + grand (10); enemy[e].petal_angle[0] = ANGLE_4 + ANGLE_16; enemy[e].petal_angle[1] = ANGLE_4 - ANGLE_16; enemy[e].petal_angle[2] = ANGLE_4 + ANGLE_32; enemy[e].petal_angle[3] = ANGLE_4 - ANGLE_32; enemy[e].petal_angle[4] = ANGLE_4 + ANGLE_64; enemy[e].petal_angle[5] = ANGLE_4 - ANGLE_64; enemy[e].petal_angle[6] = ANGLE_4; break; case ENEMY_MEGA: enemy[e].target_time = 50 + grand (10); enemy[e].petal_angle[0] = 0; enemy[e].petal_angle[1] = ANGLE_4; enemy[e].petal_angle[2] = ANGLE_2; enemy[e].petal_angle[3] = -ANGLE_4; enemy[e].petal_angle[4] = ANGLE_6; enemy[e].petal_angle[5] = ANGLE_6 + ANGLE_3; enemy[e].petal_angle[6] = ANGLE_6 + ANGLE_3 + ANGLE_3; se = pos_or_neg (7); for (i = 0; i < 4; i++) { enemy[e].petal_angle_speed[i] = se; } se *= -1.5; for (i = 4; i < 7; i++) { enemy[e].petal_angle_speed[i] = se; } break; case ENEMY_CARRIER1: enemy[e].y = -70000; enemy[e].x = RAND_X / 2 + X_MAX / 4; enemy[e].target_time = 80 + grand (60); enemy[e].angle1_turning = 0; enemy[e].angle1 = -ANGLE_4; se = create_part (e, 0, ENEMY_CARRIER1_PART, enemy[e].x - 55000, enemy[e].y - 1000); if (se != -1) { enemy[se].persist = 1; enemy[se].target = 0; enemy[se].target_time = 9000; enemy[se].phase = 0; enemy[se].phase2 = 0; enemy[se].angle1 = ANGLE_4; enemy[se].angle = ANGLE_4; enemy[se].y_speed = 0; //enemy[e].y_speed; } se = create_part (e, 1, ENEMY_CARRIER1_PART, enemy[e].x + 55000, enemy[e].y - 1000); if (se != -1) { enemy[se].persist = 1; enemy[se].target = 0; enemy[se].target_time = 9000; enemy[se].phase = 0; enemy[se].phase2 = 0; enemy[se].angle1 = ANGLE_4; enemy[se].angle = ANGLE_4; enemy[se].y_speed = 0; //enemy[e].y_speed; } break; } } void set_walker (int e, int t) { enemy[e].persist = 1; enemy[e].target = 0; enemy[e].phase = 0; enemy[e].phase2 = 0; enemy[e].x_speed = 0; enemy[e].y_speed = eclass[enemy[e].type].speed1; enemy[e].angle1 = ANGLE_4; enemy[e].angle = ANGLE_4; enemy[e].recycle = 20; } void set_cruiser (int e, int t) { // enemy [e].target_time = track[t].target_time; enemy[e].persist = 1; enemy[e].target = 0; // enemy [e].target_time = 60 + grand(60); // may be overridden below // enemy [e].max_target_time = track[t].target_time; // enemy [e].target = 0; enemy[e].phase = 0; enemy[e].phase2 = 0; enemy[e].x_speed = 0; enemy[e].y_speed = eclass[enemy[e].type].speed1; enemy[e].angle1 = ANGLE_4; enemy[e].angle = ANGLE_4; switch (enemy[e].type) { case ENEMY_CRUISER1: case ENEMY_CRUISER2: case ENEMY_CRUISER3: enemy[e].recycle = 120; enemy[e].status = 90; break; case ENEMY_CRUISER4: enemy[e].recycle = 120; enemy[e].status = 0; break; case ENEMY_DROPPER: enemy[e].x = RAND_X; enemy[e].y = -20000 - grand (10000); enemy[e].angle2 = pos_or_neg (4 + grand (4)); break; case ENEMY_SPINNER: enemy[e].angle2 = pos_or_neg (2 + grand (2)); break; } if (arena.level == 2) { if (arena.cruiser_escorts == 2) { give_escort (e, ENEMY_ESCORT, -40000, 30000, enemy[e].x, enemy[e].y); give_escort (e, ENEMY_ESCORT, 40000, 30000, enemy[e].x, enemy[e].y); } if (arena.cruiser_escorts == 3) { give_escort (e, ENEMY_ESCORT, -50000, 40000, enemy[e].x, enemy[e].y); give_escort (e, ENEMY_ESCORT, 50000, 40000, enemy[e].x, enemy[e].y); give_escort (e, ENEMY_ESCORT, 0, -60000, enemy[e].x, enemy[e].y); } if (arena.cruiser_escorts == 1) { give_escort (e, ENEMY_ESCORT, 0, 0, enemy[e].x, enemy[e].y); } } } int create_part (int pe, int index, int type, int x, int y) { int e = create_enemy (type); if (e == -1) return -1; enemy[e].parent = pe; enemy[e].part_index = index; enemy[pe].part[index] = e; enemy[e].x = x; enemy[e].y = y; enemy[e].x_speed = 0; enemy[e].y_speed = 0; return e; } void set_diver (int e, int t) { enemy[e].persist = 1; enemy[e].target = 0; enemy[e].target_time = 65; // + grand(10); // enemy [e].max_target_time = track[t].target_time; // enemy [e].target = 0; enemy[e].phase = 0; enemy[e].phase2 = 0; enemy[e].x_speed = 0; if (enemy[e].x < 180000 + grand (280000)) enemy[e].x_speed = 900 + grand (200); else enemy[e].x_speed = -900 - grand (200); enemy[e].y_speed = 6000; enemy[e].angle1 = ANGLE_4; enemy[e].angle = ANGLE_4; } void set_glider (int e, int t) { // int i; enemy[e].target = 0; enemy[e].x_target[0] = track[t].x_target[0]; enemy[e].y_target[0] = track[t].y_target[0]; enemy[e].angle1 = radians_to_angle (atan2 (enemy[e].y_target[0] - enemy[e].y, enemy[e].x_target[0] - enemy[e].x)); int speed = 5000; //eclass[enemy [e].type].speed1; /* if (enemy[e].type >= ENEMY_FLOWER1 && enemy[e].type <= ENEMY_FLOWER5) speed += grand(1000);*/ enemy[e].x_speed = xpart (enemy[e].angle1, speed); enemy[e].y_speed = ypart (enemy[e].angle1, speed); } void set_attacker (int e, int t) { // int i; enemy[e].angle1 = ANGLE_4; enemy[e].x_speed = 0; enemy[e].y_speed = 3000; enemy[e].target_time = grand (30) + 10; // track[t].target_time = grand(30) + 30; } void set_pauser (int e, int t) { enemy[e].angle1 = ANGLE_4; enemy[e].x_speed = 0; enemy[e].y_speed = 3000; enemy[e].target_time = 30; //grand(30) + 10; } void set_beamer (int e, int t) { enemy[e].angle1 = ANGLE_4; enemy[e].x_speed = 0; enemy[e].y_speed = 2000; enemy[e].target_time = grand (30) + 50; enemy[e].target = 0; } void place_marchers (int t) { /* int i, e; int x = X_MIN + grand(40000); int y = -30000; for (i = 0; i < track[t].multiple; i ++) // for (i = 0; i < 2; i ++) { // e = create_enemy(track[t].type, 0, x + i * 40000, y, ANGLE_4, 0, 2200 + grand(500), ATT3, ATT4, ATT5, ATT6, ATT7); }*/ } /* void make_mb1_track(void) { boss.side1 = grand(2); if (boss.side1 == 0) boss.side2 = 1; else boss.side2 = 0; int e1 = create_enemy(boss.side1, ENEMY_MB1, 0, 160000, -80000, ANGLE_4, 0, 0, ATT3, ATT4, ATT5, ATT6, ATT7); // I guess I should check these values, but I don't think it's actually possible for these functions to fail here. boss.e1 = e1; boss.hp = 60000 + arena.difficulty * 6000; boss.max_hp = boss.hp; boss.moving = 0; boss.angle_1 = 0; boss.angle_2 = 0; boss.angle_3 = 0; boss.bflower_recycle = 100; boss.trecycle = 250; boss.bpattern = 0; boss.bpattern2 = 450; boss.btime = 200; boss.brecycle = 150; boss.fight = 1; enemy[boss.side1][e1].y_speed = 2000; enemy[boss.side1][e1].x_speed = 0; } */ garden-1.0.9/src/garden.rc0000644000175000017500000000004112457263274012266 000000000000001 ICON "../resources/garden.ico" garden-1.0.9/src/system.h0000644000175000017500000000051212457263274012200 00000000000000#ifndef SYSTEM_H #define SYSTEM_H #include #ifdef HAVE_CONFIG_H #include "configure.h" #endif /* HAVE_CONFIG_H */ #ifdef WINDOWS_VERSION #define MKDIR(X) mkdir(X) #else #include #define MKDIR(X) mkdir(X, S_IRWXU | S_IXGRP | S_IRGRP | S_IXOTH | S_IROTH ) #endif // WINDOWS_VERSION #endif /* SYSTEM_H */ garden-1.0.9/src/display_init.h0000644000175000017500000000142112457263274013344 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void prepare_display (void); garden-1.0.9/src/game.h0000644000175000017500000000147112457263274011572 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void game_loop (void); void new_game (void); void player_hit (void); garden-1.0.9/src/ebullet.h0000644000175000017500000000151012457263274012307 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void init_ebullets (void); int create_ebullet (int type); void run_ebullets (void); garden-1.0.9/src/config.h0000644000175000017500000002301412457263274012123 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #define ALLEGRO_STATICLINK /* Transforms foo to "foo" */ #define TO_STRING(str) # str /* A step between DIRECTORY and TO_STRING */ #define DIRECTORY_LOWLEVEL(root,file) TO_STRING(root/file) /* transforms path,file to "path/file" */ #define DIRECTORY(x,y) DIRECTORY_LOWLEVEL(x,y) /* The data directory will be here... */ #define DATADIR_SIZE 512 extern char data_directory[DATADIR_SIZE]; #define NO_KEYS CKEY_END #define X_MIN 5000 #define Y_MIN 5000 #define X_MAX 635000 #define Y_MAX 475000 #define GRAIN 1000 #define ANGLEFULL_HEX 0x400 #define ANGLE_1 1024 #define ANGLE_2 512 #define ANGLE_3 341 // 3 is not exact #define ANGLE_4 256 #define ANGLE_5 205 // not exact #define ANGLE_6 171 // 6 is not exact #define ANGLE_7 146 // 7 not exact #define ANGLE_8 128 #define ANGLE_9 114 // 9 not exact #define ANGLE_10 102 #define ANGLE_12 85 #define ANGLE_16 64 #define ANGLE_8_3 384 #define ANGLE_16_3 192 #define ANGLE_32 32 #define ANGLE_64 16 #define ANGLE_128 8 #define ANGLE_TO_FIXED 4 #ifndef PI #define PI 3.141592 #endif #define NO_ENEMIES 50 #define NO_EBULLETS 500 #define NO_PBULLETS 60 #define NO_CLOUDS 500 #define SMALL_ROTATIONS 128 #define MAX_TARGETS 40 #define NO_STARS 40 #define RAND_X (grand(X_MAX - (X_MIN * 4)) + X_MIN * 2) #define RAND_Y (grand(Y_MAX - (Y_MIN * 4)) + Y_MIN * 2) #define RAND_X_IN (grand(X_MAX - (X_MIN * 32)) + X_MIN * 16) #define RAND_Y_IN (grand(Y_MAX - (Y_MIN * 32)) + Y_MIN * 16) #define X_MIDDLE 320000 #define Y_MIDDLE 240000 #define RLE_CIRCLES 30 #define NO_PARTS 6 #define NO_PETALS 8 #define NO_BONES 40 // there are only 20 in front, though enum { CKEY_LEFT, CKEY_RIGHT, CKEY_UP, CKEY_DOWN, CKEY_FIRE1, CKEY_FIRE2, CKEY_FIRE3, CKEY_SLOW, CKEY_END }; enum { WPN_MGUN, WPN_SCATTER, WPN_LWBEAM, WPN_CANNON, WPN_RECT, WPN_SWBEAM, WPN_SEEKER, WPN_EIGHT, WPN_BLADE, WPN_TYPES }; enum { PBULLET_NONE, PBULLET_CANNON, PBULLET_MGUN, PBULLET_SEEKER, PBULLET_SCATTER, PBULLET_BLADE, PBULLET_RING, PBULLET_RECT }; enum { WSTYLE_ORBITAL, WSTYLE_TRAIL, WSTYLE_FRONT, WSTYLE_BLADE }; enum { BLADE_LEFT, BLADE_RIGHT, BLADE_CW_SLASH, BLADE_ACW_SLASH, BLADE_CW_SWING, BLADE_ACW_SWING, BLADE_RETURN_LEFT, BLADE_RETURN_RIGHT }; enum { SLOW_WEAPON, FAST_WEAPON }; struct playerstruct { int key[CKEY_END]; int x; int y; int lives; int score; int respawning; int in_play; int grace; int recycle_speed[3]; int recycle[3]; int wstrength[3]; int rpixels[3]; int wtype[3]; int weapon[3]; int wx[3]; int wy[3]; int wstyle[3]; int wstatus[3]; int wlevel[3]; int wxp[3]; int wpixels[3]; int wpixels2[3]; int wgained[3]; int wfired; int wframe; int wframe_speed; int wframe_max; int orbitals; int orbital_angle; int firing; int beam[3]; int beam_counter[3]; int beam_fade[3]; // int beam_index; int beam_open[3]; char beam_flicker[3]; int swbeam[3]; int swbeam_counter[3]; int swbeam_x1[3], swbeam_y1[3], swbeam_x2[3], swbeam_y2[3]; int swbeam_level[3]; int wings1; int wings2; int swing_x[10]; int swing_y[10]; int swing_x2[10]; int swing_y2[10]; int swing_strength[10]; int swing_pos; // int swing_pos2; int swing_angle; int swing_sprite_angle; // int swing_speed_x; //int swing_speed_y; int swing_state; int swing_length; int swing_hold; int blade_index; int ring_angle; int ring_hold; int ring_index; int move_x; int move_y; }; struct eclassstruct { int max_hp; int xsize; int ysize; int xoffset; int yoffset; int ai; int speed1; int speed2; int speed3; char priority; int score; int xp; // int speed; }; enum { CLOUD_NONE, CLOUD_MGSHOCK, CLOUD_CIRCLE1, CLOUD_CIRCLE2, CLOUD_CIRCLE3, CLOUD_CIRCLE5, CLOUD_CIRCLE10, CLOUD_MSHOCK, CLOUD_LSHOCK, CLOUD_HSHOCK, CLOUD_SLINE, CLOUD_SPAWNER, CLOUD_CARRIER1_BANG, CLOUD_PRING, CLOUD_RSHOCK1, CLOUD_RSHOCK2, CLOUD_RSHOCK3, CLOUD_RSHOCK4, CLOUD_RSHOCK5, CLOUD_TSHOCK, // tiny - mgshock without parts CLOUD_PETAL1, CLOUD_PETAL1_DEBRIS, CLOUD_PETAL2_DEBRIS, CLOUD_PETAL3_DEBRIS, CLOUD_BURN, CLOUD_UBURN, CLOUD_ESLINE, CLOUD_DELAY1, CLOUD_DELAY2, CLOUD_DELAY3, CLOUD_DELAY4, CLOUD_SCIRCLE }; struct cloudstruct { int type; int x; int y; int x2; int y2; int x_speed; int y_speed; int timeout; int colour; int drag; int angle; }; struct enemystruct { int type; int x; int y; int x_speed; int y_speed; int recycle; int persist; int hp; int pulse1; int pulse2; int x_target[MAX_TARGETS]; int y_target[MAX_TARGETS]; int target_time; int max_target_time; int target; int phase; int phase2; int angle; int angle1; int angle2; int angle_turning; int angle_turning_count; int angle1_turning; int angle1_turning_count; int distance; int whurt[3]; int part[NO_PARTS]; int part_index; int parent; int status; int petal_angle[NO_PETALS]; int petal_angle_speed[NO_PETALS]; int escorting; }; enum { ENEMY_NONE, // L1 ENEMY_SWOOPER1, ENEMY_DARTER1, ENEMY_STOPPER1, ENEMY_DIVER1, ENEMY_CARRIER1, ENEMY_CARRIER1_PART, ENEMY_POD1, ENEMY_SWOOPER2, ENEMY_DARTER2, ENEMY_BOSS1, ENEMY_BOSS1_PART, // L2 ENEMY_DRIFTER1, ENEMY_BEAMER, ENEMY_RISER, ENEMY_CRUISER1, ENEMY_CRUISER2, ENEMY_CRUISER3, ENEMY_CRUISER4, ENEMY_CRUISER5, ENEMY_DRIFTER2, ENEMY_ESCORT, ENEMY_SHOOTER, ENEMY_BOSS2, // L3 ENEMY_SMALL, ENEMY_LARGER, ENEMY_SMALL2, ENEMY_LARGER2, ENEMY_WINGS, ENEMY_WINGS2, ENEMY_MEGA, ENEMY_BOSS3, // L4 ENEMY_HOOK, ENEMY_WALKER, ENEMY_DROPPER, ENEMY_RING, ENEMY_HUNTER, ENEMY_SPINNER, ENEMY_HOOK2, ENEMY_BOSS4, NO_ENEMY_TYPES }; enum { AI_SWOOPER, AI_DSWOOPER, AI_DARTER, AI_STOPPER, AI_DIVER, AI_DART_STOPPER, AI_DRIFTER, AI_CRUISER, AI_BOSS, AI_HOOK, AI_WALK, AI_FALL, AI_DANCER, AI_GLIDER, AI_MARCH, AI_ATTACKER, AI_BEAMER, AI_PAUSER, AI_BOSS1 }; struct ebulletstruct { int type; int x; int y; int x_speed; int y_speed; int angle; int angle2; int timeout; int time; int accel; int sprite_angle; int colour; int cord_angle; int cord_x; int cord_y; int cord_x_speed; int cord_y_speed; int cord_wait; int cord_colour; int status; char new_ebullet; }; enum { EBULLET_NONE, EBULLET_SHOT, EBULLET_SHOT2, EBULLET_DDART, EBULLET_WING_DIAMOND, EBULLET_SEED, EBULLET_SEED2, EBULLET_BURST, EBULLET_STREAM, EBULLET_SDART, EBULLET_DOT, EBULLET_BEAM, EBULLET_LSEED, EBULLET_LSEED2, EBULLET_CURVE, EBULLET_BEAM2, EBULLET_SPIN, EBULLET_TRACKER, EBULLET_HEAVY }; struct pbulletstruct { int x; int y; int type; int x_speed; int y_speed; int angle; int timeout; int time; int persist; int xsize; int ysize; int dam; int source; int target; int status; int level; }; enum { MULTI_NONE, MULTI_BASIC }; struct arenastruct { int level; int difficulty; int level_finished; int game_over; int new_level_sign; // int player_lives; // int players; int change_palette; int shift_palette; int target_palette; int shift_message; int phase; int underlay_position; unsigned char counter; int block1_x[20]; int block1_y[20]; int block1_y_speed[20]; int block1_size[20]; int block2_x[20]; int block2_y[20]; int block2_y_speed[20]; int block2_size[20]; int flower_turn1; int flower_turn2; int beam; int old_beam; int part_x1[18][16]; // just needs to be [18] [14] but I added padding after a stupid mistake. int part_y1[18][16]; int part_x2[18][16]; int part_y2[18][16]; int part_cx[18][16]; int part_cy[18][16]; int part_flow; int part_rank; int wave_y; int part_pulse1; int part_pulse2; int cruiser_escorts; char just_got_highscore; int stage_score; int max_stage_score; int phase_bonus; int next_phase[8]; int bone_type[2][NO_BONES]; int bone_subtype[2][NO_BONES]; int bone_x[2][NO_BONES]; int bone_y[2][NO_BONES]; }; struct bossstruct { int fight; int index; int hp; int max_hp; int hp_bar_size; int phase; int phase_count; int recycle; int status; int t_angle[4]; int t_angle_turning[4]; int t_status; int t_status_change; int t_recycle[4]; int t_beam[4]; int out_sides; int out_sides2; int out_up; int out_out_up; int petal_angle[3]; int petal_out[3]; int petal_speed[3]; int phase2; int next_small; int spin_size; int spin_rad; int spin_angle; int spin_angle2; int spin_size2; int spin_rad2; int spin_rad3; int spin_size3; int spin_counter; int sides_recycle; int outer_fire_type; int outer_fire_count; }; struct optionstruct { int sound_init; // if 0, sound isn't initialised at all. Changed in config file only or during install_sound int sound_mode; // mono, stereo, reversed, off int run_vsync; // on or off int sound_volume; // sound fx volume; if 0 sound effects not played // int ambience_volume; // if 0 ambience not played int joystick; int highscore[3]; int joy_button[4]; int joy_sensitivity; int init_joystick; int joy_analogue; int key_or_joy; int joy_stick; int tourist; // this is a cheat code entered via the initfile. See menu.c and game.c. }; garden-1.0.9/src/eclass.c0000644000175000017500000002303212457263274012123 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" struct eclassstruct eclass[NO_ENEMY_TYPES] = { { 0, // int max_hp 0, // int xsize 0, // int ysize 0, // int xoffset 0, // int yoffset 0, // ai 0, // speed1 0, // speed2 0, // speed3 0, // priority 0}, // NONE { 50, // int max_hp 15000, // int xsize 15000, // int ysize 0, 0, AI_SWOOPER, 4000, // speed1 10, // speed2 0, // speed3 2, // priority 0, // score 10 // xp }, // SWOOPER1 { 300, // int max_hp 25000, // int xsize 25000, // int ysize 0, 4000, AI_DARTER, 6000, // speed1 10, // speed2 0, // speed3 1, // priority 0, 20 // xp }, // DARTER1 { 3800, // int max_hp 45000, // int xsize 75000, // int ysize 0, -30000, AI_STOPPER, 2000, // speed1 150, // speed2 60, // speed3 0, // priority 0, 80 // xp }, // STOPPER1 { 200, // int max_hp 25000, // int xsize 21000, // int ysize 0, -7000, AI_DIVER, 6000, // speed1 10, // speed2 0, // speed3 1, // priority 0, 20 // xp }, // DIVER1 { 7000, // int max_hp 68000, // int xsize 80000, // int ysize 0, -5000, AI_STOPPER, 1700, // speed1 520, // speed2 40, // speed3 0, // priority 0, 100 // xp }, // CARRIER1 { 800, // int max_hp 16000, // int xsize 16000, // int ysize 0, 3000, AI_DARTER, 8000, // speed1 10, // speed2 0, // speed3 0, // priority 0, 30 // xp }, // CARRIER1_PART { 4000, // int max_hp 57000, // int xsize 52000, // int ysize 0, -13000, AI_STOPPER, 3500, // speed1 580, // speed2 100, // speed3 0, // priority 0, 50 // xp }, // POD1 { 50, // int max_hp 20000, // int xsize 20000, // int ysize 0, 0, AI_SWOOPER, 6000, // speed1 14, // speed2 0, // speed3 2, // priority 0, // score 15 // xp }, // SWOOPER2 { 400, // int max_hp 30000, // int xsize 28000, // int ysize 0, 0, AI_DARTER, 8000, // speed1 15, // speed2 0, // speed3 1, // priority 0, 30 // xp }, // DARTER2 { 5000, // int max_hp 110000, // int xsize 75000, // int ysize 0, 0, AI_BOSS, 0, // speed1 0, // speed2 0, // speed3 0, // priority 0, 300 // xp }, // BOSS1 { 2500, // int max_hp 20000, // int xsize 20000, // int ysize 0, 0, AI_BOSS, 0, // speed1 0, // speed2 0, // speed3 0, // priority 0, 0 // xp }, // BOSS1_PART { 50, // int max_hp 22000, // int xsize 16000, // int ysize 0, 0, AI_DRIFTER, 170, // speed1 - move 960, // speed2 - drag 600, // speed3 - before retreats 2, // priority 0, 10 // xp }, // L2 - DRIFTER1 { 1500, // int max_hp 38000, // int xsize 25000, // int ysize 0, -4000, AI_STOPPER, -6000, // speed1 410, // speed2 20, // speed3 1, // priority 0, 50 // xp }, // L2 - BEAMER { 80, // int max_hp 21000, // int xsize 20000, // int ysize 0, 5000, AI_STOPPER, -3000, // speed1 260, // speed2 20, // speed3 2, // priority 0, 20 // xp }, // L2 - RISER { 4800, // int max_hp 50000, // int xsize 62500, // int ysize 0, 0, AI_CRUISER, 1200, // speed1 0, // speed2 0, // speed3 0, // priority 0, 80 // xp }, // L2 - CRUISER1 { 4000, // int max_hp 50000, // int xsize 32500, // int ysize 0, 0, AI_CRUISER, 1200, // speed1 0, // speed2 0, // speed3 0, // priority 0, 50 // xp }, // L2 - CRUISER2 { 6000, // int max_hp 50000, // int xsize 62500, // int ysize 0, 0, AI_CRUISER, 1200, // speed1 0, // speed2 0, // speed3 0, // priority 0, 100 // xp }, // L2 - CRUISER3 { 4500, // int max_hp 45000, // int xsize 42500, // int ysize 0, -5000, AI_CRUISER, 1200, // speed1 0, // speed2 0, // speed3 0, // priority 0, 80 // xp }, // L2 - CRUISER4 { 3500, // int max_hp 50000, // int xsize 62500, // int ysize 0, 0, AI_CRUISER, 1200, // speed1 0, // speed2 0, // speed3 0, // priority 0, 150 // xp }, // L2 - CRUISER5 - not implemented { 250, // int max_hp 25000, // int xsize 25000, // int ysize 0, 8000, AI_DRIFTER, 130, // speed1 - move 970, // speed2 - drag 700, // speed3 - before retreats 1, // priority 0, 20 // xp }, // L2 - DRIFTER2 { 50, // int max_hp 23000, // int xsize 16000, // int ysize 0, 0, AI_DRIFTER, 290, // speed1 - move 930, // speed2 - drag 700, // speed3 - before retreats 2, // priority 0, 10 // xp }, // L2 - ESCORT { 1500, // int max_hp 38000, // int xsize 25000, // int ysize 0, -4000, AI_STOPPER, -6000, // speed1 210, // speed2 20, // speed3 1, // priority 0, 50 // xp }, // L2 - SHOOTER { 5000, // int max_hp 105000, // int xsize 55000, // int ysize 0, 5000, AI_BOSS, 0, // speed1 0, // speed2 0, // speed3 0, // priority 0, 400 // xp }, // BOSS2 { 50, // int max_hp 15000, // int xsize 15000, // int ysize 0, 0, AI_SWOOPER, 4500, // speed1 10, // speed2 0, // speed3 2, // priority 0, // score 10 // xp }, // L3 - SMALL { 500, // int max_hp 19000, // int xsize 19000, // int ysize 0, -4000, AI_DART_STOPPER, 400, // speed1 15, // speed2 150, // speed3 1, // priority 0, 25 // xp }, // L3 - LARGER { 50, // int max_hp 15000, // int xsize 15000, // int ysize 0, 0, AI_SWOOPER, 5500, // speed1 14, // speed2 0, // speed3 2, // priority 0, // score 15 // xp }, // L3 - SMALL2 { 700, // int max_hp 19000, // int xsize 19000, // int ysize 0, -4000, AI_DART_STOPPER, 500, // speed1 18, // speed2 250, // speed3 1, // priority 0, 35 // xp }, // L3 - LARGER2 { 2900, // int max_hp 22000, // int xsize 21000, // int ysize 0, -4000, AI_STOPPER, -6000, // speed1 160, // speed2 40, // speed3 0, // priority 0, 70 // xp }, // L3 - WINGS { 3300, // int max_hp 22000, // int xsize 21000, // int ysize 0, -4000, AI_STOPPER, -7000, // speed1 160, // speed2 40, // speed3 0, // priority 0, 80 // xp }, // L3 - WINGS2 { 9000, // int max_hp 40000, // int xsize 38000, // int ysize 0, -6000, AI_STOPPER, 4000, // speed1 540, // speed2 40, // speed3 0, // priority 0, 120 // xp }, // L3 - MEGA { 5000, // int max_hp 40000, // int xsize 38000, // int ysize 0, 0, AI_BOSS, 0, // speed1 0, // speed2 0, // speed3 0, // priority 0, 500 // xp }, // BOSS3 { 80, // int max_hp 16000, // int xsize 17000, // int ysize 0, 0, AI_HOOK, 4500, // speed1 15, // speed2 0, // speed3 2, // priority 0, // score 10 // xp }, // HOOK { 5800, // int max_hp 76000, // int xsize 61000, // int ysize 0, -5000, AI_WALK, 1500, // speed1 0, // speed2 0, // speed3 0, // priority 0, 90 // xp }, // WALKER { 250, // int max_hp 14000, // int xsize 21000, // int ysize 0, 0, AI_CRUISER, 1500, // speed1 0, // speed2 0, // speed3 1, // priority 0, 20 // xp }, // DROPPER { 450, // int max_hp 24000, // int xsize 24000, // int ysize 0, 0, AI_DRIFTER, 130, // speed1 - move 930, // speed2 - drag 600, // speed3 - before retreats 1, // priority 0, 30 // xp }, // RING { 1800, // int max_hp 28000, // int xsize 25000, // int ysize 0, 0, AI_STOPPER, 4000, // speed1 150, // speed2 60, // speed3 1, // priority 0, 50 // xp }, // HUNTER { 7250, // int max_hp 52000, // int xsize 84000, // int ysize 0, 0, AI_CRUISER, 1500, // speed1 0, // speed2 0, // speed3 0, // priority 0, 100 // xp }, // SPINNER { 120, // int max_hp 17000, // int xsize 17000, // int ysize 0, 0, AI_HOOK, 4200, // speed1 18, // speed2 0, // speed3 2, // priority 0, // score 15 // xp }, // HOOK2 { 5000, // int max_hp 114000, // int xsize 100000, // int ysize 0, 0, AI_BOSS, 0, // speed1 0, // speed2 0, // speed3 0, // priority 0, 600 // xp }, // BOSS4 }; garden-1.0.9/src/menu.c0000644000175000017500000012136412457272166011624 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "system.h" #include "config.h" #include "allegro.h" #include "globvars.h" #include "palette.h" #include "game.h" #include "input.h" #include "display.h" #include "stuff.h" #define TRANS_MODE drawing_mode(DRAW_MODE_TRANS, NULL, 0, 0); #define END_TRANS_MODE drawing_mode(DRAW_MODE_SOLID, NULL, 0, 0); extern RGB palet[2][256]; RGB splash_palette[256]; BITMAP *splash_bitmap; RLE_SPRITE *icon_RLEs[30]; // externed in display_init extern struct RLE_STRUCT eRLE_flower[5][50]; extern struct RLE_STRUCT RLE_multi[WPN_TYPES][8]; RLE_SPRITE *player_icon_RLE; void key_box (const char ktext[], int command); int acceptable_char (int scode); void define_keys (void); int ship_select (void); void print_wpn_name (int x, int y, int w); void print_wpn_text (int x, int y, int w); void print_standard_names (int x, int y, int w); void congratulations (void); void congrat_wait (int waiting); char skippable_column (int colm); extern volatile unsigned char ticked; extern BITMAP *display; int menu_select; int key_wait; int counter2; int flower_dir; enum { MENU_START, MENU_DIFFICULTY, MENU_AUDIO, MENU_JOY_OR_KEYS, MENU_KEYS, MENU_CALIBRATE, MENU_EXIT }; int standard_config[6][3] = { {WPN_SCATTER, WPN_CANNON, WPN_SEEKER}, {WPN_MGUN, WPN_RECT, WPN_BLADE}, {WPN_LWBEAM, WPN_CANNON, WPN_SEEKER}, {WPN_SCATTER, WPN_SWBEAM, WPN_EIGHT}, {WPN_LWBEAM, WPN_SWBEAM, WPN_BLADE}, {WPN_EIGHT, WPN_SEEKER, WPN_BLADE} }; void reset_menu_palette (void); void run_menu_background (void); int custom_config[3]; #define NO_CFLOWERS 7 int cflower_x[NO_CFLOWERS]; int cflower_y[NO_CFLOWERS]; int cflower_y_offset[NO_CFLOWERS]; int cflower_centre_col[NO_CFLOWERS]; int cflower_centre_size[NO_CFLOWERS]; int cflower_col[NO_CFLOWERS][2]; int cflower_out1[NO_CFLOWERS][2]; int cflower_out2[NO_CFLOWERS][2]; int cflower_angle[NO_CFLOWERS][2]; int cflower_petals[NO_CFLOWERS][2]; int cflower_rot[NO_CFLOWERS][2]; int cflower_rot_inc[NO_CFLOWERS][2]; int made_cflower; void run_cflowers (void); void new_cflower (int f); void cflower_poly4 (BITMAP * target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col); void init_cflowers (void); void reset_menu_palette (void) { clear_bitmap (screen); vsync (); clear_bitmap (display); arena.target_palette = 0; set_base_palette (); set_base_palette (); int newpal = build_new_palette (arena.change_palette, 0, 0, 0); vsync (); // clear_bitmap(screen); set_palette (palet[newpal]); } void startup_menu (void) { reset_menu_palette (); // get custom config from initfile custom_config[0] = WPN_SCATTER; custom_config[1] = WPN_CANNON; custom_config[2] = WPN_SEEKER; menu_select = 0; key_wait = 30; int counter; counter = 0; counter2 = 0; flower_dir = pos_or_neg (1); arena.difficulty = 0; int y1 = 170; int y2 = 190 + menu_select * 30; int y3 = 218 + menu_select * 30; int y4 = 218 + menu_select * 30; int anykey = 0; int i; while (TRUE) { clear_bitmap (display); run_menu_background (); counter += 4; if (counter >= 40) counter = 0; counter2++; if (counter2 >= 256) counter2 = 0; textprintf_centre_ex (display, font, 320, 90, -1, -1, "G A R D E N O F C O L O U R E D L I G H T S"); textprintf_ex (display, font, 10, 460, -1, -1, "VERSION %s", PACKAGE_VERSION); if (options.tourist > 0) {/* One plays in (cheat) tourist mode */ textprintf_centre_ex (display, font, 320, 130, -1, -1, "TOURIST MODE: STAGE %i", options.tourist); } // textprintf_centre_ex(display, font, 320, 80, -1, -1, "C O L O U R E D L I G H T S"); // textprintf_centre_ex(display, font, 320, 110, -1, -1, "remember 5 seconds!"); int my = 240; const int line_break = 30; const int bo_up = 10; const int bo_down = 15; int line_num = 0; int entry_y; y1 = my - 23; y2 = my - 10 + menu_select * 30; y3 = my + 19 + menu_select * 30; y4 = my + 150; // rectfill(display, 370, y1, 600, y2, COL_COL1); rectfill (display, 370, y2 + 5, 640, y3 - 2, COL_BACK4); rect (display, 368, y2 + 3, 641, y3 - 0, COL_BACK3); // rectfill(display, 370, y3, 600, y4, TRANS_DGREEN); textprintf_ex (display, font, 400, my, -1, -1, "START GAME"); line_num ++; entry_y = my + line_num * line_break; switch (arena.difficulty) { case 0: textprintf_ex (display, font, 400, entry_y, -1, -1, "DIFFICULTY - NORMAL"); break; case 1: textprintf_ex (display, font, 400, entry_y, -1, -1, "DIFFICULTY - HARD"); break; case 2: textprintf_ex (display, font, 400, entry_y, -1, -1, "DIFFICULTY - PUNISHMENT"); break; } line_num++; entry_y = my + line_num * line_break; if (options.sound_init != 0) { textprintf_ex (display, font, 400, entry_y, -1, -1, "SFX VOLUME - %d%%", (int)((options.sound_volume + 1.28) / 2.55)); } else { textprintf_ex (display, font, 400, entry_y, -1, -1, "NO SOUND"); drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); rectfill (display, 399, entry_y - bo_up, 530, entry_y + bo_down, CONVERT_WHITE_TO_GREY); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } line_num++; entry_y = my + line_num * line_break; if (options.joystick) { if (options.key_or_joy == 1) textprintf_ex (display, font, 400, entry_y, -1, -1, "CONTROLS - JOYSTICK"); else textprintf_ex (display, font, 400, entry_y, -1, -1, "CONTROLS - KEYBOARD"); } else { textprintf_ex (display, font, 400, entry_y, -1, -1, "NO JOYSTICK"); drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); rectfill (display, 399, entry_y - bo_up, 530, entry_y + bo_down, CONVERT_WHITE_TO_GREY); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } line_num++; // textprintf_ex(display [2], font, 400, 260, -1, -1, "STAGE - %i", arena.starting_level); entry_y = my + line_num * line_break; textprintf_ex (display, font, 400, entry_y, -1, -1, "SET KEYS"); line_num++; entry_y = my + line_num * line_break; if (options.joystick) textprintf_ex (display, font, 400, entry_y, -1, -1, "CALIBRATE JOYSTICK"); else { textprintf_ex (display, font, 400, entry_y, -1, -1, "NO JOYSTICK"); drawing_mode (DRAW_MODE_TRANS, NULL, 0, 0); rectfill (display, 399, entry_y - bo_up, 530, entry_y + bo_down, CONVERT_WHITE_TO_GREY); drawing_mode (DRAW_MODE_SOLID, NULL, 0, 0); } line_num++; entry_y = my + line_num * line_break; textprintf_ex (display, font, 400, entry_y, -1, -1, "EXIT"); my = 270; y2 = my + 7 + arena.just_got_highscore * 30; y3 = my + 29 + arena.just_got_highscore * 30; if (arena.just_got_highscore > 0) { rectfill (display, 0, y2 - 5, 250, y3, COL_COL3); rect (display, -1, y2 - 5 - 2, 250 + 2, y3 + 2, COL_COL4); } textprintf_right_ex (display, font, 137, my, -1, -1, "HIGH"); textprintf_ex (display, font, 157, my, -1, -1, "SCORES"); textprintf_right_ex (display, font, 137, my + 40, -1, -1, "NORMAL"); textprintf_ex (display, font, 157, my + 40, -1, -1, "%i", options.highscore[0]); textprintf_right_ex (display, font, 137, my + 70, -1, -1, "HARD"); textprintf_ex (display, font, 157, my + 70, -1, -1, "%i", options.highscore[1]); textprintf_right_ex (display, font, 137, my + 100, -1, -1, "PUNISHMENT"); textprintf_ex (display, font, 157, my + 100, -1, -1, "%i", options.highscore[2]); if ( ( keypressed() ) && key_wait == 0) { int pressed_key = readkey() >> 8; clear_keybuf(); if (pressed_key == KEY_UP || pressed_key == KEY_8_PAD) { menu_pressed_up: menu_select--; if (menu_select < 0) menu_select = MENU_EXIT; if (menu_select == MENU_CALIBRATE && options.joystick == 0) goto menu_pressed_up; if (menu_select == MENU_JOY_OR_KEYS && options.joystick == 0) goto menu_pressed_up; if (menu_select == MENU_AUDIO && options.sound_init == 0) goto menu_pressed_up; key_wait = 7; } if (pressed_key == KEY_DOWN || pressed_key == KEY_2_PAD) { menu_pressed_down: menu_select++; if (menu_select > MENU_EXIT) menu_select = 0; if (menu_select == MENU_CALIBRATE && options.joystick == 0) goto menu_pressed_down; if (menu_select == MENU_JOY_OR_KEYS && options.joystick == 0) goto menu_pressed_down; if (menu_select == MENU_AUDIO && options.sound_init == 0) goto menu_pressed_down; key_wait = 7; } if (pressed_key == KEY_LEFT || pressed_key == KEY_4_PAD) { if (menu_select == MENU_JOY_OR_KEYS) { if (options.key_or_joy == 0) options.key_or_joy = 1; else options.key_or_joy = 0; } if (menu_select == MENU_DIFFICULTY) { arena.difficulty--; if (arena.difficulty < 0) arena.difficulty = 0; } if (menu_select == MENU_AUDIO) { int new_volume = (int)((options.sound_volume + 13) / 26); new_volume = (new_volume - 1 + 11) % 11; options.sound_volume = (int)(new_volume * 25.5); } key_wait = 11; } if (pressed_key == KEY_RIGHT || pressed_key == KEY_6_PAD) { if (menu_select == MENU_JOY_OR_KEYS) { if (options.key_or_joy == 0) options.key_or_joy = 1; else options.key_or_joy = 0; } if (menu_select == MENU_DIFFICULTY) { arena.difficulty++; if (arena.difficulty > 2) arena.difficulty = 2; } if (menu_select == MENU_AUDIO) { int new_volume = (int)((options.sound_volume + 13) / 26); new_volume = (new_volume + 1) % 11; options.sound_volume = (int)(new_volume * 25.5); } key_wait = 11; } if (pressed_key == KEY_ESC) exit(0); if (pressed_key == KEY_ENTER || pressed_key == KEY_SPACE || pressed_key == KEY_Z) { if (menu_select == MENU_EXIT) exit(0); if (menu_select == MENU_KEYS) { key_wait = 10; define_keys (); key_wait = 10; } if (menu_select == MENU_CALIBRATE) { jstick_calibrate (); key_wait = 20; ticked = 0; } if (menu_select == MENU_START) { ticked = 0; key_wait = 30; if (ship_select () == 1) { clear_bitmap (display); new_game (); game_loop (); if (arena.level == 5) congratulations (); reset_menu_palette (); key_wait = 10; // was 1 flower_dir *= -1; ticked = 0; } else key_wait = 20; } else key_wait = 20; } }//endif (keypressed() && key_wait == 0) else { int keys_before = 1; if (keypressed()) { clear_keybuf(); /* we are not interested in keys in the queue */ rest(20); } else { keys_before = 0; /* there were no keys pressed before */ rest(10); } jstick_to_keypressed(); key_wait -= 2; if ( ( !keypressed() && !keys_before ) || key_wait <= 0) {/* we can process next keypress since the previous keypress has ended */ key_wait = 0; } } textprintf_right_ex (display, font, 625, 460, -1, -1, "COPYRIGHT 2007 LINLEY HENZELL"); do { rest(5); } while (ticked == 0); ticked = 0; vsync (); blit (display, screen, 0, 0, 0, 0, 640, 480); /* if (key_wait == 0) { if (key[KEY_UP] || key[KEY_8_PAD]) { menu_select--; if (menu_select < 0) menu_select = MENU_EXIT; if (menu_select == MENU_CALIBRATE && options.joystick == 0) menu_select = MENU_KEYS; if (menu_select == MENU_JOY_OR_KEYS && options.joystick == 0) menu_select = MENU_JOY_OR_KEYS - 1; key_wait = 7; } if (key[KEY_DOWN] || key[KEY_2_PAD]) { menu_select++; if (menu_select > MENU_EXIT) menu_select = 0; if (menu_select == MENU_CALIBRATE && options.joystick == 0) menu_select = MENU_EXIT; if (menu_select == MENU_JOY_OR_KEYS && options.joystick == 0) menu_select = MENU_KEYS; key_wait = 7; } if (key[KEY_LEFT] || key[KEY_4_PAD]) { if (menu_select == MENU_JOY_OR_KEYS) { if (options.key_or_joy == 0) options.key_or_joy = 1; else options.key_or_joy = 0; } if (menu_select == MENU_DIFFICULTY) { arena.difficulty--; if (arena.difficulty < 0) arena.difficulty = 0; } key_wait = 7; } if (key[KEY_RIGHT] || key[KEY_6_PAD]) { if (menu_select == MENU_JOY_OR_KEYS) { if (options.key_or_joy == 0) options.key_or_joy = 1; else options.key_or_joy = 0; } if (menu_select == MENU_DIFFICULTY) { arena.difficulty++; if (arena.difficulty > 2) arena.difficulty = 2; } key_wait = 7; } if (key[KEY_ENTER] || key[KEY_SPACE] || key[KEY_Z]) { if (menu_select == MENU_EXIT) exit (0); if (menu_select == MENU_KEYS) { key_wait = 10; define_keys (); key_wait = 10; } if (menu_select == MENU_CALIBRATE) { jstick_calibrate (); key_wait = 20; ticked = 0; } if (menu_select == MENU_START) { ticked = 0; key_wait = 30; if (ship_select () == 1) { clear_bitmap (display); new_game (); game_loop (); if (arena.level == 5) congratulations (); reset_menu_palette (); key_wait = 10; // was 1 flower_dir *= -1; ticked = 0; } else key_wait = 20; } else key_wait = 20; } } else key_wait--; // rectfill(display, 360, 430, 635, 461, TRANS_SH1_IN); textprintf_right_ex (display, font, 625, 460, -1, -1, "COPYRIGHT 2007 LINLEY HENZELL"); do { thing++; } while (ticked == 0); ticked = 0; vsync (); blit (display, screen, 0, 0, 0, 0, 640, 480); */ }; } void define_keys (void) { key_box ("PRESS KEY FOR UP", CKEY_UP); key_box ("PRESS KEY FOR LEFT", CKEY_LEFT); key_box ("PRESS KEY FOR RIGHT", CKEY_RIGHT); key_box ("PRESS KEY FOR DOWN", CKEY_DOWN); key_box ("PRESS KEY FOR FIRE 1", CKEY_FIRE1); key_box ("PRESS KEY FOR FIRE 2", CKEY_FIRE2); key_box ("PRESS KEY FOR FIRE 3", CKEY_FIRE3); key_box ("PRESS KEY FOR SLOW", CKEY_SLOW); set_config_int ("Misc", "key_up", player.key[CKEY_UP]); set_config_int ("Misc", "key_left", player.key[CKEY_LEFT]); set_config_int ("Misc", "key_right", player.key[CKEY_RIGHT]); set_config_int ("Misc", "key_down", player.key[CKEY_DOWN]); set_config_int ("Misc", "key_fire1", player.key[CKEY_FIRE1]); set_config_int ("Misc", "key_fire2", player.key[CKEY_FIRE2]); set_config_int ("Misc", "key_fire3", player.key[CKEY_FIRE3]); set_config_int ("Misc", "key_slow", player.key[CKEY_SLOW]); } void key_box (const char ktext[], int command) { rectfill (display, 210, 200, 430, 250, COL_OUTLINE); rect (display, 211, 201, 429, 249, COL_COL1); textprintf_centre_ex (display, font, 320, 222, -1, -1, "%s", ktext); vsync (); blit (display, screen, 0, 0, 0, 0, 640, 480); int inputted = KEY_ESC; int i; int anykey = 0; do { rest(200); clear_keybuf(); while (keypressed() != TRUE) rest(20); inputted = readkey() >> 8; /* the conversion to the right key format */ }/* if inputted is acceptable, then we want out of this loop */ while (acceptable_char(inputted) != 1); player.key[command] = inputted; } int ship_select (void) { int row = 0; int column[4] = { 0, WPN_SCATTER, WPN_CANNON, WPN_SEEKER }; int i, j, k; int out_count = 0; int x1, y1, anykey, out; char column_changed = 0; while (TRUE) { clear_to_color (display, COL_OUTLINE); counter += 4; if (counter >= 40) counter = 0; out_count += 32; out_count &= 1023; y1 = 170; x1 = 55; int col1; int col2; // TRANS_MODE for (i = 1; i < 4; i++) { col1 = COL_BACK2; col2 = COL_BACK3; if (skippable_column (column[i])) { col1 = COL_BACK2; col2 = COL_BACK3; rectfill (display, 5 + x1 + column[i] * 60, y1 + 110, 34 + x1 + column[i] * 60, 460, col1); rect (display, 5 + x1 + column[i] * 60 - 2, y1 + 110 - 2, 34 + x1 + column[i] * 60 + 2, 460 + 2, col2); } else { rectfill (display, -3 + x1 + column[i] * 60, y1 + (i + 1) * 60 - 4, 42 + x1 + column[i] * 60, y1 + (i + 1) * 60 + 39 + 4, col1); rect (display, -3 + x1 + column[i] * 60 - 2, y1 + (i + 1) * 60 - 2 - 4, 42 + x1 + column[i] * 60 + 2, y1 + (i + 1) * 60 + 41 + 4, col2); } } // END_TRANS_MODE for (j = 0; j < 4; j++) { if (row == j) { TRANS_MODE rectfill (display, 0, y1 + j * 60 + 10, 640, y1 + 30 + j * 60, TRANS_ORANGE_IN); hline (display, 0, y1 + j * 60 + 9, 640, TRANS_ORANGE_OUT); hline (display, 0, y1 + 31 + j * 60, 640, TRANS_ORANGE_OUT); END_TRANS_MODE } for (i = 0; i < 9; i++) { // if (j == 0) if (j == 0) { if (i > 0 && i < 7) { draw_rle_sprite (display, player_icon_RLE, 20 + x1 + i * 60 - 11, 20 + y1 + j * 60 - 15); for (k = 0; k < 3; k++) { draw_rle_sprite (display, RLE_multi[standard_config[i - 1][k]][0].sprite, 20 + x1 + i * 60 - RLE_multi[standard_config[i - 1][k]][0].x, 20 + y1 + j * 60 - RLE_multi[standard_config[i - 1][k]][0].y + 30 + k * 15); } } if (i == 7) { draw_rle_sprite (display, player_icon_RLE, 20 + x1 + i * 60 - 11, 20 + y1 + j * 60 - 15); for (k = 0; k < 3; k++) { draw_rle_sprite (display, RLE_multi[custom_config[k]][0].sprite, 20 + x1 + i * 60 - RLE_multi[custom_config[k]][0].x, 20 + y1 + j * 60 - RLE_multi[custom_config[k]][0].y + 30 + k * 15); } } if (i == 8) { textprintf_centre_ex (display, font, 20 + x1 + i * 60, 13 + y1 + j * 60, -1, -1, "EXIT"); } if (i == 0) { textprintf_centre_ex (display, font, 20 + x1 + i * 60, 13 + y1 + j * 60, -1, -1, "HELP"); } continue; } if (column[j] == i) { // rectfill(display, x1 + i * 60, y1 + j * 60, x1 + 40 + i * 60, y1 + 40 + j * 60, COL_COL3); draw_rle_sprite (display, RLE_multi[i][0].sprite, 20 + x1 + i * 60 - RLE_multi[i][0].x, 20 + y1 + j * 60 - RLE_multi[i][0].y); // draw_rle_sprite(display, icon_RLEs [i], x1 + i * 60, y1 + j * 60); } else { //rectfill(display, x1 + i * 60, y1 + j * 60, x1 + 40 + i * 60, y1 + 40 + j * 60, COL_COL4); draw_rle_sprite (display, RLE_multi[i][0].sprite, 20 + x1 + i * 60 - RLE_multi[i][0].x, 20 + y1 + j * 60 - RLE_multi[i][0].y); // draw_rle_sprite(display, RLE_multi [i] [0].sprite, 20 + x1 + i * 60 - RLE_multi [0] [k].x, 20 + y1 + j * 60 - RLE_multi [i] [0].y); // draw_rle_sprite(display, icon_RLEs [i], x1 + i * 60, y1 + j * 60); } // rectfill(display, x1 + i * 60, y1 + j * 60, x1 + 40 + i * 60, y1 + 40 + j * 60, COL_COL4); } if (j == 0) y1 += 60; } TRANS_MODE y1 = 170; for (j = 0; j < 4; j++) { if (j == 0) { if (column[0] > 0 && column[0] < 8) { rect (display, x1 + (column[j] * 60), y1 + j * 60, x1 + (column[j] * 60) + 39, y1 + j * 60 + 92, TRANS_YELLOW_OUT); rect (display, x1 + (column[j] * 60) + 1, y1 + j * 60 + 1, x1 + (column[j] * 60) + 38, y1 + j * 60 + 91, TRANS_YELLOW_IN); rect (display, x1 + (column[j] * 60) + 2, y1 + j * 60 + 2, x1 + (column[j] * 60) + 37, y1 + j * 60 + 90, TRANS_YELLOW_OUT); } else { rect (display, x1 + (column[j] * 60) - 4, y1 + j * 60, x1 + (column[j] * 60) + 43, y1 + j * 60 + 39, TRANS_YELLOW_OUT); rect (display, x1 + (column[j] * 60) - 3, y1 + j * 60 + 1, x1 + (column[j] * 60) + 42, y1 + j * 60 + 38, TRANS_YELLOW_IN); rect (display, x1 + (column[j] * 60) - 2, y1 + j * 60 + 2, x1 + (column[j] * 60) + 41, y1 + j * 60 + 37, TRANS_YELLOW_OUT); } } else { rect (display, x1 + (column[j] * 60), y1 + j * 60, x1 + (column[j] * 60) + 39, y1 + j * 60 + 39, TRANS_YELLOW_OUT); rect (display, x1 + (column[j] * 60) + 1, y1 + j * 60 + 1, x1 + (column[j] * 60) + 38, y1 + j * 60 + 38, TRANS_YELLOW_IN); rect (display, x1 + (column[j] * 60) + 2, y1 + j * 60 + 2, x1 + (column[j] * 60) + 37, y1 + j * 60 + 37, TRANS_YELLOW_OUT); } if (row == j) { out = xpart (out_count, 6); if (row == 0) { out += 10; if (column[0] > 0 && column[0] < 8) { rect (display, x1 + (column[j] * 60) - out, y1 + j * 60 - out, x1 + (column[j] * 60) + 39 + out, y1 + j * 60 + 92 + out, TRANS_ORANGE_OUT); rect (display, x1 + (column[j] * 60) + 1 - out, y1 + j * 60 + 1 - out, x1 + (column[j] * 60) + 38 + out, y1 + j * 60 + 91 + out, TRANS_ORANGE_IN); rect (display, x1 + (column[j] * 60) + 2 - out, y1 + j * 60 + 2 - out, x1 + (column[j] * 60) + 37 + out, y1 + j * 60 + 90 + out, TRANS_ORANGE_OUT); } else { rect (display, x1 + (column[j] * 60) - out, y1 + j * 60 - out, x1 + (column[j] * 60) + 39 + out, y1 + j * 60 + 39 + out, TRANS_ORANGE_OUT); rect (display, x1 + (column[j] * 60) + 1 - out, y1 + j * 60 + 1 - out, x1 + (column[j] * 60) + 38 + out, y1 + j * 60 + 38 + out, TRANS_ORANGE_IN); rect (display, x1 + (column[j] * 60) + 2 - out, y1 + j * 60 + 2 - out, x1 + (column[j] * 60) + 37 + out, y1 + j * 60 + 37 + out, TRANS_ORANGE_OUT); } } else { rect (display, x1 + (column[j] * 60) - out, y1 + j * 60 - out, x1 + (column[j] * 60) + 39 + out, y1 + j * 60 + 39 + out, TRANS_ORANGE_OUT); rect (display, x1 + (column[j] * 60) + 1 - out, y1 + j * 60 + 1 - out, x1 + (column[j] * 60) + 38 + out, y1 + j * 60 + 38 + out, TRANS_ORANGE_IN); rect (display, x1 + (column[j] * 60) + 2 - out, y1 + j * 60 + 2 - out, x1 + (column[j] * 60) + 37 + out, y1 + j * 60 + 37 + out, TRANS_ORANGE_OUT); } } if (j > 0 || (column[0] > 0 && column[0] < 8)) { if (j == 0) { vline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 92, y1 + j * 60 + 101, TRANS_YELLOW_IN); vline (display, x1 + (column[j] * 60) + 18, y1 + j * 60 + 91, y1 + j * 60 + 102, TRANS_YELLOW_OUT); vline (display, x1 + (column[j] * 60) + 20, y1 + j * 60 + 90, y1 + j * 60 + 102, TRANS_YELLOW_OUT); vline (display, x1 + (column[j + 1] * 60) + 19, y1 + j * 60 + 102, y1 + j * 60 + 121, TRANS_YELLOW_IN); vline (display, x1 + (column[j + 1] * 60) + 18, y1 + j * 60 + 100, y1 + j * 60 + 120, TRANS_YELLOW_OUT); vline (display, x1 + (column[j + 1] * 60) + 20, y1 + j * 60 + 100, y1 + j * 60 + 119, TRANS_YELLOW_OUT); hline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 101, x1 + (column[j + 1] * 60) + 19, TRANS_YELLOW_IN); hline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 102, x1 + (column[j + 1] * 60) + 19, TRANS_YELLOW_OUT); hline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 100, x1 + (column[j + 1] * 60) + 19, TRANS_YELLOW_OUT); } else { if (j < 3) { vline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 38, y1 + j * 60 + 48, TRANS_YELLOW_IN); vline (display, x1 + (column[j] * 60) + 18, y1 + j * 60 + 38, y1 + j * 60 + 49, TRANS_YELLOW_OUT); vline (display, x1 + (column[j] * 60) + 20, y1 + j * 60 + 38, y1 + j * 60 + 49, TRANS_YELLOW_OUT); vline (display, x1 + (column[j + 1] * 60) + 19, y1 + j * 60 + 48, y1 + j * 60 + 61, TRANS_YELLOW_IN); vline (display, x1 + (column[j + 1] * 60) + 18, y1 + j * 60 + 47, y1 + j * 60 + 61, TRANS_YELLOW_OUT); vline (display, x1 + (column[j + 1] * 60) + 20, y1 + j * 60 + 47, y1 + j * 60 + 61, TRANS_YELLOW_OUT); hline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 48, x1 + (column[j + 1] * 60) + 19, TRANS_YELLOW_IN); hline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 47, x1 + (column[j + 1] * 60) + 19, TRANS_YELLOW_OUT); hline (display, x1 + (column[j] * 60) + 19, y1 + j * 60 + 49, x1 + (column[j + 1] * 60) + 19, TRANS_YELLOW_OUT); } } } if (j == 0) y1 += 60; } END_TRANS_MODE if (row > 0) { if (column[row] < 3 || column[row] > 6) textprintf_right_ex (display, font, 280, 40, -1, -1, "FAST WEAPON:"); else textprintf_right_ex (display, font, 280, 40, -1, -1, "SLOW WEAPON:"); print_wpn_name (290, 40, column[row]); print_wpn_text (290, 80, column[row]); if (column[row] == 0 || column[row] > 6) textprintf_ex (display, font, 290, 130, -1, -1, "ONE ONLY"); } if (row == 0 && column[0] == 0) { textprintf_centre_ex (display, font, 320, 20, -1, -1, "SELECT YOUR ARMAMENT"); textprintf_centre_ex (display, font, 320, 60, -1, -1, "SELECT A STANDARD CONFIGURATION ALONG THE TOP ROW"); textprintf_centre_ex (display, font, 320, 80, -1, -1, "OR CUSTOMISE BY CHOOSING SPECIFIC WEAPONS"); textprintf_centre_ex (display, font, 320, 100, -1, -1, "ON THE OTHER ROWS"); textprintf_centre_ex (display, font, 320, 130, -1, -1, "PRESS FIRE 1 TO BEGIN"); } if (row == 0 && column[0] == 8) { textprintf_centre_ex (display, font, 320, 40, -1, -1, "PRESS FIRE 1 TO EXIT"); } if (row == 0 && column[0] > 0 && column[0] < 8) { if (column[0] == 7) textprintf_centre_ex (display, font, 320, 40, -1, -1, "SPECIAL CONFIGURATION"); else { if (column[0] == 6) textprintf_centre_ex (display, font, 320, 40, -1, -1, "CHALLENGE CONFIGURATION"); else textprintf_centre_ex (display, font, 320, 40, -1, -1, "STANDARD CONFIGURATION"); } print_standard_names (320, 80, column[row] - 1); } /* poll_joystick(); if (joy[0].stick[options.joy_stick].axis[0].d1) { simulate_keypress(KEY_LEFT << 8); } if (joy[0].stick[options.joy_stick].axis[0].d2) { simulate_keypress(KEY_RIGHT << 8); } if (joy[0].stick[options.joy_stick].axis[1].d1) { simulate_keypress(KEY_UP << 8); } if (joy[0].stick[options.joy_stick].axis[1].d2) { simulate_keypress(KEY_DOWN << 8); } if (joy[0].button[options.joy_button[0]].b) { simulate_keypress(KEY_ENTER << 8); }*/ if ( ( keypressed() ) && key_wait == 0) { int pressed_key = readkey() >> 8; clear_keybuf(); if (pressed_key == KEY_UP || pressed_key == KEY_8_PAD) { row--; if (row < 0) row = 3; key_wait = 7; } if (pressed_key == KEY_DOWN || pressed_key == KEY_2_PAD) { row++; if (row > 3) row = 0; key_wait = 7; } if (pressed_key == KEY_LEFT || pressed_key == KEY_4_PAD) { do { column[row]--; if (column[row] < 0) column[row] = 8; column_changed = 1; } while (row > 0 && skippable_column (column[row]) && ((column[row] == column[1]) + (column[row] == column[2]) + (column[row] == column[3]) > 1)); key_wait = 7; } if (pressed_key == KEY_RIGHT || pressed_key == KEY_6_PAD) { do { column[row]++; if (column[row] > 8) column[row] = 0; column_changed = 1; } while (row > 0 && skippable_column (column[row]) && ((column[row] == column[1]) + (column[row] == column[2]) + (column[row] == column[3]) > 1)); key_wait = 7; } if (column_changed == 1) { column_changed = 0; if (row > 0 && column[0] <= 7) { column[0] = 7; custom_config[0] = column[1]; custom_config[1] = column[2]; custom_config[2] = column[3]; } if (row == 0) { if (column[0] > 0 && column[0] < 7) { column[1] = standard_config[column[0] - 1][0]; column[2] = standard_config[column[0] - 1][1]; column[3] = standard_config[column[0] - 1][2]; } if (column[0] == 7) { column[1] = custom_config[0]; column[2] = custom_config[1]; column[3] = custom_config[2]; } } } if (pressed_key == KEY_ESC) return 0; if (pressed_key == KEY_ENTER || pressed_key == KEY_SPACE || pressed_key == KEY_Z) { if (row == 0 && column[0] == 8) return 0; break; } }//endif (keypressed() && key_wait == 0) else { int keys_before = 1; if (keypressed()) clear_keybuf(); /* we are not interested in keys in the queue */ else keys_before = 0; /* there were no keys pressed before */ rest(20); jstick_to_keypressed(); key_wait -= 2; if ( ( !keypressed() && !keys_before ) || key_wait <= 0) {/* we can process next keypress since the previous keypress has ended */ key_wait = 0; } } /* do { rest(5); } while (ticked == 0); */ ticked = 0; vsync (); blit (display, screen, 0, 0, 0, 0, 640, 480); }; player.orbitals = 3; player.orbital_angle = 0; for (i = 0; i < 3; i++) { player.weapon[i] = column[i + 1]; player.wx[i] = -1000; player.wy[i] = -1000; player.wstatus[i] = 0; player.wstyle[i] = WSTYLE_ORBITAL; player.wtype[i] = FAST_WEAPON; switch (player.weapon[i]) { case WPN_MGUN: player.wstyle[i] = WSTYLE_FRONT; player.orbitals--; break; case WPN_BLADE: player.wstyle[i] = WSTYLE_BLADE; player.blade_index = i; player.orbitals--; break; case WPN_EIGHT: player.ring_index = i; break; case WPN_LWBEAM: // player.beam_index = i; break; case WPN_CANNON: player.wtype[i] = SLOW_WEAPON; break; case WPN_RECT: player.wtype[i] = SLOW_WEAPON; break; case WPN_SWBEAM: player.wtype[i] = SLOW_WEAPON; break; case WPN_SEEKER: player.wtype[i] = SLOW_WEAPON; break; } } return 1; } char skippable_column (int colm) { switch (colm) { case WPN_MGUN: return 1; case WPN_BLADE: return 1; case WPN_EIGHT: return 1; } return 0; } int acceptable_char (int scode) { switch (scode) { case KEY_ESC: key_wait = 7; return 0; case KEY_ENTER: case KEY_ENTER_PAD: key_wait = 7; return 0; } return 1; } void print_wpn_name (int x, int y, int w) { switch (w) { case WPN_CANNON: textprintf_ex (display, font, x, y, -1, -1, "VAPOUR ORB"); break; case WPN_MGUN: textprintf_ex (display, font, x, y, -1, -1, "SOLAR BITE"); break; case WPN_SCATTER: textprintf_ex (display, font, x, y, -1, -1, "SUNSHOWER"); break; case WPN_SEEKER: textprintf_ex (display, font, x, y, -1, -1, "WORMS OF TORMENT"); break; case WPN_EIGHT: textprintf_ex (display, font, x, y, -1, -1, "EIGHT MOUTHS OF HELL"); break; case WPN_LWBEAM: textprintf_ex (display, font, x, y, -1, -1, "ENDURING FILAMENT"); break; case WPN_SWBEAM: textprintf_ex (display, font, x, y, -1, -1, "SUDDEN FILAMENT"); break; case WPN_RECT: textprintf_ex (display, font, x, y, -1, -1, "EYE OF RECTIFICATION"); break; case WPN_BLADE: textprintf_ex (display, font, x, y, -1, -1, "TOOTH OF XOM"); break; } } void print_wpn_text (int x, int y, int w) { switch (w) { case WPN_CANNON: textprintf_ex (display, font, x, y, -1, -1, "VERY EFFECTIVE AGAINST"); textprintf_ex (display, font, x, y + 15, -1, -1, "SINGLE LARGE TARGETS"); break; case WPN_MGUN: textprintf_ex (display, font, x, y, -1, -1, "PRECISE STRIKE AGAINST"); textprintf_ex (display, font, x, y + 15, -1, -1, "SMALL TARGETS"); break; case WPN_SCATTER: textprintf_ex (display, font, x, y, -1, -1, "SCATTERED FIRE AGAINST"); textprintf_ex (display, font, x, y + 15, -1, -1, "SMALL TARGETS"); break; case WPN_SEEKER: textprintf_ex (display, font, x, y, -1, -1, "LOCKS ON TO"); textprintf_ex (display, font, x, y + 15, -1, -1, "MULTIPLE TARGETS"); textprintf_ex (display, font, x, y + 30, -1, -1, "BEHIND YOU"); break; case WPN_RECT: textprintf_ex (display, font, x, y, -1, -1, "POWERFUL AREA STRIKE"); textprintf_ex (display, font, x, y + 15, -1, -1, "AGAINST MULTIPLE TARGETS"); break; case WPN_LWBEAM: textprintf_ex (display, font, x, y, -1, -1, "PIERCES MULTIPLE TARGETS"); break; case WPN_SWBEAM: textprintf_ex (display, font, x, y, -1, -1, "PIERCES MULTIPLE TARGETS"); textprintf_ex (display, font, x, y + 15, -1, -1, "FOR GREAT DAMAGE"); break; case WPN_EIGHT: textprintf_ex (display, font, x, y, -1, -1, "MOVE AND FIRE IN"); textprintf_ex (display, font, x, y + 15, -1, -1, "ALL EIGHT DIRECTIONS"); break; case WPN_BLADE: textprintf_ex (display, font, x, y, -1, -1, "TAP TO SLASH"); textprintf_ex (display, font, x, y + 15, -1, -1, "HOLD TO SWING"); break; } } void print_standard_names (int x, int y, int w) { switch (w) { case 0: textprintf_centre_ex (display, font, x, y, -1, -1, "FIGHTER TYPE"); break; case 1: textprintf_centre_ex (display, font, x, y, -1, -1, "RIOT TYPE"); break; case 2: textprintf_centre_ex (display, font, x, y, -1, -1, "FILAMENT TYPE 1"); break; case 3: textprintf_centre_ex (display, font, x, y, -1, -1, "FILAMENT TYPE 2"); break; case 4: textprintf_centre_ex (display, font, x, y, -1, -1, "PURE TYPE"); break; case 5: textprintf_centre_ex (display, font, x, y, -1, -1, "ARENA TYPE"); break; case 6: textprintf_centre_ex (display, font, x, y, -1, -1, "CUSTOM TYPE"); break; } } void run_menu_background (void) { static int flower_counter = 0; // if (counter2 & 1) flower_counter += flower_dir; if (flower_counter >= 40) flower_counter = 0; if (flower_counter < 0) flower_counter = 39; int x = 275; int y = 150; draw_rle_sprite (display, eRLE_flower[0][flower_counter].sprite, x - eRLE_flower[0][flower_counter].x + 42 + 3, y - eRLE_flower[0][flower_counter].y + 47); // vline(display, 320, 0, 480, COL_WHITE); } void congratulations (void) { clear_bitmap (screen); vsync (); clear_bitmap (display); arena.target_palette = BASECOL_CFLOWER; set_base_palette (); int newpal = build_new_palette (arena.change_palette, 0, 0, 0); vsync (); set_palette (palet[newpal]); int y; int y_int = 35; int c_count = 0; init_cflowers (); do { run_cflowers (); y = 90; textprintf_centre_ex (display, font, 320, y, -1, -1, "C O N G R A T U L A T I O N S ! !"); y += y_int * 2; if (c_count >= 100) textprintf_centre_ex (display, font, 320, y, -1, -1, "YOU HAVE CLEANSED THE INNER GARDEN,"); y += y_int; if (c_count >= 200) textprintf_centre_ex (display, font, 320, y, -1, -1, "RAIDED THE FLEET,"); y += y_int; if (c_count >= 300) textprintf_centre_ex (display, font, 320, y, -1, -1, "TRAVERSED THE OUTER REGIONS,"); y += y_int; if (c_count >= 400) textprintf_centre_ex (display, font, 320, y, -1, -1, "AND ELIMINATED THE SOURCE OF THE PARASITES."); y += y_int * 2; if (c_count >= 550) { switch (arena.difficulty) { case 0: textprintf_centre_ex (display, font, 320, y, -1, -1, "BUT CAN YOU DEFEAT A MORE CHALLENGING LEVEL?"); break; case 1: textprintf_centre_ex (display, font, 320, y, -1, -1, "YOUR ACHIEVEMENT IS IMPRESSIVE!"); break; case 2: textprintf_centre_ex (display, font, 320, y, -1, -1, "YOUR WORK HERE IS COMPLETE."); break; } } if (c_count >= 700) { y += y_int * 2; textprintf_centre_ex (display, font, 320, y, -1, -1, "PRESS SPACE TO CONTINUE"); TRANS_MODE rectfill (display, 100, y, 500, y + 15, CONVERT_WHITE_TO_GREY); END_TRANS_MODE if (key[KEY_SPACE]) break; } blit (display, screen, 0, 0, 0, 0, 640, 480); do { rest (5); } while (ticked == 0); ticked--; c_count++; if (c_count > 30000) c_count = 30000; } while (TRUE); clear_bitmap (screen); rest (200); clear_bitmap (screen); vsync (); clear_bitmap (display); arena.target_palette = BASECOL_L1_SPRING; set_base_palette (); newpal = build_new_palette (arena.change_palette, 0, 0, 0); vsync (); set_palette (palet[newpal]); } void init_cflowers (void) { int i; for (i = 0; i < NO_CFLOWERS; i++) { new_cflower (i); cflower_y[i] = -100 - (i * 100); } made_cflower = 20 * 100 * -1; } void run_cflowers (void) { clear_to_color (display, COL_OUTLINE); int i, j; int k = 0; int angle, y; for (i = 0; i < NO_CFLOWERS; i++) { if (cflower_y[i] > 550 && made_cflower >= 100) { new_cflower (i); made_cflower = 0; } cflower_y[i] += 2; made_cflower += 2; cflower_rot[i][k] += cflower_rot_inc[i][k]; cflower_rot[i][k] &= 1023; angle = cflower_rot[i][k]; if (i == NO_CFLOWERS - 1) continue; y = cflower_y[i] + cflower_y_offset[i]; for (j = 0; j < cflower_petals[i][k]; j++) { cflower_poly4 (display, cflower_x[i], y, cflower_x[i] + xpart (angle + cflower_angle[i][k], cflower_out1[i][k]), y + ypart (angle + cflower_angle[i][k], cflower_out1[i][k]), cflower_x[i] + xpart (angle, cflower_out2[i][k]), y + ypart (angle, cflower_out2[i][k]), cflower_x[i] + xpart (angle - cflower_angle[i][k], cflower_out1[i][k]), y + ypart (angle - cflower_angle[i][k], cflower_out1[i][k]), cflower_col[i][k]); circlefill (display, cflower_x[i], y, cflower_centre_size[i], cflower_centre_col[i]); circle (display, cflower_x[i], y, cflower_centre_size[i], COL_OUTLINE); angle += ANGLE_1 / cflower_petals[i][k]; } } } void new_cflower (int f) { cflower_x[f] = 320 - grand (150) - grand (150) + grand (150) + grand (150); cflower_y[f] = -100; cflower_y_offset[f] = grand (10); cflower_centre_col[f] = COL_COL1 + grand (8); if (grand (3) == 0) cflower_centre_col[f] = COL_WHITE; cflower_centre_size[f] = 6 + grand (5); cflower_col[f][0] = COL_COL1 + grand (9); cflower_out1[f][0] = 25 + grand (10); // inner corners of petal cflower_out2[f][0] = 36 + grand (10); // end of petal cflower_angle[f][0] = ANGLE_32 + grand (ANGLE_32); // angle of inner corners cflower_petals[f][0] = 3 + grand (2) + grand (2) + grand (2) + grand (2); cflower_rot_inc[f][0] = pos_or_neg (3 + grand (8)); cflower_rot[f][0] = grand (ANGLE_1); } void cflower_poly4 (BITMAP * target, int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int col) { int points[8]; points[0] = x1; points[1] = y1; points[2] = x2; points[3] = y2; points[4] = x3; points[5] = y3; points[6] = x4; points[7] = y4; polygon (target, 4, points, col); } /* void loading_screen(void) { splash_bitmap = load_bitmap("gfx//splash.bmp", splash_palette); if (splash_bitmap == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Failed to load in bitmap! (File not found?) %s", "splash.bmp"); exit(1); } BITMAP *wait_bitmap = load_bitmap("gfx//wait.bmp", splash_palette); if (wait_bitmap == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Failed to load in bitmap! (File not found?) %s", "wait.bmp"); exit(1); } set_palette(splash_palette); vsync(); blit(splash_bitmap, screen, 0, 0, 0, 0, 640, 480); // blit(wait_bitmap, screen, 0, 0, 0, 0, 440, 300); draw_sprite(screen, wait_bitmap, 440, 300); destroy_bitmap(wait_bitmap); }*/ /* void loading_screen_wait(void) { BITMAP *press_bitmap = load_bitmap("gfx//press.bmp", splash_palette); if (press_bitmap == NULL) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Failed to load in bitmap! (File not found?) %s", "press.bmp"); exit(1); } vsync(); blit(splash_bitmap, screen, 0, 0, 0, 0, 640, 480); draw_sprite(screen, press_bitmap, 390, 320); do { if (key [KEY_ESC]) exit(0); } while (key [KEY_SPACE] == 0); destroy_bitmap(splash_bitmap); destroy_bitmap(press_bitmap); vsync(); clear_bitmap(screen); init_palette(); } */ garden-1.0.9/src/sound.c0000644000175000017500000016624012457263274012012 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include "allegro.h" #include #define FROM_SOUND_C #include "sound.h" #undef FROM_SOUND_C #include "globvars.h" #include "math.h" #include "stuff.h" enum { DIRECT_WAV, DIRECT_BEAT }; // # is octave #define L_0 64 #define L_1 32 #define L_2 16 #define L_3 11 #define L_4 8 #define L_6 6 #define L_8 4 #define L_16 2 #define XL_0 48 #define XL_1 24 #define XL_2 12 #define XL_3 8 #define XL_4 6 #define XL_6 4 #define XL_8 3 #define XL_16 2 #define PAN_L 64 #define PAN_C 127 #define PAN_R 192 #define BASE_TONE 200 int tone[NO_TONES]; enum { SOUNDMODE_STEREO, SOUNDMODE_MONO, SOUNDMODE_REVERSED }; enum { BEAT_NONE, BEAT_SILENT, BEAT_BASIC, BEAT_LINE1, BEAT_LINE2, BEAT_DRUM1, BEAT_DRUM2, BEAT_DRUM3, BEAT_DRUM4, BEAT_CYMBAL1, BEAT_SLINE, BEAT_NICE, BEAT_LONG, BEAT_LONG2, BEAT_SWEET, BEAT_XLINE, BEAT_XLINE2, BEAT_XLINE3, BEAT_FLUTE2_S, BEAT_FLUTE2_L, BEAT_FLUTE, BEAT_FLUTE_L, BEAT_GLURR, BEAT_DLINE2, BEAT_SYNTH, BEAT_STAGE4, BEAT_MULTI, NO_BEATS, BEAT_END }; // when on the next tick we're going to play a note with an attached event, set this to something // for the relevant event so that if the event is ready it can be done int synch_ready[NO_EVENTS]; // when we've done something, set this to the note that we want to play. int synch_done[NO_DONE]; // both externed in sound.h enum // keep these in proper order! { SUBMUSIC_EMPTY, SUBMUSIC_L1_BASIC, SUBMUSIC_L1_BEAT, SUBMUSIC_L1_FIRE, SUBMUSIC_L1_BASIC2, SUBMUSIC_L1_BASIC3, SUBMUSIC_L1_FIRE2, SUBMUSIC_L2_BEAT, SUBMUSIC_L2_BEAT_INCOMPLETE, SUBMUSIC_L2_BASIC, SUBMUSIC_L2_BASIC2, SUBMUSIC_L2_BASIC3, SUBMUSIC_L2_BASIC4, SUBMUSIC_L2_SONG, SUBMUSIC_L2_SONG2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_SWEET2, SUBMUSIC_L3_BEAT, SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_XLINE, SUBMUSIC_L3_XLINE2, SUBMUSIC_L3_XLINE3, SUBMUSIC_L4_BASE1, SUBMUSIC_L4_BASE2, SUBMUSIC_L4_BASE3, SUBMUSIC_L4_UPDOWN1, SUBMUSIC_L4_UPDOWN2, SUBMUSIC_L4_UPDOWN3, SUBMUSIC_L4_CLIMB1, SUBMUSIC_L4_CLIMB2, SUBMUSIC_END, NO_SUBMUSICS }; #define NO_MUSICS 12 int music[NO_OVERMUSICS][NO_MUSICS][NO_SUBMUSICS] = { { {SUBMUSIC_L1_BEAT, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L1_BEAT, SUBMUSIC_L1_BASIC, SUBMUSIC_L1_FIRE}, {SUBMUSIC_L1_BEAT, SUBMUSIC_L1_BASIC, SUBMUSIC_L1_FIRE2}, {SUBMUSIC_L1_BEAT, SUBMUSIC_L1_BASIC2, SUBMUSIC_L1_FIRE}, {SUBMUSIC_L1_BEAT, SUBMUSIC_L1_BASIC, SUBMUSIC_L1_FIRE2}, {SUBMUSIC_L1_BEAT, SUBMUSIC_L1_BASIC3, SUBMUSIC_L1_FIRE}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L2_BEAT_INCOMPLETE, SUBMUSIC_L2_BASIC, SUBMUSIC_EMPTY}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L2_BEAT, SUBMUSIC_L2_BASIC, SUBMUSIC_EMPTY}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L2_BEAT, SUBMUSIC_L2_BASIC, SUBMUSIC_L2_SONG}, {SUBMUSIC_L2_BEAT, SUBMUSIC_L2_BASIC2, SUBMUSIC_L2_SONG2}, {SUBMUSIC_L2_BEAT, SUBMUSIC_L2_BASIC3, SUBMUSIC_L2_SONG2}, {SUBMUSIC_L2_BEAT, SUBMUSIC_L2_BASIC4, SUBMUSIC_L2_SONG2}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L3_BEAT, SUBMUSIC_L3_SWEET, SUBMUSIC_EMPTY}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L3_BEAT, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE2}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET2, SUBMUSIC_L3_XLINE2}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET2, SUBMUSIC_L3_XLINE}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET, SUBMUSIC_L3_XLINE2}, {SUBMUSIC_L3_BEAT2, SUBMUSIC_L3_SWEET2, SUBMUSIC_L3_XLINE3}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L4_BASE1, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_L4_BASE1, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_L4_BASE2, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_L4_BASE3, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, }, { {SUBMUSIC_L4_UPDOWN1, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_L4_UPDOWN1, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_L4_UPDOWN2, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_L4_UPDOWN3, SUBMUSIC_L4_CLIMB1, SUBMUSIC_EMPTY}, {SUBMUSIC_END, SUBMUSIC_EMPTY, SUBMUSIC_EMPTY}, } }; #define VOL_L 100 #define VOL_M 200 #define VOL_H 255 SAMPLE *sounds[NO_WAVS]; SAMPLE *beat[NO_BEATS]; enum { SM_BEAT, SM_TONE, SM_LENGTH, SM_VOL, SM_PAN, SM_EVENT1, SM_EVENT2, SM_EVENT3, SM_ALT_TONE, SM_SIZE }; int submusic[NO_SUBMUSICS][51][SM_SIZE] = { { {BEAT_END, L_1, 0, 0}, }, { //{BEAT_SILENT, NOTE_2C, 5, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_1C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_2C, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_1G, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1AS, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1F, L_8, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1G, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1DS, L_8, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_1E, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { // {BEAT_SILENT, NOTE_2C, 5, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, /* {BEAT_DRUM3, NOTE_0G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_0G, 7, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_1C, 9, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE},*/ {BEAT_DRUM3, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_1G, 7, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_2C, 9, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_0D, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_1G, L_2 - 1, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, /* {BEAT_DRUM3, NOTE_0G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_1G, 7, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_1C, 9, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_0D, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1C, L_1, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE},*/ /* {BEAT_DRUM3, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_1C, L_4, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_0G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_0G, L_4, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_1F, L_4, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE},*/ /* {BEAT_SILENT, NOTE_2C, 5, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_2C, L_4, VOL_L, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_2C, L_4, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, L_4, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_2C, L_4, VOL_L, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_2C, L_4, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, L_4, VOL_M, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_2C, L_4, VOL_L, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE},*/ {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { // {BEAT_SILENT, NOTE_2C, L_16, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_SLINE, NOTE_2C, L_2, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SLINE, NOTE_3C, L_4, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SLINE, NOTE_2G, 1, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_1G}, {BEAT_NICE, NOTE_2E, L_2 - 1, VOL_M, PAN_C, EVENT_STOPPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_1AS}, {BEAT_SLINE, NOTE_2AS, L_4, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_SLINE, NOTE_2F, L_8, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2D}, {BEAT_SLINE, NOTE_2G, L_4, VOL_H, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SLINE, NOTE_2AS, L_8, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2F}, {BEAT_SLINE, NOTE_2F, 1, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_NICE, NOTE_2F, L_16 - 1, VOL_M, PAN_C, EVENT_STOPPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2F}, // {BEAT_NICE, NOTE_2E, 1, VOL_M, PAN_C, EVENT_STOPPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LINE2, NOTE_2C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1G, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_1AS, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1G, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_2C, L_8, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1AS, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1F, L_8, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_1E, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LINE2, NOTE_1C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_1G, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_2DS, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_2C, L_8, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_2F, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE1, NOTE_2DS, L_8, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2E, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { // {BEAT_SILENT, NOTE_2C, L_16, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_SLINE, NOTE_2C, L_2, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SLINE, NOTE_2G, L_4, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_SLINE, NOTE_3C, 1, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_NICE, NOTE_2DS, L_2 - 1, VOL_M, PAN_C, EVENT_STOPPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_SLINE, NOTE_3DS, L_4, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_SLINE, NOTE_3C, L_8, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SLINE, NOTE_3F, L_4, VOL_H, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_SLINE, NOTE_2G, L_8, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_3F}, {BEAT_SLINE, NOTE_3C, 1, VOL_M, PAN_C, EVENT_SWOOPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_NICE, NOTE_2C, L_16 - 1, VOL_M, PAN_C, EVENT_STOPPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2C}, // changed some lengths here // {BEAT_NICE, NOTE_2E, 1, VOL_M, PAN_C, EVENT_STOPPER1_FIRE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_DRUM3, NOTE_1G, XL_1, VOL_H, PAN_C, EVENT_PULSE1, EVENT_PULSE, EVENT_NONE}, // {BEAT_DRUM3, NOTE_1G, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, XL_2, VOL_H, PAN_C, EVENT_PULSE2, EVENT_PULSE, EVENT_NONE}, {BEAT_DRUM3, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_PULSE1, EVENT_PULSE, EVENT_NONE}, // {BEAT_DRUM3, NOTE_1G, L_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, XL_1 + XL_2, VOL_M, PAN_C, EVENT_PULSE2, EVENT_PULSE, EVENT_NONE}, // {BEAT_DRUM3, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_PULSE1, EVENT_PULSE, EVENT_NONE}, // {BEAT_DRUM3, NOTE_1G, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, /* { {BEAT_SILENT, NOTE_1G, L_1, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE}, {BEAT_SILENT, NOTE_1G, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, L_1 + L_2, VOL_M, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE}, {BEAT_SILENT, NOTE_1G, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_1F, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_2C, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { // {BEAT_LONG, NOTE_2C, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG2, NOTE_2C, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_1G, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_1G, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_2DS, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_2DS, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_1F, L_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_SILENT, NOTE_2C, L_1, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_3C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2B, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_3E, L_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2B, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_3C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2B, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2E, L_3, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_SILENT, NOTE_2C, L_6, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2B, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2E, L_3, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_SILENT, NOTE_2C, L_1 - L_6 - L_4 - L_3, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_3C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2B, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_3E, L_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2B, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_3C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2B, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_LINE2, NOTE_2E, L_3, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_SWEET, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2FS, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2B, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2B, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2FS, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_DRUM4, NOTE_1G, L_2 + L_2 + L_1, VOL_H, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_DRUM4, NOTE_1C, L_2 + L_2 + L_1, VOL_H, PAN_C, EVENT_PULSE2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_DRUM4, NOTE_1G, L_1, VOL_H, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_DRUM4, NOTE_1C, L_1, VOL_H, PAN_C, EVENT_PULSE2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, */ { {BEAT_SILENT, NOTE_1G, XL_1, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE}, {BEAT_SILENT, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1G, XL_1 + XL_2, VOL_M, PAN_C, EVENT_PULSE1, EVENT_NONE, EVENT_NONE}, {BEAT_SILENT, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_1F, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1C, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1C, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { // {BEAT_LONG, NOTE_2C, XL_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG2, NOTE_2C, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1G, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1G, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_1G, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_2DS, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1DS, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1DS, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1DS, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_2DS, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_1F, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1F, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1F, XL_1, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1F, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, /* { {BEAT_LONG2, NOTE_1F, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_2G, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { // {BEAT_LONG, NOTE_2C, XL_16, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG2, NOTE_2C, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1G, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_1G, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_2DS, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1DS, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1AS, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_2DS, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_LONG2, NOTE_2DS, XL_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_LONG, NOTE_1F, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_1F, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SYNTH, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_2, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, */ { {BEAT_SILENT, NOTE_2C, XL_1 - XL_16, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_DLINE2, NOTE_3E, XL_4, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_DLINE2, NOTE_2B, XL_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2E, XL_3, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_SILENT, NOTE_2C, XL_8, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2B, XL_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2E, XL_3, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SILENT, NOTE_2C, XL_1 - XL_8 - XL_4 - XL_3 - XL_16, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_DLINE2, NOTE_3E, XL_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_DLINE2, NOTE_2B, XL_4, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2E, XL_3, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, /* { {BEAT_SILENT, NOTE_2C, XL_1 - XL_16, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_DLINE2, NOTE_3E, XL_4, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_DLINE2, NOTE_2B, XL_4, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2E, XL_3, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_SILENT, NOTE_2C, XL_8, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2B, XL_4, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2E, XL_3, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SILENT, NOTE_2C, XL_1 - XL_8 - XL_4 - XL_3 - XL_16, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2C, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_DLINE2, NOTE_3E, XL_4, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2B, XL_2, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2B}, {BEAT_DLINE2, NOTE_3C, XL_2, VOL_H, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_DLINE2, NOTE_2B, XL_4, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3E}, {BEAT_DLINE2, NOTE_2E, XL_3, VOL_M, PAN_C, EVENT_FIRE2_1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, */ // L3 { {BEAT_SWEET, NOTE_1C, L_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1C, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SWEET, NOTE_1DS, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1DS, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_1AS}, {BEAT_SWEET, NOTE_1C, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1G, L_1 - L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_SWEET, NOTE_1C, L_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1G, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_SWEET, NOTE_1C, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1DS, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SWEET, NOTE_1F, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_SWEET, NOTE_0G, L_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_2C, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SWEET, NOTE_1C, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1C, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_1AS}, {BEAT_SWEET, NOTE_1DS, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1G, L_1 - L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_SWEET, NOTE_1DS, L_4, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1G, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_SWEET, NOTE_1C, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_GLURR, NOTE_1DS, L_4, VOL_H, PAN_C, EVENT_FIRE3_2, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_SWEET, NOTE_0AS, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, /* { {BEAT_SWEET, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2DS, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2C, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2C, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_SWEET, NOTE_2F, L_1, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, },*/ { {BEAT_DRUM4, NOTE_1G, L_1 + L_2 + L_2, VOL_M, PAN_C, EVENT_PULSE1, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_DRUM4, NOTE_1C, L_1 + L_2 + L_2, VOL_M, PAN_C, EVENT_PULSE2, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_DRUM4, NOTE_1G, L_1, VOL_M, PAN_C, EVENT_PULSE1, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_0G, L_4, VOL_H, PAN_C, EVENT_PULSE2, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_2C, L_2 + L_4, VOL_H, PAN_C, EVENT_PULSE2, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_DRUM4, NOTE_1C, L_1, VOL_M, PAN_C, EVENT_PULSE2, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_0G, L_4, VOL_H, PAN_C, EVENT_PULSE1, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_CYMBAL1, NOTE_2C, L_2 + L_4, VOL_H, PAN_C, EVENT_PULSE1, EVENT_PULSE, EVENT_NONE, NOTE_3C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_XLINE, NOTE_3C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE2, NOTE_2AS, L_2 - 3, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_XLINE, NOTE_2G, L_6, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE2, NOTE_2FS, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE, NOTE_2F, L_6, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE2, NOTE_2DS, L_3, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE, NOTE_2C, L_3 + 2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2E}, {BEAT_XLINE2, NOTE_1AS, L_2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_XLINE, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_XLINE2, NOTE_2DS, L_2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_XLINE, NOTE_2FS, L_6, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE2, NOTE_2G, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE, NOTE_2AS, L_6, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_XLINE2, NOTE_2G, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE, NOTE_2F, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2D}, {BEAT_XLINE, NOTE_1AS, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE2, NOTE_2C, L_3, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_XLINE, NOTE_2G, L_2, VOL_H, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_XLINE2, NOTE_2AS, L_2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_XLINE, NOTE_3C, L_6, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE2, NOTE_3C, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_XLINE, NOTE_3DS, L_6, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_XLINE2, NOTE_3C, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE, NOTE_3DS, L_2, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2D}, {BEAT_XLINE, NOTE_3C, L_4, VOL_M, PAN_C, EVENT_NONE, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE2, NOTE_2G, L_3, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, // stage 4 beat /* { {BEAT_DRUM3, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_1G, 7, VOL_M, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM3, NOTE_2C, 9, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_0D, L_4, VOL_M, PAN_C, EVENT_FIRE4_2, EVENT_NONE, EVENT_NONE}, {BEAT_DRUM4, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_CYMBAL1, NOTE_1G, L_2 - 1, VOL_H, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, */ { {BEAT_STAGE4, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 60, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 120, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 180, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 60, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 120, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 180, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_STAGE4, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_STAGE4, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_2G, L_2, VOL_H - 60, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 120, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_2G, L_2, VOL_H - 180, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_2G, L_2, VOL_H - 60, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1G, L_2, VOL_H - 120, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_2G, L_2, VOL_H - 180, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_STAGE4, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_2C, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_2C, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_2C, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1C, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_2C, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_2AS, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_2AS, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H, PAN_C, EVENT_PULSE, EVENT_FIRE4_2, EVENT_NONE}, {BEAT_STAGE4, NOTE_2AS, L_2, VOL_H - 80, PAN_C - 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_1AS, L_2, VOL_H - 160, PAN_C + 40, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_STAGE4, NOTE_2AS, L_2, VOL_H - 200, PAN_C, EVENT_PULSE, EVENT_NONE, EVENT_NONE}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_MULTI, NOTE_1C, L_2, VOL_L, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1G}, {BEAT_MULTI, NOTE_1G, L_2, VOL_M, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1AS}, {BEAT_MULTI, NOTE_1AS, L_2, VOL_L, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1C}, {BEAT_MULTI, NOTE_1C, L_2, VOL_L, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1G}, {BEAT_MULTI, NOTE_1DS, L_2, VOL_M, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1C}, {BEAT_MULTI, NOTE_1C, L_2, VOL_L, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1AS}, {BEAT_MULTI, NOTE_1G, L_2, VOL_M, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1G}, {BEAT_MULTI, NOTE_1C, L_2, VOL_L, PAN_C, EVENT_FIRE4_1, EVENT_NONE, EVENT_NONE, NOTE_1C}, {BEAT_END, 0, L_4, 0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, /* { {BEAT_XLINE, NOTE_3C, L_2, VOL_H, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE2, NOTE_2AS, L_2 - 3, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_3C}, {BEAT_XLINE, NOTE_2G, L_6, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE2, NOTE_2FS, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2D}, {BEAT_XLINE, NOTE_2F, L_6, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE2, NOTE_2DS, L_3, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_1B}, {BEAT_XLINE, NOTE_2C, L_3 + 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2E}, {BEAT_XLINE2, NOTE_1AS, L_2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, { {BEAT_XLINE, NOTE_2C, L_2, VOL_H, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_XLINE2, NOTE_2DS, L_2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_XLINE, NOTE_2FS, L_6, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2AS}, {BEAT_XLINE2, NOTE_2G, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE, NOTE_2AS, L_6, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2G}, {BEAT_XLINE2, NOTE_2G, L_3 - 2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_XLINE, NOTE_2F, L_2, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2D}, {BEAT_XLINE, NOTE_1AS, L_4, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2C}, {BEAT_XLINE2, NOTE_2C, L_3, VOL_M, PAN_C, EVENT_FIRE3_1, EVENT_NONE, EVENT_NONE, NOTE_2DS}, {BEAT_END, 0,L_4,0, EVENT_NONE, EVENT_NONE, EVENT_NONE}, }, */ }; #define SUBMUSICS 4 int music_pos; int overmusic_pos; int to_change_music; int submusic_playing[SUBMUSICS]; int submusic_pos[SUBMUSICS]; int submusic_count[SUBMUSICS]; int submusic_finished[SUBMUSICS]; int to_play_beat[SUBMUSICS]; int to_play_tone[SUBMUSICS]; int to_play_alt_tone[SUBMUSICS]; int to_play_vol[SUBMUSICS]; int to_play_pan[SUBMUSICS]; //int which_music; //int change_music; // when current music finishes, change. void load_sample_in (int samp, const char *sfile, int direct); void play_beat (int beat, int f, int vol, int pan, int alt_f, int ptone, int palt_tone); /* Call at startup of program. */ void init_sound (void) { options.sound_mode = get_config_int ("Misc", "StereoMode", SOUNDMODE_STEREO); // defaults to stereo in playing functions as well // first we'll populate the tone array with the right frequencies: int i, j; float t; for (i = 0; i < NO_TONES; i++) { t = (float) BASE_TONE; for (j = 0; j < i; j++) { t *= (float) 1.059463094359; //(1000 + (1000 / 18)) / 1000; } tone[i] = t; // saves me from having to remember how to use the pow function } reserve_voices (16, 0); // not sure this is necessary if (install_sound (DIGI_AUTODETECT, MIDI_NONE, NULL) == -1) //if (install_sound (DIGI_ALSA, MIDI_NONE, NULL) == -1) { options.sound_init = 0; //exit (1); // don't bother with proper error handling yet. This should just disable sound. } else options.sound_init = 1; set_volume (255, 0); if (options.sound_init != 0) { load_sample_in (WAV_FIRE, "fire", DIRECT_WAV); load_sample_in (WAV_BLOP, "blop", DIRECT_WAV); load_sample_in (WAV_SWBEAM, "swbeam", DIRECT_WAV); load_sample_in (WAV_SCATTER, "scatter", DIRECT_WAV); load_sample_in (WAV_MGUN, "mgun", DIRECT_WAV); load_sample_in (WAV_CANNON, "cannon", DIRECT_WAV); load_sample_in (WAV_BANG, "bang", DIRECT_WAV); load_sample_in (WAV_RECT, "rect", DIRECT_WAV); load_sample_in (WAV_RECT2, "rect2", DIRECT_WAV); load_sample_in (WAV_WHOOSH, "whoosh", DIRECT_WAV); load_sample_in (WAV_P_BANG, "p_bang", DIRECT_WAV); load_sample_in (WAV_WORMS, "worms", DIRECT_WAV); load_sample_in (WAV_MOUTH, "mouth", DIRECT_WAV); load_sample_in (WAV_LWBEAM, "lwbeam", DIRECT_WAV); load_sample_in (WAV_LEVEL, "level", DIRECT_WAV); load_sample_in (WAV_EXTRA, "extra", DIRECT_WAV); /* load_sample_in(WAV_STAGE1, "stage1", DIRECT_WAV); load_sample_in(WAV_STAGE2, "stage2", DIRECT_WAV); load_sample_in(WAV_STAGE3, "stage3", DIRECT_WAV); load_sample_in(WAV_STAGE4_2, "stage4", DIRECT_WAV);*/ load_sample_in (WAV_FLUTE, "flute", DIRECT_BEAT); load_sample_in (WAV_DRUM1, "drum1", DIRECT_BEAT); load_sample_in (WAV_DRUM2, "drum2", DIRECT_BEAT); load_sample_in (WAV_DRUM3, "drum3", DIRECT_BEAT); load_sample_in (WAV_DRUM4, "drum4", DIRECT_BEAT); load_sample_in (WAV_CYMBAL1, "cymbal1", DIRECT_BEAT); load_sample_in (WAV_LINE1, "line1", DIRECT_BEAT); load_sample_in (WAV_LINE2, "line2", DIRECT_BEAT); load_sample_in (WAV_NICE, "voice", DIRECT_BEAT); load_sample_in (WAV_NICE2, "nice2", DIRECT_BEAT); load_sample_in (WAV_SAW, "saw", DIRECT_BEAT); load_sample_in (WAV_BLIP, "blip", DIRECT_BEAT); load_sample_in (WAV_SQUARE, "square", DIRECT_BEAT); load_sample_in (WAV_LONG, "long", DIRECT_BEAT); load_sample_in (WAV_LONG2, "long2", DIRECT_BEAT); load_sample_in (WAV_XLINE, "xline", DIRECT_BEAT); load_sample_in (WAV_FLUTE2_S, "flute2_s", DIRECT_BEAT); load_sample_in (WAV_FLUTE2_L, "flute2_l", DIRECT_BEAT); load_sample_in (WAV_FLUTE_L, "flute_l", DIRECT_BEAT); load_sample_in (WAV_PIANO, "piano", DIRECT_BEAT); load_sample_in (WAV_PAN, "pan", DIRECT_BEAT); load_sample_in (WAV_STRING, "string", DIRECT_BEAT); load_sample_in (WAV_DLINE, "dline", DIRECT_BEAT); load_sample_in (WAV_SYNTH, "synth", DIRECT_BEAT); load_sample_in (WAV_FOOD, "food", DIRECT_BEAT); load_sample_in (WAV_LIGHT, "light", DIRECT_BEAT); load_sample_in (WAV_BEAM, "beam", DIRECT_BEAT); load_sample_in (WAV_ARP, "arp", DIRECT_BEAT); load_sample_in (WAV_LINE3, "line3", DIRECT_BEAT); load_sample_in (WAV_STAGE4, "stage4", DIRECT_BEAT); load_sample_in (WAV_MULTI, "multi", DIRECT_BEAT); load_sample_in (WAV_MULTI2, "multi2", DIRECT_BEAT); load_sample_in (WAV_THING4, "thing4", DIRECT_BEAT); load_sample_in (WAV_SPINNER, "spinner", DIRECT_BEAT); load_sample_in (WAV_WALKER, "walker", DIRECT_BEAT); } } // Called at startup of each game void init_beat (void) { music_pos = 0; // which_music = MUSIC_L1_1; // change_music = 0; int i; for (i = 0; i < SUBMUSICS; i++) { submusic_pos[i] = 0; submusic_count[i] = 5; submusic_finished[i] = 0; to_play_beat[i] = BEAT_NONE; } } // called at startup of new level void init_beat_new_level (void) { music_pos = 0; // which_music = OVERMUSIC_L1_1; //change_music = 0; switch (arena.level) { default: case 1: overmusic_pos = OVERMUSIC_L1_1; break; case 2: overmusic_pos = OVERMUSIC_L2_1; break; case 3: overmusic_pos = OVERMUSIC_L3_1; break; case 4: overmusic_pos = OVERMUSIC_L4_1; break; } // overmusic_pos = OVERMUSIC_L2_1; to_change_music = -1; int i; for (i = 0; i < SUBMUSICS; i++) { submusic_playing[i] = SUBMUSIC_EMPTY; submusic_pos[i] = 0; submusic_count[i] = 0; submusic_finished[i] = 0; to_play_beat[i] = BEAT_NONE; } for (i = 0; i < NO_DONE; i++) { synch_done[i] = 0; } } void run_beat (void) { int i; for (i = 0; i < NO_EVENTS; i++) { synch_ready[i] = 0; } // char go_to_next = 0; for (i = 0; i < SUBMUSICS; i++) { if (to_play_beat[i] != BEAT_NONE) { play_beat (to_play_beat[i], tone[to_play_tone[i]], to_play_vol[i], to_play_pan[i], tone[to_play_alt_tone[i]], to_play_tone[i], to_play_alt_tone[i]); to_play_beat[i] = BEAT_NONE; } // if (submusic_count [i] > 0) // go_to_next = 0; } if (submusic[submusic_playing[0]][submusic_pos[0]][SM_BEAT] == BEAT_END && submusic_count[0] <= 0) { music_pos++; if (music[overmusic_pos][music_pos][0] == SUBMUSIC_END) { music_pos = 0; } if (to_change_music != -1) { overmusic_pos = to_change_music; to_change_music = -1; } for (i = 0; i < SUBMUSICS; i++) { submusic_pos[i] = 0; submusic_count[i] = 0; submusic_playing[i] = music[overmusic_pos][music_pos][i]; } //go_to_next = 1; } for (i = 0; i < SUBMUSICS; i++) { if (submusic_playing[i] == SUBMUSIC_EMPTY) continue; // remember to set finished to 1 when setting submusic to _empty!!! submusic_count[i]--; // if count == 1, synch_events! if (submusic_count[i] <= 0) { if (submusic[submusic_playing[i]][submusic_pos[i]][SM_BEAT] == BEAT_END) { // if (go_to_next == 1) // makes sure all submusics are aligned // submusic_pos [i] = 0; // we've finished the submusic, including any pause at the end, so set a new submusic here continue; } synch_ready[submusic[submusic_playing[i]][submusic_pos[i]][SM_EVENT1]] = 1; synch_ready[submusic[submusic_playing[i]][submusic_pos[i]][SM_EVENT2]] = 1; synch_ready[submusic[submusic_playing[i]][submusic_pos[i]][SM_EVENT3]] = 1; to_play_beat[i] = submusic[submusic_playing[i]][submusic_pos[i]][SM_BEAT]; to_play_tone[i] = submusic[submusic_playing[i]][submusic_pos[i]][SM_TONE]; to_play_alt_tone[i] = submusic[submusic_playing[i]][submusic_pos[i]][SM_ALT_TONE]; to_play_vol[i] = submusic[submusic_playing[i]][submusic_pos[i]][SM_VOL]; to_play_pan[i] = submusic[submusic_playing[i]][submusic_pos[i]][SM_PAN]; /* play_beat(submusic [submusic_playing [i]] [submusic_pos [i]] [SM_BEAT], tone [submusic [submusic_playing [i]] [submusic_pos [i]] [SM_TONE]], submusic [submusic_playing [i]] [submusic_pos [i]] [SM_VOL], submusic [submusic_playing [i]] [submusic_pos [i]] [SM_PAN]);*/ submusic_count[i] = submusic[submusic_playing[i]][submusic_pos[i]][SM_LENGTH]; // if (arena.level == 3) // submusic_count [i] = submusic [submusic_playing [i]] [submusic_pos [i]] [SM_LENGTH] * 0.8; submusic_pos[i]++; } // if (submusic_pos [i] } } void play_beat (int beat, int f, int vol, int pan, int alt_f, int ptone, int palt_tone) { vol = options.sound_volume; switch (beat) { case BEAT_BASIC: if (synch_done[DONE_SWOOPER1_FIRE]) { play_effectwfvp (WAV_FLUTE, f, vol, pan); synch_done[DONE_SWOOPER1_FIRE] = 0; } else play_effectwfvp (WAV_LINE1, f, vol, pan); break; case BEAT_LINE1: /* if (synch_done [DONE_SWOOPER1_FIRE]) { play_effectwfvp(WAV_FLUTE, f, vol, pan); synch_done [DONE_SWOOPER1_FIRE] = 0; } else*/ play_effectwfvp (WAV_LINE1, f, vol, pan); break; case BEAT_LINE2: /* if (synch_done [DONE_SWOOPER1_FIRE]) { play_effectwfvp(WAV_FLUTE, f, vol, pan); synch_done [DONE_SWOOPER1_FIRE] = 0; } else*/ play_effectwfvp (WAV_LINE2, f, vol, pan); break; case BEAT_SLINE: if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_DIVER1) { if (ptone > 5) play_effectwfvp (WAV_SQUARE, tone[ptone - 5], vol, pan); } if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_SWOOPER2) { if (ptone > 5) play_effectwfvp (WAV_BLIP, tone[ptone - 5], vol, pan); if (ptone > 8) play_effectwfvp (WAV_BLIP, tone[ptone - 8], vol, pan); } if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_SWOOPER1) { play_effectwfvp (WAV_BLIP, f, vol, pan); } if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_DARTER1) { play_effectwfvp (WAV_SAW, alt_f, vol, pan); } if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_CARRIER_PART) { play_effectwfvp (WAV_SAW, alt_f / 2, vol, pan); } if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_DARTER2) { play_effectwfvp (WAV_FLUTE, tone[palt_tone], vol, pan); if (ptone > 5) play_effectwfvp (WAV_SAW, tone[ptone - 5], 150, pan); // if (palt_tone > 5) /* play_effectwfvp(WAV_SAW, tone [palt_tone + 4], vol, pan); if (palt_tone > 5) play_effectwfvp(WAV_SAW, tone [palt_tone - 5], vol, pan);*/ } if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_CARRIER1) { play_effectwfvp (WAV_SQUARE, alt_f * 2, vol / 2, pan); } if (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_BOSS1_2) { play_effectwfvp (WAV_PAN, tone[palt_tone], vol, pan); } synch_done[DONE_SWOOPER1_FIRE] = 0; break; case BEAT_DLINE2: if (synch_done[DONE_FIRE2_1]) { play_effectwfvp (WAV_LINE3, alt_f, vol, pan); // play_effectwfvp(WAV_LINE1, alt_f / 2, vol, pan); synch_done[DONE_FIRE2_1] = 0; } else play_effectwfvp (WAV_LINE2, f, vol, pan); break; case BEAT_NICE: if (synch_done[DONE_STOPPER1_FIRE] & FIRE1_BOSS1_1) { play_effectwfvp (WAV_NICE, alt_f, vol, pan); synch_done[DONE_STOPPER1_FIRE] = 0; } if (synch_done[DONE_STOPPER1_FIRE] & 1) { play_effectwfvp (WAV_NICE, f, vol, pan); synch_done[DONE_STOPPER1_FIRE] = 0; } break; case BEAT_DRUM1: play_effectwfvp (WAV_DRUM1, f, vol, pan); break; case BEAT_DRUM2: play_effectwfvp (WAV_DRUM2, f, vol, pan); break; case BEAT_DRUM3: play_effectwfvp (WAV_DRUM3, f, vol, pan); break; case BEAT_DRUM4: play_effectwfvp (WAV_DRUM4, f, vol, pan); break; case BEAT_CYMBAL1: play_effectwfvp (WAV_CYMBAL1, f, vol, pan); break; case BEAT_LONG: play_effectwfvp (WAV_LONG, f, vol, pan); break; case BEAT_LONG2: play_effectwfvp (WAV_LONG2, f, vol, pan); break; case BEAT_SWEET: play_effectwfvp (WAV_PIANO, f * 2, vol, pan); // play_effectwfvp(WAV_STRING, f * 2, vol, pan); break; case BEAT_XLINE: play_effectwfvp (WAV_FLUTE, f, vol, pan); break; case BEAT_XLINE2: if (synch_done[DONE_FIRE3_1] & FIRE3_SMALL) play_effectwfvp (WAV_FLUTE, f, vol, pan); if (synch_done[DONE_FIRE3_1] & FIRE3_MEGA) play_effectwfvp (WAV_STRING, alt_f * 2, vol, pan); if (synch_done[DONE_FIRE3_1] & FIRE3_BOSS3_1) play_effectwfvp (WAV_STRING, alt_f * 2, vol, pan); if (synch_done[DONE_FIRE3_1] & FIRE3_BOSS3_2) play_effectwfvp (WAV_FLUTE, f / 2, 250, pan); synch_done[DONE_FIRE3_1] = 0; break; case BEAT_GLURR: if (synch_done[DONE_FIRE3_2] & FIRE3_SMALL2) play_effectwfvp (WAV_FLUTE, f * 2, vol, pan); if (synch_done[DONE_FIRE3_2] & FIRE3_LARGER) play_effectwfvp (WAV_PIANO, f * 2, vol, pan); if (synch_done[DONE_FIRE3_2] & FIRE3_LARGER2) play_effectwfvp (WAV_SQUARE, alt_f, 150, pan); if (synch_done[DONE_FIRE3_2] & FIRE3_WINGS) play_effectwfvp (WAV_PAN, alt_f * 2, vol, pan); if (synch_done[DONE_FIRE3_2] & FIRE3_WINGS2) play_effectwfvp (WAV_PAN, alt_f, vol, pan); if (synch_done[DONE_FIRE3_2] & FIRE3_BOSS3_3) play_effectwfvp (WAV_PAN, f, 250, pan); if (synch_done[DONE_FIRE3_2] & FIRE3_BOSS3_4) play_effectwfvp (WAV_SQUARE, alt_f, 150, pan); synch_done[DONE_FIRE3_2] = 0; break; case BEAT_XLINE3: if (synch_done[DONE_FIRE3_1] & FIRE3_SMALL) play_effectwfvp (WAV_FLUTE, tone[NOTE_2C], vol, pan); synch_done[DONE_FIRE3_1] = 0; break; case BEAT_FLUTE2_S: play_effectwfvp (WAV_FLUTE2_S, f, vol, pan); break; case BEAT_FLUTE2_L: play_effectwfvp (WAV_FLUTE2_L, f, vol, pan); break; case BEAT_FLUTE: play_effectwfvp (WAV_FLUTE, f, vol, pan); break; case BEAT_FLUTE_L: play_effectwfvp (WAV_FLUTE_L, f, vol, pan); break; case BEAT_SYNTH: if (synch_done[DONE_FIRE2_2] & FIRE2_CRUISER2) play_effectwfvp (WAV_SYNTH, f * 2, vol, pan); if (synch_done[DONE_FIRE2_2] & FIRE2_CRUISER3) play_effectwfvp (WAV_LIGHT, f * 2, 250, pan); if (synch_done[DONE_FIRE2_2] & FIRE2_CRUISER1) play_effectwfvp (WAV_FOOD, f, vol, pan); if (synch_done[DONE_FIRE2_2] & FIRE2_BEAMER) play_effectwfvp (WAV_BEAM, f, vol, pan); if (synch_done[DONE_FIRE2_2] & FIRE2_CRUISER4) play_effectwfvp (WAV_BEAM, f, vol, pan); if (synch_done[DONE_FIRE2_2] & FIRE2_SHOOTER) play_effectwfvp (WAV_ARP, f * 2, 250, pan); if (synch_done[DONE_FIRE2_2] & FIRE2_BOSS2_1) play_effectwfvp (WAV_LIGHT, f, 250, pan); if (synch_done[DONE_FIRE2_2] & FIRE2_BOSS2_2) play_effectwfvp (WAV_FOOD, f, vol, pan); synch_done[DONE_FIRE2_2] = 0; break; case BEAT_STAGE4: play_effectwfvp (WAV_STAGE4, f, vol, pan); if (synch_done[DONE_FIRE4_2] & FIRE4_HUNTER) play_effectwfvp (WAV_THING4, f, vol, pan); if (synch_done[DONE_FIRE4_2] & FIRE4_WALKER) play_effectwfvp (WAV_WALKER, tone[NOTE_1G], 150, pan); synch_done[DONE_FIRE4_2] = 0; break; case BEAT_MULTI: if (synch_done[DONE_FIRE4_1] & FIRE4_HOOK) play_effectwfvp (WAV_MULTI, f * 2, vol, pan); if (synch_done[DONE_FIRE4_1] & FIRE4_DROPPER) { if (grand (3) == 0) play_effectwfvp (WAV_MULTI2, alt_f * 4, vol, pan); else play_effectwfvp (WAV_MULTI2, alt_f * 2, vol, pan); } if (synch_done[DONE_FIRE4_1] & FIRE4_SPINNER) { // if (grand(3) == 0) play_effectwfvp (WAV_SPINNER, tone[NOTE_1C], vol, pan); // else // play_effectwfvp(WAV_SPINNER, tone [NOTE_1G], 150, pan); } if (synch_done[DONE_FIRE4_1] & FIRE4_HOOK2) play_effectwfvp (WAV_MULTI, f * 1, vol, pan); synch_done[DONE_FIRE4_1] = 0; break; } } void change_music (int mto) { to_change_music = mto; } /* Loads a .wav file. Should be in the .wavs subdirectory */ void load_sample_in (int samp, const char *sfile, int direct) { char filename_buffer[DATADIR_SIZE]; strncpy(filename_buffer, data_directory, sizeof(char) * DATADIR_SIZE); if (direct == DIRECT_WAV) // strcpy(sfile_name, ".//wavs//"); strncat(filename_buffer, "wavs/", sizeof(char) * DATADIR_SIZE); else // strcpy(sfile_name, ".//beat//"); strncat(filename_buffer, "beat/", sizeof(char) * DATADIR_SIZE); strncat (filename_buffer, sfile, sizeof(char) * DATADIR_SIZE); strncat (filename_buffer, ".wav", sizeof(char) * DATADIR_SIZE); sounds[samp] = load_sample (filename_buffer); if (sounds[samp] == NULL) { set_gfx_mode (GFX_TEXT, 0, 0, 0, 0); allegro_message ("Error: Unable to load sound file: %s", filename_buffer); exit (1); } } /* Pass e.g. WAV_FIRE to this and it plays it */ void play_effect (int sample) { if (options.sound_init != 0) play_sample (sounds[sample], 200, options.sound_volume, 1000, 0); } /* plays sample at frequency f (normal is 1000), volume v (255 is max), x position x (middle is 127) */ void play_effectwfvp (int sample, int f, int v, int pan) { if (options.sound_init == 0) return; switch (options.sound_mode) { case SOUNDMODE_MONO: pan = 127; break; case SOUNDMODE_REVERSED: pan = 255 - pan; break; } play_sample (sounds[sample], v, pan, f, 0); } /* plays sample at frequency f (normal is 1000), volume v (255 is max), x position x (middle is 127) */ void play_effectwfvx (int sample, int f, int v, int x) { // int pan = x / 2500; // this gives us a # from 0 to 255, from the left of the screen to the right. For stereo v = (int)(options.sound_volume / 1.8); int pan = x / 5030; // this gives us a # from 0 to 255, from the left of the screen to the right. For stereo pan += 64; if (options.sound_init == 0) return; switch (options.sound_mode) { case SOUNDMODE_MONO: pan = 127; break; case SOUNDMODE_REVERSED: pan = 255 - pan; break; } play_sample (sounds[sample], v, pan, f, 0); } garden-1.0.9/src/globvars.h0000644000175000017500000000247112457263274012501 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ // Global variables: // at the moment these are all defined in main.c. // but they have to be externed here so all modules with #include globvars.h can access them. extern struct playerstruct player; extern struct ebulletstruct ebullet[NO_EBULLETS]; extern struct pbulletstruct pbullet[NO_PBULLETS]; extern struct enemystruct enemy[NO_ENEMIES]; extern struct cloudstruct cloud[NO_CLOUDS]; extern unsigned char counter; extern struct arenastruct arena; extern struct eclassstruct eclass[NO_ENEMY_TYPES]; extern struct bossstruct boss; extern struct optionstruct options; garden-1.0.9/src/stuff.h0000644000175000017500000000275212457263274012013 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void init_trig (void); float angle_to_radians (int angle); int radians_to_angle (float angle); fixed angle_to_fixed (int angle); int grand (int number); int crandom (int number); int turn_towards_angle (int angle, int tangle, int turning); int turn_towards_xy (int x1, int y1, int x2, int y2, int angle, int turning); inline int xpart (int angle, int length); inline int ypart (int angle, int length); int pulsate (int speed, int amount, int county); int angle_difference (int a1, int a2); void error_message_out (const char *errm); int delta_turn_towards_angle (int angle, int tangle, int turning); int delta_turn_towards_xy (int x1, int y1, int x2, int y2, int angle, int turning); int pos_or_neg (int a); int odd_even (int v); garden-1.0.9/src/sound.h0000644000175000017500000001007712457263274012013 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void init_sound (void); void init_beat (void); void init_beat_new_level (void); void run_beat (void); void change_music (int mto); void play_effect (int sample); void play_effectwfvx (int sample, int f, int v, int x); void play_effectwfvp (int sample, int f, int v, int pan); #define FIRE1_SWOOPER1 1 #define FIRE1_DARTER1 2 #define FIRE1_DIVER1 4 #define FIRE1_CARRIER1 8 #define FIRE1_SWOOPER2 16 #define FIRE1_DARTER2 32 #define FIRE1_BOSS1_2 64 #define FIRE1_CARRIER_PART 128 #define FIRE1_BOSS1_1 2 #define FIRE2_DRIFTER1 1 #define FIRE2_CRUISER2 1 #define FIRE2_CRUISER1 2 #define FIRE2_CRUISER3 4 #define FIRE2_BEAMER 8 #define FIRE2_CRUISER4 16 #define FIRE2_SHOOTER 32 #define FIRE2_BOSS2_1 64 #define FIRE2_BOSS2_2 128 #define FIRE3_SMALL 1 #define FIRE3_MEGA 2 #define FIRE3_BOSS3_1 4 #define FIRE3_BOSS3_2 8 #define FIRE3_SMALL2 1 #define FIRE3_LARGER 2 #define FIRE3_LARGER2 4 #define FIRE3_WINGS 8 #define FIRE3_WINGS2 16 #define FIRE3_BOSS3_3 32 #define FIRE3_BOSS3_4 64 #define FIRE4_HOOK 1 #define FIRE4_DROPPER 2 #define FIRE4_SPINNER 4 #define FIRE4_HOOK2 8 #define FIRE4_WALKER 1 #define FIRE4_HUNTER 2 enum { OVERMUSIC_L1_1, OVERMUSIC_L1_2, OVERMUSIC_L2_1, OVERMUSIC_L2_2, OVERMUSIC_L2_3, OVERMUSIC_L3_1, OVERMUSIC_L3_2, OVERMUSIC_L3_3, OVERMUSIC_L3_4, // OVERMUSIC_L2_4, OVERMUSIC_L4_1, OVERMUSIC_L4_2, NO_OVERMUSICS }; enum { WAV_NONE, WAV_FIRE, WAV_BLOP, WAV_FLUTE, WAV_DRUM1, WAV_DRUM2, WAV_DRUM3, WAV_DRUM4, WAV_SWBEAM, WAV_LINE1, WAV_LINE2, WAV_CYMBAL1, WAV_NICE, WAV_NICE2, WAV_SAW, WAV_BLIP, WAV_SCATTER, WAV_SEEKER, WAV_MGUN, WAV_CANNON, WAV_BLADE, WAV_SQUARE, WAV_BANG, WAV_RECT, WAV_RECT2, WAV_WHOOSH, WAV_P_BANG, WAV_WORMS, WAV_MOUTH, WAV_LWBEAM, WAV_LONG, WAV_LONG2, WAV_XLINE, WAV_FLUTE2_S, WAV_FLUTE2_L, WAV_FLUTE_L, WAV_FUNNY, WAV_PIANO, WAV_PAN, WAV_STRING, WAV_DLINE, WAV_SYNTH, WAV_FOOD, WAV_LIGHT, WAV_BEAM, WAV_ARP, WAV_LINE3, WAV_STAGE4, WAV_MULTI, WAV_MULTI2, WAV_THING4, WAV_SPINNER, WAV_WALKER, WAV_LEVEL, WAV_EXTRA, WAV_STAGE1, WAV_STAGE2, WAV_STAGE3, WAV_STAGE4_2, NO_WAVS }; enum { EVENT_NONE, EVENT_PULSE, EVENT_SWOOPER1_FIRE, EVENT_STOPPER1_FIRE, EVENT_PULSE1, EVENT_PULSE2, EVENT_FIRE2_1, EVENT_FIRE2_2, EVENT_FIRE3_1, EVENT_FIRE3_2, EVENT_FIRE4_1, EVENT_FIRE4_2, NO_EVENTS }; enum { DONE_SWOOPER1_FIRE, DONE_STOPPER1_FIRE, DONE_FIRE2_1, DONE_FIRE2_2, DONE_FIRE3_1, DONE_FIRE3_2, DONE_FIRE4_1, DONE_FIRE4_2, NO_DONE }; enum { NOTE_0C, NOTE_0CS, NOTE_0D, NOTE_0DS, NOTE_0E, NOTE_0F, NOTE_0FS, NOTE_0G, NOTE_0GS, NOTE_0A, NOTE_0AS, NOTE_0B, NOTE_1C, NOTE_1CS, NOTE_1D, NOTE_1DS, NOTE_1E, NOTE_1F, NOTE_1FS, NOTE_1G, NOTE_1GS, NOTE_1A, NOTE_1AS, NOTE_1B, NOTE_2C, NOTE_2CS, NOTE_2D, NOTE_2DS, NOTE_2E, NOTE_2F, NOTE_2FS, NOTE_2G, NOTE_2GS, NOTE_2A, NOTE_2AS, NOTE_2B, NOTE_3C, NOTE_3CS, NOTE_3D, NOTE_3DS, NOTE_3E, NOTE_3F, NOTE_3FS, NOTE_3G, NOTE_3GS, NOTE_3A, NOTE_3AS, NOTE_3B, NOTE_ENDNOTE }; #define NO_TONES 56 #ifndef FROM_SOUND_C // when on the next tick we're going to play a note with an attached event, set this to something // for the relevant event so that if the event is ready it can be done extern int synch_ready[NO_EVENTS]; // when we've done something, set this to the note that we want to play. extern int synch_done[NO_DONE]; extern int tone[NO_TONES]; #endif garden-1.0.9/src/cloud.h0000644000175000017500000000175712457263274011776 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #ifndef CLOUD_H #define CLOUD_H void init_clouds (void); void run_clouds (void); int create_cloud (int type); int quick_cloud (int type, int x, int y, int x_speed, int y_speed, int timeout, int colour, int drag); #endif /* CLOUD_H */ garden-1.0.9/src/Makefile.am0000644000175000017500000000144212457277321012540 00000000000000bin_PROGRAMS = garden NUL = garden_SOURCES = \ cloud.c \ cloud.h \ config.h \ display.c \ display.h \ display_init.c \ display_init.h \ ebullet.c \ ebullet.h \ eclass.c \ enemy.c \ enemy.h \ game.c \ game.h \ globvars.h \ input.c \ input.h \ level.c \ level.h \ main.c \ menu.c \ menu.h \ palette.c \ palette.h \ pbullet.c \ pbullet.h \ sound.c \ sound.h \ stuff.c \ stuff.h \ system.h \ $(NUL) # This is telling the program where to find datafiles during compilation. Define the datafile directory name in configure.ac if you don't like it if WINDOWS_VERSION #no datadir #defined garden_SOURCES += garden.rc garden_LDFLAGS = -static else #unix version :-) AM_CPPFLAGS = -D'DATADIR="@DATADIR_NAME@"' endif #how to build resources? .rc.o: $(RC) $(RCFLAGS) $< -o $@ garden-1.0.9/src/input.c0000644000175000017500000006065212457272166012021 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include "allegro.h" #include #include "globvars.h" #include "pbullet.h" #include "cloud.h" #include "sound.h" #include "enemy.h" #include "stuff.h" #define TARGET_ARRAY_SIZE 25 #include "palette.h" /* This equals cheat mode... */ /* #define SCREENSHOT */ #ifdef SCREENSHOT #include #include extern RGB palet[1][256]; #endif /* SCREENSHOT */ void multi_fire (int m); void mflash (int b, int w, int m); int find_enemies (int targets[TARGET_ARRAY_SIZE], int x, int y, int number, int start_number, int force); void fire_seekers (int m); #define SHOW_DAMAGE #ifdef SHOW_DAMAGE void calc_damage (int dam, int speed); extern int damage_per_time; #endif enum { MOVE_NO, MOVE_L, MOVE_R, MOVE_U, MOVE_D, MOVE_UL, MOVE_DL, MOVE_UR, MOVE_DR }; void get_input (void) { #ifdef SCREENSHOT static int scrs = 0; static int sshot_counter = 0; char sfile[64]; char istr[64]; if (sshot_counter > 0) sshot_counter--; if (key[KEY_F1] && sshot_counter <= 0) { BITMAP *scrshot_bmp; scrshot_bmp = create_bitmap (640, 480); blit (screen, scrshot_bmp, 0, 0, 0, 0, 640, 480); strcpy (sfile, "screenshot_"); sprintf (sfile, "%s%02d", sfile, scrs); //strcat(sfile, itoa(scrs, istr, 10)); strcat (sfile, ".bmp"); save_bitmap (sfile, scrshot_bmp, palet[0]); clear_to_color (screen, COL_WHITE); scrs++; sshot_counter = 15; destroy_bitmap (scrshot_bmp); } if (arena.counter % 10 == 0) { if (key[KEY_1] && player.wlevel[0] < 9) { player.wlevel[0]++; player.wxp[0] = 0; set_wpixels (); play_effectwfvx (WAV_LEVEL, tone[NOTE_2G], 250, player.x); player.wgained[0] = 20; } if (key[KEY_2] && player.wlevel[1] < 9) { player.wlevel[1]++; player.wxp[1] = 0; set_wpixels (); } if (key[KEY_3] && player.wlevel[2] < 9) { player.wlevel[2]++; player.wxp[2] = 0; set_wpixels (); } if (key[KEY_4]) { player.lives++; // play_effectwfvx(WAV_EXTRA, tone [NOTE_3C], 100, 320); play_effectwfvx (WAV_LEVEL, tone[NOTE_1G], 250, player.x); } if (key[KEY_5] && arena.shift_message == 0) { arena.shift_message = 300; arena.phase++; } if (key[KEY_6]) arena.level_finished = 50; } #endif if (player.respawning > 0) { player.y -= 4000; player.respawning--; return; } int xc = 0, yc = 0; // int move_which = 0; int i; for (i = 0; i < 3; i++) { if (player.beam[i] == -1 && player.beam_flicker[i] == 0) player.beam_counter[i] = 0; else player.beam[i] = -1; } /* if (key [player.key [CKEY_FIRE1]]) { multi_fire(0); } else { if (key [player.key [CKEY_FIRE2]]) multi_fire(1); else { if (key [player.key [CKEY_FIRE3]]) multi_fire(2); } }*/ if (options.key_or_joy == 1) { poll_joystick (); if (joy[0].button[options.joy_button[0]].b) multi_fire (0); if (joy[0].button[options.joy_button[1]].b) multi_fire (1); if (joy[0].button[options.joy_button[2]].b) multi_fire (2); if (player.swing_hold == 1 && joy[0].button[options.joy_button[player.blade_index]].b == 0) player.swing_hold = 0; if (player.ring_hold == 1 && joy[0].button[options.joy_button[player.ring_index]].b == 0) player.ring_hold = 0; if (joy[0].button[options.joy_button[0]].b || joy[0].button[options.joy_button[1]].b || joy[0].button[options.joy_button[2]].b) player.firing = 1; // int moving = MOVE_NO; xc = joy[0].stick[options.joy_stick].axis[0].pos * options.joy_sensitivity; // / 5120 * 6000; yc = joy[0].stick[options.joy_stick].axis[1].pos * options.joy_sensitivity; // / 5120 * 6000; int jangle = radians_to_angle (atan2 (yc, xc)); jangle &= 1023; if (xc == 0 && yc == 0) jangle = ANGLE_4; int dist = hypot (yc, xc); if (dist > 6000) dist = 6000; if (joy[0].button[options.joy_button[3]].b) dist /= 2; xc = xpart (jangle, dist); yc = ypart (jangle, dist); if (xc < -6000) xc = -6000; if (yc < -6000) yc = -6000; if (xc > 6000) xc = 6000; if (yc > 6000) yc = 6000; // NO!!! Need to calc angle then move in that angle player.wings1 += xc / 1000; if (player.wings1 > 20) player.wings1 = 20; if (player.wings1 < -20) player.wings1 = -20; player.wings2 += yc / 1000; if (player.wings2 > 20) player.wings2 = 20; if (player.wings2 < -20) player.wings2 = -20; if (xc == 0) { if (player.wings1 > 0) player.wings1 -= 2; if (player.wings1 < 0) player.wings1 += 2; } if (yc == 0) { if (player.wings2 > 0) player.wings2 -= 2; if (player.wings2 < 0) player.wings2 += 2; } player.x += xc; player.y += yc; if (player.x < X_MIN) player.x = X_MIN; if (player.y < Y_MIN) player.y = Y_MIN; if (player.x > X_MAX) player.x = X_MAX; if (player.y > Y_MAX) player.y = Y_MAX; if (player.ring_index != -1) { player.move_x = 0; player.move_y = 0; if (jangle > ANGLE_16) // && jangle <= ANGLE_8 + ANGLE_16) { player.move_x = 1; player.move_y = 1; } if (jangle > ANGLE_8 + ANGLE_16) // && jangle <= ANGLE_8 + ANGLE_16) { player.move_x = 0; player.move_y = 1; } if (jangle > ANGLE_4 + ANGLE_16) // && jangle <= ANGLE_8 + ANGLE_16) { player.move_x = -1; player.move_y = 1; } if (jangle > ANGLE_4 + ANGLE_8 + ANGLE_16) // && jangle <= ANGLE_8 + ANGLE_16) { player.move_x = -1; player.move_y = 0; } if (jangle > ANGLE_2 + ANGLE_16) // && jangle <= ANGLE_8 + ANGLE_16) { player.move_x = -1; player.move_y = -1; } if (jangle > ANGLE_2 + ANGLE_8 + ANGLE_16) // && jangle <= ANGLE_8 + ANGLE_16) { player.move_x = 0; player.move_y = -1; } if (jangle > ANGLE_2 + ANGLE_4 + ANGLE_16) // && jangle <= ANGLE_8 + ANGLE_16) { player.move_x = 1; player.move_y = -1; } if (jangle > ANGLE_1 - ANGLE_16 || jangle < ANGLE_16) // && jangle <= ANGLE_16) { player.move_x = 1; player.move_y = 0; } /* if (key_right) player.move_x = 1; if (key_left) player.move_x = -1; if (key_down) player.move_y = 1; if (key_up) player.move_y = -1;*/ } } else { if (key[player.key[CKEY_FIRE1]]) multi_fire (0); if (key[player.key[CKEY_FIRE2]]) multi_fire (1); if (key[player.key[CKEY_FIRE3]]) multi_fire (2); if (player.swing_hold == 1 && !key[player.key[CKEY_FIRE1 + player.blade_index]]) player.swing_hold = 0; if (player.ring_hold == 1 && !key[player.key[CKEY_FIRE1 + player.ring_index]]) player.ring_hold = 0; if (key[player.key[CKEY_FIRE1]] || key[player.key[CKEY_FIRE2]] || key[player.key[CKEY_FIRE3]]) player.firing = 1; int moving = MOVE_NO; char key_left = key[player.key[CKEY_LEFT]]; char key_right = key[player.key[CKEY_RIGHT]]; char key_up = key[player.key[CKEY_UP]]; char key_down = key[player.key[CKEY_DOWN]]; if (key_left) { if (key_right || player.x <= X_MIN) xc = 0; else xc = -2000; } else { if (key_right) { if (player.x < X_MAX) xc = 2000; } } if (key_up) { if (key_down || player.y <= Y_MIN) yc = 0; else yc = -2000; } else if (key_down) { if (player.y < Y_MAX - 10000) yc = 2000; } if (xc > 0 && yc > 0) { xc = 1414; yc = 1414; moving = MOVE_DR; } if (xc < 0 && yc > 0) { xc = -1414; yc = 1414; moving = MOVE_DL; } if (xc < 0 && yc < 0) { xc = -1414; yc = -1414; moving = MOVE_UL; } if (xc > 0 && yc < 0) { xc = 1414; yc = -1414; moving = MOVE_UR; } xc *= 3; yc *= 3; player.wings1 += xc / 1000; if (player.wings1 > 20) player.wings1 = 20; if (player.wings1 < -20) player.wings1 = -20; player.wings2 += yc / 1000; if (player.wings2 > 20) player.wings2 = 20; if (player.wings2 < -20) player.wings2 = -20; if (xc == 0) { if (player.wings1 > 0) player.wings1 -= 2; if (player.wings1 < 0) player.wings1 += 2; } if (yc == 0) { if (player.wings2 > 0) player.wings2 -= 2; if (player.wings2 < 0) player.wings2 += 2; } if (key[player.key[CKEY_SLOW]]) { xc /= 2; yc /= 2; } player.x += xc; player.y += yc; if (player.x < X_MIN) player.x = X_MIN; if (player.y < Y_MIN) player.y = Y_MIN; if (player.x > X_MAX) player.x = X_MAX; if (player.y > Y_MAX) player.y = Y_MAX; if (player.ring_index != -1) { player.move_x = 0; player.move_y = 0; if (key_right) player.move_x = 1; if (key_left) player.move_x = -1; if (key_down) player.move_y = 1; if (key_up) player.move_y = -1; } } // end keyboard control } void multi_fire (int m) { if (player.weapon[m] == WPN_BLADE) { #ifdef SHOW_DAMAGE calc_damage (100 + player.wlevel[player.blade_index] * 22, 1000); #endif if (player.swing_state == BLADE_LEFT) { // if (player.recycle > 0) // return; player.swing_state = BLADE_CW_SLASH; player.swing_hold = 1; play_effectwfvx (WAV_WHOOSH, 600, 120, player.x); return; } if (player.swing_state == BLADE_RIGHT) { // if (player.recycle > 0) // return; player.swing_state = BLADE_ACW_SLASH; player.swing_hold = 1; play_effectwfvx (WAV_WHOOSH, 600, 120, player.x); return; } return; } if (player.recycle[m] > 0) return; int angle, b; switch (player.weapon[m]) { case WPN_RECT: b = create_pbullet (PBULLET_RECT); if (b != -1) { pbullet[b].x = player.wx[m]; pbullet[b].y = player.wy[m] - 4000; pbullet[b].x_speed = 0; pbullet[b].y_speed = -5500; pbullet[b].xsize = 9000 + player.wlevel[m] * 500; pbullet[b].ysize = 9000 + player.wlevel[m] * 500; pbullet[b].level = player.wlevel[m]; pbullet[b].dam = 10; pbullet[b].source = m; mflash (b, player.weapon[m], m); } player.recycle[m] = 1000; player.recycle_speed[m] = 15; #ifdef SHOW_DAMAGE calc_damage (pbullet[b].dam, player.recycle_speed[m]); #endif player.wfired = m; // player.wframe_speed = 10; // player.wframe_max = 39; play_effectwfvx (WAV_RECT2, 800, 100, player.x); break; case WPN_CANNON: b = create_pbullet (PBULLET_CANNON); if (b != -1) { pbullet[b].x = player.wx[m]; pbullet[b].y = player.wy[m] - 4000; pbullet[b].x_speed = 0; pbullet[b].y_speed = -7000; pbullet[b].xsize = 9000 + player.wlevel[m] * 500; pbullet[b].ysize = 9000 + player.wlevel[m] * 500; pbullet[b].level = player.wlevel[m]; pbullet[b].dam = 2000 + player.wlevel[m] * 360; pbullet[b].source = m; mflash (b, player.weapon[m], m); } player.recycle[m] = 1000; player.recycle_speed[m] = 15; #ifdef SHOW_DAMAGE calc_damage (pbullet[b].dam, player.recycle_speed[m]); #endif player.wfired = m; // player.wframe_speed = 10; // player.wframe_max = 39; play_effectwfvx (WAV_CANNON, 1300, 250, player.x); break; case WPN_EIGHT: if (player.ring_hold == 0) { if (player.move_x == -1) player.ring_angle = 0; if (player.move_x == 1) player.ring_angle = ANGLE_2; if (player.move_y == -1) player.ring_angle = ANGLE_4; if (player.move_y == 1) player.ring_angle = ANGLE_2 + ANGLE_4; if (player.move_x == -1 && player.move_y == -1) player.ring_angle = ANGLE_8; if (player.move_x == 1 && player.move_y == -1) player.ring_angle = ANGLE_4 + ANGLE_8; if (player.move_x == -1 && player.move_y == 1) player.ring_angle = ANGLE_2 + ANGLE_4 + ANGLE_8; if (player.move_x == 1 && player.move_y == 1) player.ring_angle = ANGLE_2 + ANGLE_8; } b = create_pbullet (PBULLET_RING); if (b != -1) { pbullet[b].x_speed = xpart (player.ring_angle, 6000); pbullet[b].y_speed = ypart (player.ring_angle, 6000); pbullet[b].x = player.wx[m] - pbullet[b].x_speed; pbullet[b].y = player.wy[m] - pbullet[b].y_speed; pbullet[b].xsize = 10000; // need to set this better! pbullet[b].ysize = 10000; pbullet[b].status = 45; pbullet[b].level = player.wlevel[m]; pbullet[b].dam = 120 + player.wlevel[m] * 11; pbullet[b].source = m; mflash (b, player.weapon[m], m); } player.recycle[m] = 1000; player.recycle_speed[m] = 70 + player.wlevel[m] * 6; #ifdef SHOW_DAMAGE calc_damage (pbullet[b].dam, player.recycle_speed[m]); #endif player.wfired = m; player.ring_hold = 1; // player.wframe_speed = 10; // player.wframe_max = 39; // play_effectwfvx(WAV_CANNON, 1300, 250, player.x); play_effectwfvx (WAV_MOUTH, 1250 - player.wlevel[m] * 70, 90, player.x); break; case WPN_MGUN: b = create_pbullet (PBULLET_MGUN); if (b != -1) { pbullet[b].x = player.wx[m] - 4000; pbullet[b].y = player.wy[m] - 13000 - player.wlevel[m] * 1000; pbullet[b].x_speed = 0; pbullet[b].y_speed = -14000; pbullet[b].xsize = 2000; pbullet[b].ysize = 15000; pbullet[b].dam = 70 + player.wlevel[m] * 5; pbullet[b].source = m; pbullet[b].level = player.wlevel[m]; mflash (b, WPN_MGUN, m); } b = create_pbullet (PBULLET_MGUN); if (b != -1) { pbullet[b].x = player.wx[m] + 4000; pbullet[b].y = player.wy[m] - 13000 - player.wlevel[m] * 1000; pbullet[b].x_speed = 0; pbullet[b].y_speed = -14000; pbullet[b].xsize = 2000; pbullet[b].ysize = 15000; pbullet[b].dam = 70 + player.wlevel[m] * 5; pbullet[b].source = m; pbullet[b].level = player.wlevel[m]; mflash (b, WPN_MGUN, m); } player.recycle[m] = 1000; player.recycle_speed[m] = 70 + player.wlevel[m] * 7; #ifdef SHOW_DAMAGE calc_damage (pbullet[b].dam * 2, player.recycle_speed[m]); #endif player.wfired = m; play_effectwfvx (WAV_MGUN, 800, 60, player.x); break; case WPN_LWBEAM: mflash (b, player.weapon[m], m); player.beam_fade[m] = 10; player.beam_counter[m]++; player.beam_open[m]++; if (player.beam_open[m] > 8) player.beam_open[m] = 8; if (player.beam_counter[m] % 15 == 1) play_effectwfvx (WAV_LWBEAM, 1000, 150, player.x); if (player.wstrength[m] == 2 && arena.counter % 2 == 0) { player.beam_counter[m]--; player.beam_flicker[m] = 2; break; } if (player.wstrength[m] == 3 && arena.counter % 3 != 0) { player.beam_flicker[m] = 2; player.beam_counter[m]--; break; } // if (arena.counter % 6 != 0) // break; player.beam_flicker[m] = 0; player.beam[m] = m; beam_collision (m); player.wfired = m; #ifdef SHOW_DAMAGE calc_damage (60 + player.wlevel[m] * 15, 100); // see lwbeam function in pbullet.c for damage #endif break; case WPN_SWBEAM: player.swbeam[m] = 10 + player.wlevel[m]; player.swbeam_level[m] = player.wlevel[m]; player.swbeam_x1[m] = player.wx[m]; player.swbeam_y1[m] = player.wy[m]; mflash (b, player.weapon[m], m); swbeam_collision (m); player.recycle[m] = 1000; player.recycle_speed[m] = 15; player.swbeam_counter[m] = 50; player.wfired = m; play_effectwfvx (WAV_SWBEAM, 1000, 200, player.x); #ifdef SHOW_DAMAGE calc_damage (1400 + player.wlevel[m] * 240, player.recycle_speed[m]); // see swbeam function in pbullet.c for damage #endif break; case WPN_SEEKER: fire_seekers (m); player.recycle[m] = 1000; player.recycle_speed[m] = 17; player.wfired = m; #ifdef SHOW_DAMAGE calc_damage (pbullet[0].dam * (3 + player.wlevel[m]), player.recycle_speed[m]); // see lwbeam function in pbullet.c for damage #endif play_effectwfvx (WAV_WORMS, 2500 - player.wlevel[m] * 100, 90, player.x); break; case WPN_SCATTER: b = create_pbullet (PBULLET_SCATTER); if (b != -1) { pbullet[b].x = player.wx[m]; pbullet[b].y = player.wy[m] - 4000; angle = -ANGLE_4 + grand (ANGLE_16) - grand (ANGLE_16); pbullet[b].angle = angle; pbullet[b].x_speed = xpart (angle, 9000); pbullet[b].y_speed = ypart (angle, 9000); pbullet[b].xsize = 1000; pbullet[b].ysize = 1000; pbullet[b].level = player.wlevel[m]; pbullet[b].dam = 50 + player.wlevel[m] * 6; pbullet[b].source = m; mflash (b, player.weapon[m], m); } player.recycle[m] = 1000; player.recycle_speed[m] = 220 + player.wlevel[m] * 16; #ifdef SHOW_DAMAGE calc_damage (pbullet[b].dam, player.recycle_speed[m]); #endif player.wfired = m; play_effectwfvx (WAV_SCATTER, 800, 50, player.x); break; case WPN_BLADE: break; } } #ifdef SHOW_DAMAGE void calc_damage (int dam, int speed) { damage_per_time = (dam * speed) / 100; } #endif void fire_seekers (int m) { int i; int angles[13] = { ANGLE_2, ANGLE_2 + ANGLE_16, ANGLE_2 - ANGLE_16, ANGLE_2 + ANGLE_8, ANGLE_2 - ANGLE_8, ANGLE_2 + ANGLE_8 + ANGLE_16, ANGLE_2 - ANGLE_8 - ANGLE_16, ANGLE_4, -ANGLE_4, ANGLE_4 - ANGLE_8, -ANGLE_4 + ANGLE_8, ANGLE_4 - ANGLE_16, -ANGLE_4 + ANGLE_16 }; int targets[TARGET_ARRAY_SIZE]; int t; for (t = 0; t < TARGET_ARRAY_SIZE; t++) { targets[t] = -1; } int number = 3 + player.wlevel[m]; //player.charge / 100; int which_angle = 0; if (number % 2 == 0) which_angle = 1; find_enemies (targets, player.x, player.y, number, 0, 0); int b, angle; for (i = 0; i < number; i++) { b = create_pbullet (PBULLET_SEEKER); if (b != -1) { // angle = angles [which_angle] - ANGLE_4; pbullet[b].target = targets[i]; /* pbullet[b].x = player.wx [m]; pbullet[b].y = player.wy [m]; if (pbullet[b].target == -1) { angle = angles [which_angle] - ANGLE_4; } else { angle = radians_to_angle(atan2(pbullet[b].y - enemy[pbullet[b].target].y, pbullet[b].x - enemy[pbullet[b].target].x)) - ANGLE_2; }*/ angle = angles[which_angle] - ANGLE_4; pbullet[b].x = player.wx[m] + xpart (angle, 8000); pbullet[b].y = player.wy[m] + ypart (angle, 8000); // pbullet[b].x += xpart(angle, 8000); // pbullet[b].y += ypart(angle, 8000); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, 0, 0, 25, TCOL_ORANGE, 0); pbullet[b].x_speed = xpart (angle, 5000); pbullet[b].y_speed = ypart (angle, 5000); pbullet[b].angle = angle; pbullet[b].dam = 80; // + player.wlevel [m] * 5; pbullet[b].persist = 1; pbullet[b].timeout = 140; //220 + player.wlevel [m] * 7; pbullet[b].source = m; pbullet[b].level = player.wlevel[m]; } which_angle++; } // play_effectwfvx(player.sides, NWAV_CIRCLE, 400 + number * 50, 100 + number * 15, player.x); } int find_enemies (int targets[TARGET_ARRAY_SIZE], int x, int y, int number, int start_number, int force) { int t; int targets_found = 0; int enemies_found = 0; int e; for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) { enemy[e].distance = 900000; continue; } enemy[e].distance = hypot (enemy[e].y - y, enemy[e].x - x) / 100; enemies_found++; } if (enemies_found == 0) return 0; int closest = -1; int smallest_distance = 900000; for (t = start_number; t < TARGET_ARRAY_SIZE; t++) { for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].distance < smallest_distance) { closest = e; smallest_distance = enemy[e].distance; } } if (smallest_distance == 900000) { return targets_found; } targets[t] = closest; enemy[closest].distance = 900000; targets_found++; closest = -1; smallest_distance = 900000; } return targets_found; } void mflash (int b, int w, int m) { int i, xa, ya, angle; int level = player.wlevel[m]; switch (w) { case WPN_SWBEAM: xa = player.wx[m]; ya = player.wy[m] - 8000; // quick_cloud(CLOUD_CIRCLE1, xa, ya, 0, 0, 15, 8, 0); // quick_cloud(CLOUD_CIRCLE2, xa, ya, 0, 0, 30, 7, 0); angle = 0; for (i = 0; i < 16; i++) { angle += ANGLE_16; // quick_cloud(CLOUD_CIRCLE3, xa, ya, xpart(angle, 2500), ypart(angle, 2500), 35, 8, 970); } quick_cloud (CLOUD_MSHOCK, xa, ya, 0, 0, 20, 0, 0); break; /* case WPN_LWBEAM: angle = grand(ANGLE_1); xa = 2000 + grand(1000); quick_cloud(CLOUD_CIRCLE1, player.wx [m], player.wy [m] - 4000, xpart(angle, xa), ypart(angle, xa), 5 + grand(5), 7, 970); break;*/ case WPN_CANNON: xa = pbullet[b].x; ya = pbullet[b].y; quick_cloud (CLOUD_CIRCLE1, xa, ya, 0, 0, 15 + level, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, xa, ya, 0, 0, 30 + level, TCOL_ORANGE, 0); for (i = 0; i < 4; i++) { quick_cloud (CLOUD_CIRCLE2, xa - 1000 * i, ya, -1000 - i * 1000 - level * 100, i * 400 + level * 30, 20 + i * 4 + level, TCOL_ORANGE, 920); quick_cloud (CLOUD_CIRCLE2, xa + 1000 * i, ya, 1000 + i * 1000 + level * 100, i * 400 + level * 30, 20 + i * 4 + level, TCOL_ORANGE, 920); } break; case WPN_RECT: xa = pbullet[b].x; ya = pbullet[b].y; quick_cloud (CLOUD_CIRCLE1, xa, ya, 0, 0, 15, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, xa, ya, 0, 0, 30, TCOL_ORANGE, 0); angle = -ANGLE_8; for (i = 0; i < 4; i++) { angle += ANGLE_4; quick_cloud (CLOUD_CIRCLE5, xa + xpart (angle, 10000), ya + ypart (angle, 10000), xpart (angle, 3000), ypart (angle, 3000), 60, TCOL_ORANGE, 920); quick_cloud (CLOUD_CIRCLE5, xa + xpart (angle, 10000), ya + ypart (angle, 10000), xpart (angle, 3000), ypart (angle, 3000), 40, TCOL_YELLOW, 920); } break; case WPN_MGUN: xa = pbullet[b].x; ya = pbullet[b].y + player.wlevel[m] * 1000; quick_cloud (CLOUD_CIRCLE2, xa, ya, 0, -1500, 15 + level / 4, TCOL_YELLOW, 930); quick_cloud (CLOUD_CIRCLE3, xa, ya, 0, -1500, 30 + level / 2, TCOL_ORANGE, 930); for (i = 0; i < 4; i++) { quick_cloud (CLOUD_CIRCLE2, xa, ya, 0 - grand (1000) + grand (1000), (i * -1500) - grand (2000), 10 + grand (10) + level, TCOL_ORANGE, 930); } break; case WPN_SCATTER: xa = pbullet[b].x; ya = pbullet[b].y; quick_cloud (CLOUD_CIRCLE1, xa, ya - 7000, 0, -2000, 10 + level / 3, TCOL_YELLOW, 960); quick_cloud (CLOUD_CIRCLE2, xa, ya - 7000, 0, -2000, 20 + level / 1, TCOL_ORANGE, 960); /* angle = grand(ANGLE_1); for (i = 0; i < 6; i ++) { quick_cloud(CLOUD_CIRCLE5, xa, ya, xpart(angle, 2000), + ypart(angle, 2000), 12 + grand(12), 7, 970); angle += ANGLE_6; angle &= 1023; }*/ break; case WPN_EIGHT: xa = pbullet[b].x; ya = pbullet[b].y; quick_cloud (CLOUD_PRING, xa, ya, 0, 0, 135, 0, 0); break; } } /* **************************************************** Joystick routines **************************************************** */ void init_joystick (void) { options.joystick = 0; if (install_joystick (JOY_TYPE_AUTODETECT) != 0) return; if (num_joysticks == 0) return; // if (options.joy_analogue) // analogmode = TRUE; // else options.joystick = 1; } void jstick_calibrate (void) { AL_CONST char *msg; if (num_joysticks == 0) return; if (joy[0].flags & JOYFLAG_CALIBRATE) {/* We need to calibrate the joystick */ while (joy[0].flags & JOYFLAG_CALIBRATE) { vsync (); clear_bitmap (screen); msg = calibrate_joystick_name (0); textprintf_centre_ex (screen, font, 320, 170, -1, -1, "%s", msg); textprintf_centre_ex (screen, font, 320, 200, -1, -1, "AND PRESS SPACE"); do { rest(10); } while (readkey() != (KEY_SPACE << 8)); if (calibrate_joystick (0) != 0) return; } }/* the joystick is OK even without calibration */ else { rectfill (screen, 120, 200, 510, 250, COL_OUTLINE); rect (screen, 121, 201, 509, 249, COL_COL1); textprintf_centre_ex (screen, font, 320, 219, -1, -1, "YOUR JOYSTICK DOES NOT NEED CALIBRATION"); vsync (); rest(2000); } return; } void jstick_to_keypressed(void) { poll_joystick(); if (joy[0].stick[options.joy_stick].axis[0].d1) { simulate_keypress(KEY_LEFT << 8); } if (joy[0].stick[options.joy_stick].axis[0].d2) { simulate_keypress(KEY_RIGHT << 8); } if (joy[0].stick[options.joy_stick].axis[1].d1) { simulate_keypress(KEY_UP << 8); } if (joy[0].stick[options.joy_stick].axis[1].d2) { simulate_keypress(KEY_DOWN << 8); } if (joy[0].button[options.joy_button[0]].b) { simulate_keypress(KEY_ENTER << 8); } } garden-1.0.9/src/enemy.c0000644000175000017500000057031712457263274012003 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include "allegro.h" #include "globvars.h" #include "stuff.h" #include "ebullet.h" #include "sound.h" #include "palette.h" #include "cloud.h" #include #include "stuff.h" #include "level.h" int create_enemy (int type); void destroy_enemy (int e); void enemy_explode (int e); void move_enemy (int e); void enemy_fire (int e); int attack_angle (int e); void move_dancer (int e); void move_diver (int e); void move_dswooper (int e); void move_stopper (int e); void move_cruiser (int e); void move_dart_stopper (int e); void move_drifter (int e); void move_walker (int e); void set_cord_colour (int b); int get_e_angle (int e, int x, int y); void drag_enemy (int e, int drag); void drag_enemy_y (int e, int drag); int hurt_enemy (int e, int dam, int source); void register_destroyed (int e); void allocate_xp (int e); void gain_score (int s); void part_explode (int e); void launch_part (int pe, int index, int se, int xs, int ys); void parts_must_explode (int e); void enemy_pulse (int e, int p_event); void enemy_pulse_slow (int e, int p_event); void set_wpixels (void); void delay_cloud (int x, int y, int col, int delay, int size); int fire_dart (int x, int y, int angle, int colour, int wait, int accel); int fire_diamond (int x, int y, int angle, int colour, int speed, int rot, int wait); int fire_ddart (int x, int y, int angle, int colour, int wait, int accel); int fire_wing_diamond (int x, int y, int angle, int colour, int speed, int wait); int fire_seed (int x, int y, int angle, int colour, int wait, int accel); int fire_seed2 (int x, int y, int angle, int colour, int wait, int accel); int fire_burst (int x, int y, int angle, int colour, int speed, int wait); int fire_stream (int x, int y, int angle, int colour, int speed, int wait); int fire_sdart (int x, int y, int angle, int colour, int wait, int accel); int fire_dot (int x, int y, int angle, int colour, int size, int speed, int wait); int fire_beam (int e, int dist); int fire_beam2 (int e, int angle, int dist, int time); int fire_curve (int x, int y, int angle, int colour, int speed, int rot, int wait); int fire_tracker (int x, int y, int angle, int colour, int size, int speed); void petal_turn (int e, int p, int target_angle, int accel, int max_speed); void track_target (int e, int x, int y, int angle, int turn); void track_target_zero (int e, int x, int y, int angle, int turn); void move_darter (int e); int next_enemy; void move_boss (int e); void run_boss1 (int e); void arrange_boss1 (int sides, int sides2, int up, int out); void boss1_attack1 (int e, int stat); void boss1_attack2 (int e, int stat); void boss1_attack3 (int e, int stat); void boss1_turrets (int e, int fire); void boss2_attack1 (int e, int stat); void boss2_attack2 (int e, int stat); void boss2_attack3 (int e, int stat); void boss2_attack4 (int e, int stat); void boss2_turrets (int e, int fire); int boss2_beam (int e, int dist, int x1, int y1, int angle, int stat); void run_boss3 (int e); void arrange_boss3 (int speed1, int out1, int speed2, int out2, int speed3, int out3); void boss3_finish_firing (int e); void boss3_attack1 (int e, int stat); void boss3_attack2 (int e, int stat); void boss3_attack3 (int e, int stat); void boss3_attack4 (int e, int stat); void run_boss4 (int e); void run_boss4_spin (int e); void boss4_sides_fire (int e); void boss4_outer_fire (int e); void run_boss2 (int e); void arrange_boss2 (int sides, int sides2); void init_enemies (void) { int e; for (e = 0; e < NO_ENEMIES; e++) { enemy[e].type = ENEMY_NONE; } next_enemy = 5; } /* Tries to create an enemy, and returns its index if successful (or -1 if not). The calling function can use that index to set the enemy's properties. */ int create_enemy (int type) { int e; for (e = 0; e < NO_ENEMIES + 1; e++) { if (e == NO_ENEMIES) return -1; if (enemy[e].type == ENEMY_NONE) break; } enemy[e].type = type; enemy[e].persist = 0; enemy[e].recycle = 40; enemy[e].hp = eclass[type].max_hp; enemy[e].pulse1 = 0; enemy[e].pulse2 = 0; enemy[e].whurt[0] = 0; enemy[e].whurt[1] = 0; enemy[e].whurt[2] = 0; enemy[e].parent = -1; enemy[e].status = 0; enemy[e].angle_turning_count = 2; enemy[e].angle1_turning_count = 2; enemy[e].escorting = -1; int i; for (i = 0; i < NO_PARTS; i++) { enemy[e].part[i] = -1; } return e; } void run_enemies (void) { int e; /* // maybe we want to create an enemy! next_enemy --; if (next_enemy <= 0) { e = create_enemy(ENEMY_EXAMPLE); if (e != -1) { enemy[e].x = grand(600000) + 20000; enemy[e].y = grand(440000) + 20000; enemy[e].x_speed = grand(5000) - 2500; enemy[e].y_speed = grand(5000) - 2500; } // for now we'll rely on create_enemy failing if there are too many enemies. next_enemy = 500; } */ // now let's run through all enemies and make them work: for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; switch (eclass[enemy[e].type].ai) { case AI_SWOOPER: case AI_HOOK: move_dancer (e); break; case AI_WALK: move_walker (e); break; case AI_DSWOOPER: move_dswooper (e); break; case AI_DARTER: move_darter (e); break; case AI_STOPPER: move_stopper (e); break; case AI_DIVER: move_diver (e); break; case AI_DART_STOPPER: move_dart_stopper (e); break; case AI_DRIFTER: move_drifter (e); break; case AI_CRUISER: move_cruiser (e); break; case AI_BOSS: move_boss (e); break; } if (enemy[e].persist == 0 && (enemy[e].x <= (eclass[enemy[e].type].xsize * -1) - 50000 || enemy[e].y <= (eclass[enemy[e].type].ysize * -1) - 50000 || (enemy[e].x >= 690000 + eclass[enemy[e].type].xsize) || enemy[e].y >= 530000 + eclass[enemy[e].type].ysize)) { register_destroyed (e); destroy_enemy (e); } /* switch(enemy[e].type) { case ENEMY_EXAMPLE: enemy[e].recycle --; if (enemy[e].recycle <= 0) { enemy_fire(e); enemy[e].recycle = 20 + grand(5); } move_enemy(e); break; } */ } } void move_boss (int e) { if (boss.hp_bar_size < 100) boss.hp_bar_size++; switch (enemy[e].type) { case ENEMY_BOSS1: run_boss1 (e); break; case ENEMY_BOSS2: run_boss2 (e); break; case ENEMY_BOSS3: run_boss3 (e); break; case ENEMY_BOSS4: run_boss4 (e); break; } } void run_boss1 (int e) { boss.phase_count--; boss.recycle--; if (boss.recycle < 0) boss.recycle = 0; if (boss.phase_count <= 0) { switch (boss.phase) { case 0: boss.phase = 1; boss.phase_count = 20; break; case 1: boss.phase = 2; boss.phase_count = 20; break; case 2: if (boss.hp > (boss.max_hp / 4) * 3 || grand (4) == 0) boss.phase = 3; else { boss.phase = 6 + grand (2); } // boss.phase = 7; boss.phase_count = 300; break; case 3: boss.phase = 4; boss.phase_count = 20; break; case 4: boss.phase = 5; boss.phase_count = 3000; enemy[e].x_target[0] = 150000 + grand (390000); enemy[e].y_target[0] = 120000 + grand (80000); enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); enemy[e].x_speed = 0; enemy[e].y_speed = 0; break; // 5 is move and has its own finishing conditions case 6: boss.phase = 4; boss.phase_count = 20; break; case 7: boss.phase = 4; boss.phase_count = 20; break; } } switch (boss.phase) { case 0: // entering; boss.recycle++; break; case 1: // unfold 1 drag_enemy (e, 950); arrange_boss1 (0, 1, 0, 0); boss.recycle++; boss1_turrets (e, 0); break; case 2: // unfold 2 drag_enemy (e, 950); arrange_boss1 (1, 1, 1, -1); boss.recycle++; boss1_turrets (e, 0); break; case 3: // basic attack drag_enemy (e, 950); arrange_boss1 (1, 1, 1, -1); if (boss.recycle <= 0) { if (synch_ready[EVENT_STOPPER1_FIRE]) { synch_done[DONE_STOPPER1_FIRE] |= FIRE1_BOSS1_1; boss1_attack1 (e, boss.status); boss.recycle = 170 - arena.difficulty * 50; } } boss1_turrets (e, 1); break; case 4: // refold drag_enemy (e, 950); arrange_boss1 (-1, -1, -1, -1); boss.recycle++; boss1_turrets (e, 0); break; case 5: // move drag_enemy (e, 950); boss.recycle++; arrange_boss1 (-1, -1, -1, -1); enemy[e].x_speed += xpart (enemy[e].angle, 250); enemy[e].y_speed += ypart (enemy[e].angle, 250); if (enemy[e].x > enemy[e].x_target[0] - 20000 && enemy[e].x < enemy[e].x_target[0] + 20000 && enemy[e].y > enemy[e].y_target[0] - 20000 && enemy[e].y < enemy[e].y_target[0] + 20000) { boss.phase = 1; boss.phase_count = 20; boss.recycle = 1; } boss1_turrets (e, 0); break; case 6: // attack2 drag_enemy (e, 950); arrange_boss1 (1, 1, 1, 1); if (boss.recycle <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_DARTER2; boss1_attack2 (e, boss.status); boss.recycle = 30 - arena.difficulty * 7; } } boss1_turrets (e, 1); break; case 7: // attack3 drag_enemy (e, 950); arrange_boss1 (1, 1, -1, 1); if (boss.recycle <= 0) { if (synch_ready[EVENT_STOPPER1_FIRE]) { synch_done[DONE_STOPPER1_FIRE] |= FIRE1_BOSS1_1; boss1_attack3 (e, boss.status); boss.recycle = 170 - arena.difficulty * 50; } } boss1_turrets (e, 1); break; } move_enemy (e); } void boss1_attack1 (int e, int stat) { int i, angle; angle = 0; int angle1; int xa; switch (stat) { case 0: angle = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 80, 50 + abs (xpart (angle * 2, 30))); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_64, EBCOL_B5, 100, 30 + abs (xpart ((angle + ANGLE_64) * 2, 10))); } boss.status = 1; break; case 1: angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 80, 50 + ypart (angle * 2 + angle1, 30)); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_64, EBCOL_B5, 100, 30 + abs (ypart ((angle + ANGLE_64) * 2 + angle1, 10))); } boss.status = grand (4); break; case 2: angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 80, 50 + ypart (angle * 2 + angle1, 15) + abs (xpart (angle * 4, 15))); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_64, EBCOL_B5, 100, 30 + abs (ypart ((angle + ANGLE_64) * 2 + angle1 * 4, 10)) + abs (xpart (angle * 4, 10))); } boss.status = grand (4); break; case 3: angle1 = grand (ANGLE_1); xa = 8; if (grand (2) == 0) xa = 4; for (i = 0; i < 32; i++) { angle += ANGLE_32; fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 80, 50 + ypart (angle * 2 + angle1, 10) + abs (xpart (angle * xa, 25))); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_64, EBCOL_B5, 100, 30 + abs (ypart ((angle + ANGLE_64) * 2 + angle1 * 4, 5)) + abs (xpart (angle * xa, 15))); } boss.status = grand (4); break; } } void boss1_attack2 (int e, int stat) { int i, angle; angle = 0; angle = grand (ANGLE_1); for (i = 0; i < 3 + arena.difficulty; i++) { fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B5, 80, 60 + i * 20); angle += ANGLE_3; fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B5, 80, 60 + i * 20); angle += ANGLE_3; fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B5, 80, 60 + i * 20); angle -= ANGLE_3; angle -= ANGLE_3; angle += ANGLE_32; } } void boss1_attack3 (int e, int stat) { int i, angle; angle = 0; int angle1; angle = grand (ANGLE_1); angle1 = ANGLE_1 / 10; stat = 3; switch (stat) { case 0: for (i = 0; i < 10; i++) { fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B4, 80, 30); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B4, 80, 80); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_32, EBCOL_B4, 80, 45); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle - ANGLE_32, EBCOL_B4, 80, 45); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_64, EBCOL_B4, 80, 65); fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle - ANGLE_64, EBCOL_B4, 80, 65); fire_diamond (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B5, 1600, 0, 80); angle += angle1; } boss.status = grand (3); break; case 1: if (arena.difficulty == 2) { for (i = 0; i < 128; i++) { if ((i & 4) ^ (i & 5)) fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B5, 60, 60 + xpart (i * 8, 40)); else fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 60, 45 + xpart (i * 8, 20)); angle += ANGLE_64; } } else { for (i = 0; i < 64; i++) { if ((i & 4) ^ (i & 5)) fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B5, 60, 60 + xpart (i * 16, 40)); else fire_dart (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 60, 45 + xpart (i * 16, 20)); angle += ANGLE_32; } } boss.status = grand (3); break; case 3: if (arena.difficulty == 2) { for (i = 0; i < 20; i++) { fire_diamond (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B2, 2200 + xpart (i * 25, 600), xpart (i * 25, 8), 80); fire_diamond (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_1 / 51, EBCOL_B1, 2000 + xpart (i * 25, 600), xpart (i * 25 + ANGLE_2, 12), 40); fire_diamond (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_1 / 51, EBCOL_B1, 2400 + xpart (i * 25, 600), xpart (i * 25 + ANGLE_2, 12), 40); angle += ANGLE_1 / 20; } } else { for (i = 0; i < 12; i++) { fire_diamond (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B2, 2200 + xpart (i * 21, 600), xpart (i * 21, 8), 80); fire_diamond (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_1 / 21, EBCOL_B1, 2000 + xpart (i * 21, 600), xpart (i * 21 + ANGLE_2, 12), 40); fire_diamond (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle + ANGLE_1 / 21, EBCOL_B1, 2400 + xpart (i * 21, 600), xpart (i * 21 + ANGLE_2, 12), 40); angle += ANGLE_1 / 12; } } boss.status = grand (3); break; } } // ignores fire setting when badly hurt void boss1_turrets (int e, int fire) { int angle, tangle, i; if (boss.t_recycle[0] > 0) boss.t_recycle[0]--; int firing; if (boss.hp < boss.max_hp / 3) { boss.t_angle[0] -= 6; boss.t_angle[0] &= 1023; boss.t_angle[1] += 6; boss.t_angle[1] &= 1023; if (boss.t_recycle[0] <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { firing = boss.t_status; if (boss.t_status == 1) boss.t_status = 0; else boss.t_status = 1; synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_BOSS1_2; if (firing == 0) { fire_dart (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0], 13000), enemy[e].y + ypart (boss.t_angle[0], 13000), boss.t_angle[0], EBCOL_B2, 50, 60 + arena.difficulty * 20); fire_dart (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1], 13000), enemy[e].y + ypart (boss.t_angle[1], 13000), boss.t_angle[1], EBCOL_B2, 50, 60 + arena.difficulty * 20); fire_dart (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0] + ANGLE_2, 13000), enemy[e].y + ypart (boss.t_angle[0] + ANGLE_2, 13000), boss.t_angle[0] + ANGLE_2, EBCOL_B2, 50, 60 + arena.difficulty * 20); fire_dart (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1] + ANGLE_2, 13000), enemy[e].y + ypart (boss.t_angle[1] + ANGLE_2, 13000), boss.t_angle[1] + ANGLE_2, EBCOL_B2, 50, 60 + arena.difficulty * 20); /* fire_diamond(enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart(boss.t_angle [0], 13000), enemy[e].y + ypart(boss.t_angle [0], 13000), boss.t_angle [0], EBCOL_B2, 1900 + arena.difficulty * 300, 0, 50); fire_diamond(enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart(boss.t_angle [1], 13000), enemy[e].y + ypart(boss.t_angle [1], 13000), boss.t_angle [1], EBCOL_B2, 1900 + arena.difficulty * 300, 0, 50); fire_diamond(enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart(boss.t_angle [0] + ANGLE_2, 13000), enemy[e].y + ypart(boss.t_angle [0] + ANGLE_2, 13000), boss.t_angle [0] + ANGLE_2, EBCOL_B2, 1900 + arena.difficulty * 300, 0, 50); fire_diamond(enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart(boss.t_angle [1] + ANGLE_2, 13000), enemy[e].y + ypart(boss.t_angle [1] + ANGLE_2, 13000), boss.t_angle [1] + ANGLE_2, EBCOL_B2, 1900 + arena.difficulty * 300, 0, 50);*/ } else { fire_dart (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1], 13000), enemy[e].y + ypart (boss.t_angle[1], 13000), boss.t_angle[1], EBCOL_B1, 50, 40 + arena.difficulty * 15); fire_dart (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0], 13000), enemy[e].y + ypart (boss.t_angle[0], 13000), boss.t_angle[0], EBCOL_B1, 50, 40 + arena.difficulty * 15); fire_dart (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1] + ANGLE_2, 13000), enemy[e].y + ypart (boss.t_angle[1] + ANGLE_2, 13000), boss.t_angle[1] + ANGLE_2, EBCOL_B1, 50, 40 + arena.difficulty * 15); fire_dart (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0] + ANGLE_2, 13000), enemy[e].y + ypart (boss.t_angle[0] + ANGLE_2, 13000), boss.t_angle[0] + ANGLE_2, EBCOL_B1, 50, 40 + arena.difficulty * 15); /* fire_diamond(enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart(boss.t_angle [1], 13000), enemy[e].y + ypart(boss.t_angle [1], 13000), boss.t_angle [1], EBCOL_B1, 1300 + arena.difficulty * 250, 0, 50); fire_diamond(enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart(boss.t_angle [0], 13000), enemy[e].y + ypart(boss.t_angle [0], 13000), boss.t_angle [0], EBCOL_B1, 1300 + arena.difficulty * 250, 0, 50); fire_diamond(enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart(boss.t_angle [1] + ANGLE_2, 13000), enemy[e].y + ypart(boss.t_angle [1] + ANGLE_2, 13000), boss.t_angle [1] + ANGLE_2, EBCOL_B1, 1300 + arena.difficulty * 250, 0, 50); fire_diamond(enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart(boss.t_angle [0] + ANGLE_2, 13000), enemy[e].y + ypart(boss.t_angle [0] + ANGLE_2, 13000), boss.t_angle [0] + ANGLE_2, EBCOL_B1, 1300 + arena.difficulty * 250, 0, 50);*/ } boss.t_recycle[0] = 5 - arena.difficulty; return; } } return; } for (i = 0; i < 2; i++) { angle = boss.t_angle[i]; if (i == 0) { tangle = radians_to_angle (atan2 ((player.y - enemy[e].y), (player.x - (enemy[e].x - 71000 - boss.out_sides2 * 1000)))); } else tangle = radians_to_angle (atan2 ((player.y - enemy[e].y), (player.x - (enemy[e].x + 71000 + boss.out_sides2 * 1000)))); if (tangle < 0) tangle += ANGLE_1; if (tangle > ANGLE_1) tangle -= ANGLE_1; if ((angle < tangle && tangle > angle + ANGLE_2) || (angle > tangle && tangle > angle - ANGLE_2)) { boss.t_angle_turning[i] -= 2; if (boss.t_angle_turning[i] < -8) boss.t_angle_turning[i] = -8; } else { boss.t_angle_turning[i] += 2; if (boss.t_angle_turning[i] > 8) boss.t_angle_turning[i] = 8; } boss.t_angle[i] += boss.t_angle_turning[i]; boss.t_angle[i] &= 1023; } if (fire == 0) return; if (boss.t_recycle[0] <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { firing = boss.t_status; if (boss.t_status == 1) boss.t_status = 0; else boss.t_status = 1; if (boss.hp < (boss.max_hp / 3) * 2) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_SWOOPER2; if (firing == 0) { fire_diamond (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0], 13000), enemy[e].y + ypart (boss.t_angle[0], 13000), boss.t_angle[0], EBCOL_B2, 1700 + arena.difficulty * 300, 0, 50); fire_diamond (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0], 13000), enemy[e].y + ypart (boss.t_angle[0], 13000), boss.t_angle[0] - ANGLE_32, EBCOL_B2, 1600 + arena.difficulty * 250, -8, 50); fire_diamond (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0], 13000), enemy[e].y + ypart (boss.t_angle[0], 13000), boss.t_angle[0] + ANGLE_32, EBCOL_B2, 1600 + arena.difficulty * 250, 8, 50); } else { fire_diamond (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1], 13000), enemy[e].y + ypart (boss.t_angle[1], 13000), boss.t_angle[1], EBCOL_B2, 1700 + arena.difficulty * 300, 0, 50); fire_diamond (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1], 13000), enemy[e].y + ypart (boss.t_angle[1], 13000), boss.t_angle[1] - ANGLE_32, EBCOL_B2, 1600 + arena.difficulty * 250, 8, 50); fire_diamond (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1], 13000), enemy[e].y + ypart (boss.t_angle[1], 13000), boss.t_angle[1] + ANGLE_32, EBCOL_B2, 1600 + arena.difficulty * 250, -8, 50); } boss.t_recycle[0] = 20 - arena.difficulty * 5; return; } synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_SWOOPER1; if (firing == 0) fire_dart (enemy[e].x - 71000 - boss.out_sides2 * 1000 + xpart (boss.t_angle[0], 13000), enemy[e].y + ypart (boss.t_angle[0], 13000), boss.t_angle[0], EBCOL_B1, 50, 80 + arena.difficulty * 10); else fire_dart (enemy[e].x + 71000 + boss.out_sides2 * 1000 + xpart (boss.t_angle[1], 13000), enemy[e].y + ypart (boss.t_angle[1], 13000), boss.t_angle[1], EBCOL_B1, 50, 80 + arena.difficulty * 10); boss.t_recycle[0] = 20 - arena.difficulty * 5; return; } } // may have returned by here! } void arrange_boss1 (int sides, int sides2, int up, int out) { if (sides > 0) { if ((boss.phase_count & 1) && boss.out_sides < 10) boss.out_sides++; } if (sides < 0) { if ((boss.phase_count & 1) && boss.out_sides > 0) boss.out_sides--; } if (sides2 > 0) { if (boss.out_sides2 < 25) boss.out_sides2++; } if (sides2 < 0) { if (boss.out_sides2 > 0) boss.out_sides2--; } if (up > 0) { if ((boss.phase_count & 1) && boss.out_up < 10) boss.out_up++; } if (up < 0) { if ((boss.phase_count & 1) && boss.out_up > 0) boss.out_up--; } if (out > 0) { if (boss.out_out_up < 18) boss.out_out_up++; } if (out < 0) { if (boss.out_out_up > 0) boss.out_out_up--; } } /* **************************************************************** BOSS2 **************************************************************** */ void run_boss2 (int e) { quick_cloud (CLOUD_CIRCLE1, enemy[e].x, enemy[e].y + 74000, enemy[e].x_speed + grand (500) - grand (500), enemy[e].y_speed + 3500 + grand (2500), 8 + grand (8), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE1, enemy[e].x, enemy[e].y + 85000, enemy[e].x_speed + grand (500) - grand (500), enemy[e].y_speed + 3500 + grand (2500), 17 + grand (17), TCOL_SH2, 0); boss.phase_count--; boss.recycle--; if (boss.recycle < 0) boss.recycle = 0; if (boss.phase_count <= 0) { switch (boss.phase) { case 0: boss.phase = 1; boss.phase_count = 20; break; case 1: boss.phase = 3; boss.phase_count = 400; boss.status = 0; break; case 2: boss.phase = 2 + grand (3); boss.phase_count = 400; boss.status = 0; break; case 3: boss.phase = 2 + grand (3); boss.phase_count = 400; boss.status = 0; break; case 4: boss.phase = 2 + grand (3); boss.phase_count = 400; boss.status = 0; break; } } if (boss.hp < boss.max_hp / 4) { boss.phase = 5; boss.phase_count = 300; } if (boss.phase > 1) { drag_enemy (e, 960); enemy[e].x_speed += xpart (enemy[e].angle, 250); enemy[e].y_speed += ypart (enemy[e].angle, 250); if (enemy[e].x > enemy[e].x_target[0] - 40000 && enemy[e].x < enemy[e].x_target[0] + 40000 && enemy[e].y > enemy[e].y_target[0] - 40000 && enemy[e].y < enemy[e].y_target[0] + 40000) { enemy[e].x_target[0] = 150000 + grand (390000); enemy[e].y_target[0] = 120000 + grand (80000); enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); } if ((boss.phase_count & 32) && (enemy[e].x < 80000 || enemy[e].x > 560000 || enemy[e].y < 80000 || enemy[e].y > 350000)) { enemy[e].x_target[0] = 150000 + grand (390000); enemy[e].y_target[0] = 120000 + grand (80000); enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); } } switch (boss.phase) { case 0: // entering; boss.recycle++; break; case 1: // unfold 1 drag_enemy (e, 950); arrange_boss2 (1, 0); boss.recycle++; boss2_turrets (e, 0); break; case 2: // basic attack drag_enemy (e, 960); arrange_boss2 (1, -1); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE2_2]) { synch_done[DONE_FIRE2_2] |= FIRE2_BOSS2_1; boss2_attack1 (e, boss.status); boss.recycle = 170 - arena.difficulty * 50; } } boss2_turrets (e, 1); break; case 3: // attack2 drag_enemy (e, 960); arrange_boss2 (-1, 1); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE2_1]) { synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; boss2_attack2 (e, boss.status); boss.recycle = 30 - arena.difficulty * 7; } } boss2_turrets (e, 1); break; case 4: // basic attack drag_enemy (e, 960); arrange_boss2 (1, 1); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE2_2]) { synch_done[DONE_FIRE2_2] |= FIRE2_BOSS2_2; boss2_attack3 (e, boss.status); boss.recycle = 170 - arena.difficulty * 50; } } boss2_turrets (e, 1); break; case 5: // attack2 drag_enemy (e, 940); arrange_boss2 (1, 1); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE2_1]) { synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; boss2_attack4 (e, boss.status); boss.recycle = 20 - arena.difficulty * 5; } } boss2_turrets (e, 1); break; } move_enemy (e); } void arrange_boss2 (int sides, int sides2) { if (sides > 0) { if ((boss.phase_count & 3) && boss.out_sides < 4) boss.out_sides++; } if (sides < 0) { if ((boss.phase_count & 3) && boss.out_sides > 0) boss.out_sides--; } if (sides2 > 0) { if ((boss.phase_count & 1) && boss.out_sides2 < 4) boss.out_sides2++; } if (sides2 < 0) { if ((boss.phase_count & 1) && boss.out_sides2 > 0) boss.out_sides2--; } } void boss2_attack1 (int e, int stat) { int i, angle; angle = 0; int angle1; switch (stat) { case 0: angle = grand (ANGLE_1); angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; angle1 += ANGLE_32; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 9, 3000 + xpart (angle1 * 6, 1000), 7); // fire_dot(enemy[e].x + xpart(angle, 15000) + xpart(angle - ANGLE_3, 25000), enemy[e].y + ypart(angle, 15000) + ypart(angle - ANGLE_3, 25000), angle, EBCOL_B2, 3, 3000 + xpart(angle * 8, 1000), 7); // fire_dot(enemy[e].x + xpart(angle, 15000) + xpart(angle + ANGLE_3, 25000), enemy[e].y + ypart(angle, 15000) + ypart(angle + ANGLE_3, 25000), angle, EBCOL_B2, 3, 3000 + xpart(angle * 8, 1000), 7); // fire_dot(enemy[e].x + xpart(angle, 40000), enemy[e].y + ypart(angle, 30000), angle, EBCOL_B2, 3, 3000 + xpart(angle * 8, 1000), 7); fire_dot (enemy[e].x + xpart (angle, 1000), enemy[e].y + ypart (angle, 1000), angle, EBCOL_B3, 4, 3000 + xpart (angle1 * 6, 1000), 7); } boss.status = 1; break; case 1: angle = grand (ANGLE_1); angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; angle1 += ANGLE_32; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 9, 3000 + xpart (angle1 * 6, 1000), 7); fire_dot (enemy[e].x + xpart (angle, 1000), enemy[e].y + ypart (angle, 1000), angle, EBCOL_B3, 4, 3000 + xpart (angle1 * 6, 1000), 7); } angle = grand (ANGLE_1); angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; angle1 += ANGLE_32; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B2, 9, 2000 + xpart (angle1 * 6, 600), 7); fire_dot (enemy[e].x + xpart (angle, 1000), enemy[e].y + ypart (angle, 1000), angle, EBCOL_B2, 4, 2000 + xpart (angle1 * 6, 600), 7); } boss.status = 2; break; case 2: angle = grand (ANGLE_1); angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; angle1 += ANGLE_32; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, 9, 3000 + xpart (angle1 * 6, 1000), 7); fire_dot (enemy[e].x + xpart (angle, 1000), enemy[e].y + ypart (angle, 1000), angle, EBCOL_B3, 4, 3000 + xpart (angle1 * 6, 1000), 7); } angle = grand (ANGLE_1); angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; angle1 += ANGLE_32; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B2, 9, 2000 + xpart (angle1 * 6, 600), 7); fire_dot (enemy[e].x + xpart (angle, 1000), enemy[e].y + ypart (angle, 1000), angle, EBCOL_B2, 4, 2000 + xpart (angle1 * 6, 600), 7); } angle = grand (ANGLE_1); angle1 = grand (ANGLE_1); for (i = 0; i < 32; i++) { angle += ANGLE_32; angle1 += ANGLE_32; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B1, 9, 1000 + xpart (angle1 * 6, 300), 7); fire_dot (enemy[e].x + xpart (angle, 1000), enemy[e].y + ypart (angle, 1000), angle, EBCOL_B1, 4, 1000 + xpart (angle1 * 6, 300), 7); } boss.status = 2; break; } } void boss2_attack2 (int e, int stat) { int i, j, angle; angle = 0; angle = grand (ANGLE_1); for (j = 0; j < 5; j++) { for (i = 0; i < 4 + arena.difficulty; i++) { fire_dot (enemy[e].x + xpart (angle, i * 11000), enemy[e].y + ypart (angle, i * 11000), angle, EBCOL_B5, 7, 2000 + i * 400, 7); if (i > 0) { if (i & 1) fire_dot (enemy[e].x + xpart (angle, i * 11000) + xpart (angle - ANGLE_3, 19000), enemy[e].y + ypart (angle, i * 11000) + ypart (angle - ANGLE_3, 19000), angle, EBCOL_B3, 4, 1800 + i * 400, 1); else fire_dot (enemy[e].x + xpart (angle, i * 11000) + xpart (angle + ANGLE_3, 19000), enemy[e].y + ypart (angle, i * 11000) + ypart (angle + ANGLE_3, 19000), angle, EBCOL_B3, 4, 1800 + i * 400, 1); } } angle += ANGLE_5; angle &= 1023; } } #define ANGLE_48 21 #define ANGLE_96 42 #define B2_SIZE1 8 #define B2_SIZE2 6 void boss2_attack3 (int e, int stat) { int i, angle; angle = 0; int angle1; switch (stat) { case 0: angle = grand (ANGLE_4) - ANGLE_4 - ANGLE_8; angle1 = grand (ANGLE_1); for (i = 0; i < 48; i++) { angle += ANGLE_48; angle1 += ANGLE_48; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, B2_SIZE1 + xpart (angle1 * 4, B2_SIZE2), 4000, 7); } boss.status = 1; break; case 1: angle = grand (ANGLE_4) - ANGLE_4 - ANGLE_8; angle1 = grand (ANGLE_1); for (i = 0; i < 48; i++) { angle += ANGLE_48; angle1 += ANGLE_96; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, B2_SIZE1 + xpart (angle1 * 4, B2_SIZE2), 4000, 7); } angle = grand (ANGLE_4) - ANGLE_4 - ANGLE_8; angle1 = grand (ANGLE_1); for (i = 0; i < 48; i++) { angle += ANGLE_48; angle1 += ANGLE_96; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B2, B2_SIZE1 + xpart (angle1 * 4, B2_SIZE2), 3000, 7); } boss.status = 2; break; case 2: angle = grand (ANGLE_4) - ANGLE_4 - ANGLE_8; angle1 = grand (ANGLE_1); for (i = 0; i < 48; i++) { angle += ANGLE_48; angle1 += ANGLE_96; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B3, B2_SIZE1 + xpart (angle1 * 4, B2_SIZE2), 4000, 7); } angle = grand (ANGLE_4) - ANGLE_4 - ANGLE_8; angle1 = grand (ANGLE_1); for (i = 0; i < 48; i++) { angle += ANGLE_48; angle1 += ANGLE_96; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B2, B2_SIZE1 + xpart (angle1 * 4, B2_SIZE2), 3000, 7); } angle = grand (ANGLE_4) - ANGLE_4 - ANGLE_8; angle1 = grand (ANGLE_1); for (i = 0; i < 48; i++) { angle += ANGLE_48; angle1 += ANGLE_96; fire_dot (enemy[e].x + xpart (angle, 19000), enemy[e].y + ypart (angle, 19000), angle, EBCOL_B1, B2_SIZE1 + xpart (angle1 * 4, B2_SIZE2), 2000, 7); } boss.status = 2; break; } } void boss2_attack4 (int e, int stat) { int i, angle; angle = 0; for (i = 0; i < 12 + arena.difficulty * 4; i++) { angle = grand (ANGLE_1); fire_dot (enemy[e].x + xpart (angle, 3000), enemy[e].y + ypart (angle, 3000), angle, EBCOL_B1 + grand (3), 5 + grand (3), 2000 + grand (3000), 2 + grand (7)); } } void boss2_turrets (int e, int fire) { int angle, tangle, i; if (boss.t_recycle[0] > 0) boss.t_recycle[0]--; int firing; for (i = 0; i < 4; i++) { if (boss.t_beam[i] > 0) continue; angle = boss.t_angle[i]; if (i == 0) { tangle = radians_to_angle (atan2 ((player.y - enemy[e].y), (player.x - (enemy[e].x - 71000 - boss.out_sides2 * 1000)))); } else tangle = radians_to_angle (atan2 ((player.y - enemy[e].y), (player.x - (enemy[e].x + 71000 + boss.out_sides2 * 1000)))); tangle &= 1023; if ((angle < tangle && tangle > angle + ANGLE_2) || (angle > tangle && tangle > angle - ANGLE_2)) { boss.t_angle_turning[i] -= 2; if (boss.t_angle_turning[i] < -8) boss.t_angle_turning[i] = -8; } else { boss.t_angle_turning[i] += 2; if (boss.t_angle_turning[i] > 8) boss.t_angle_turning[i] = 8; } boss.t_angle[i] += boss.t_angle_turning[i]; boss.t_angle[i] &= 1023; } int x, y, a; for (i = 0; i < 4; i++) { if (boss.t_beam[i] == 0) continue; a = boss.t_angle[i]; switch (i) { case 0: x = enemy[e].x - 53000; y = enemy[e].y + 40000; break; case 1: x = enemy[e].x + 32000; y = enemy[e].y - 20000; break; case 2: x = enemy[e].x + 53000; y = enemy[e].y + 40000; break; case 3: x = enemy[e].x - 32000; y = enemy[e].y - 20000; break; } x += xpart (a, 7000); y += ypart (a, 7000); boss2_beam (e, 1, x, y, a, boss.t_beam[i]); boss.t_beam[i]--; if (boss.t_beam[i] == 90) boss.t_beam[i] = 30; if (arena.difficulty < 2 && (arena.counter & 1) == 0 && (boss.t_beam[i] < 20 || boss.t_beam[i] > 100)) boss.t_beam[i]++; if (arena.difficulty == 2 && (arena.counter & 3) == 0 && (boss.t_beam[i] < 20 || boss.t_beam[i] > 100)) boss.t_beam[i]++; } if (fire == 0) return; if (boss.t_recycle[0] <= 0) { if (boss.hp < boss.max_hp / 4 && boss.phase == 5) { if (synch_ready[EVENT_FIRE2_2]) { firing = boss.t_status; boss.t_status += boss.t_status_change; if (boss.t_status == 4) boss.t_status = 0; if (boss.t_status == -1) boss.t_status = 3; if (grand (20) == 0) boss.t_status_change *= -1; if (boss.t_beam[firing] > 0) return; boss.t_beam[firing] = 120; synch_done[DONE_FIRE2_2] |= FIRE2_BEAMER; } return; } if (synch_ready[EVENT_FIRE2_1]) { firing = boss.t_status; boss.t_status += boss.t_status_change; if (boss.t_status == 4) boss.t_status = 0; if (boss.t_status == -1) boss.t_status = 3; if (grand (20) == 0) boss.t_status_change *= -1; a = boss.t_angle[firing]; switch (firing) { case 0: x = enemy[e].x - 53000; y = enemy[e].y + 40000; break; case 1: x = enemy[e].x + 32000; y = enemy[e].y - 20000; break; case 2: x = enemy[e].x + 53000; y = enemy[e].y + 40000; break; case 3: x = enemy[e].x - 32000; y = enemy[e].y - 20000; break; } x += xpart (a, 7000); y += ypart (a, 7000); int which = 0; if (boss.hp < (boss.max_hp / 4) * 3) which = 1; if (boss.hp < (boss.max_hp / 2)) which = 2; switch (which) { default: synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; fire_dot (x + xpart (a, 15000), y + ypart (a, 15000), a, EBCOL_B5, 8, 4000, 0); fire_dot (x, y, a, EBCOL_B5, 3, 3900, 5); boss.t_recycle[0] = 20 - arena.difficulty * 5; synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; break; case 1: synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; fire_dot (x, y, a, EBCOL_B5, 10, 3000, 5); fire_dot (x, y, a + ANGLE_32, EBCOL_B4, 7, 3000, 0); fire_dot (x, y, a - ANGLE_32, EBCOL_B4, 7, 3000, 0); fire_dot (x, y, a + ANGLE_16, EBCOL_B3, 4, 3000, 0); fire_dot (x, y, a - ANGLE_16, EBCOL_B3, 4, 3000, 0); boss.t_recycle[0] = 35 - arena.difficulty * 7; synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; break; case 2: for (i = 0; i < 8 + arena.difficulty * 2; i++) { a = boss.t_angle[firing] + grand (ANGLE_32) - grand (ANGLE_32); fire_dot (x, y, a, EBCOL_B3, 8 + grand (4), 2000 + grand (1000), 0); fire_dot (x, y, a, EBCOL_B2, 5 + grand (4), 2000 + grand (1000), 0); fire_dot (x, y, a, EBCOL_B1, 2 + grand (4), 2000 + grand (1000), 0); } boss.t_recycle[0] = 60 - arena.difficulty * 10; synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; break; } return; } } // may have returned by here! } int boss2_beam (int e, int dist, int x1, int y1, int angle, int stat) { int length = 1; int x = x1, y = y1; do { length++; x += xpart (angle, 45000); y += ypart (angle, 45000); if (x > 690000 || x < -50000 || y > 530000 || y < -50000) break; } while (TRUE); int b = create_ebullet (EBULLET_BEAM); if (b != -1) { angle &= 1023; if (stat > 100 || stat < 20) { ebullet[b].x = x1 + xpart (angle, dist + 4000); ebullet[b].y = y1 + ypart (angle, dist + 4000); } else { ebullet[b].x = x1 + xpart (angle, dist + 4000 - (stat % 6) * GRAIN * 4); ebullet[b].y = y1 + ypart (angle, dist + 4000 - (stat % 6) * GRAIN * 4); } ebullet[b].status = length; ebullet[b].angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = x1 + xpart (angle, dist); ebullet[b].y_speed = y1 + ypart (angle, dist); ebullet[b].timeout = 2; ebullet[b].angle2 = stat; if (stat > 100) ebullet[b].angle2 = 120 - stat; return b; } return -1; } /* **************************************************************** BOSS3 **************************************************************** */ void run_boss3 (int e) { boss.phase_count--; boss.recycle--; if (boss.recycle < 0) boss.recycle = 0; if (boss.phase_count <= 0) { switch (boss.phase) { case 0: boss.phase = 1; boss.phase_count = 50; break; case 1: enemy[e].y_speed = 0; enemy[e].x_speed = 0; boss.phase2 = 1; boss3_finish_firing (e); break; case 2: case 3: case 4: case 5: case 6: boss3_finish_firing (e); break; } } /* if (boss.hp < boss.max_hp / 4) { boss.phase = 5; boss.phase_count = 300; }*/ int i; for (i = 0; i < 3; i++) { boss.petal_angle[i] += boss.petal_speed[i]; boss.petal_angle[i] &= 1023; } if (boss.phase > 1) { // enemy[e].x_speed += xpart(enemy[e].angle, 250); // enemy[e].y_speed += ypart(enemy[e].angle, 250); } boss.next_small--; if (boss.next_small <= 0) { boss.next_small = 80 - arena.difficulty * 15; if (grand (2)) create_boss3_dancer (ENEMY_SMALL); else create_boss3_dancer (ENEMY_SMALL2); } switch (boss.phase) { case 0: // entering; boss.recycle++; break; case 1: // unfold 1 drag_enemy (e, 960); // arrange_boss3(1, 0); arrange_boss3 (-8, 220, 7, 90, -3, 150); boss.recycle++; break; case 2: // movement drag_enemy (e, 960); arrange_boss3 (8, 180, -8, 200, -6, 160); enemy[e].x_speed += xpart (enemy[e].angle, 100); enemy[e].y_speed += ypart (enemy[e].angle, 100); if (enemy[e].y < 50 && boss.phase_count > 5) boss.phase_count = 4; break; case 3: // attack1 arrange_boss3 (-4, 70, 6, 180, 3, 120); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE3_1]) { synch_done[DONE_FIRE3_1] |= FIRE3_BOSS3_1; boss3_attack1 (e, boss.status); boss.recycle = 20 - arena.difficulty * 4; } } drag_enemy (e, 960); break; case 4: // attack2 arrange_boss3 (3, 60, -4, 80, 4, 100); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE3_1]) { synch_done[DONE_FIRE3_1] |= FIRE3_BOSS3_2; boss3_attack2 (e, boss.status); boss.recycle = 20 - arena.difficulty * 4; } } drag_enemy (e, 960); break; case 5: // attack3 arrange_boss3 (-6, 120, 2, 110, 5, 170); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE3_2]) { synch_done[DONE_FIRE3_2] |= FIRE3_BOSS3_3; boss3_attack3 (e, boss.status); boss.recycle = 20 - arena.difficulty * 4; } } drag_enemy (e, 960); break; case 6: // attack4 arrange_boss3 (2, 180, 4, 120, -8, 70); if (boss.recycle <= 0) { if (synch_ready[EVENT_FIRE3_2]) { synch_done[DONE_FIRE3_2] |= FIRE3_BOSS3_4; boss3_attack4 (e, boss.status); boss.recycle = 40 - arena.difficulty * 9; } } drag_enemy (e, 960); break; /* case 2: // basic attack // arrange_boss2(1, -1); if (boss.recycle <= 0) { if (synch_ready [EVENT_FIRE2_2]) { synch_done [DONE_FIRE2_2] |= FIRE2_BOSS2_1; boss2_attack1(e, boss.status); boss.recycle = 170 - arena.difficulty * 50; } } boss2_turrets(e, 1); break; case 3: // attack2 drag_enemy(e, 960); arrange_boss2(-1, 1); if (boss.recycle <= 0) { if (synch_ready [EVENT_FIRE2_1]) { synch_done [DONE_FIRE2_1] |= FIRE2_DRIFTER1; boss2_attack2(e, boss.status); boss.recycle = 30 - arena.difficulty * 7; } } boss2_turrets(e, 1); break; case 4: // basic attack drag_enemy(e, 960); arrange_boss2(1, 1); if (boss.recycle <= 0) { if (synch_ready [EVENT_FIRE2_2]) { synch_done [DONE_FIRE2_2] |= FIRE2_BOSS2_2; boss2_attack3(e, boss.status); boss.recycle = 170 - arena.difficulty * 50; } } boss2_turrets(e, 1); break; case 5: // attack2 drag_enemy(e, 940); arrange_boss2(1, 1); if (boss.recycle <= 0) { if (synch_ready [EVENT_FIRE2_1]) { synch_done [DONE_FIRE2_1] |= FIRE2_DRIFTER1; boss2_attack4(e, boss.status); boss.recycle = 20 - arena.difficulty * 5; } } break;*/ } move_enemy (e); } void boss3_attack1 (int e, int stat) { int i, angle; angle = 0; int angle1; angle = grand (ANGLE_1); angle1 = ANGLE_2 + ANGLE_4; for (i = 0; i < 8; i++) { angle1 += ANGLE_16; angle1 &= 1023; fire_dart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle, EBCOL_B3, 80, 50 + xpart (angle1, 5 + boss.status)); angle += ANGLE_2; fire_dart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle, EBCOL_B5, 80, 50 + xpart (angle1, 5 + boss.status)); angle -= ANGLE_2; angle += ANGLE_32; angle &= 1023; } boss.status += 5; if (boss.status > 35) boss.status = 35; } void boss3_attack2 (int e, int stat) { int i, angle; angle = 0; angle = grand (ANGLE_1); for (i = 0; i < 5; i++) { fire_ddart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle, EBCOL_B5, 60, 90); fire_dart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle + ANGLE_32, EBCOL_B4, 50, 80); fire_dart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle - ANGLE_32, EBCOL_B4, 50, 80); fire_sdart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle + ANGLE_16, EBCOL_B3, 40, 70); fire_sdart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle - ANGLE_16, EBCOL_B3, 40, 70); angle += ANGLE_5; angle &= 1023; } } void boss3_attack3 (int e, int stat) { int i, angle; angle = 0; int angle1; // if (boss.status angle = boss.status; for (i = 0; i < 4; i++) { angle1 = angle; if (arena.difficulty > 0) fire_ddart (enemy[e].x + xpart (angle1, 9000), enemy[e].y + ypart (angle1, 9000), angle1, EBCOL_B5, 50, 90); angle1 += ANGLE_16; fire_dart (enemy[e].x + xpart (angle1, 9000), enemy[e].y + ypart (angle1, 9000), angle1, EBCOL_B4, 50, 80); angle1 += ANGLE_16; fire_sdart (enemy[e].x + xpart (angle1, 9000), enemy[e].y + ypart (angle1, 9000), angle1, EBCOL_B3, 40, 70); angle += ANGLE_4; angle &= 1023; } boss.status += 30; boss.status &= 1023; } void boss3_attack4 (int e, int stat) { int i, angle; for (i = 0; i < 4 + arena.difficulty; i++) { angle = grand (ANGLE_1); fire_seed2 (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), grand (ANGLE_1), EBCOL_B5, 18 + grand (20), 2000 + grand (2500)); } } void boss3_finish_firing (int e) { if (boss.phase == 2) boss.phase2 = 2 + grand (2); boss.phase2--; if (boss.phase2 <= 0) { boss.phase = 2; boss.phase_count = 40 + grand (40); if (enemy[e].x <= 320000 && enemy[e].y <= 100000) enemy[e].angle = grand (ANGLE_16); if (enemy[e].x > 320000 && enemy[e].y <= 100000) enemy[e].angle = ANGLE_2 - grand (ANGLE_16); if (enemy[e].x <= 320000 && enemy[e].y > 100000) enemy[e].angle = ANGLE_2 + ANGLE_4 + ANGLE_8 + ANGLE_16 + grand (ANGLE_16); if (enemy[e].x > 320000 && enemy[e].y > 100000) enemy[e].angle = grand (ANGLE_16) + ANGLE_2; return; } boss.phase = 3 + grand (4); boss.phase_count = 200 + grand (100); boss.status = 0; if (boss.phase == 5) boss.status = grand (ANGLE_1); } void arrange_boss3 (int speed1, int out1, int speed2, int out2, int speed3, int out3) { if (boss.petal_speed[0] > speed1) boss.petal_speed[0]--; if (boss.petal_speed[0] < speed1) boss.petal_speed[0]++; if (boss.petal_speed[1] > speed2) boss.petal_speed[1]--; if (boss.petal_speed[1] < speed2) boss.petal_speed[1]++; if (boss.petal_speed[2] > speed3) boss.petal_speed[2]--; if (boss.petal_speed[2] < speed3) boss.petal_speed[2]++; if (boss.petal_out[0] > out1) boss.petal_out[0] -= 1; if (boss.petal_out[0] < out1) boss.petal_out[0] += 1; if (boss.petal_out[1] > out2) boss.petal_out[1] -= 1; if (boss.petal_out[1] < out2) boss.petal_out[1] += 1; if (boss.petal_out[2] > out3) boss.petal_out[2] -= 1; if (boss.petal_out[2] < out3) boss.petal_out[2] += 1; } void run_boss4 (int e) { boss.phase_count--; boss.recycle--; if (boss.recycle < 0) boss.recycle = 0; if (boss.phase_count <= 0) { switch (boss.phase) { case 0: boss.phase = 1; break; } } if (boss.phase > 0) { drag_enemy (e, 920); enemy[e].x_speed += xpart (enemy[e].angle, 200); enemy[e].y_speed += ypart (enemy[e].angle, 200); if (enemy[e].x > enemy[e].x_target[0] - 40000 && enemy[e].x < enemy[e].x_target[0] + 40000 && enemy[e].y > enemy[e].y_target[0] - 40000 && enemy[e].y < enemy[e].y_target[0] + 40000) { enemy[e].x_target[0] = 100000 + grand (440000); enemy[e].y_target[0] = 120000 + grand (180000); enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); } if ((boss.phase_count & 32) && (enemy[e].x < 80000 || enemy[e].x > 560000 || enemy[e].y < 80000 || enemy[e].y > 350000)) { enemy[e].x_target[0] = 100000 + grand (440000); enemy[e].y_target[0] = 120000 + grand (180000); enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); } } if (boss.phase > 0) { run_boss4_spin (e); if (boss.spin_size < 12) boss.spin_size++; if (boss.spin_rad < 135) boss.spin_rad++; boss.spin_angle += 4; boss.spin_angle &= 1023; if (boss.hp < boss.max_hp / 2) { if (boss.spin_size2 < 12) boss.spin_size2++; if (boss.spin_rad2 < 135) boss.spin_rad2++; boss.spin_counter++; boss.spin_counter &= 1023; boss.spin_angle2 += xpart (boss.spin_counter * 2, 8); boss.spin_angle2 &= 1023; if (boss.hp < boss.max_hp / 3) { if (boss.spin_size3 < 7) boss.spin_size3++; if (boss.spin_rad3 < 85) boss.spin_rad3++; } } } switch (boss.phase) { case 0: if (enemy[e].y > 100000) { boss.phase_count = 1; } break; case 1: boss4_sides_fire (e); boss4_outer_fire (e); break; } move_enemy (e); } void run_boss4_spin (int e) { int b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x - 70000; ebullet[b].y = enemy[e].y - 61000; ebullet[b].x_speed = boss.spin_size; // if (ebullet[b].x_speed > 6) // ebullet[b].x_speed = 6; ebullet[b].y_speed = 5; ebullet[b].status = boss.spin_rad; ebullet[b].angle = boss.spin_angle; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B3; ebullet[b].accel = TCOL_B2; ebullet[b].cord_colour = TRANS_B2_OUT; } b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x + 70000; ebullet[b].y = enemy[e].y - 61000; ebullet[b].x_speed = boss.spin_size; // if (ebullet[b].x_speed > 6) // ebullet[b].x_speed = 6; ebullet[b].y_speed = 5; ebullet[b].status = boss.spin_rad; ebullet[b].angle = ANGLE_1 - boss.spin_angle; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B3; ebullet[b].accel = TCOL_B2; ebullet[b].cord_colour = TRANS_B2_OUT; } if (boss.hp > boss.max_hp / 2) return; b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x; ebullet[b].y = enemy[e].y + 25000; ebullet[b].x_speed = boss.spin_size2; // if (ebullet[b].x_speed > 6) // ebullet[b].x_speed = 6; ebullet[b].y_speed = 3; ebullet[b].status = boss.spin_rad2; // if (ebullet[b].status > 100) // ebullet[b].status = 100; ebullet[b].angle = boss.spin_angle2; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B4; ebullet[b].accel = TCOL_B3; ebullet[b].cord_colour = TRANS_B3_OUT; } if (boss.hp > boss.max_hp / 3) return; int i; int angle = boss.spin_angle2; for (i = 0; i < 3; i++) { b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x + xpart (angle, boss.spin_rad2 * GRAIN); ebullet[b].y = enemy[e].y + 25000 + ypart (angle, boss.spin_rad2 * GRAIN); ebullet[b].x_speed = boss.spin_size3; ebullet[b].y_speed = 3; ebullet[b].status = boss.spin_rad3; ebullet[b].angle = ANGLE_1 - boss.spin_angle2; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B2; ebullet[b].accel = TCOL_B1; ebullet[b].cord_colour = TRANS_B1_OUT; } angle += ANGLE_3; } } void boss4_outer_fire (int e) { if (boss.recycle > 0) return; int angle = grand (ANGLE_1); int i; switch (boss.outer_fire_type) { default: case 0: if (synch_ready[EVENT_FIRE4_2]) { synch_done[DONE_FIRE4_2] |= FIRE4_WALKER; for (i = 0; i < 6; i++) { fire_dart (enemy[e].x - 70000 + xpart (angle, 10000), enemy[e].y - 61000 + ypart (angle, 10000), angle, EBCOL_B2, 50, 90); fire_curve (enemy[e].x - 70000 + xpart (angle, 10000), enemy[e].y - 61000 + ypart (angle, 10000), angle + ANGLE_12 / 2, EBCOL_B3, 3000, xpart (angle * 2, 8), 5); angle += ANGLE_2; fire_dart (enemy[e].x + 70000 + xpart (angle, 10000), enemy[e].y - 61000 + ypart (angle, 10000), angle, EBCOL_B2, 50, 90); fire_curve (enemy[e].x + 70000 + xpart (angle, 10000), enemy[e].y - 61000 + ypart (angle, 10000), angle + ANGLE_12 / 2, EBCOL_B3, 3000, xpart (angle * 2, 8), 5); angle += ANGLE_6; angle -= ANGLE_2; angle &= 1023; } boss.recycle = 120 - arena.difficulty * 10; boss.outer_fire_count--; } break; case 1: if (synch_ready[EVENT_FIRE4_1]) { synch_done[DONE_FIRE4_1] |= FIRE4_DROPPER; angle = attack_angle (e); i = pos_or_neg (4 + grand (4)); fire_curve (enemy[e].x - 70000 + xpart (angle, 10000), enemy[e].y - 61000 + ypart (angle, 10000), angle, EBCOL_B1, 3000, i, 5); i *= -1; fire_curve (enemy[e].x + 70000 + xpart (angle, 10000), enemy[e].y - 61000 + ypart (angle, 10000), angle, EBCOL_B1, 3000, i, 5); boss.recycle = 40 - arena.difficulty * 10; boss.outer_fire_count--; } break; } if (boss.outer_fire_count <= 0) { if (boss.outer_fire_type == 0) boss.outer_fire_type = 1; else boss.outer_fire_type = 0; boss.outer_fire_count = 10 + grand (5); } } void boss4_sides_fire (int e) { boss.sides_recycle--; if (boss.sides_recycle > 0) return; int angle = grand (ANGLE_1); if (boss.hp < (boss.max_hp / 3)) { if (synch_ready[EVENT_FIRE4_2]) { synch_done[DONE_FIRE4_2] |= FIRE4_HUNTER; fire_tracker (enemy[e].x - 77000, enemy[e].y - 8000, ANGLE_2 + ANGLE_64, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x - 80000, enemy[e].y + 24000, ANGLE_2 - ANGLE_32, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x - 68000, enemy[e].y + 50000, ANGLE_2 - ANGLE_16, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x - 45000, enemy[e].y + 70000, ANGLE_2 - ANGLE_8, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 77000, enemy[e].y - 8000, ANGLE_1 - ANGLE_64, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 80000, enemy[e].y + 24000, ANGLE_32, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 68000, enemy[e].y + 50000, ANGLE_16, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 45000, enemy[e].y + 70000, ANGLE_8, EBCOL_B2, 4, 500); boss.sides_recycle = 80; // - arena.difficulty * 15; } return; } if (boss.hp < (boss.max_hp / 3) * 2) { if (synch_ready[EVENT_FIRE4_1]) { synch_done[DONE_FIRE4_1] |= FIRE4_HOOK; fire_ddart (enemy[e].x - 77000, enemy[e].y - 8000, angle - 60, EBCOL_B2, 70, 80); fire_ddart (enemy[e].x - 80000, enemy[e].y + 24000, angle - 40, EBCOL_B2, 70, 77); fire_ddart (enemy[e].x - 68000, enemy[e].y + 50000, angle - 20, EBCOL_B2, 70, 74); fire_ddart (enemy[e].x - 45000, enemy[e].y + 70000, angle, EBCOL_B2, 70, 70); angle = ANGLE_1 - angle + ANGLE_2; fire_ddart (enemy[e].x + 77000, enemy[e].y - 8000, angle + 60, EBCOL_B2, 70, 90); fire_ddart (enemy[e].x + 80000, enemy[e].y + 24000, angle + 40, EBCOL_B2, 70, 77); fire_ddart (enemy[e].x + 68000, enemy[e].y + 50000, angle + 20, EBCOL_B2, 70, 74); fire_ddart (enemy[e].x + 45000, enemy[e].y + 70000, angle, EBCOL_B2, 70, 70); boss.sides_recycle = 40 - arena.difficulty * 10; } return; } if (synch_ready[EVENT_FIRE4_1]) { synch_done[DONE_FIRE4_1] |= FIRE4_HOOK2; fire_dart (enemy[e].x - 77000, enemy[e].y - 8000, angle + 60, EBCOL_B5, 70, 50); fire_dart (enemy[e].x - 80000, enemy[e].y + 24000, angle + 40, EBCOL_B5, 70, 50); fire_dart (enemy[e].x - 68000, enemy[e].y + 50000, angle + 20, EBCOL_B5, 70, 50); fire_dart (enemy[e].x - 45000, enemy[e].y + 70000, angle, EBCOL_B5, 70, 50); angle = ANGLE_1 - angle + ANGLE_2; fire_dart (enemy[e].x + 77000, enemy[e].y - 8000, angle - 60, EBCOL_B5, 70, 50); fire_dart (enemy[e].x + 80000, enemy[e].y + 24000, angle - 40, EBCOL_B5, 70, 50); fire_dart (enemy[e].x + 68000, enemy[e].y + 50000, angle - 20, EBCOL_B5, 70, 50); fire_dart (enemy[e].x + 45000, enemy[e].y + 70000, angle, EBCOL_B5, 70, 50); boss.sides_recycle = 40 - arena.difficulty * 10; } } // RANK - remember boss.hp!!!!!!!!!!!!!!!!!!!!! /* void boss2_attack3(int e, int stat) { int i, angle; angle = 0; int angle1; int xa; switch(stat) { case 0: angle = grand(ANGLE_1); angle1 = grand(ANGLE_1); for (i = 0; i < 64; i ++) { angle += ANGLE_64; angle1 += ANGLE_64; fire_dot(enemy[e].x + xpart(angle, 19000), enemy[e].y + ypart(angle, 19000), angle, EBCOL_B3, 7 + xpart(angle1 * 6, 6), 4000, 7); } boss.status = 1; break; case 1: angle = grand(ANGLE_1); angle1 = grand(ANGLE_1); for (i = 0; i < 64; i ++) { angle += ANGLE_128; angle1 += ANGLE_128; fire_dot(enemy[e].x + xpart(angle, 19000), enemy[e].y + ypart(angle, 19000), angle, EBCOL_B3, 7 + xpart(angle1 * 6, 6), 4000, 7); angle += ANGLE_128; fire_dot(enemy[e].x + xpart(angle, 19000), enemy[e].y + ypart(angle, 19000), angle, EBCOL_B2, 7 + xpart(angle1 * 6, 6), 2500, 7); } boss.status = 2; break; case 2: angle = grand(ANGLE_1); angle1 = grand(ANGLE_1); for (i = 0; i < 64; i ++) { angle += ANGLE_128; angle1 += ANGLE_128; fire_dot(enemy[e].x + xpart(angle, 19000), enemy[e].y + ypart(angle, 19000), angle, EBCOL_B3, 7 + xpart(angle1 * 6, 6), 4000, 7); angle += 4; fire_dot(enemy[e].x + xpart(angle, 19000), enemy[e].y + ypart(angle, 19000), angle, EBCOL_B2, 7 + xpart(angle1 * 6, 6), 2500, 7); angle += 4; fire_dot(enemy[e].x + xpart(angle, 19000), enemy[e].y + ypart(angle, 19000), angle, EBCOL_B1, 7 + xpart(angle1 * 6, 6), 1300, 7); } boss.status = 2; break; } } */ void move_dswooper (int e) { enemy[e].recycle--; if (enemy[e].recycle == 0) { if (enemy[e].y < 470000) { // create_cloud(w, CLOUD_EXPLODE, 0, enemy[e].x, enemy[e].y, enemy[e].x_speed, enemy[e].y_speed, 14 + grand(5)); enemy_fire (e); } enemy[e].recycle = 100; } switch (enemy[e].type) { } if (enemy[e].target_time > 0 && enemy[e].x_target[enemy[e].target] != -1) enemy[e].target_time--; else { if (enemy[e].x_target[enemy[e].target] != -1) { enemy[e].target_time = enemy[e].max_target_time; enemy[e].target++; enemy[e].recycle = 30; } } if (enemy[e].x / 15000 == enemy[e].x_target[enemy[e].target] / 15000 && enemy[e].y / 15000 == enemy[e].y_target[enemy[e].target] / 15000) { if (enemy[e].x_target[enemy[e].target] != -1) { enemy[e].target_time = enemy[e].max_target_time; enemy[e].target++; // enemy[e].recycle = 30; } } if (enemy[e].x_target[enemy[e].target] != -1 && enemy[e].y < 470000) { track_target (e, enemy[e].x_target[enemy[e].target], enemy[e].y_target[enemy[e].target], enemy[e].angle1, eclass[enemy[e].type].speed2); enemy[e].angle1 &= 1023; } enemy[e].x_speed = xpart (enemy[e].angle1, eclass[enemy[e].type].speed1); enemy[e].y_speed = ypart (enemy[e].angle1, eclass[enemy[e].type].speed1); if (enemy[e].x_target[enemy[e].target] == -1) enemy[e].persist = 0; move_enemy (e); } void move_dancer (int e) { char ready_to_fire = 0; int angle; if (enemy[e].recycle > 0) enemy[e].recycle--; if (enemy[e].recycle <= 0) { if (enemy[e].y < 470000) { // create_cloud(w, CLOUD_EXPLODE, 0, enemy[e].x, enemy[e].y, enemy[e].x_speed, enemy[e].y_speed, 14 + grand(5)); // enemy_fire(e); ready_to_fire = 1; } } switch (enemy[e].type) { case ENEMY_SWOOPER2: if (ready_to_fire) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { angle = attack_angle (e); fire_dart (enemy[e].x, enemy[e].y, angle, EBCOL_B2, 50, 100); // fire_dart(enemy[e].x, enemy[e].y, angle + ANGLE_32, EBCOL_B5, 50, 80); // fire_dart(enemy[e].x, enemy[e].y, angle - ANGLE_32, EBCOL_B5, 50, 80); enemy[e].recycle = 140 - arena.difficulty * 50 + grand (20); synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_SWOOPER2; } } enemy_pulse (e, EVENT_PULSE); break; case ENEMY_SWOOPER1: if (ready_to_fire) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { enemy_fire (e); enemy[e].recycle = 160 - arena.difficulty * 30; synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_SWOOPER1; } } enemy_pulse (e, EVENT_PULSE); break; case ENEMY_SMALL: if (ready_to_fire) { if (synch_ready[EVENT_FIRE3_1]) // && (synch_done [DONE_FIRE3_1] & FIRE3_SMALL) == 0) { enemy_fire (e); enemy[e].recycle = 50 - arena.difficulty * 20; synch_done[DONE_FIRE3_1] |= FIRE3_SMALL; } } petal_turn (e, 0, enemy[e].angle1 + ANGLE_2, 3, 8); petal_turn (e, 1, enemy[e].angle1 + ANGLE_2 - ANGLE_6, 3, 8); petal_turn (e, 2, enemy[e].angle1 + ANGLE_2 + ANGLE_6, 3, 8); // petal_turn(e, 1, enemy[e].angle1 - ANGLE_3, 2, 8); // petal_turn(e, 2, enemy[e].angle1 + ANGLE_3, 2, 8); enemy_pulse (e, EVENT_PULSE1); break; case ENEMY_SMALL2: if (ready_to_fire) { if (synch_ready[EVENT_FIRE3_2]) { fire_dart (enemy[e].x, enemy[e].y, attack_angle (e), EBCOL_B4, 30, 110 + arena.difficulty * 10); enemy[e].recycle = 30 - arena.difficulty * 10; synch_done[DONE_FIRE3_2] |= FIRE3_SMALL2; } } petal_turn (e, 0, enemy[e].angle1 + ANGLE_2, 4, 12); petal_turn (e, 1, enemy[e].angle1 + ANGLE_2 - ANGLE_6, 4, 12); petal_turn (e, 2, enemy[e].angle1 + ANGLE_2 + ANGLE_6, 4, 12); // petal_turn(e, 1, enemy[e].angle1 - ANGLE_3, 2, 8); // petal_turn(e, 2, enemy[e].angle1 + ANGLE_3, 2, 8); enemy_pulse (e, EVENT_PULSE1); break; case ENEMY_HOOK: if (ready_to_fire) { if (synch_ready[EVENT_FIRE4_1]) { fire_curve (enemy[e].x - 8000, enemy[e].y, attack_angle (e), EBCOL_B2, 4000, pos_or_neg (3 + grand (4)), 2); fire_curve (enemy[e].x + 8000, enemy[e].y, attack_angle (e), EBCOL_B2, 4000, pos_or_neg (3 + grand (4)), 2); enemy[e].recycle = 160 - arena.difficulty * 30; synch_done[DONE_FIRE4_1] |= FIRE4_HOOK; } } enemy_pulse_slow (e, EVENT_PULSE); break; case ENEMY_HOOK2: if (ready_to_fire) { if (synch_ready[EVENT_FIRE4_1]) { fire_curve (enemy[e].x - 11000, enemy[e].y, attack_angle (e), EBCOL_B5, 4600, pos_or_neg (5 + grand (4)), 2); fire_curve (enemy[e].x + 11000, enemy[e].y, attack_angle (e), EBCOL_B5, 4600, pos_or_neg (5 + grand (4)), 2); enemy[e].recycle = 150 - arena.difficulty * 35; synch_done[DONE_FIRE4_1] |= FIRE4_HOOK2; } } enemy_pulse_slow (e, EVENT_PULSE); break; } if (enemy[e].target_time > 0 && enemy[e].x_target[enemy[e].target] != -1) enemy[e].target_time--; else { if (enemy[e].x_target[enemy[e].target] != -1) { enemy[e].target_time = enemy[e].max_target_time; enemy[e].target++; enemy[e].recycle = 30; } } if (enemy[e].x / 15000 == enemy[e].x_target[enemy[e].target] / 15000 && enemy[e].y / 15000 == enemy[e].y_target[enemy[e].target] / 15000) { if (enemy[e].x_target[enemy[e].target] != -1) { enemy[e].target_time = enemy[e].max_target_time; enemy[e].target++; // enemy[e].recycle = 30; } } if (enemy[e].x_target[enemy[e].target] != -1 && enemy[e].y < 470000) { track_target (e, enemy[e].x_target[enemy[e].target], enemy[e].y_target[enemy[e].target], enemy[e].angle1, eclass[enemy[e].type].speed2); enemy[e].angle1 %= ANGLE_1; } enemy[e].x_speed = xpart (enemy[e].angle1, eclass[enemy[e].type].speed1); enemy[e].y_speed = ypart (enemy[e].angle1, eclass[enemy[e].type].speed1); move_enemy (e); if (enemy[e].x_target[enemy[e].target] == -1) enemy[e].persist = 0; } void petal_turn (int e, int p, int target_angle, int accel, int max_speed) { target_angle &= 1023; if ((enemy[e].petal_angle[p] < target_angle && target_angle > enemy[e].petal_angle[p] + ANGLE_2) || (enemy[e].petal_angle[p] > target_angle && target_angle > enemy[e].petal_angle[p] - ANGLE_2)) { enemy[e].petal_angle_speed[p] -= accel; if (enemy[e].petal_angle_speed[p] < max_speed * -1) enemy[e].petal_angle_speed[p] = max_speed * -1; enemy[e].petal_angle[p] += enemy[e].petal_angle_speed[p]; enemy[e].petal_angle[p] &= 1023; return; } enemy[e].petal_angle_speed[p] += accel; if (enemy[e].petal_angle_speed[p] > max_speed) enemy[e].petal_angle_speed[p] = max_speed; enemy[e].petal_angle[p] += enemy[e].petal_angle_speed[p]; enemy[e].petal_angle[p] &= 1023; } void enemy_pulse (int e, int p_event) { if (synch_ready[p_event] == 1) enemy[e].pulse2 = 1; if (enemy[e].pulse2 == 1) // outwards { enemy[e].pulse1 += 2; if (enemy[e].pulse1 >= 3) { enemy[e].pulse1 = 3; enemy[e].pulse2 = 2; } } else { if (enemy[e].pulse2 == 2 && arena.counter % 2 == 0) // inwards { enemy[e].pulse1--; if (enemy[e].pulse1 <= 0) { enemy[e].pulse1 = 0; enemy[e].pulse2 = 0; } } } } void enemy_pulse_slow (int e, int p_event) { if (synch_ready[p_event] == 1) enemy[e].pulse2 = 1; if (enemy[e].pulse2 == 1) // outwards { enemy[e].pulse1 += 2; if (enemy[e].pulse1 >= 3) { enemy[e].pulse1 = 3; enemy[e].pulse2 = 2; } } else { if (enemy[e].pulse2 == 2 && arena.counter % 4 == 0) // inwards { enemy[e].pulse1--; if (enemy[e].pulse1 <= 0) { enemy[e].pulse1 = 0; enemy[e].pulse2 = 0; } } } } void move_darter (int e) { enemy[e].target_time--; if (enemy[e].recycle > 0) enemy[e].recycle--; if (enemy[e].target_time <= 0) { switch (enemy[e].phase) { case 0: // diving in first enemy[e].phase = 1; // opening enemy[e].target_time = 30; // also below break; case 1: // opening enemy[e].phase = 2; // shooting enemy[e].x_speed = 0; enemy[e].y_speed = 0; enemy[e].target_time = 90; break; case 2: // shooting enemy[e].phase = 3; // closing enemy[e].target_time = 30; break; case 3: // closing if (enemy[e].phase2 >= 3) { enemy[e].phase = 5; // departing enemy[e].target_time = 1000; // important! see below enemy[e].persist = 0; break; } enemy[e].phase = 4; // moving enemy[e].phase2++; enemy[e].target_time = 1000; // important! see below enemy[e].x_target[0] = RAND_X_IN; enemy[e].y_target[0] = RAND_Y_IN; enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); enemy[e].x_speed = 0; enemy[e].y_speed = 0; break; } } track_target (e, player.x, player.y, enemy[e].angle1, 8); switch (enemy[e].phase) { case 2: // shooting switch (enemy[e].type) { case ENEMY_DARTER1: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_DARTER1; fire_dart (enemy[e].x + xpart (enemy[e].angle1, 7000), enemy[e].y + ypart (enemy[e].angle1, 7000), enemy[e].angle1, EBCOL_B3, 50, 80 + arena.difficulty * 10); enemy[e].recycle = 40 - arena.difficulty * 10; } } break; case ENEMY_CARRIER1_PART: enemy_pulse (e, EVENT_PULSE); if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_CARRIER_PART; fire_dart (enemy[e].x + xpart (enemy[e].angle1, 7000), enemy[e].y + ypart (enemy[e].angle1, 7000), enemy[e].angle1, EBCOL_B5, 50, 80 + arena.difficulty * 10); enemy[e].recycle = 30 - arena.difficulty * 10; } } break; case ENEMY_DARTER2: enemy_pulse (e, EVENT_PULSE); if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_DARTER2; fire_dart (enemy[e].x + xpart (enemy[e].angle1, 7000), enemy[e].y + ypart (enemy[e].angle1, 7000), enemy[e].angle1, EBCOL_B4, 50, 90 + arena.difficulty * 15); fire_dart (enemy[e].x + xpart (enemy[e].angle1, 7000), enemy[e].y + ypart (enemy[e].angle1, 7000), enemy[e].angle1 - ANGLE_32, EBCOL_B5, 50, 80 + arena.difficulty * 10); fire_dart (enemy[e].x + xpart (enemy[e].angle1, 7000), enemy[e].y + ypart (enemy[e].angle1, 7000), enemy[e].angle1 + ANGLE_32, EBCOL_B5, 50, 80 + arena.difficulty * 10); enemy[e].recycle = 30 - arena.difficulty * 7; } } break; } break; case 1: // opening case 3: // closing drag_enemy (e, 910); // if (arena.counter % 10 != 0) // enemy[e].target_time ++; break; case 4: // moving if (enemy[e].target_time > 980) { enemy[e].x_speed += xpart (enemy[e].angle, 250); enemy[e].y_speed += ypart (enemy[e].angle, 250); } if (enemy[e].x > enemy[e].x_target[0] - 10000 && enemy[e].x < enemy[e].x_target[0] + 10000 && enemy[e].y > enemy[e].y_target[0] - 10000 && enemy[e].y < enemy[e].y_target[0] + 10000) { enemy[e].phase = 1; enemy[e].target_time = 30; // also above } break; case 5: // departing if (enemy[e].target_time > 980) enemy[e].y_speed += 250; break; } move_enemy (e); } void move_dart_stopper (int e) { int i; int tangle; if (enemy[e].recycle > 0) enemy[e].recycle--; switch (enemy[e].phase) { case 0: // entry enemy[e].x_speed += xpart (enemy[e].angle, eclass[enemy[e].type].speed1); enemy[e].y_speed += ypart (enemy[e].angle, eclass[enemy[e].type].speed1); drag_enemy (e, 920); if (enemy[e].x > enemy[e].x_target[0] - 40000 && enemy[e].x < enemy[e].x_target[0] + 40000 && enemy[e].y > enemy[e].y_target[0] - 40000 && enemy[e].y < enemy[e].y_target[0] + 40000) { enemy[e].angle = get_e_angle (e, enemy[e].x_target[1], enemy[e].y_target[1]); enemy[e].phase = 1; enemy[e].persist = 0; } break; case 1: // then go to 2nd target enemy[e].x_speed += xpart (enemy[e].angle, eclass[enemy[e].type].speed1); enemy[e].y_speed += ypart (enemy[e].angle, eclass[enemy[e].type].speed1); if (arena.counter % 5 == 0) enemy[e].angle = get_e_angle (e, enemy[e].x_target[1], enemy[e].y_target[1]); drag_enemy (e, 920); if (enemy[e].x > enemy[e].x_target[1] - 40000 && enemy[e].x < enemy[e].x_target[1] + 40000 && enemy[e].y > enemy[e].y_target[1] - 40000 && enemy[e].y < enemy[e].y_target[1] + 40000) { enemy[e].phase = 2; enemy[e].target_time = eclass[enemy[e].type].speed3; } break; case 2: // firing! switch (enemy[e].type) { case ENEMY_LARGER: if (enemy[e].recycle == 0) { if (synch_ready[EVENT_FIRE3_2]) { synch_done[DONE_FIRE3_2] |= FIRE3_LARGER; // fire_wing_diamond(enemy[e].x, enemy[e].y, attack_angle(e), EBCOL_B2, 20, 40); fire_wing_diamond (enemy[e].x, enemy[e].y, grand (ANGLE_1), EBCOL_B2, 20, 15 + arena.difficulty * 5); if (arena.difficulty > 0) fire_wing_diamond (enemy[e].x, enemy[e].y, grand (ANGLE_1), EBCOL_B2, 20, 15 + arena.difficulty * 5); if (arena.difficulty > 1) fire_wing_diamond (enemy[e].x, enemy[e].y, grand (ANGLE_1), EBCOL_B2, 20, 15 + arena.difficulty * 5); enemy[e].recycle = 20 - arena.difficulty * 5; } } for (i = 0; i < 4; i++) { tangle = enemy[e].angle + i * ANGLE_4; tangle &= 1023; if ((enemy[e].petal_angle[i] > tangle - 20 && enemy[e].petal_angle[i] < tangle + 20) || (tangle < 20 && enemy[e].petal_angle[i] > ANGLE_1 - tangle) || (tangle > ANGLE_1 - 20 && enemy[e].petal_angle[i] < ANGLE_1 - tangle)) { enemy[e].petal_angle[i] = tangle; enemy[e].petal_angle_speed[i] = enemy[e].status; } else petal_turn (e, i, tangle, 4, 24); } enemy[e].angle += enemy[e].status; enemy[e].angle &= 1023; drag_enemy (e, 910); enemy[e].target_time--; if (enemy[e].target_time <= 0) { enemy[e].phase = 4; enemy[e].persist = 0; if (enemy[e].x < 320000) enemy[e].angle = grand (ANGLE_8) - grand (ANGLE_8); else enemy[e].angle = ANGLE_2 + grand (ANGLE_8) - grand (ANGLE_8); } break; case ENEMY_LARGER2: if (enemy[e].recycle == 0) { if (synch_ready[EVENT_FIRE3_2]) { synch_done[DONE_FIRE3_2] |= FIRE3_LARGER2; // fire_seed(enemy[e].x, enemy[e].y, attack_angle(e), EBCOL_B5, 18 + grand(10), 2000 + grand(1500)); fire_seed (enemy[e].x, enemy[e].y, grand (ANGLE_1), EBCOL_B5, 18 + grand (10), 2000 + grand (1500)); if (arena.difficulty > 0) fire_seed (enemy[e].x, enemy[e].y, grand (ANGLE_1), EBCOL_B5, 18 + grand (10), 2000 + grand (1500)); if (arena.difficulty > 1) fire_seed (enemy[e].x, enemy[e].y, grand (ANGLE_1), EBCOL_B5, 18 + grand (10), 2000 + grand (1500)); enemy[e].recycle = 60 - arena.difficulty * 20; } } for (i = 0; i < 3; i++) { tangle = enemy[e].angle + i * ANGLE_3; tangle &= 1023; if ((enemy[e].petal_angle[i] > tangle - 20 && enemy[e].petal_angle[i] < tangle + 20) || (tangle < 20 && enemy[e].petal_angle[i] > ANGLE_1 - tangle) || (tangle > ANGLE_1 - 20 && enemy[e].petal_angle[i] < ANGLE_1 - tangle)) { enemy[e].petal_angle[i] = tangle; enemy[e].petal_angle_speed[i] = enemy[e].status; } else petal_turn (e, i, tangle, 4, 24); } for (i = 3; i < 6; i++) { tangle = (ANGLE_1 - enemy[e].angle) + i * ANGLE_3; tangle &= 1023; if ((enemy[e].petal_angle[i] > tangle - 20 && enemy[e].petal_angle[i] < tangle + 20) || (tangle < 20 && enemy[e].petal_angle[i] > ANGLE_1 - tangle) || (tangle > ANGLE_1 - 20 && enemy[e].petal_angle[i] < ANGLE_1 - tangle)) { enemy[e].petal_angle[i] = tangle; enemy[e].petal_angle_speed[i] = enemy[e].status; } else petal_turn (e, i, tangle, 4, 24); } enemy[e].angle += enemy[e].status; enemy[e].angle &= 1023; drag_enemy (e, 910); enemy[e].target_time--; if (enemy[e].target_time <= 0) { enemy[e].phase = 4; enemy[e].persist = 0; if (enemy[e].x < 320000) enemy[e].angle = grand (ANGLE_8) - grand (ANGLE_8); else enemy[e].angle = ANGLE_2 + grand (ANGLE_8) - grand (ANGLE_8); } break; } break; case 4: // departing enemy[e].x_speed += xpart (enemy[e].angle, eclass[enemy[e].type].speed1); enemy[e].y_speed += ypart (enemy[e].angle, eclass[enemy[e].type].speed1); drag_enemy (e, 950); break; } switch (enemy[e].type) { case ENEMY_LARGER: enemy_pulse (e, EVENT_PULSE2); if (enemy[e].phase == 2) break; petal_turn (e, 0, enemy[e].angle + ANGLE_2 - ANGLE_8, 2, 8); petal_turn (e, 1, enemy[e].angle + ANGLE_2 - ANGLE_16, 2, 8); petal_turn (e, 2, enemy[e].angle + ANGLE_2 + ANGLE_16, 2, 8); petal_turn (e, 3, enemy[e].angle + ANGLE_2 + ANGLE_8, 2, 8); break; case ENEMY_LARGER2: enemy_pulse (e, EVENT_PULSE1); if (enemy[e].phase == 2) break; petal_turn (e, 0, enemy[e].angle + ANGLE_2 - ANGLE_8, 2, 8); petal_turn (e, 1, enemy[e].angle + ANGLE_2, 2, 8); petal_turn (e, 2, enemy[e].angle + ANGLE_2 + ANGLE_8, 2, 8); petal_turn (e, 3, enemy[e].angle + ANGLE_2 - ANGLE_16, 2, 10); petal_turn (e, 4, enemy[e].angle + ANGLE_2, 2, 8); petal_turn (e, 5, enemy[e].angle + ANGLE_2 + ANGLE_16, 2, 10); break; } move_enemy (e); } void move_drifter (int e) { int b; enemy[e].target_time--; if (enemy[e].recycle > 0) enemy[e].recycle--; if (enemy[e].target_time <= 0) { enemy[e].phase = 1; enemy[e].persist = 0; enemy[e].target_time = 5000; switch (grand (4)) { case 0: enemy[e].x_target[0] = -100000; break; case 1: enemy[e].x_target[0] = 900000; break; case 2: enemy[e].y_target[0] = -100000; break; case 3: enemy[e].y_target[0] = 900000; break; } enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); } switch (enemy[e].phase) { case 0: if ((enemy[e].x > enemy[e].x_target[0] - 40000 && enemy[e].x < enemy[e].x_target[0] + 40000 && enemy[e].y > enemy[e].y_target[0] - 40000 && enemy[e].y < enemy[e].y_target[0] + 40000) || (enemy[e].escorting != -1 && (enemy[e].target_time & 16) == 1)) { if (enemy[e].escorting != -1) { enemy[e].x_target[0] = enemy[enemy[e].escorting].x + grand (60000) - grand (60000) + enemy[e].pulse1; enemy[e].y_target[0] = enemy[enemy[e].escorting].y + grand (60000) - grand (60000) + enemy[e].pulse2; enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); } else { enemy[e].x_target[0] = RAND_X_IN; enemy[e].y_target[0] = RAND_Y_IN; if (enemy[e].type == ENEMY_RING) { enemy[e].x_target[0] = RAND_X; enemy[e].y_target[0] = RAND_Y; } enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); } } break; } if (enemy[e].target_time % 10 == 0) enemy[e].angle = get_e_angle (e, enemy[e].x_target[0], enemy[e].y_target[0]); enemy[e].x_speed += xpart (enemy[e].angle, eclass[enemy[e].type].speed1); enemy[e].y_speed += ypart (enemy[e].angle, eclass[enemy[e].type].speed1); drag_enemy (e, eclass[enemy[e].type].speed2); move_enemy (e); int angle; switch (enemy[e].type) { case ENEMY_RING: enemy_pulse_slow (e, EVENT_PULSE); if (enemy[e].phase == 0) // && (arena.counter & 1)) { enemy[e].status++; if (enemy[e].status > 90) enemy[e].status = 90; } if (enemy[e].phase == 1) { enemy[e].status--; if (enemy[e].status < 1) enemy[e].status = 1; } if (enemy[e].status > 0) { b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x; ebullet[b].y = enemy[e].y; ebullet[b].x_speed = enemy[e].status; if (ebullet[b].x_speed > 6) ebullet[b].x_speed = 6; ebullet[b].y_speed = 4; ebullet[b].status = enemy[e].status; ebullet[b].angle = enemy[e].angle1; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B5; ebullet[b].accel = TCOL_B4; ebullet[b].cord_colour = TRANS_B4_OUT; } } if (enemy[e].status > 0) { b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x; ebullet[b].y = enemy[e].y; ebullet[b].x_speed = enemy[e].status; if (ebullet[b].x_speed > 6) ebullet[b].x_speed = 6; ebullet[b].y_speed = 2; ebullet[b].status = enemy[e].status / 2; ebullet[b].angle = ANGLE_1 - enemy[e].angle1; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B4; ebullet[b].accel = TCOL_B3; ebullet[b].cord_colour = TRANS_B3_OUT; } } enemy[e].angle1 += enemy[e].angle2; enemy[e].angle1 &= 1023; /* if (enemy[e].recycle <= 0 && enemy[e].phase == 0) { if (synch_ready [EVENT_FIRE4_2]) { synch_done [DONE_FIRE4_2] |= FIRE4_RING; enemy[e].angle1 = attack_angle(e); // fire_beam2(e, angle, 1000, 0); enemy[e].recycle = 150 - arena.difficulty * 12; enemy[e].status = 120; } } if (enemy[e].status > 0) { drag_enemy(e, 910); fire_beam2(e, enemy[e].angle1, 1000, 0); enemy[e].status --; / * if (enemy[e].status == 100) { enemy[e].status = 35; }*/ //} break; case ENEMY_DRIFTER1: case ENEMY_ESCORT: if (enemy[e].status > 0) enemy[e].status--; if (enemy[e].recycle <= 0 && enemy[e].phase == 0 && enemy[e].y < 440000) { if (synch_ready[EVENT_FIRE2_1]) { synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; angle = attack_angle (e); fire_dot (enemy[e].x, enemy[e].y, angle, EBCOL_B3, 5, 4000 + arena.difficulty * 1000, 7); enemy[e].recycle = 65 - arena.difficulty * 10; enemy[e].status = 16; } } quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 15000 + (enemy[e].type == ENEMY_DRIFTER1) * 4000, enemy[e].x_speed + grand (300) - grand (300), enemy[e].y_speed + 1500 + grand (2500), 6 + grand (4), TCOL_SH2, 0); break; case ENEMY_DRIFTER2: quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 4000, enemy[e].y + 17000, enemy[e].x_speed + grand (300) - grand (300), enemy[e].y_speed + 1500 + grand (2500), 6 + grand (4), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 4000, enemy[e].y + 17000, enemy[e].x_speed + grand (300) - grand (300), enemy[e].y_speed + 1500 + grand (2500), 6 + grand (4), TCOL_SH2, 0); if (enemy[e].status > 0) enemy[e].status--; if (enemy[e].recycle <= 0 && enemy[e].phase == 0) { if (synch_ready[EVENT_FIRE2_1]) { synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; angle = attack_angle (e); fire_dot (enemy[e].x, enemy[e].y, angle, EBCOL_B4, 6, 4000 + arena.difficulty * 1000, 8); fire_dot (enemy[e].x, enemy[e].y, angle - ANGLE_32, EBCOL_B3, 4, 3700 + arena.difficulty * 1000, 6); fire_dot (enemy[e].x, enemy[e].y, angle + ANGLE_32, EBCOL_B3, 4, 3700 + arena.difficulty * 1000, 6); enemy[e].recycle = 60 - arena.difficulty * 12; enemy[e].status = 16; } } break; } } void move_diver (int e) { enemy[e].target_time--; if (enemy[e].recycle > 0) enemy[e].recycle--; int angle, i; if (enemy[e].target_time <= 0) { switch (enemy[e].phase) { case 0: // diving in first enemy[e].phase = 1; // opening enemy[e].target_time = 20; // also below break; case 1: // opening enemy[e].phase = 2; // shooting // enemy[e].x_speed = 0; // enemy[e].y_speed = 0; enemy[e].target_time = 54 + arena.difficulty * 10; break; case 2: // shooting enemy[e].phase = 3; // closing enemy[e].target_time = 20; break; case 3: // closing enemy[e].phase = 5; // departing enemy[e].target_time = 1000; // important! see below enemy[e].persist = 0; break; } } track_target (e, player.x, player.y, enemy[e].angle1, 8); switch (enemy[e].phase) { case 2: // shooting drag_enemy_y (e, 950); if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE]) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_DIVER1; angle = grand (ANGLE_1); for (i = 0; i < 3; i++) { // fire_dart(enemy[e].x + xpart(angle, 3000), enemy[e].y + ypart(angle, 3000), angle, 2, 50, 80); fire_dart (enemy[e].x, enemy[e].y, angle, EBCOL_B2, 50, 80); angle += ANGLE_3; angle &= 1023; } enemy[e].recycle = 14 - arena.difficulty * 4; } } break; case 1: // opening case 3: // closing drag_enemy_y (e, 950); // if (arena.counter % 10 != 0) // enemy[e].target_time ++; break; // case 4: // moving // break; case 5: // departing if (enemy[e].target_time > 960) enemy[e].y_speed -= 170; break; } move_enemy (e); } void move_walker (int e) { int i, x, y, angle; if (enemy[e].recycle > 0 && enemy[e].y < 460000) enemy[e].recycle--; if (arena.counter & 15) { if (enemy[e].x < 140000) enemy[e].x_speed += 100; if (enemy[e].x > 500000) enemy[e].x_speed -= 100; if (enemy[e].x > 150000 && enemy[e].x < 490000) enemy[e].x_speed += grand (101) - 50; } if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE4_2]) // && synch_done [DONE_FIRE4_2] == 0) { synch_done[DONE_FIRE4_2] |= FIRE4_WALKER; enemy[e].recycle = 40 - arena.difficulty * 10; switch (grand (3)) { case 0: x = enemy[e].x; y = enemy[e].y - 32000; break; case 1: x = enemy[e].x - 42000; y = enemy[e].y; break; case 2: x = enemy[e].x + 42000; y = enemy[e].y; break; } angle = grand (ANGLE_1); for (i = 0; i < 12; i++) { fire_dart (x, y, angle, EBCOL_B2, 50, 90); // fire_curve(x, y, angle + ANGLE_12 / 2, EBCOL_B3, 3000, pos_or_neg(3 + grand(4)), 5); fire_curve (x, y, angle + ANGLE_12 / 2, EBCOL_B3, 3000, xpart (angle * 2, 8), 5); angle += ANGLE_12; angle &= 1023; } } } enemy_pulse_slow (e, EVENT_PULSE); if (enemy[e].y > 200000) enemy[e].persist = 0; move_enemy (e); } void move_cruiser (int e) { int i, angle, b; if (enemy[e].recycle > 0 && enemy[e].y < 460000) enemy[e].recycle--; switch (enemy[e].type) { case ENEMY_SPINNER: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE4_1]) { synch_done[DONE_FIRE4_1] |= FIRE4_SPINNER; enemy[e].recycle = 50 - arena.difficulty * 5; if (enemy[e].y > 360000) enemy[e].recycle = 2000; angle = radians_to_angle (atan2 (player.y - enemy[e].y - 32000, player.x - enemy[e].x)); fire_ddart (enemy[e].x, enemy[e].y + 32000, angle, EBCOL_B5, 40, 90 + arena.difficulty * 10); angle = radians_to_angle (atan2 (player.y - enemy[e].y + 32000, player.x - enemy[e].x)); fire_ddart (enemy[e].x, enemy[e].y - 32000, angle, EBCOL_B5, 40, 90 + arena.difficulty * 10); } } enemy_pulse_slow (e, EVENT_PULSE); if (enemy[e].y > 1000 && enemy[e].y < 200000) { enemy[e].status += 3; if (enemy[e].status > 150) enemy[e].status = 150; } if (enemy[e].y > 430000) { enemy[e].status -= 3; if (enemy[e].status < 5) enemy[e].status = 5; } if (enemy[e].status > 0) { b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x; ebullet[b].y = enemy[e].y; ebullet[b].x_speed = enemy[e].status; if (ebullet[b].x_speed > 12) ebullet[b].x_speed = 12; ebullet[b].y_speed = 5; ebullet[b].status = enemy[e].status; ebullet[b].angle = enemy[e].angle1; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B4; ebullet[b].accel = TCOL_B2; ebullet[b].cord_colour = TRANS_B2_OUT; } } enemy[e].angle1 += enemy[e].angle2; enemy[e].angle1 &= 1023; break; case ENEMY_DROPPER: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE4_1]) { synch_done[DONE_FIRE4_1] |= FIRE4_DROPPER; enemy[e].recycle = 50 - arena.difficulty * 5; if (enemy[e].y > 360000) enemy[e].recycle = 2000; for (i = 0; i < 3; i++) { angle = grand (ANGLE_8) - grand (ANGLE_8); fire_dart (enemy[e].x - 7000, enemy[e].y + 14000, angle + ANGLE_2, EBCOL_B1, 50, 70 + grand (30)); fire_dart (enemy[e].x + 7000, enemy[e].y + 14000, angle, EBCOL_B1, 50, 70 + grand (30)); } /* fire_dart(enemy[e].x - 7000, enemy[e].y + 14000, ANGLE_2, EBCOL_B1, 50, 90); fire_dart(enemy[e].x - 7000, enemy[e].y + 14000, ANGLE_2 - ANGLE_8, EBCOL_B1, 50, 90); fire_dart(enemy[e].x - 7000, enemy[e].y + 14000, ANGLE_2 + ANGLE_8, EBCOL_B1, 50, 90); fire_dart(enemy[e].x + 7000, enemy[e].y + 14000, 0, EBCOL_B1, 50, 90); fire_dart(enemy[e].x + 7000, enemy[e].y + 14000, 0 - ANGLE_8, EBCOL_B1, 50, 90); fire_dart(enemy[e].x + 7000, enemy[e].y + 14000, 0 + ANGLE_8, EBCOL_B1, 50, 90);*/ } } enemy_pulse_slow (e, EVENT_PULSE); if (enemy[e].y > 1000 && enemy[e].y < 200000) { enemy[e].status++; if (enemy[e].status > 50) enemy[e].status = 50; } if (enemy[e].y > 450000) { enemy[e].status--; if (enemy[e].status < 5) enemy[e].status = 5; } if (enemy[e].status > 0) { b = create_ebullet (EBULLET_SPIN); if (b != -1) { ebullet[b].x = enemy[e].x; ebullet[b].y = enemy[e].y; ebullet[b].x_speed = enemy[e].status; if (ebullet[b].x_speed > 6) ebullet[b].x_speed = 6; ebullet[b].y_speed = 3; ebullet[b].status = enemy[e].status; ebullet[b].angle = enemy[e].angle1; ebullet[b].timeout = 2; ebullet[b].colour = TCOL_B3; ebullet[b].accel = TCOL_B1; ebullet[b].cord_colour = TRANS_B1_OUT; } } enemy[e].angle1 += enemy[e].angle2; enemy[e].angle1 &= 1023; break; case ENEMY_CRUISER4: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 14000, enemy[e].y + 49000, grand (300) - grand (300), 3500 + grand (2500), 6 + grand (6), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 14000, enemy[e].y + 49000, grand (300) - grand (300), 3500 + grand (2500), 6 + grand (6), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 14000, enemy[e].y + 49000, grand (300) - grand (300), 3500 + grand (2500), 12 + grand (12), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 14000, enemy[e].y + 49000, grand (300) - grand (300), 3500 + grand (2500), 12 + grand (12), TCOL_SH2, 0); } if (enemy[e].status == 0) track_target (e, player.x, player.y, enemy[e].angle1, 5 + arena.difficulty * 3); if (enemy[e].status > 0) { fire_beam (e, 25000); enemy[e].status--; if (enemy[e].status == 100) { /* enemy[e].status = 40; if (arena.difficulty == 0) enemy[e].status = 20; if (arena.difficulty == 1)*/ enemy[e].status = 35; } } if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE2_2] && synch_done[DONE_FIRE2_2] == 0) { synch_done[DONE_FIRE2_2] |= FIRE2_CRUISER4; enemy[e].recycle = 90 - arena.difficulty * 5; enemy[e].status = 120; // change in fire_beam as well! if (enemy[e].y > 360000) enemy[e].recycle = 2000; } else enemy[e].recycle = 1; } break; case ENEMY_CRUISER3: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 47000, enemy[e].y + 64000, grand (300) - grand (300), 3500 + grand (2500), 9 + grand (9), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 47000, enemy[e].y + 64000, grand (300) - grand (300), 3500 + grand (2500), 9 + grand (9), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 47000, enemy[e].y + 64000, grand (300) - grand (300), 3500 + grand (2500), 18 + grand (18), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 47000, enemy[e].y + 64000, grand (300) - grand (300), 3500 + grand (2500), 18 + grand (18), TCOL_SH2, 0); } track_target (e, player.x, player.y, enemy[e].angle1, 6); if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE2_2] && synch_done[DONE_FIRE2_2] == 0) { synch_done[DONE_FIRE2_2] |= FIRE2_CRUISER3; for (i = 0; i < 6; i++) { angle = enemy[e].angle1 + i * ANGLE_6; angle &= 1023; b = fire_dot (enemy[e].x + xpart (enemy[e].angle1, 23000), enemy[e].y + ypart (enemy[e].angle1, 23000), enemy[e].angle1, EBCOL_B3, 4 + i, 2500, 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed + ypart (angle, 1000); ebullet[b].x_speed += enemy[e].x_speed + xpart (angle, 1000); ebullet[b].cord_wait = -1; } } for (i = 0; i < 8; i++) { angle = enemy[e].angle1 + i * ANGLE_8; angle &= 1023; b = fire_dot (enemy[e].x + xpart (enemy[e].angle1, 23000), enemy[e].y + ypart (enemy[e].angle1, 23000), enemy[e].angle1, EBCOL_B2, 12 - i, 2500, 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed + ypart (angle, 750); ebullet[b].x_speed += enemy[e].x_speed + xpart (angle, 750); ebullet[b].cord_wait = -1; } } for (i = 0; i < 16; i++) { angle = enemy[e].angle1 + i * ANGLE_16; angle &= 1023; b = fire_dot (enemy[e].x + xpart (enemy[e].angle1, 23000), enemy[e].y + ypart (enemy[e].angle1, 23000), enemy[e].angle1, EBCOL_B1, 4 + i / 4, 2500, 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed + ypart (angle, 500); ebullet[b].x_speed += enemy[e].x_speed + xpart (angle, 500); ebullet[b].cord_wait = -1; } enemy[e].recycle = 130 - arena.difficulty * 19; quick_cloud (CLOUD_MSHOCK, enemy[e].x + xpart (enemy[e].angle1, 24000), enemy[e].y + ypart (enemy[e].angle1, 24000), enemy[e].x_speed, enemy[e].y_speed, 20, 2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x + xpart (enemy[e].angle1, 24000), enemy[e].y + ypart (enemy[e].angle1, 24000), enemy[e].x_speed, enemy[e].y_speed, 20 + grand (5), TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, enemy[e].x + xpart (enemy[e].angle1, 24000), enemy[e].y + ypart (enemy[e].angle1, 24000), enemy[e].x_speed, enemy[e].y_speed, 30 + grand (5), TCOL_SH2, 0); } } } break; case ENEMY_CRUISER2: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 47000, enemy[e].y + 14000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 47000, enemy[e].y + 14000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 43000, grand (300) - grand (300), 3000 + grand (2500), 7 + grand (7), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 47000, enemy[e].y + 14000, grand (300) - grand (300), 3000 + grand (2000), 10 + grand (10), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 47000, enemy[e].y + 14000, grand (300) - grand (300), 3000 + grand (2000), 10 + grand (10), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 43000, grand (300) - grand (300), 3000 + grand (2500), 14 + grand (14), TCOL_SH2, 0); } track_target (e, player.x, player.y, enemy[e].angle1, 6); if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE2_2] && synch_done[DONE_FIRE2_2] == 0) { synch_done[DONE_FIRE2_2] |= FIRE2_CRUISER2; angle = enemy[e].angle1; for (i = 0; i < 5 + arena.difficulty * 2; i++) { b = fire_dot (enemy[e].x + xpart (enemy[e].angle1, 9000), enemy[e].y + ypart (enemy[e].angle1, 9000), angle, EBCOL_B5, 4 + i, 1500 + (i * 600), 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed; ebullet[b].cord_wait = -1; } if ((i & 1) == 0) { b = fire_dot (enemy[e].x + xpart (enemy[e].angle1, 9000), enemy[e].y + ypart (enemy[e].angle1, 9000), angle - ANGLE_64, EBCOL_B5, 2 + i / 2, 1500 + (i * 550), 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed; ebullet[b].cord_wait = -1; } } else { b = fire_dot (enemy[e].x + xpart (enemy[e].angle1, 9000), enemy[e].y + ypart (enemy[e].angle1, 9000), angle + ANGLE_64, EBCOL_B5, 2 + i / 2, 1500 + (i * 550), 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed; ebullet[b].cord_wait = -1; } } } enemy[e].recycle = 130 - arena.difficulty * 19; quick_cloud (CLOUD_MSHOCK, enemy[e].x + xpart (enemy[e].angle1, 10000), enemy[e].y + ypart (enemy[e].angle1, 10000), enemy[e].x_speed, enemy[e].y_speed, 20, 0, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x + xpart (enemy[e].angle1, 10000), enemy[e].y + ypart (enemy[e].angle1, 10000), enemy[e].x_speed, enemy[e].y_speed, 20 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, enemy[e].x + xpart (enemy[e].angle1, 10000), enemy[e].y + ypart (enemy[e].angle1, 10000), enemy[e].x_speed, enemy[e].y_speed, 30 + grand (5), TCOL_YELLOW, 0); } } break; case ENEMY_CRUISER1: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 42000, enemy[e].y + 61000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 42000, enemy[e].y + 61000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 16000, enemy[e].y + 69000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 16000, enemy[e].y + 69000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 42000, enemy[e].y + 61000, grand (300) - grand (300), 3000 + grand (2000), 10 + grand (10), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 42000, enemy[e].y + 61000, grand (300) - grand (300), 3000 + grand (2000), 10 + grand (10), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 16000, enemy[e].y + 69000, grand (300) - grand (300), 3000 + grand (2000), 10 + grand (10), TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 16000, enemy[e].y + 69000, grand (300) - grand (300), 3000 + grand (2000), 10 + grand (10), TCOL_SH2, 0); } track_target (e, player.x, player.y, enemy[e].angle1, 8); track_target_zero (e, player.x, player.y, enemy[e].angle, 2); if (enemy[e].status > 0 && enemy[e].y < 450000) enemy[e].status--; if (enemy[e].status <= 0) { if (synch_ready[EVENT_FIRE2_1]) { synch_done[DONE_FIRE2_1] |= FIRE2_DRIFTER1; angle = enemy[e].angle + grand (ANGLE_64) - grand (ANGLE_64); fire_dot (enemy[e].x + xpart (enemy[e].angle1, 6000), enemy[e].y + ypart (enemy[e].angle1, 6000) - 41000, enemy[e].angle1, EBCOL_B1, 4, 3000 + arena.difficulty * 700, 15); enemy[e].status = 30 - arena.difficulty * 9; } } if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE2_2] && synch_done[DONE_FIRE2_2] == 0) { synch_done[DONE_FIRE2_2] |= FIRE2_CRUISER1; for (i = 0; i < 7; i++) { angle = enemy[e].angle + grand (ANGLE_32) - grand (ANGLE_32); angle &= 1023; b = fire_dot (enemy[e].x + xpart (enemy[e].angle, 11000), enemy[e].y + ypart (enemy[e].angle, 11000), angle, EBCOL_B3, 6 + grand (3), 1500 + arena.difficulty * 500 + grand (2500), 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed; ebullet[b].cord_wait = -1; } } for (i = 0; i < 7; i++) { angle = enemy[e].angle + grand (ANGLE_32) - grand (ANGLE_32); angle &= 1023; b = fire_dot (enemy[e].x + xpart (enemy[e].angle, 11000), enemy[e].y + ypart (enemy[e].angle, 11000), angle, EBCOL_B2, 5 + grand (3), 1500 + arena.difficulty * 500 + grand (2000), 0); if (b != -1) { ebullet[b].y_speed += enemy[e].y_speed; ebullet[b].cord_wait = -1; } } quick_cloud (CLOUD_MSHOCK, enemy[e].x + xpart (enemy[e].angle, 11000), enemy[e].y + ypart (enemy[e].angle, 11000), enemy[e].x_speed, enemy[e].y_speed, 20, 2, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x + xpart (enemy[e].angle, 11000), enemy[e].y + ypart (enemy[e].angle, 11000), enemy[e].x_speed, enemy[e].y_speed, 20 + grand (5), TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, enemy[e].x + xpart (enemy[e].angle, 11000), enemy[e].y + ypart (enemy[e].angle, 11000), enemy[e].x_speed, enemy[e].y_speed, 30 + grand (5), TCOL_SH2, 0); enemy[e].recycle = 120 - arena.difficulty * 20; } } break; } if (enemy[e].y > 200000) enemy[e].persist = 0; move_enemy (e); } void move_stopper (int e) { int i, angle, angle_inc; enemy[e].target_time--; if (enemy[e].recycle > 0) enemy[e].recycle--; if (enemy[e].target_time <= 0) { switch (enemy[e].phase) { case 0: // diving in first enemy[e].phase = 1; // opening enemy[e].target_time = eclass[enemy[e].type].speed3; // also below break; case 1: // opening enemy[e].phase = 2; // shooting enemy[e].x_speed = 0; enemy[e].y_speed = 0; enemy[e].target_time = eclass[enemy[e].type].speed2; if (enemy[e].type == ENEMY_RISER) enemy[e].target_time += grand (50); break; case 2: // shooting enemy[e].phase = 3; // closing enemy[e].target_time = eclass[enemy[e].type].speed3; break; case 3: // closing // if (enemy[e].phase2 >= 3) { enemy[e].phase = 4; // departing enemy[e].target_time = 1000; // important! see below enemy[e].persist = 0; enemy[e].x_speed = 0; break; } break; } } switch (enemy[e].phase) { case 0: // entering switch (enemy[e].type) { case ENEMY_BEAMER: case ENEMY_SHOOTER: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 5 + grand (5), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 10 + grand (10), TCOL_SH2, 0); } break; } break; case 2: // shooting switch (enemy[e].type) { case ENEMY_BEAMER: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 3 + grand (3), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 6 + grand (6), TCOL_SH2, 0); } if (enemy[e].status == 0) track_target (e, player.x, player.y, enemy[e].angle1, 8); if (enemy[e].status > 0) { fire_beam (e, 15000); enemy[e].status--; if (enemy[e].status == 100) { if (arena.difficulty == 0) enemy[e].status = 50; if (arena.difficulty == 1) enemy[e].status = 70; } if (enemy[e].target_time < 2) enemy[e].target_time++; } if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE2_2] && synch_done[DONE_FIRE2_2] == 0) { synch_done[DONE_FIRE2_2] |= FIRE2_BEAMER; enemy[e].recycle = 150; enemy[e].status = 120; // change in fire_beam as well! } else enemy[e].recycle = 1; } break; case ENEMY_SHOOTER: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 3 + grand (3), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 6 + grand (6), TCOL_SH2, 0); } track_target (e, player.x, player.y, enemy[e].angle1, 6); if (enemy[e].recycle <= 0 && enemy[e].status == 9 + arena.difficulty * 3) { if (synch_ready[EVENT_FIRE2_2] && synch_done[DONE_FIRE2_2] == 0) { synch_done[DONE_FIRE2_2] |= FIRE2_SHOOTER; } else enemy[e].recycle = 1; } if (enemy[e].recycle <= 0) { enemy[e].angle1 += grand (ANGLE_16); enemy[e].angle1 -= grand (ANGLE_16); enemy[e].angle1 &= 1023; angle = enemy[e].angle1; fire_dot (enemy[e].x + xpart (angle, 10000), enemy[e].y + ypart (angle, 10000), angle, EBCOL_B5, 4, 3500 + arena.difficulty * 800 + grand (500), 9); enemy[e].recycle = 7 - arena.difficulty * 2; enemy[e].status--; if (enemy[e].status == 0) { enemy[e].status = 9 + arena.difficulty * 3; // also in level.c enemy[e].recycle = 40 - arena.difficulty * 9; } } break; case ENEMY_RISER: enemy[e].x_speed += xpart (arena.counter * 16, 20); if (enemy[e].recycle <= 0) { // if (synch_ready [EVENT_FIRE3_2] && (synch_done [DONE_FIRE3_2] & FIRE3_WINGS) == 0) { // synch_done [DONE_FIRE3_2] |= FIRE3_WINGS; angle = attack_angle (e); fire_dot (enemy[e].x, enemy[e].y, angle, EBCOL_B2, 5, 3500 + arena.difficulty * 800, 9); enemy[e].recycle = 65 - arena.difficulty * 12; enemy[e].status = 25; } } // quick_cloud(CLOUD_CIRCLE2, enemy[e].x + 2000, enemy[e].y + 23000, enemy[e].x_speed + grand(300) - grand(300), enemy[e].y_speed + 1500 + grand(2500), 4 + grand(3), TCOL_SH2, 0); break; case ENEMY_POD1: enemy_pulse (e, EVENT_PULSE); if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_SWOOPER1_FIRE] && (synch_done[DONE_SWOOPER1_FIRE] & FIRE1_DIVER1) == 0) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_DIVER1; angle = enemy[e].angle1; switch (enemy[e].status) { case 0: fire_ddart (enemy[e].x - xpart (angle, 18000), enemy[e].y - ypart (angle, 18000), angle, EBCOL_B3, 50, 120); enemy[e].status = 1; break; case 1: fire_dart (enemy[e].x + xpart (angle + ANGLE_4 - ANGLE_16, 16000), enemy[e].y + ypart (angle + ANGLE_4 - ANGLE_16, 16000), angle - ANGLE_32, EBCOL_B2, 50, 90); fire_dart (enemy[e].x + xpart (angle - ANGLE_4 + ANGLE_16, 16000), enemy[e].y + ypart (angle - ANGLE_4 + ANGLE_16, 16000), angle + ANGLE_32, EBCOL_B2, 50, 90); enemy[e].status = 2; break; case 2: fire_dart (enemy[e].x + xpart (angle + ANGLE_4 + ANGLE_8, 16000), enemy[e].y + ypart (angle + ANGLE_4 + ANGLE_8, 16000), angle + ANGLE_16, EBCOL_B1, 50, 70); fire_dart (enemy[e].x + xpart (angle + ANGLE_4 + ANGLE_8, 16000), enemy[e].y + ypart (angle + ANGLE_4 + ANGLE_8, 16000), angle - ANGLE_32, EBCOL_B1, 50, 70); fire_dart (enemy[e].x + xpart (angle - ANGLE_4 - ANGLE_8, 16000), enemy[e].y + ypart (angle - ANGLE_4 - ANGLE_8, 16000), angle + ANGLE_32, EBCOL_B1, 50, 70); fire_dart (enemy[e].x + xpart (angle - ANGLE_4 - ANGLE_8, 16000), enemy[e].y + ypart (angle - ANGLE_4 - ANGLE_8, 16000), angle - ANGLE_16, EBCOL_B1, 50, 70); enemy[e].status = 0; break; } enemy[e].recycle = 20; } } break; case ENEMY_STOPPER1: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_STOPPER1_FIRE]) { synch_done[DONE_STOPPER1_FIRE] = 1; angle = grand (ANGLE_1); angle_inc = ANGLE_1 / 30; if (grand (2) == 0) angle_inc *= -1; for (i = 0; i < 6; i++) { angle &= 1023; fire_dart (enemy[e].x + xpart (angle, 24000), enemy[e].y + ypart (angle, 24000), angle, EBCOL_B5, 50, 120); angle += angle_inc; angle &= 1023; fire_dart (enemy[e].x + xpart (angle, 24000), enemy[e].y + ypart (angle, 24000), angle, EBCOL_B5, 50, 100); angle += angle_inc; angle &= 1023; fire_dart (enemy[e].x + xpart (angle, 24000), enemy[e].y + ypart (angle, 24000), angle, EBCOL_B5, 50, 80); if (arena.difficulty > 0) { angle += angle_inc; angle &= 1023; fire_dart (enemy[e].x + xpart (angle, 24000), enemy[e].y + ypart (angle, 24000), angle, EBCOL_B5, 50, 60); angle += angle_inc; angle &= 1023; fire_dart (enemy[e].x + xpart (angle, 24000), enemy[e].y + ypart (angle, 24000), angle, EBCOL_B5, 50, 40); if (arena.difficulty > 1) { angle += angle_inc; angle &= 1023; fire_dart (enemy[e].x + xpart (angle, 24000), enemy[e].y + ypart (angle, 24000), angle, EBCOL_B5, 50, 20); angle -= angle_inc; angle &= 1023; } } else { angle += angle_inc * 2; angle &= 1023; } enemy[e].recycle = 90 - arena.difficulty * 15; } } else enemy[e].target_time++; } break; case ENEMY_CARRIER1: enemy[e].angle1 &= 1023; if (enemy[e].target_time > eclass[ENEMY_CARRIER1].speed2 - 20) { enemy[e].angle1_turning += odd_even (e); enemy[e].angle1 += enemy[e].angle1_turning; break; } if (enemy[e].target_time < 10) { /* if (enemy[e].angle1_turning > 1 || enemy[e].angle1_turning < -1) enemy[e].angle1_turning -= odd_even(e); */ if ((enemy[e].angle1 < ANGLE_1 - ANGLE_4 && enemy[e].angle1 + enemy[e].angle1_turning >= ANGLE_1 - ANGLE_4) || (enemy[e].angle1 > ANGLE_1 - ANGLE_4 && enemy[e].angle1 + enemy[e].angle1_turning <= ANGLE_1 - ANGLE_4)) { enemy[e].angle1_turning = 0; enemy[e].target_time = 0; enemy[e].angle1 = -ANGLE_4; } else enemy[e].target_time++; enemy[e].angle1 += enemy[e].angle1_turning; // if ((enemy[e].angle1 + ANGLE_4) % ANGLE_3 == 0) // if ((enemy[e].angle1 + ANGLE_4) % ANGLE_3 == 0) break; } else { if (synch_ready[EVENT_SWOOPER1_FIRE]) { synch_done[DONE_SWOOPER1_FIRE] |= FIRE1_CARRIER1; angle = enemy[e].angle1; for (i = 0; i < 3; i++) { // fire_diamond(enemy[e].x + xpart(angle, 22000), enemy[e].y + ypart(angle, 22000), angle + ANGLE_4, EBCOL_B2, 1700, 6, 50); // fire_diamond(enemy[e].x + xpart(angle, 22000), enemy[e].y + ypart(angle, 22000), angle - ANGLE_4, EBCOL_B3, 2000, -8, 50); if (arena.difficulty > 0) fire_diamond (enemy[e].x + xpart (angle, 22000), enemy[e].y + ypart (angle, 22000), angle + ANGLE_4, EBCOL_B2, 1700 + arena.difficulty * 50, 6, 50); fire_diamond (enemy[e].x + xpart (angle, 22000), enemy[e].y + ypart (angle, 22000), angle - ANGLE_4, EBCOL_B3, 1800 + arena.difficulty * 150, -8, 50); angle += ANGLE_3; angle &= 1023; } } } enemy[e].angle1 += enemy[e].angle1_turning; break; case ENEMY_WINGS: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE3_2] && (synch_done[DONE_FIRE3_2] & FIRE3_WINGS) == 0) { synch_done[DONE_FIRE3_2] |= FIRE3_WINGS; angle = attack_angle (e); fire_burst (enemy[e].x, enemy[e].y - 10000, angle, EBCOL_B2, 1700 + arena.difficulty * 50, 30); enemy[e].recycle = 40 - arena.difficulty * 10; } } break; case ENEMY_WINGS2: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE3_2] && (synch_done[DONE_FIRE3_2] & FIRE3_WINGS2) == 0) { synch_done[DONE_FIRE3_2] |= FIRE3_WINGS2; angle = attack_angle (e); fire_stream (enemy[e].x, enemy[e].y - 10000, angle, EBCOL_B1, 2700 + arena.difficulty * 150, 90); enemy[e].recycle = 20 - arena.difficulty * 7; } } break; case ENEMY_MEGA: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE3_1]) { synch_done[DONE_FIRE3_1] |= FIRE3_MEGA; angle = grand (ANGLE_1); if (enemy[e].status == 0) { angle_inc = ANGLE_1 / (12 + arena.difficulty * 3); for (i = 0; i < 12 + arena.difficulty * 3; i++) { fire_sdart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle, EBCOL_B5, 50, 90); angle += angle_inc; angle &= 1023; } enemy[e].status = 1; } else { angle_inc = ANGLE_1 / (8 + arena.difficulty * 2); for (i = 0; i < 8 + arena.difficulty * 2; i++) { fire_dart (enemy[e].x + xpart (angle, 9000), enemy[e].y + ypart (angle, 9000), angle, EBCOL_B5, 50, 70); angle += angle_inc; angle &= 1023; enemy[e].status = 0; } } enemy[e].recycle = 40 - arena.difficulty * 10; } } break; case ENEMY_HUNTER: if (enemy[e].recycle <= 0) { if (synch_ready[EVENT_FIRE4_2] && !(synch_done[DONE_FIRE4_2] & FIRE4_HUNTER)) { synch_done[DONE_FIRE4_2] |= FIRE4_HUNTER; enemy[e].recycle = 90 - arena.difficulty * 15; fire_tracker (enemy[e].x - 6000, enemy[e].y - 18000, ANGLE_2 + ANGLE_4 - ANGLE_32, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 6000, enemy[e].y - 18000, ANGLE_2 + ANGLE_4 + ANGLE_32, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x - 13000, enemy[e].y - 10000, ANGLE_2 + ANGLE_8, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 13000, enemy[e].y - 10000, -ANGLE_8, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x - 16000, enemy[e].y + 1000, ANGLE_2, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 16000, enemy[e].y + 1000, 0, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x - 13000, enemy[e].y + 12000, ANGLE_4 + ANGLE_8, EBCOL_B2, 4, 500); fire_tracker (enemy[e].x + 13000, enemy[e].y + 12000, ANGLE_8, EBCOL_B2, 4, 500); } else enemy[e].target_time++; } break; } break; case 1: // opening case 3: // closing drag_enemy (e, 910); // if (arena.counter % 10 != 0) // enemy[e].target_time ++; switch (enemy[e].type) { case ENEMY_WINGS: case ENEMY_WINGS2: if (enemy[e].phase == 1) { enemy[e].petal_angle[0] += 7; enemy[e].petal_angle[1] -= 7; enemy[e].petal_angle[2] += 5; enemy[e].petal_angle[3] -= 5; enemy[e].petal_angle[4] += 3; enemy[e].petal_angle[5] -= 3; } else { enemy[e].petal_angle[0] -= 7; enemy[e].petal_angle[1] += 7; enemy[e].petal_angle[2] -= 5; enemy[e].petal_angle[3] += 5; enemy[e].petal_angle[4] -= 3; enemy[e].petal_angle[5] += 3; enemy[e].y_speed -= 150; } break; } break; case 4: // departing if (enemy[e].target_time > 980) enemy[e].y_speed += eclass[enemy[e].type].speed1 / 17; switch (enemy[e].type) { case ENEMY_BEAMER: case ENEMY_SHOOTER: if ((arena.counter & 1) == 0) { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 5 + grand (5), TCOL_ORANGE, 0); } else { quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 27000, grand (300) - grand (300), 2000 + grand (2000) + enemy[e].y_speed, 10 + grand (10), TCOL_SH2, 0); } break; case ENEMY_RISER: quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 24000, enemy[e].x_speed + grand (300) - grand (300), enemy[e].y_speed + 1500 + grand (2500), 8 + grand (5), TCOL_SH2, 0); // quick_cloud(CLOUD_CIRCLE2, enemy[e].x + 40000, enemy[e].y + 27000, enemy[e].x_speed + grand(300) - grand(300), enemy[e].y_speed + 1500 + grand(2500), 8 + grand(4), TCOL_SH2, 0); break; } break; } // persistent move_enemy (e); switch (enemy[e].type) { case ENEMY_HUNTER: enemy_pulse_slow (e, EVENT_PULSE); break; case ENEMY_RISER: if (enemy[e].status > 0) enemy[e].status--; quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 24000, enemy[e].x_speed + grand (300) - grand (300), enemy[e].y_speed + 1500 + grand (2500), 4 + grand (3), TCOL_SH2, 0); break; case ENEMY_BEAMER: if (enemy[e].phase == 1) track_target (e, player.x, player.y, enemy[e].angle1, 8); break; case ENEMY_MEGA: enemy_pulse (e, EVENT_PULSE); for (i = 0; i < 7; i++) { enemy[e].petal_angle[i] += enemy[e].petal_angle_speed[i]; } break; case ENEMY_WINGS: case ENEMY_WINGS2: enemy_pulse (e, EVENT_PULSE2); enemy[e].petal_angle[0] += xpart (arena.counter * 32, 4); enemy[e].petal_angle[2] += xpart (arena.counter * 32, 4); enemy[e].petal_angle[4] += xpart (arena.counter * 32, 4); enemy[e].petal_angle[1] -= xpart (arena.counter * 32, 4); enemy[e].petal_angle[3] -= xpart (arena.counter * 32, 4); enemy[e].petal_angle[5] -= xpart (arena.counter * 32, 4); break; case ENEMY_POD1: track_target (e, player.x, player.y, enemy[e].angle1, 4); break; case ENEMY_CARRIER1: if (enemy[e].part[0] != -1) { enemy[enemy[e].part[0]].x = enemy[e].x - 55000; enemy[enemy[e].part[0]].y = enemy[e].y - 3000; if (enemy[e].phase == 1) { enemy[enemy[e].part[0]].target_time = 40; launch_part (e, 0, enemy[e].part[0], -2000, 800); } } if (enemy[e].part[1] != -1) { enemy[enemy[e].part[1]].x = enemy[e].x + 55000; enemy[enemy[e].part[1]].y = enemy[e].y - 3000; if (enemy[e].phase == 1) { enemy[enemy[e].part[1]].target_time = 40; launch_part (e, 1, enemy[e].part[1], 2000, 800); } } break; } } void launch_part (int pe, int index, int se, int xs, int ys) { enemy[se].x_speed = xs; enemy[se].y_speed = ys; enemy[se].parent = -1; enemy[pe].part[index] = -1; } void move_enemy (int e) { enemy[e].x += enemy[e].x_speed; /* if (enemy[e].x > X_MAX || enemy[e].x < X_MIN) enemy[e].x_speed *= -1; // bounce*/ enemy[e].y += enemy[e].y_speed; /* if (enemy[e].y > Y_MAX || enemy[e].y < Y_MIN) enemy[e].y_speed *= -1; */ // the edge collision should take account of enemy size, but it doesn't for now. } int fire_dart (int x, int y, int angle, int colour, int wait, int accel) { int b = create_ebullet (EBULLET_SHOT); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = 0; ebullet[b].y_speed = 0; ebullet[b].timeout = 500; ebullet[b].accel = accel; return b; } return -1; } int fire_sdart (int x, int y, int angle, int colour, int wait, int accel) { int b = create_ebullet (EBULLET_SDART); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = 0; ebullet[b].y_speed = 0; ebullet[b].timeout = 500; ebullet[b].accel = accel; return b; } return -1; } int fire_ddart (int x, int y, int angle, int colour, int wait, int accel) { int b = create_ebullet (EBULLET_DDART); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = 0; ebullet[b].y_speed = 0; ebullet[b].timeout = 500; ebullet[b].accel = accel; return b; } return -1; } int fire_diamond (int x, int y, int angle, int colour, int speed, int rot, int wait) { int b = create_ebullet (EBULLET_SHOT2); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (angle, speed); ebullet[b].y_speed = ypart (angle, speed); ebullet[b].timeout = 500; ebullet[b].angle2 = rot; return b; } return -1; } int fire_curve (int x, int y, int angle, int colour, int speed, int rot, int wait) { int b = create_ebullet (EBULLET_CURVE); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = speed; //xpart(angle, speed); // ebullet[b].y_speed = pos_or_neg(2);//ypart(angle, speed); ebullet[b].y_speed = 2 + grand (4); if (rot < 0) ebullet[b].y_speed = -2 - grand (4); ebullet[b].status = ebullet[b].angle; ebullet[b].timeout = 600; ebullet[b].angle2 = rot; return b; } return -1; } int fire_wing_diamond (int x, int y, int angle, int colour, int speed, int wait) { int b = create_ebullet (EBULLET_WING_DIAMOND); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (angle, speed); ebullet[b].y_speed = ypart (angle, speed); ebullet[b].timeout = 500; ebullet[b].status = pos_or_neg (8); ebullet[b].accel = 50 + arena.difficulty * 15; return b; } return -1; } int fire_seed (int x, int y, int angle, int colour, int wait, int accel) { int b = create_ebullet (EBULLET_SEED); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].colour = grand (4); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (ebullet[b].angle, accel); ebullet[b].y_speed = ypart (ebullet[b].angle, accel); ebullet[b].timeout = 500; ebullet[b].accel = accel; return b; } return -1; } int fire_seed2 (int x, int y, int angle, int colour, int wait, int accel) { int b = create_ebullet (EBULLET_LSEED); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].colour = grand (4); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (ebullet[b].angle, accel); ebullet[b].y_speed = ypart (ebullet[b].angle, accel); ebullet[b].timeout = 500; ebullet[b].accel = accel; return b; } return -1; } int fire_burst (int x, int y, int angle, int colour, int speed, int wait) { int b = create_ebullet (EBULLET_BURST); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (angle, speed); ebullet[b].y_speed = ypart (angle, speed); ebullet[b].timeout = 60 + grand (20); ebullet[b].status = pos_or_neg (8); ebullet[b].accel = 50; return b; } return -1; } int fire_tracker (int x, int y, int angle, int colour, int size, int speed) { int b = create_ebullet (EBULLET_TRACKER); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); /* ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS);*/ ebullet[b].x_speed = xpart (angle, speed); ebullet[b].y_speed = ypart (angle, speed); ebullet[b].timeout = 500; ebullet[b].status = size; ebullet[b].cord_wait = -1; quick_cloud (CLOUD_CIRCLE5, ebullet[b].x, ebullet[b].y, 0, 0, 30, TCOL_B2, 0); // ebullet[b].accel = accel; return b; } return -1; } int fire_stream (int x, int y, int angle, int colour, int speed, int wait) { int b = create_ebullet (EBULLET_STREAM); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (angle, speed); ebullet[b].y_speed = ypart (angle, speed); ebullet[b].timeout = 500; // ebullet[b].status = pos_or_neg(8); ebullet[b].accel = 50; return b; } return -1; } int fire_dot (int x, int y, int angle, int colour, int size, int speed, int wait) { int b = create_ebullet (EBULLET_DOT); if (b != -1) { angle &= 1023; ebullet[b].x = x; ebullet[b].y = y; ebullet[b].angle = angle; ebullet[b].colour = colour; set_cord_colour (b); ebullet[b].cord_x = x; ebullet[b].cord_y = y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = wait; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (angle, speed); ebullet[b].y_speed = ypart (angle, speed); ebullet[b].timeout = 500; ebullet[b].status = size; // ebullet[b].accel = accel; return b; } return -1; } int fire_beam (int e, int dist) { int length = 1; int x = enemy[e].x + xpart (enemy[e].angle1, dist); int y = enemy[e].y + ypart (enemy[e].angle1, dist); do { length++; x += xpart (enemy[e].angle1, 45000); y += ypart (enemy[e].angle1, 45000); if (x > 690000 || x < -50000 || y > 530000 || y < -50000) break; } while (TRUE); int b = create_ebullet (EBULLET_BEAM); if (b != -1) { enemy[e].angle1 &= 1023; if (enemy[e].status > 100 || enemy[e].status < 20) { ebullet[b].x = enemy[e].x + xpart (enemy[e].angle1, dist + 4000); ebullet[b].y = enemy[e].y + ypart (enemy[e].angle1, dist + 4000); } else { ebullet[b].x = enemy[e].x + xpart (enemy[e].angle1, dist + 4000 - (enemy[e].status % 6) * GRAIN * 4); ebullet[b].y = enemy[e].y + ypart (enemy[e].angle1, dist + 4000 - (enemy[e].status % 6) * GRAIN * 4); } ebullet[b].status = length; ebullet[b].angle = enemy[e].angle1; ebullet[b].sprite_angle = enemy[e].angle1 / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = enemy[e].x + xpart (enemy[e].angle1, dist); ebullet[b].y_speed = enemy[e].y + ypart (enemy[e].angle1, dist); ebullet[b].timeout = 2; ebullet[b].angle2 = enemy[e].status; if (enemy[e].status > 100) ebullet[b].angle2 = 120 - enemy[e].status; return b; } return -1; } int fire_beam2 (int e, int angle, int dist, int time) { int length = 1; int x = enemy[e].x + xpart (angle, dist); int y = enemy[e].y + ypart (angle, dist); do { length++; x += xpart (enemy[e].angle1, 45000); y += ypart (enemy[e].angle1, 45000); if (x > 690000 || x < -50000 || y > 530000 || y < -50000) break; } while (TRUE); if (length > (100 - enemy[e].status + 7) / 6) length = (100 - enemy[e].status + 7) / 6; int b = create_ebullet (EBULLET_BEAM2); if (b != -1) { angle &= 1023; if (enemy[e].status > 100 || enemy[e].status < 20) { ebullet[b].x = enemy[e].x + xpart (enemy[e].angle1, dist + 4000); ebullet[b].y = enemy[e].y + ypart (enemy[e].angle1, dist + 4000); } else { ebullet[b].x = enemy[e].x + xpart (enemy[e].angle1, dist + 4000 - ((enemy[e].status * 2) % 12) * GRAIN * 4); ebullet[b].y = enemy[e].y + ypart (enemy[e].angle1, dist + 4000 - ((enemy[e].status * 2) % 12) * GRAIN * 4); } ebullet[b].status = length; ebullet[b].angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = enemy[e].x + xpart (angle, dist); ebullet[b].y_speed = enemy[e].y + ypart (angle, dist); ebullet[b].timeout = 2; ebullet[b].angle2 = enemy[e].status; // if (enemy[e].status > 100) // ebullet[b].angle2 = 120 - enemy[e].status; return b; } return -1; } void enemy_fire (int e) { int angle = attack_angle (e); int btype = EBULLET_SHOT + grand (2); btype = EBULLET_SHOT; int b = create_ebullet (btype); if (b != -1) { switch (btype) { case EBULLET_SHOT: ebullet[b].x = enemy[e].x + xpart (angle, 10000); ebullet[b].y = enemy[e].y + ypart (angle, 10000); ebullet[b].angle = angle; ebullet[b].colour = EBCOL_B1; //grand(5); set_cord_colour (b); //ebullet[b].cord_colour = TRANS_ORANGE_OUT; ebullet[b].cord_x = ebullet[b].x; ebullet[b].cord_y = ebullet[b].y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = 50; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = 0; //xpart(angle, 3000); ebullet[b].y_speed = 0; //ypart(angle, 3000); ebullet[b].timeout = 500; // play_effectwfvx(WAV_FIRE, 500 + grand(1000), 200, ebullet[b].x); enemy[e].x_speed -= xpart (angle, 400); enemy[e].y_speed -= ypart (angle, 400); // a little bit of recoil enemy[e].recycle = 50; ebullet[b].accel = 60; break; case EBULLET_SHOT2: ebullet[b].x = enemy[e].x + xpart (angle, 10000); ebullet[b].y = enemy[e].y + ypart (angle, 10000); ebullet[b].angle = angle; ebullet[b].colour = EBCOL_B1; //grand(3); if (grand (5) == 0) ebullet[b].colour = grand (5); set_cord_colour (b); ebullet[b].cord_x = ebullet[b].x; ebullet[b].cord_y = ebullet[b].y; ebullet[b].cord_x_speed = 0; ebullet[b].cord_y_speed = 0; ebullet[b].cord_wait = 50; ebullet[b].cord_angle = angle; ebullet[b].sprite_angle = angle / (ANGLE_1 / SMALL_ROTATIONS); ebullet[b].x_speed = xpart (angle, 2000); ebullet[b].y_speed = ypart (angle, 2000); ebullet[b].timeout = 500; play_effectwfvx (WAV_FIRE, 500 + grand (1000), 200, ebullet[b].x); enemy[e].x_speed -= xpart (angle, 400); enemy[e].y_speed -= ypart (angle, 400); // a little bit of recoil ebullet[b].angle2 = -10 + grand (11); // if (grand(2) == 0) //ebullet[b].angle2 = -10; enemy[e].recycle = 50; break; } } // play_effectwfvx(w, NWAV_ZAP, 1800 + grand(50), 30, enemy[e].x); } void set_cord_colour (int b) { switch (ebullet[b].colour) { case EBCOL_B1: ebullet[b].cord_colour = TRANS_B1_OUT; break; case EBCOL_B2: ebullet[b].cord_colour = TRANS_B2_OUT; break; case EBCOL_B3: ebullet[b].cord_colour = TRANS_B3_OUT; break; case EBCOL_B4: ebullet[b].cord_colour = TRANS_B4_OUT; break; case EBCOL_B5: ebullet[b].cord_colour = TRANS_B5_OUT; break; } } // atan2 is slow, so don't use it too much. // see stuff.c for radians_to_angle etc. int attack_angle (int e) { return radians_to_angle (atan2 (player.y - enemy[e].y, player.x - enemy[e].x)); } int get_e_angle (int e, int x, int y) { return radians_to_angle (atan2 (y - enemy[e].y, x - enemy[e].x)); } void track_target (int e, int x, int y, int angle, int turn) { int angle_move = delta_turn_towards_xy (enemy[e].x, enemy[e].y, x, y, angle, 1); // textprintf_ex(screen, font, 5, 5, COLOUR_11, COLOUR_2, "%i %i %i %i %i %i ", e, enemy[w] [e].type, enemy[w] [e].x, enemy[w] [e].y, turn, angle_move); if (angle_move != enemy[e].angle1_turning) { if (enemy[e].angle1_turning_count <= 0) { enemy[e].angle1_turning_count = 15; enemy[e].angle1_turning = angle_move; /* if (angle_move < 0) enemy[e].angle1_turning = -1; else enemy[e].angle1_turning = 1;*/ return; } enemy[e].angle1_turning_count--; return; } enemy[e].angle1_turning_count--; enemy[e].angle1 += turn * enemy[e].angle1_turning; enemy[e].angle1 &= 1023; } void track_target_zero (int e, int x, int y, int angle, int turn) { int angle_move = delta_turn_towards_xy (enemy[e].x, enemy[e].y, x, y, angle, 1); // textprintf_ex(screen, font, 5, 5, COLOUR_11, COLOUR_2, "%i %i %i %i %i %i ", e, enemy[w] [e].type, enemy[w] [e].x, enemy[w] [e].y, turn, angle_move); if (angle_move != enemy[e].angle_turning) { if (enemy[e].angle_turning_count <= 0) { enemy[e].angle_turning_count = 15; enemy[e].angle_turning = angle_move; /* if (angle_move < 0) enemy[e].angle1_turning = -1; else enemy[e].angle1_turning = 1;*/ return; } enemy[e].angle_turning_count--; return; } enemy[e].angle_turning_count--; enemy[e].angle += turn * enemy[e].angle_turning; enemy[e].angle &= 1023; } void drag_enemy (int e, int drag) { enemy[e].x_speed *= drag; enemy[e].x_speed /= 1000; enemy[e].y_speed *= drag; enemy[e].y_speed /= 1000; } void drag_enemy_y (int e, int drag) { enemy[e].y_speed *= drag; enemy[e].y_speed /= 1000; } void pbullet_hits_enemy (int b, int e) { if (pbullet[b].type == PBULLET_BLADE) { int rel_x = abs (pbullet[b].x_speed - enemy[e].x_speed); //if (rel_x < 2000) //rel_x = 2000; int rel_y = abs (pbullet[b].y_speed - enemy[e].y_speed); // if (rel_y < 2000) // rel_y = 2000; int dam = (pbullet[b].dam + (pbullet[b].dam * hypot (rel_y, rel_x) / 200)) / 160; hurt_enemy (e, dam, pbullet[b].source); // player.score = dam; return; } hurt_enemy (e, pbullet[b].dam, pbullet[b].source); } // note explosion in pbullet.c calls hurt_enemy directly int hurt_enemy (int e, int dam, int source) { if (enemy[e].type == ENEMY_BOSS1 || enemy[e].type == ENEMY_BOSS2 || enemy[e].type == ENEMY_BOSS3 || enemy[e].type == ENEMY_BOSS4) { boss.hp -= dam; if (boss.hp <= 0) { boss.hp = 0; enemy_explode (e); if (arena.game_over == 0) arena.level_finished = 200; } return 1; } enemy[e].hp -= dam; if (enemy[e].hp <= 0) { enemy[e].whurt[source] += enemy[e].hp + dam; enemy_explode (e); return 0; } enemy[e].whurt[source] += dam; return 1; // deal with source/xp here } void enemy_explode (int e) { int x = enemy[e].x; int y = enemy[e].y; int angle; int i; int c; int xa; switch (enemy[e].type) { case ENEMY_SWOOPER1: play_effectwfvx (WAV_DRUM3, tone[NOTE_1E], 250, x); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_YELLOW, 0); angle = grand (ANGLE_1); for (i = 0; i < 4; i++) { angle += ANGLE_4; quick_cloud (CLOUD_CIRCLE1, x, y, xpart (angle, 2000), ypart (angle, 2000), 20, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE1, x, y, xpart (angle, 1500), ypart (angle, 1500), 20, TCOL_YELLOW, 0); } /* quick_cloud(CLOUD_CIRCLE1, x, y, -1500, 1500, 20, 7, 0); quick_cloud(CLOUD_CIRCLE1, x, y, 1500, -1500, 20, 7, 0); quick_cloud(CLOUD_CIRCLE1, x, y, -1500, -1500, 20, 7, 0);*/ break; case ENEMY_SWOOPER2: play_effectwfvx (WAV_DRUM3, tone[NOTE_1E], 250, x); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 40, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 40, TCOL_YELLOW, 0); angle = grand (ANGLE_1); for (i = 0; i < 7; i++) { angle += ANGLE_1 / 7; quick_cloud (CLOUD_CIRCLE1, x, y, xpart (angle, 1200), ypart (angle, 1200), 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, xpart (angle, 1220), ypart (angle, 1220), 30, TCOL_YELLOW, 0); } break; case ENEMY_DARTER2: play_effectwfvx (WAV_BANG, tone[NOTE_1G], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x - 15000, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_MSHOCK, x + 15000, y, 0, 0, 20, 0, 0); angle = -ANGLE_4 + ANGLE_6; for (i = 0; i < 3; i++) { angle += ANGLE_6; quick_cloud (CLOUD_CIRCLE1, x + xpart (angle, 43000), y + ypart (angle, 28000), xpart (angle, 1000), ypart (angle, 1000), 20, TCOL_YELLOW, 0); angle += ANGLE_6; quick_cloud (CLOUD_CIRCLE3, x + xpart (angle, 43000), y + ypart (angle, 28000), xpart (angle, 1000), ypart (angle, 1000), 30, TCOL_ORANGE, 0); } break; case ENEMY_DARTER1: play_effectwfvx (WAV_BANG, tone[NOTE_1G], 250, x); // play_effectwfvx(WAV_CYMBAL1, tone [NOTE_1C], 250, x); // play_effectwfvx(WAV_DRUM3, tone [NOTE_2G], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); // quick_cloud(CLOUD_MSHOCK, x, y, 0, 0, 16, 1, 0); angle = -ANGLE_4 + ANGLE_6; for (i = 0; i < 3; i++) { angle += ANGLE_6; quick_cloud (CLOUD_CIRCLE1, x + xpart (angle, 28000), y + ypart (angle, 28000), xpart (angle, 1000), ypart (angle, 1000), 20, TCOL_YELLOW, 0); angle += ANGLE_6; quick_cloud (CLOUD_CIRCLE3, x + xpart (angle, 28000), y + ypart (angle, 28000), xpart (angle, 1000), ypart (angle, 1000), 30, TCOL_ORANGE, 0); /* angle += ANGLE_6; quick_cloud(CLOUD_CIRCLE1, x + xpart(angle, 28000), y + ypart(angle, 28000), 0, 0, 20, 8, 0); angle += ANGLE_6; quick_cloud(CLOUD_CIRCLE3, x + xpart(angle, 28000), y + ypart(angle, 28000), 0, 0, 30, 7, 0);*/ } break; // case ENEMY_DIVER1: // something else play_effectwfvx (WAV_BANG, tone[NOTE_1C], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); // for (i = 0; i < 5; i ++) // { quick_cloud (CLOUD_SPAWNER, x + 8000, y, 4000, 0, 12, TCOL_ORANGE, 950); quick_cloud (CLOUD_SPAWNER, x - 8000, y, -4000, 0, 12, TCOL_ORANGE, 950); quick_cloud (CLOUD_SPAWNER, x + 8000, y, 6000, 0, 10, TCOL_YELLOW, 950); quick_cloud (CLOUD_SPAWNER, x - 8000, y, -6000, 0, 10, TCOL_YELLOW, 950); /* quick_cloud(CLOUD_SPAWNER, x + 8000, y, 5000, -1000, 12, 7, 950); quick_cloud(CLOUD_SPAWNER, x - 8000, y, - 5000, -1000, 12, 7, 950); quick_cloud(CLOUD_SPAWNER, x + 8000, y, 5000, 1000, 12, 7, 950); quick_cloud(CLOUD_SPAWNER, x - 8000, y, - 5000, 1000, 12, 7, 950);*/ // quick_cloud(CLOUD_CIRCLE10, x + 8000, y, 2000 + grand(1000) + 500 * i, grand(1000) - 500, 90, 7, 900 + i * 10); // quick_cloud(CLOUD_CIRCLE10, x - 8000, y, - 2000 - grand(1000) - 500 * i, grand(1000) - 500, 90, 7, 900 + i * 10); // } break; case ENEMY_DIVER1: play_effectwfvx (WAV_BANG, tone[NOTE_1C], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_CIRCLE2, x - 4000, y, -1000, 0, 40, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x - 4000, y, -1000, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, x - 8000, y, -2000, 0, 55, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x - 8000, y, -2000, 0, 45, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, x + 4000, y, 1000, 0, 40, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x + 4000, y, 1000, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, x + 8000, y, 2000, 0, 55, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x + 8000, y, 2000, 0, 45, TCOL_YELLOW, 0); /* quick_cloud(CLOUD_SPAWNER, x + 8000, y, 4000, 0, 12, TCOL_ORANGE, 950); quick_cloud(CLOUD_SPAWNER, x - 8000, y, - 4000, 0, 12, TCOL_ORANGE, 950); quick_cloud(CLOUD_SPAWNER, x + 8000, y, 6000, 0, 10, TCOL_YELLOW, 950); quick_cloud(CLOUD_SPAWNER, x - 8000, y, - 6000, 0, 10, TCOL_YELLOW, 950);*/ /* quick_cloud(CLOUD_SPAWNER, x + 8000, y, 5000, -1000, 12, 7, 950); quick_cloud(CLOUD_SPAWNER, x - 8000, y, - 5000, -1000, 12, 7, 950); quick_cloud(CLOUD_SPAWNER, x + 8000, y, 5000, 1000, 12, 7, 950); quick_cloud(CLOUD_SPAWNER, x - 8000, y, - 5000, 1000, 12, 7, 950);*/ // quick_cloud(CLOUD_CIRCLE10, x + 8000, y, 2000 + grand(1000) + 500 * i, grand(1000) - 500, 90, 7, 900 + i * 10); // quick_cloud(CLOUD_CIRCLE10, x - 8000, y, - 2000 - grand(1000) - 500 * i, grand(1000) - 500, 90, 7, 900 + i * 10); // } break; case ENEMY_STOPPER1: play_effectwfvx (WAV_NICE, tone[NOTE_2C], 250, x); play_effectwfvx (WAV_DRUM4, tone[NOTE_1C], 250, x); /* quick_cloud(CLOUD_CIRCLE2, x, y, 0, 0, 70, 8, 0); quick_cloud(CLOUD_CIRCLE2, x, y - 35000, 0, 0, 50, 8, 0); quick_cloud(CLOUD_CIRCLE2, x, y - 60000, 0, 0, 70, 8, 0); quick_cloud(CLOUD_CIRCLE2, x + 30000, y + 30000, 0, 0, 60, 8, 0); quick_cloud(CLOUD_CIRCLE2, x - 30000, y + 30000, 0, 0, 60, 8, 0); quick_cloud(CLOUD_CIRCLE5, x + 50000, y - 10000, 0, 0, 50, 8, 0); quick_cloud(CLOUD_CIRCLE5, x - 50000, y - 10000, 0, 0, 50, 8, 0); quick_cloud(CLOUD_CIRCLE5, x + 35000, y - 50000, 0, 0, 30, 8, 0); quick_cloud(CLOUD_CIRCLE5, x - 35000, y - 50000, 0, 0, 30, 8, 0); quick_cloud(CLOUD_HSHOCK, x, y, 0, 0, 50, 0, 0);*/ quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 70, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y - 35000, 0, 0, 50, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y - 60000, 0, 0, 70, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x + 30000, y + 30000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x - 30000, y + 30000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE5, x + 50000, y - 10000, 0, 0, 50, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE5, x - 50000, y - 10000, 0, 0, 50, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE3, x + 35000, y - 50000, 0, 0, 70, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE3, x - 35000, y - 50000, 0, 0, 70, TCOL_SH2, 0); quick_cloud (CLOUD_HSHOCK, x, y, 0, 0, 50, 2, 0); break; case ENEMY_CARRIER1: play_effectwfvx (WAV_NICE, tone[NOTE_1A], 250, x); play_effectwfvx (WAV_DRUM4, tone[NOTE_1C], 250, x); /* quick_cloud(CLOUD_CIRCLE2, x, y, 0, 0, 70, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE2, x, y - 35000, 0, 0, 50, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE2, x, y - 60000, 0, 0, 70, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE2, x + 30000, y + 30000, 0, 0, 60, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE2, x - 30000, y + 30000, 0, 0, 60, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE5, x + 50000, y - 10000, 0, 0, 50, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE5, x - 50000, y - 10000, 0, 0, 50, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE3, x + 35000, y - 50000, 0, 0, 70, TCOL_SH2, 0); quick_cloud(CLOUD_CIRCLE3, x - 35000, y - 50000, 0, 0, 70, TCOL_SH2, 0);*/ angle = quick_cloud (CLOUD_CARRIER1_BANG, x, y, 0, 0, 50, 0, 0); cloud[angle].x2 = 0; quick_cloud (CLOUD_HSHOCK, x, y, 0, 0, 50, 2, 0); quick_cloud (CLOUD_CIRCLE1, x, y, 0, 0, 50, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 50, TCOL_SH2, 0); break; case ENEMY_POD1: play_effectwfvx (WAV_BANG, tone[NOTE_0G], 250, x); angle = grand (ANGLE_1); for (i = 0; i < 8; i++) { angle += ANGLE_8; angle &= 1023; quick_cloud (CLOUD_CIRCLE1, x + xpart (angle, 10000), y + ypart (angle, 10000), xpart (angle, 1800), ypart (angle, 1800), 60, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + xpart (angle, 10000), y + ypart (angle, 10000), xpart (angle, 1800), ypart (angle, 1800), 50, TCOL_YELLOW, 0); } quick_cloud (CLOUD_CIRCLE1, x, y - 20000, 0, -3000, 60, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y - 20000, 0, -3000, 50, TCOL_YELLOW, 0); quick_cloud (CLOUD_HSHOCK, x, y, 0, 0, 50, 0, 0); break; case ENEMY_SMALL: play_effectwfvx (WAV_DRUM3, tone[NOTE_1E], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 50, TCOL_YELLOW, 0); for (i = 0; i < 3; i++) { c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (enemy[e].petal_angle[i], 36000), y + ypart (enemy[e].petal_angle[i], 36000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 1800), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 1800), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = enemy[e].petal_angle_speed[i]; } } break; case ENEMY_SMALL2: play_effectwfvx (WAV_DRUM3, tone[NOTE_1C], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 50, TCOL_YELLOW, 0); for (i = 0; i < 3; i++) { c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (enemy[e].petal_angle[i], 36000), y + ypart (enemy[e].petal_angle[i], 36000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 1800), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 1800), 5000, 0, 0); if (c != -1) { if (i > 0) cloud[c].type = CLOUD_PETAL2_DEBRIS; cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = enemy[e].petal_angle_speed[i]; } } break; case ENEMY_LARGER: play_effectwfvx (WAV_DRUM3, tone[NOTE_0G], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 50, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 40, 1, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 60, 0, 0); /* quick_cloud(CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_SH1, 0); quick_cloud(CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_SH2, 0); quick_cloud(CLOUD_MSHOCK, x, y, 0, 0, 20, 2, 0); quick_cloud(CLOUD_MSHOCK, x, y, 0, 0, 40, 3, 0); quick_cloud(CLOUD_MSHOCK, x, y, 0, 0, 60, 2, 0);*/ for (i = 0; i < 4; i++) { c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (enemy[e].petal_angle[i], 43000), y + ypart (enemy[e].petal_angle[i], 43000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 1800), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 1800), 5000, 0, 0); // c = quick_cloud(CLOUD_PETAL1, x + xpart(enemy[e].petal_angle [i], 33000), y + ypart(enemy[e].petal_angle [i], 33000), 0, 0, 50, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = enemy[e].petal_angle_speed[i]; if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } break; case ENEMY_LARGER2: play_effectwfvx (WAV_DRUM3, tone[NOTE_0G], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 50, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 40, 1, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 60, 0, 0); for (i = 0; i < 3; i++) { c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (enemy[e].petal_angle[i], 43000), y + ypart (enemy[e].petal_angle[i], 43000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 1800), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 1800), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = enemy[e].petal_angle_speed[i]; if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } for (i = 3; i < 6; i++) { c = quick_cloud (CLOUD_PETAL2_DEBRIS, x + xpart (enemy[e].petal_angle[i], 33000), y + ypart (enemy[e].petal_angle[i], 33000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 2400), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 2400), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = enemy[e].petal_angle_speed[i]; if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } break; case ENEMY_WINGS: play_effectwfvx (WAV_BANG, tone[NOTE_2C], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 80, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 80, TCOL_YELLOW, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 50, 2, 0); for (i = 0; i < 2; i++) { c = quick_cloud (CLOUD_PETAL3_DEBRIS, x + xpart (enemy[e].petal_angle[i], 55000), y + ypart (enemy[e].petal_angle[i], 55000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 1800), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 1800), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } for (i = 2; i < 4; i++) { c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (enemy[e].petal_angle[i], 42000), y + ypart (enemy[e].petal_angle[i], 42000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 2100), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 2100), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } for (i = 4; i < 6; i++) { c = quick_cloud (CLOUD_PETAL2_DEBRIS, x + xpart (enemy[e].petal_angle[i], 35000), y + ypart (enemy[e].petal_angle[i], 35000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 2400), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 2400), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } break; case ENEMY_WINGS2: play_effectwfvx (WAV_BANG, tone[NOTE_1G], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 80, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 80, TCOL_YELLOW, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 50, 2, 0); for (i = 0; i < 6; i++) { c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (enemy[e].petal_angle[i], 42000), y + ypart (enemy[e].petal_angle[i], 42000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 1800), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 1800), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } c = quick_cloud (CLOUD_PETAL2_DEBRIS, x + xpart (ANGLE_4, 42000), y + ypart (ANGLE_4, 42000), enemy[e].x_speed + xpart (ANGLE_4, 2100), enemy[e].y_speed + ypart (ANGLE_4, 2100), 5000, 0, 0); if (c != -1) { cloud[c].angle = ANGLE_4; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } break; case ENEMY_MEGA: play_effectwfvx (WAV_BANG, tone[NOTE_0E], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 120, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 120, TCOL_SH2, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 40, 3, 0); for (i = 0; i < 4; i++) { quick_cloud (CLOUD_CIRCLE2, x + xpart (ANGLE_8 + i * ANGLE_4, 60000), y + ypart (ANGLE_8 + i * ANGLE_4, 60000), 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + xpart (ANGLE_8 + i * ANGLE_4, 60000), y + ypart (ANGLE_8 + i * ANGLE_4, 60000), 0, 0, 80, TCOL_SH2, 0); c = quick_cloud (CLOUD_PETAL3_DEBRIS, x + xpart (enemy[e].petal_angle[i], 75000), y + ypart (enemy[e].petal_angle[i], 75000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 1800), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 1800), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } for (i = 4; i < 7; i++) { c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (enemy[e].petal_angle[i], 65000), y + ypart (enemy[e].petal_angle[i], 65000), enemy[e].x_speed + xpart (enemy[e].petal_angle[i], 2100), enemy[e].y_speed + ypart (enemy[e].petal_angle[i], 2100), 5000, 0, 0); if (c != -1) { cloud[c].angle = enemy[e].petal_angle[i]; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } break; case ENEMY_BOSS3: play_effectwfvx (WAV_BANG, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 120, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 120, TCOL_SH2, 0); quick_cloud (CLOUD_HSHOCK, x, y, 0, 0, 50, 2, 0); xa = grand (ANGLE_1); for (i = 0; i < 5; i++) { xa += ANGLE_5; quick_cloud (CLOUD_CIRCLE2, x + xpart (xa, 60000), y + ypart (xa, 60000), 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + xpart (xa, 60000), y + ypart (xa, 60000), 0, 0, 80, TCOL_SH2, 0); } xa = grand (ANGLE_1); for (i = 0; i < 9; i++) { xa += ANGLE_9; quick_cloud (CLOUD_CIRCLE2, x + xpart (xa, 90000), y + ypart (xa, 90000), 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + xpart (xa, 90000), y + ypart (xa, 90000), 0, 0, 80, TCOL_SH2, 0); } for (i = 0; i < 5; i++) { xa = boss.petal_angle[2] + i * ANGLE_5; xa &= 1023; c = quick_cloud (CLOUD_PETAL3_DEBRIS, x + xpart (xa, boss.petal_out[2] * GRAIN), y + ypart (xa, boss.petal_out[2] * GRAIN), enemy[e].x_speed + xpart (xa, 1000), enemy[e].y_speed + ypart (xa, 1000), 5000, 0, 0); if (c != -1) { cloud[c].angle = boss.petal_angle[2] + i * ANGLE_5; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } for (i = 0; i < 7; i++) { xa = boss.petal_angle[1] + i * ANGLE_7; xa &= 1023; c = quick_cloud (CLOUD_PETAL1_DEBRIS, x + xpart (xa, boss.petal_out[1] * GRAIN), y + ypart (xa, boss.petal_out[1] * GRAIN), enemy[e].x_speed + xpart (xa, 1000), enemy[e].y_speed + ypart (xa, 1000), 5000, 0, 0); if (c != -1) { cloud[c].angle = boss.petal_angle[1] + i * ANGLE_7; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } for (i = 0; i < 9; i++) { xa = boss.petal_angle[0] + i * ANGLE_9; xa &= 1023; c = quick_cloud (CLOUD_PETAL2_DEBRIS, x + xpart (xa, boss.petal_out[0] * GRAIN), y + ypart (xa, boss.petal_out[0] * GRAIN), enemy[e].x_speed + xpart (xa, 1000), enemy[e].y_speed + ypart (xa, 1000), 5000, 0, 0); if (c != -1) { cloud[c].angle = boss.petal_angle[0] + i * ANGLE_7; cloud[c].x2 = grand (8) - grand (8); if (cloud[c].x_speed == 0 && cloud[c].y_speed == 0) { cloud[c].y_speed = 500; } } } break; case ENEMY_DRIFTER1: case ENEMY_ESCORT: play_effectwfvx (WAV_DRUM3, tone[NOTE_1C], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 35, 2, 0); quick_cloud (CLOUD_BURN, x, y, -3500 - grand (1000), -1500 - grand (1000), 40 + grand (20), 0, 990); quick_cloud (CLOUD_BURN, x, y, 3500 + grand (1000), -2000 - grand (1000), 40 + grand (20), 0, 990); for (i = 0; i < 10; i++) { angle = grand (ANGLE_1); xa = 4000 + grand (3000); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 5000), y + xpart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 30 + grand (30), TCOL_ORANGE, 900); } break; case ENEMY_DRIFTER2: play_effectwfvx (WAV_DRUM3, tone[NOTE_0A], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 40, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 40, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 35, 2, 0); quick_cloud (CLOUD_BURN, x, y, -3500 - grand (1000), -1500 - grand (1000), 40 + grand (20), 0, 990); quick_cloud (CLOUD_BURN, x, y, 3500 + grand (1000), -2000 - grand (1000), 40 + grand (20), 0, 990); for (i = 0; i < 15; i++) { angle = grand (ANGLE_1); xa = 4000 + grand (3000); quick_cloud (CLOUD_CIRCLE3, x + xpart (angle, 5000), y + xpart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 30 + grand (30), TCOL_ORANGE, 930); } break; case ENEMY_RISER: play_effectwfvx (WAV_DRUM3, tone[NOTE_1D], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 40, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 40, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); for (i = 0; i < 10; i++) { angle = grand (ANGLE_1); xa = 4000 + grand (3000); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 5000), y + xpart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 30 + grand (30), TCOL_ORANGE, 900); } break; case ENEMY_BEAMER: case ENEMY_SHOOTER: play_effectwfvx (WAV_BANG, tone[NOTE_1G], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 50, 2, 0); angle = grand (ANGLE_1); for (i = 0; i < 5; i++) { angle += ANGLE_5; angle &= 1023; xa = 5000 + grand (3000); quick_cloud (CLOUD_BURN, x + xpart (angle, 5000), y + ypart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 80 + grand (40), 8, 990); } for (i = 0; i < 10; i++) { angle = grand (ANGLE_1); xa = 2000 + grand (3000); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 5000), y + xpart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 30 + grand (30), TCOL_ORANGE, 900); } break; case ENEMY_CRUISER1: case ENEMY_CRUISER3: play_effectwfvx (WAV_BANG, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_CIRCLE1, x, y, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x, y + 50000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y + 50000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x, y - 40000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y - 40000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); if (enemy[e].type == ENEMY_CRUISER1) { quick_cloud (CLOUD_CIRCLE1, x - 42000, y + 55000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x - 42000, y + 55000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x + 42000, y + 55000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + 42000, y + 55000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x - 16000, y + 61000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x - 16000, y + 61000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x + 16000, y + 61000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + 16000, y + 61000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 50, 0, 0); quick_cloud (CLOUD_LSHOCK, x, y + 50000, 0, 0, 50, 2, 0); quick_cloud (CLOUD_MSHOCK, x, y - 40000, 0, 0, 20, 0, 0); } if (enemy[e].type == ENEMY_CRUISER3) { quick_cloud (CLOUD_CIRCLE1, x - 47000, y + 49000, 0, 0, 50 + grand (30), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x - 47000, y + 49000, 0, 0, 50 + grand (30), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x + 47000, y + 49000, 0, 0, 50 + grand (30), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + 47000, y + 49000, 0, 0, 50 + grand (30), TCOL_YELLOW, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 35, 0, 0); quick_cloud (CLOUD_LSHOCK, x, y + 50000, 0, 0, 35, 2, 0); quick_cloud (CLOUD_MSHOCK, x, y - 40000, 0, 0, 15, 0, 0); } angle = grand (ANGLE_1); for (i = 0; i < 8; i++) { angle += ANGLE_8; angle &= 1023; xa = 5000 + grand (3000); quick_cloud (CLOUD_BURN, x + xpart (angle, 5000), y + ypart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 150 + grand (50), 8, 990); } for (i = 0; i < 15; i++) { angle = grand (ANGLE_1); xa = 4000 + grand (4000); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 5000), y + xpart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 30 + grand (30), TCOL_ORANGE, 900); } break; case ENEMY_CRUISER2: play_effectwfvx (WAV_BANG, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_CIRCLE1, x, y, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x + 47000, enemy[e].y + 14000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x - 47000, enemy[e].y + 14000, grand (300) - grand (300), 3000 + grand (2000), 5 + grand (5), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, enemy[e].x, enemy[e].y + 43000, grand (300) - grand (300), 3000 + grand (2500), 7 + grand (7), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE1, x - 42000, y + 14000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x - 42000, y + 14000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x + 42000, y + 14000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + 42000, y + 14000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x, y + 39000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y + 39000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 50, 0, 0); angle = grand (ANGLE_1); for (i = 0; i < 4; i++) { angle += ANGLE_4; angle &= 1023; xa = 4000 + grand (3000); quick_cloud (CLOUD_BURN, x + xpart (angle, 5000), y + ypart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 130 + grand (40), 8, 990); } for (i = 0; i < 15; i++) { angle = grand (ANGLE_1); xa = 4000 + grand (4000); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 5000), y + xpart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 30 + grand (30), TCOL_ORANGE, 900); } break; case ENEMY_CRUISER4: play_effectwfvx (WAV_BANG, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_CIRCLE1, x, y, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x - 14000, y + 45000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x - 14000, y + 45000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x + 14000, y + 45000, 0, 0, 40 + grand (20), TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + 14000, y + 45000, 0, 0, 40 + grand (20), TCOL_YELLOW, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 30, 1, 0); angle = grand (ANGLE_1); for (i = 0; i < 4; i++) { angle += ANGLE_4; angle &= 1023; xa = 4000 + grand (3000); quick_cloud (CLOUD_BURN, x + xpart (angle, 5000), y + ypart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 130 + grand (40), 8, 990); } for (i = 0; i < 15; i++) { angle = grand (ANGLE_1); xa = 4000 + grand (4000); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 5000), y + xpart (angle, 5000), xpart (angle, xa), ypart (angle, xa), 30 + grand (30), TCOL_ORANGE, 900); } break; case ENEMY_BOSS1: play_effectwfvx (WAV_NICE, tone[NOTE_1F], 250, x); play_effectwfvx (WAV_DRUM4, tone[NOTE_0G], 250, x); angle = quick_cloud (CLOUD_CARRIER1_BANG, x, y, 0, 0, 50, 0, 0); cloud[angle].x2 = 0; quick_cloud (CLOUD_HSHOCK, x, y, 0, 0, 50, 2, 0); quick_cloud (CLOUD_CIRCLE1, x, y, 0, 0, 50, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 50, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE1, x - 71000, y, 0, 0, 50, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE2, x - 71000, y, 0, 0, 50, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE1, x + 71000, y, 0, 0, 50, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE2, x + 71000, y, 0, 0, 50, TCOL_SH2, 0); angle = grand (ANGLE_1); for (i = 0; i < 8; i++) { quick_cloud (CLOUD_CIRCLE3, x - 71000 + xpart (angle, 40000), y + ypart (angle, 40000), 0, 0, 85, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE5, x - 71000 + xpart (angle, 40000), y + ypart (angle, 40000), 0, 0, 85, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE3, x + 71000 + xpart (angle, 40000), y + ypart (angle, 40000), 0, 0, 85, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE5, x + 71000 + xpart (angle, 40000), y + ypart (angle, 40000), 0, 0, 85, TCOL_SH2, 0); angle += ANGLE_8; } angle = grand (ANGLE_1); for (i = 0; i < 16; i++) { quick_cloud (CLOUD_CIRCLE3, x + xpart (angle, 100000), y + ypart (angle, 70000), xpart (angle, 1600), ypart (angle, 1120), 100, TCOL_SH1, 990); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 100000), y + ypart (angle, 70000), xpart (angle, 1600), ypart (angle, 1120), 100, TCOL_SH2, 990); angle += ANGLE_16; } break; case ENEMY_BOSS2: play_effectwfvx (WAV_BANG, tone[NOTE_0C] / 2, 250, x); play_effectwfvx (WAV_DRUM4, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 140, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 110, TCOL_YELLOW, 0); quick_cloud (CLOUD_HSHOCK, x + 40000, y + 10000, 0, 0, 50, 2, 0); quick_cloud (CLOUD_HSHOCK, x - 40000, y + 10000, 0, 0, 50, 2, 0); quick_cloud (CLOUD_CIRCLE1, x - 53000, y + 40000, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x - 53000, y + 40000, 0, 0, 50, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x + 53000, y + 40000, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + 53000, y + 40000, 0, 0, 50, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x - 32000, y - 20000, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x - 32000, y - 20000, 0, 0, 50, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, x + 32000, y - 20000, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, x + 32000, y - 20000, 0, 0, 50, TCOL_YELLOW, 0); angle = grand (ANGLE_1); for (i = 0; i < 4; i++) { angle += ANGLE_4; angle &= 1023; xa = 6000 + grand (3000); quick_cloud (CLOUD_BURN, x + xpart (angle, 25000), y + ypart (angle, 25000), xpart (angle, xa), ypart (angle, xa), 250 + grand (50), 0, 970); } angle = grand (ANGLE_1); for (i = 0; i < 8; i++) { angle = i * ANGLE_8 + grand (ANGLE_8); angle &= 1023; xa = 4000 + grand (4000); quick_cloud (CLOUD_BURN, x + xpart (angle, 25000), y + ypart (angle, 25000), xpart (angle, xa), ypart (angle, xa), 50 + grand (30), 0, 995); } for (i = 0; i < 15; i++) { angle = grand (ANGLE_1); xa = 4000 + grand (4000); quick_cloud (CLOUD_CIRCLE5, x + xpart (angle, 25000), y + xpart (angle, 25000), xpart (angle, xa), ypart (angle, xa), 80 + grand (30), TCOL_ORANGE, 950); } break; case ENEMY_HOOK: play_effectwfvx (WAV_DRUM3, tone[NOTE_1E], 250, x); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 2, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_SH1, 0); c = quick_cloud (CLOUD_DELAY1, x - 19000, y, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 7; cloud[c].y2 = 16; } c = quick_cloud (CLOUD_DELAY1, x + 19000, y, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 7; cloud[c].y2 = 16; } break; case ENEMY_HOOK2: play_effectwfvx (WAV_DRUM3, tone[NOTE_1E], 250, x); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 2, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 30, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_SH1, 0); c = quick_cloud (CLOUD_DELAY1, x - 29000, y, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 9; cloud[c].y2 = 22; } c = quick_cloud (CLOUD_DELAY1, x + 29000, y, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 9; cloud[c].y2 = 22; } break; case ENEMY_DROPPER: play_effectwfvx (WAV_DRUM3, tone[NOTE_1E], 250, x); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 2, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 40, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 40, TCOL_SH1, 0); quick_cloud (CLOUD_SCIRCLE, x, y, 0, 0, enemy[e].status, TRANS_B1_OUT, 0); c = quick_cloud (CLOUD_DELAY1, x - 15000, y + 21000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 7; cloud[c].y2 = 14; } c = quick_cloud (CLOUD_DELAY1, x + 15000, y + 21000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 7; cloud[c].y2 = 14; } c = quick_cloud (CLOUD_DELAY1, x, y - 19000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 12; cloud[c].y2 = 20; } break; case ENEMY_RING: play_effectwfvx (WAV_DRUM3, tone[NOTE_1E], 250, x); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 2, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 80, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_SCIRCLE, x, y, 0, 0, enemy[e].status, TRANS_B4_OUT, 0); quick_cloud (CLOUD_SCIRCLE, x, y, 0, 0, enemy[e].status / 2, TRANS_B3_OUT, 0); c = quick_cloud (CLOUD_DELAY1, x - 29000, y - 29000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 10; cloud[c].y2 = 20; } c = quick_cloud (CLOUD_DELAY1, x - 29000, y + 29000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 10; cloud[c].y2 = 20; } c = quick_cloud (CLOUD_DELAY1, x + 29000, y - 29000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 10; cloud[c].y2 = 20; } c = quick_cloud (CLOUD_DELAY1, x + 29000, y + 29000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 10; cloud[c].y2 = 20; } c = quick_cloud (CLOUD_DELAY1, x + 0, y + 35000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 26; cloud[c].y2 = 18; } c = quick_cloud (CLOUD_DELAY1, x + 0, y - 35000, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 26; cloud[c].y2 = 18; } c = quick_cloud (CLOUD_DELAY1, x + 35000, y, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 26; cloud[c].y2 = 18; } c = quick_cloud (CLOUD_DELAY1, x - 35000, y, 0, 0, 3000, TCOL_SH1, 0); if (c != 0) { cloud[c].angle = 26; cloud[c].y2 = 18; } break; case ENEMY_HUNTER: play_effectwfvx (WAV_DRUM4, tone[NOTE_1C], 250, x); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 35, 3, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 90, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 120, TCOL_SH1, 0); delay_cloud (x - 18000, y - 54000, TCOL_SH1, 15, 25); delay_cloud (x + 18000, y - 54000, TCOL_SH1, 15, 25); delay_cloud (x - 39000, y - 30000, TCOL_SH1, 25, 25); delay_cloud (x + 39000, y - 30000, TCOL_SH1, 25, 25); delay_cloud (x - 48000, y - 3000, TCOL_SH1, 35, 25); delay_cloud (x + 48000, y - 3000, TCOL_SH1, 35, 25); delay_cloud (x - 39000, y + 36000, TCOL_SH1, 45, 25); delay_cloud (x + 39000, y + 36000, TCOL_SH1, 45, 25); delay_cloud (x, y + 16000, TCOL_SH1, 20, 45); break; case ENEMY_SPINNER: play_effectwfvx (WAV_BANG, tone[NOTE_0C], 250, x); play_effectwfvx (WAV_DRUM4, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 35, 3, 0); quick_cloud (CLOUD_LSHOCK, x, y + 50000, 0, 0, 35, 2, 0); quick_cloud (CLOUD_LSHOCK, x, y - 40000, 0, 0, 35, 2, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 70, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x, y - 50000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y - 45000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x, y + 50000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y + 45000, 0, 0, 70, TCOL_SH1, 0); delay_cloud (x, y - 75000, TCOL_SH1, 35, 25); delay_cloud (x - 27000, y - 45000, TCOL_SH1, 35, 25); delay_cloud (x + 27000, y - 45000, TCOL_SH1, 35, 25); delay_cloud (x, y + 75000, TCOL_SH1, 35, 25); delay_cloud (x - 27000, y + 45000, TCOL_SH1, 35, 25); delay_cloud (x + 27000, y + 45000, TCOL_SH1, 35, 25); delay_cloud (x, y - 35000, TCOL_SH1, 65, 15); delay_cloud (x - 27000, y - 65000, TCOL_SH1, 65, 15); delay_cloud (x + 27000, y - 65000, TCOL_SH1, 65, 15); delay_cloud (x, y + 35000, TCOL_SH1, 65, 15); delay_cloud (x - 27000, y + 65000, TCOL_SH1, 65, 15); delay_cloud (x + 27000, y + 65000, TCOL_SH1, 65, 15); delay_cloud (x - 40000, y - 15000, TCOL_SH1, 25, 25); delay_cloud (x - 40000, y + 15000, TCOL_SH1, 25, 25); delay_cloud (x + 40000, y - 15000, TCOL_SH1, 25, 25); delay_cloud (x + 40000, y + 15000, TCOL_SH1, 25, 25); delay_cloud (x - 65000, y, TCOL_SH1, 75, 17); delay_cloud (x + 65000, y, TCOL_SH1, 75, 17); quick_cloud (CLOUD_SCIRCLE, x, y, 0, 0, enemy[e].status, TRANS_B2_OUT, 0); break; case ENEMY_WALKER: play_effectwfvx (WAV_BANG, tone[NOTE_0C], 250, x); play_effectwfvx (WAV_DRUM4, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_HSHOCK, x, y, 0, 0, 35, 2, 0); quick_cloud (CLOUD_LSHOCK, x, y, 0, 0, 45, 3, 0); // quick_cloud(CLOUD_CIRCLE3, x, y, 0, 0, 70, TCOL_SH2, 0); // quick_cloud(CLOUD_CIRCLE2, x, y, 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x, y - 54000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y - 48000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x - 52000, y, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x - 49000, y, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + 52000, y, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x + 49000, y, 0, 0, 70, TCOL_SH1, 0); delay_cloud (x - 82000, y, TCOL_SH1, 35, 27); delay_cloud (x - 55000, y - 35000, TCOL_SH1, 35, 27); delay_cloud (x - 55000, y + 35000, TCOL_SH1, 35, 27); delay_cloud (x + 82000, y, TCOL_SH1, 35, 27); delay_cloud (x + 55000, y - 35000, TCOL_SH1, 35, 27); delay_cloud (x + 55000, y + 35000, TCOL_SH1, 35, 27); delay_cloud (x + 35000, y - 45000, TCOL_SH1, 55, 20); delay_cloud (x - 35000, y - 45000, TCOL_SH1, 55, 20); delay_cloud (x - 102000, y, TCOL_SH1, 65, 15); delay_cloud (x + 102000, y, TCOL_SH1, 65, 15); break; case ENEMY_BOSS4: play_effectwfvx (WAV_BANG, tone[NOTE_0C] / 2, 250, x); play_effectwfvx (WAV_DRUM4, tone[NOTE_0C], 250, x); quick_cloud (CLOUD_HSHOCK, x + 56000, y + 62000, 0, 0, 50, 3, 0); quick_cloud (CLOUD_HSHOCK, x - 56000, y + 62000, 0, 0, 50, 3, 0); quick_cloud (CLOUD_HSHOCK, x + 70000, y - 61000, 0, 0, 50, 2, 0); quick_cloud (CLOUD_HSHOCK, x - 70000, y - 61000, 0, 0, 50, 2, 0); quick_cloud (CLOUD_CIRCLE3, x, y + 23000, 0, 0, 90, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x, y + 23000, 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x - 56000, y - 61000, 0, 0, 90, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x - 56000, y - 61000, 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + 56000, y - 61000, 0, 0, 90, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x + 56000, y - 61000, 0, 0, 80, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x - 77000, y - 8000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x - 77000, y - 8000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x - 80000, y + 24000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x - 80000, y + 24000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x - 68000, y + 50000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x - 68000, y + 50000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x - 45000, y + 70000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x - 45000, y + 70000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + 77000, y - 8000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x + 77000, y - 8000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + 80000, y + 24000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x + 80000, y + 24000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + 68000, y + 50000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x + 68000, y + 50000, 0, 0, 70, TCOL_SH1, 0); quick_cloud (CLOUD_CIRCLE3, x + 45000, y + 70000, 0, 0, 60, TCOL_SH2, 0); quick_cloud (CLOUD_CIRCLE2, x + 45000, y + 70000, 0, 0, 70, TCOL_SH1, 0); delay_cloud (x - 87000, y - 16000, TCOL_SH1, 35, 27); delay_cloud (x - 90000, y + 30000, TCOL_SH1, 35, 27); delay_cloud (x - 78000, y + 58000, TCOL_SH1, 35, 27); delay_cloud (x - 45000, y + 82000, TCOL_SH1, 35, 27); delay_cloud (x + 87000, y - 16000, TCOL_SH1, 35, 27); delay_cloud (x + 90000, y + 30000, TCOL_SH1, 35, 27); delay_cloud (x + 78000, y + 58000, TCOL_SH1, 35, 27); delay_cloud (x + 45000, y + 82000, TCOL_SH1, 35, 27); delay_cloud (x, y + 25000, TCOL_SH1, 55, 47); delay_cloud (x, y, TCOL_SH1, 45, 37); delay_cloud (x, y + 50000, TCOL_SH1, 55, 47); delay_cloud (x - 25000, y + 25000, TCOL_SH1, 55, 47); delay_cloud (x + 25000, y + 25000, TCOL_SH1, 55, 47); quick_cloud (CLOUD_SCIRCLE, x - 70000, y - 61000, 0, 0, boss.spin_rad, TRANS_B2_OUT, 0); quick_cloud (CLOUD_SCIRCLE, x + 70000, y - 61000, 0, 0, boss.spin_rad, TRANS_B2_OUT, 0); quick_cloud (CLOUD_SCIRCLE, x, y + 25000, 0, 0, boss.spin_rad2, TRANS_B3_OUT, 0); angle = boss.spin_angle2; quick_cloud (CLOUD_SCIRCLE, x + xpart (angle, boss.spin_rad2 * GRAIN), y + ypart (angle, boss.spin_rad2 * GRAIN) + 25000, 0, 0, boss.spin_rad3, TRANS_B1_OUT, 0); angle += ANGLE_3; quick_cloud (CLOUD_SCIRCLE, x + xpart (angle, boss.spin_rad2 * GRAIN), y + ypart (angle, boss.spin_rad2 * GRAIN) + 25000, 0, 0, boss.spin_rad3, TRANS_B1_OUT, 0); angle += ANGLE_3; quick_cloud (CLOUD_SCIRCLE, x + xpart (angle, boss.spin_rad2 * GRAIN), y + ypart (angle, boss.spin_rad2 * GRAIN) + 25000, 0, 0, boss.spin_rad3, TRANS_B1_OUT, 0); break; default: parts_must_explode (e); break; } // remember part_explode!! allocate_xp (e); register_destroyed (e); destroy_enemy (e); } void delay_cloud (int x, int y, int col, int delay, int size) { int c = quick_cloud (CLOUD_DELAY1, x, y, 0, 0, 3000, col, 0); if (c != 0) { cloud[c].angle = delay; cloud[c].y2 = size; } } // this is ONLY for parts which explode because the parent has exploded. If the part is destroyed itself, // don't call this! void part_explode (int e) { // int x = enemy[e].x; // int y = enemy[e].y; //int angle; //int i; switch (enemy[e].type) { } parts_must_explode (e); // allocate_xp(e); register_destroyed (e); destroy_enemy (e); } void parts_must_explode (int e) { int x = enemy[e].x; int y = enemy[e].y; // int angle; // int i; switch (enemy[e].type) { case ENEMY_CARRIER1_PART: play_effectwfvx (WAV_BANG, tone[NOTE_1G], 250, x); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 50, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 50, TCOL_YELLOW, 0); quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_CIRCLE2, x, y - 5000, 0, -2000, 50, TCOL_ORANGE, 960); quick_cloud (CLOUD_CIRCLE3, x, y - 5000, 0, -2000, 50, TCOL_YELLOW, 960); quick_cloud (CLOUD_CIRCLE2, x, y + 5000, 0, +2000, 50, TCOL_ORANGE, 960); quick_cloud (CLOUD_CIRCLE3, x, y + 5000, 0, +2000, 50, TCOL_YELLOW, 960); break; } } #define LEVEL_CALC (3000 + (1400 * player.wlevel [i])) void allocate_xp (int e) { if (eclass[enemy[e].type].ai == AI_BOSS) { gain_score (eclass[enemy[e].type].xp); return; } if (boss.fight && (enemy[e].type == ENEMY_SMALL || enemy[e].type == ENEMY_SMALL2)) return; int xp = (eclass[enemy[e].type].xp * 1000); int mhp = eclass[enemy[e].type].max_hp; int i; for (i = 0; i < NO_PARTS; i++) { if (enemy[e].part[i] != -1) { xp += (eclass[enemy[enemy[e].part[i]].type].xp * 1000); gain_score (eclass[enemy[enemy[e].part[i]].type].xp); } } // xp for parts allocated according to damage to main. Any damage to parts is ignored (but becomes relevant // if the part separates later). float xp_per_dam = (float) xp / (float) mhp; // int i; gain_score (eclass[enemy[e].type].xp); for (i = 0; i < 3; i++) { if (player.wlevel[i] > 8) continue; player.wxp[i] += (enemy[e].whurt[i] * xp_per_dam) / 100; if (player.wxp[i] >= LEVEL_CALC) { player.wxp[i] -= LEVEL_CALC; player.wlevel[i]++; player.wgained[i] = 20; // play_effectwfvx(WAV_LEVEL, tone[NOTE_1G + player.wlevel [i]], 200, player.x); play_effectwfvx (WAV_LEVEL, tone[NOTE_2G], 250, player.x); } set_wpixels (); } } void gain_score (int s) { if (boss.fight == 0 && arena.stage_score < arena.next_phase[arena.phase] && arena.stage_score + s >= arena.next_phase[arena.phase]) { arena.shift_message = 300; arena.phase++; arena.phase_bonus += 5; } arena.stage_score += s; int additional_score = (s * (100 + arena.phase_bonus)) / 100; if ((player.score / 2000) != (player.score + additional_score) / 2000) { player.lives++; play_effectwfvx (WAV_LEVEL, tone[NOTE_1G], 250, player.x); // play_effectwfvx(WAV_EXTRA, 1500, 200, 320); } player.score += additional_score; } void set_wpixels (void) { int i; for (i = 0; i < 3; i++) { player.wpixels2[i] = LEVEL_CALC / 150; player.wpixels[i] = player.wxp[i] / 150; if (player.wpixels[i] >= player.wpixels2[i]) player.wpixels[i] = player.wpixels2[i] - 1; } } void register_destroyed (int e) { int b; int i; if (player.weapon[0] == WPN_SEEKER || player.weapon[1] == WPN_SEEKER || player.weapon[2] == WPN_SEEKER) { for (b = 0; b < NO_PBULLETS; b++) { if (pbullet[b].type == PBULLET_SEEKER) { if (pbullet[b].target == e) pbullet[b].target = -1; } } } if (enemy[e].parent != -1) { int pe = enemy[e].parent; enemy[pe].part[enemy[e].part_index] = -1; } else { for (i = 0; i < NO_PARTS; i++) { if (enemy[e].part[i] != -1) { part_explode (enemy[e].part[i]); } } } for (i = 0; i < NO_ENEMIES; i++) { if (enemy[i].escorting == e) enemy[i].escorting = -1; } } void destroy_enemy (int e) { enemy[e].type = ENEMY_NONE; } garden-1.0.9/src/display.h0000644000175000017500000001653012457263274012330 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void run_display (int show); void run_underlay (void); void display_pause (int pc); struct RLE_STRUCT { RLE_SPRITE *sprite; int x; int y; }; #define PLAT_Y 300 #define ISLAND1_Y 300 #define PLATFORM_SIZE 92 #define ISLAND1_SIZE 92 // includes one border pixel - only used in loading enum { FILE_PLATFORM_LR, FILE_PLATFORM_UD, //FILE_PLATFORM_LR_TLR, //FILE_PLATFORM_UD_TUD, //FILE_PLATFORM_LR_TL, //FILE_PLATFORM_UD_TU, FILE_PLATFORM_L, FILE_PLATFORM_U, FILE_PLATFORM_UL, FILE_PLATFORM_UDL, FILE_PLATFORM_ULR, FILE_PLATFORM_NODE, FILE_PLATFORM_NODE2, FILE_PLATFORM_NODE3, FILE_PLATFORM_RLES }; enum { PLATFORM_EMPTY = -1, PLATFORM_LR, PLATFORM_UD, PLATFORM_UL, PLATFORM_DL, PLATFORM_UR, PLATFORM_DR, //PLATFORM_LR_TLR, // terminates L/R //PLATFORM_LR_TL, //PLATFORM_LR_TR, //PLATFORM_UD_TUD, //PLATFORM_UD_TU, //PLATFORM_UD_TD, PLATFORM_UDL, PLATFORM_UDR, PLATFORM_ULR, PLATFORM_DLR, PLATFORM_L, PLATFORM_R, PLATFORM_U, PLATFORM_D, PLATFORM_NODE, PLATFORM_NODE2, PLATFORM_NODE3, /*PLATFORM1_, PLATFORM1_, PLATFORM1_, PLATFORM1_,*/ PLATFORM_RLES }; enum { FILE_ISLAND1_D, FILE_ISLAND1_R, FILE_ISLAND1_DR, FILE_ISLAND1_NOT_UL, FILE_ISLAND1_UL_DR, FILE_ISLAND1_FULL, FILE_ISLAND1_FULL2, FILE_ISLAND1_FULL3, FILE_ISLAND1_FULL4, FILE_ISLAND1_FULL5, FILE_ISLAND1_RLES }; enum { ISLAND1_EMPTY = -1, ISLAND1_D, ISLAND1_U, ISLAND1_L, ISLAND1_R, ISLAND1_DR, ISLAND1_DL, ISLAND1_UR, ISLAND1_UL, ISLAND1_NOT_UL, ISLAND1_NOT_UR, ISLAND1_NOT_DL, ISLAND1_NOT_DR, ISLAND1_UL_DR, ISLAND1_UR_DL, ISLAND1_FULL, ISLAND1_FULL2, ISLAND1_FULL3, ISLAND1_FULL4, ISLAND1_FULL5, ISLAND1_D2, ISLAND1_U2, ISLAND1_L2, ISLAND1_R2, ISLAND1_DR2, ISLAND1_DL2, ISLAND1_UR2, ISLAND1_UL2, ISLAND1_NOT_UL2, ISLAND1_NOT_UR2, ISLAND1_NOT_DL2, ISLAND1_NOT_DR2, ISLAND1_UL_DR2, ISLAND1_UR_DL2, ISLAND1_D3, ISLAND1_U3, ISLAND1_L3, ISLAND1_R3, ISLAND1_DR3, ISLAND1_DL3, ISLAND1_UR3, ISLAND1_UL3, ISLAND1_NOT_UL3, ISLAND1_NOT_UR3, ISLAND1_NOT_DL3, ISLAND1_NOT_DR3, ISLAND1_UL_DR3, ISLAND1_UR_DL3, ISLAND1_RLES }; enum { BONE_HOOK1, BONE_HOOK2, BONE_HOOK3, BONE_HOOK4, BONE_HOOK5, BONE_HOOK2F, BONE_HOOK3F, BONE_HOOK4F, BONE_HOOK5F, BONE_B_HOOK1, BONE_B_HOOK2, BONE_B_HOOK3, BONE_B_HOOK4, BONE_B_HOOK5, BONE_B_HOOK2F, BONE_B_HOOK3F, BONE_B_HOOK4F, BONE_B_HOOK5F, BONE_DROP1, BONE_DROP2, BONE_DROP3, BONE_DROP4, BONE_DROP2F, BONE_DROP3F, BONE_DROP4F, BONE_B_DROP1, BONE_B_DROP2, BONE_B_DROP3, BONE_B_DROP4, BONE_B_DROP2F, BONE_B_DROP3F, BONE_B_DROP4F, BONE_RING1, BONE_RING2, BONE_RING3, BONE_RING4, BONE_RING5, BONE_RING2FH, BONE_RING3FH, BONE_RING4FH, BONE_RING5FH, BONE_RING2FV, BONE_RING3FV, BONE_RING4FV, BONE_RING5FV, BONE_RING2FVH, BONE_RING3FVH, BONE_RING4FVH, BONE_RING5FVH, BONE_B_RING1, BONE_B_RING2, BONE_B_RING3, BONE_B_RING4, BONE_B_RING5, BONE_B_RING2FH, BONE_B_RING3FH, BONE_B_RING4FH, BONE_B_RING5FH, BONE_B_RING2FV, BONE_B_RING3FV, BONE_B_RING4FV, BONE_B_RING5FV, BONE_B_RING2FVH, BONE_B_RING3FVH, BONE_B_RING4FVH, BONE_B_RING5FVH, BONE_HUNTER1, BONE_HUNTER2, BONE_HUNTER3, BONE_HUNTER4, BONE_HUNTER5, BONE_HUNTER2F, BONE_HUNTER3F, BONE_HUNTER4F, BONE_HUNTER5F, BONE_B_HUNTER1, BONE_B_HUNTER2, BONE_B_HUNTER3, BONE_B_HUNTER4, BONE_B_HUNTER5, BONE_B_HUNTER2F, BONE_B_HUNTER3F, BONE_B_HUNTER4F, BONE_B_HUNTER5F, BONE_B_SPINNER, BONE_B_WALKER1, BONE_B_WALKER2, BONE_B_WALKER2F, BONE_RLES }; enum { S_ENEMY_SWOOPER1_1, S_ENEMY_SWOOPER1_2, S_ENEMY_SWOOPER1_3, S_ENEMY_SWOOPER1_4, S_ENEMY_DARTER1_MAIN, S_ENEMY_DARTER1_TOP, S_ENEMY_DARTER1_CENTRE, S_ENEMY_DARTER1_INNER_L, S_ENEMY_DARTER1_OUTER_L, S_ENEMY_DARTER1_INNER_R, S_ENEMY_DARTER1_OUTER_R, S_ENEMY_PLAYER, S_ENEMY_PLAYER1, S_ENEMY_PLAYER2, S_ENEMY_PLAYER3, S_ENEMY_PLAYER_UP_L, S_ENEMY_PLAYER_UP_R, S_ENEMY_PLAYER_DOWN_L, S_ENEMY_PLAYER_DOWN_R, S_ENEMY_DIVER1_CENTRE, S_ENEMY_DIVER1_INNER_L, S_ENEMY_DIVER1_INNER_R, S_ENEMY_DIVER1_OUTER_L, S_ENEMY_DIVER1_OUTER_R, S_ENEMY_C1P1_CORE, S_ENEMY_C1P1_TOP, S_ENEMY_C1P1_BOTTOM1, S_ENEMY_C1P1_BOTTOM2, S_ENEMY_C1P1_MIDL, S_ENEMY_C1P1_MIDR, S_ENEMY_SWOOPER2_1, S_ENEMY_SWOOPER2_2, S_ENEMY_SWOOPER2_3, S_ENEMY_SWOOPER2_4, S_ENEMY_DARTER2_TOP, S_ENEMY_DARTER2_BOTTOM, S_ENEMY_DARTER2_CORE, S_ENEMY_DARTER2_INNER_L, S_ENEMY_DARTER2_OUTER_L, S_ENEMY_DARTER2_INNER_R, S_ENEMY_DARTER2_OUTER_R, S_ENEMY_SMALL_OUTER_L, S_ENEMY_SMALL_OUTER_R, S_ENEMY_SMALL_CORE1, S_ENEMY_SMALL_CORE2, S_ENEMY_LARGER_OUTER_L, S_ENEMY_LARGER_OUTER_R, S_ENEMY_LARGER_CORE1, S_ENEMY_LARGER_CORE2, S_ENEMY_WINGS_OUTER_L, S_ENEMY_WINGS_OUTER_R, S_ENEMY_WINGS_CORE1, S_ENEMY_WINGS_CORE2, S_ENEMY_MEGA_OUTER_L, S_ENEMY_MEGA_OUTER_R, S_ENEMY_MEGA_CORE, S_ENEMY_BOSS3_CORE, S_ENEMY_DRIFTER1_CORE, S_ENEMY_DRIFTER1_L, S_ENEMY_DRIFTER1_R, S_ENEMY_BEAMER_CORE, S_ENEMY_BEAMER_L, S_ENEMY_BEAMER_R, S_ENEMY_BEAMER_U, S_ENEMY_BEAMER_D, S_ENEMY_RISER1_CORE, S_ENEMY_RISER1_L, S_ENEMY_RISER1_R, S_ENEMY_DRIFTER2_CORE, S_ENEMY_DRIFTER2_L, S_ENEMY_DRIFTER2_R, S_ENEMY_ESCORT_CORE, S_ENEMY_ESCORT_L, S_ENEMY_ESCORT_R, S_ENEMY_SHOOTER_L, S_ENEMY_SHOOTER_R, S_ENEMY_SHOOTER_U, S_ENEMY_HOOK1, S_ENEMY_HOOK2, S_ENEMY_HOOK3, S_ENEMY_DROPPER1, S_ENEMY_DROPPER2, S_ENEMY_DROPPER3, S_ENEMY_RING1, S_ENEMY_RING2, S_ENEMY_RING3, S_ENEMY_HUNTER1, S_ENEMY_HUNTER2, S_ENEMY_HUNTER3, S_ENEMY_HOOK2_1, S_ENEMY_HOOK2_2, S_ENEMY_HOOK2_3, S_ENEMY_RLES }; enum { L_ENEMY_STOPPER1, L_ENEMY_STOPPER1_FRONT, L_ENEMY_STOPPER1_CENTRE, L_ENEMY_STOPPER1_F_L, L_ENEMY_STOPPER1_F_R, L_ENEMY_STOPPER1_M_L, L_ENEMY_STOPPER1_M_R, L_ENEMY_STOPPER1_B_L, L_ENEMY_STOPPER1_B_R, L_ENEMY_CARRIER1, L_ENEMY_CARRIER1_CORE, L_ENEMY_CARRIER1_TOP1, L_ENEMY_CARRIER1_TOP2, L_ENEMY_CARRIER1_TOP3, L_ENEMY_CARRIER1_MIDL1, L_ENEMY_CARRIER1_MIDL2, L_ENEMY_CARRIER1_MIDR1, L_ENEMY_CARRIER1_MIDR2, L_ENEMY_CARRIER1_BOTTOM1, L_ENEMY_CARRIER1_BOTTOM2, L_ENEMY_POD1_CORE, L_ENEMY_POD1_BODYL, L_ENEMY_POD1_BODYR, L_ENEMY_POD1_TOPC, L_ENEMY_POD1_TOPL, L_ENEMY_POD1_TOPR, L_ENEMY_CRUISER1, L_ENEMY_CRUISER2, L_ENEMY_CRUISER3, L_ENEMY_CRUISER4, L_ENEMY_CRUISER5, L_ENEMY_BOSS1_CORE, L_ENEMY_BOSS1_UL, L_ENEMY_BOSS1_UR, L_ENEMY_BOSS1_DL, L_ENEMY_BOSS1_DR, L_ENEMY_BOSS1_U, L_ENEMY_BOSS1_D, L_ENEMY_BOSS1_L, L_ENEMY_BOSS1_R, L_ENEMY_BOSS1_OUT_L, L_ENEMY_BOSS1_OUT_R, L_ENEMY_BOSS2_CORE, L_ENEMY_BOSS2_IN_L, L_ENEMY_BOSS2_IN_R, L_ENEMY_BOSS2_OUT_L, L_ENEMY_BOSS2_OUT_R, L_ENEMY_WALKER1, L_ENEMY_WALKER2, L_ENEMY_WALKER3, L_ENEMY_SPINNER1, L_ENEMY_SPINNER2, L_ENEMY_SPINNER3, L_ENEMY_BOSS4, L_ENEMY_RLES }; enum { RLE_TRANS_MGBULLET1, RLE_TRANS_MGBULLET2, RLE_TRANS_MGBULLET3, RLE_TRANS_MGBULLET4, TRANS_RLES }; garden-1.0.9/src/ebullet.c0000644000175000017500000002636212457263274012316 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include #include "allegro.h" #include "globvars.h" #include "stuff.h" #include "enemy.h" #include "sound.h" #include "cloud.h" #include "palette.h" void run_ebullets (void); void destroy_ebullet (int b); //int check_ebullet_collision(int b); void run_standard_cord (int b); void drag_ebullet (int b, int drag); /* Initialises the enemy bullets. Must be called at start of each game/level. */ void init_ebullets (void) { int b; for (b = 0; b < NO_EBULLETS; b++) { ebullet[b].type = EBULLET_NONE; } } /* Creates an enemy bullet of type type and returns the index in the ebullet struct array. */ int create_ebullet (int type) { int b; for (b = 0; b < NO_EBULLETS; b++) { if (ebullet[b].type == EBULLET_NONE) break; if (b == NO_EBULLETS - 1) return -1; } ebullet[b].type = type; ebullet[b].time = 0; ebullet[b].new_ebullet = 1; return b; } /* Call this from the game loop to make the ebullets work. */ void run_ebullets (void) { int b, i, angle, k, c; char no_more_bullet = 0; for (b = 0; b < NO_EBULLETS; b++) { if (ebullet[b].type == EBULLET_NONE) continue; no_more_bullet = 0; ebullet[b].time++; switch (ebullet[b].type) { case EBULLET_TRACKER: ebullet[b].x_speed += xpart (ebullet[b].angle, 200); ebullet[b].y_speed += ypart (ebullet[b].angle, 200); ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; c = create_cloud (CLOUD_ESLINE); if (c != -1) { cloud[c].x2 = ebullet[b].x; cloud[c].y2 = ebullet[b].y; cloud[c].x = ebullet[b].x - ebullet[b].x_speed; cloud[c].y = ebullet[b].y - ebullet[b].y_speed; cloud[c].timeout = 9; cloud[c].colour = TRANS_B1_OUT; } ebullet[b].x_speed *= 98; ebullet[b].x_speed /= 100; ebullet[b].y_speed *= 98; ebullet[b].y_speed /= 100; if (ebullet[b].timeout > 430 - (arena.difficulty * 40) && ebullet[b].timeout < 490) ebullet[b].angle = turn_towards_xy (ebullet[b].x, ebullet[b].y, player.x, player.y, ebullet[b].angle, 10 + arena.difficulty * 4); break; case EBULLET_SPIN: case EBULLET_BEAM: case EBULLET_BEAM2: break; case EBULLET_SEED: if (ebullet[b].cord_wait == -1) { drag_ebullet (b, 910); if (ebullet[b].x_speed < 500 && ebullet[b].x_speed > -500 && ebullet[b].y_speed < 500 && ebullet[b].y_speed > -500) { ebullet[b].type = EBULLET_SEED2; ebullet[b].x_speed = 0; ebullet[b].y_speed = 0; ebullet[b].timeout = 160; ebullet[b].angle2 = pos_or_neg (10 + grand (12)); quick_cloud (CLOUD_CIRCLE2, ebullet[b].x, ebullet[b].y, 0, 0, 15, TCOL_B5, 0); } } ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); break; case EBULLET_LSEED: if (ebullet[b].cord_wait == -1) { drag_ebullet (b, 910); if (ebullet[b].x_speed < 500 && ebullet[b].x_speed > -500 && ebullet[b].y_speed < 500 && ebullet[b].y_speed > -500) { ebullet[b].type = EBULLET_LSEED2; ebullet[b].x_speed = 0; ebullet[b].y_speed = 0; ebullet[b].timeout = 160; ebullet[b].angle2 = pos_or_neg (10 + grand (12)); quick_cloud (CLOUD_CIRCLE2, ebullet[b].x, ebullet[b].y, 0, 0, 15, TCOL_B5, 0); } } ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); break; case EBULLET_SEED2: case EBULLET_LSEED2: ebullet[b].angle += ebullet[b].angle2; break; case EBULLET_STREAM: ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); if (ebullet[b].time % 20 == 0) { angle = ebullet[b].angle + ANGLE_4; angle &= 1023; k = fire_dart (ebullet[b].x + xpart (angle, 10000), ebullet[b].y + ypart (angle, 10000), angle, EBCOL_B1, 60, 80); if (k != -1) { // ebullet[k].new_ebullet = 0; ebullet[k].cord_x = ebullet[b].x; ebullet[k].cord_y = ebullet[b].y; } angle = ebullet[b].angle - ANGLE_4; angle &= 1023; k = fire_dart (ebullet[b].x + xpart (angle, 10000), ebullet[b].y + ypart (angle, 10000), angle, EBCOL_B1, 60, 80); if (k != -1) { // ebullet[k].new_ebullet = 0; ebullet[k].cord_x = ebullet[b].x; ebullet[k].cord_y = ebullet[b].y; } } break; case EBULLET_BURST: if (ebullet[b].time < 120) { ebullet[b].x_speed += xpart (ebullet[b].angle, ebullet[b].accel); ebullet[b].y_speed += ypart (ebullet[b].angle, ebullet[b].accel); } ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); ebullet[b].angle2 += ebullet[b].status; if (ebullet[b].timeout == 1) { for (i = 0; i < 3; i++) { angle = ebullet[b].angle2 + i * ANGLE_3; angle &= 1023; // k = fire_ddart(ebullet[b].x + xpart(angle, 22000), ebullet[b].y + ypart(angle, 22000), angle, EBCOL_B2, 60, 60); k = fire_diamond (ebullet[b].x + xpart (angle, 25000), ebullet[b].y + ypart (angle, 25000), angle, EBCOL_B2, 2000, ebullet[b].status / 2, 30); if (k != -1) { ebullet[k].new_ebullet = 0; ebullet[k].cord_x = ebullet[b].x; ebullet[k].cord_y = ebullet[b].y; } angle += ANGLE_6; angle &= 1023; k = fire_dart (ebullet[b].x + xpart (angle, 20000), ebullet[b].y + ypart (angle, 20000), angle, EBCOL_B1, 60, 30); if (k != -1) { ebullet[k].new_ebullet = 0; ebullet[k].cord_x = ebullet[b].x; ebullet[k].cord_y = ebullet[b].y; } } quick_cloud (CLOUD_CIRCLE3, ebullet[b].x, ebullet[b].y, 0, 0, 15, TCOL_B2, 0); destroy_ebullet (b); no_more_bullet = 1; } /* if (ebullet[b].timeout == 1) { for (i = 0; i < 4; i ++) { angle = ebullet[b].angle2 + i * ANGLE_4; angle &= 1023; // k = fire_ddart(ebullet[b].x + xpart(angle, 22000), ebullet[b].y + ypart(angle, 22000), angle, EBCOL_B2, 60, 60); k = fire_diamond(ebullet[b].x + xpart(angle, 25000), ebullet[b].y + ypart(angle, 25000), angle, EBCOL_B2, 2000, ebullet[b].status / 2, 60); if (k != -1) { ebullet[k].new_ebullet = 0; ebullet[k].cord_x = ebullet[b].x; ebullet[k].cord_y = ebullet[b].y; } angle += ANGLE_8; angle &= 1023; k = fire_dart(ebullet[b].x + xpart(angle, 20000), ebullet[b].y + ypart(angle, 20000), angle, EBCOL_B1, 60, 50); if (k != -1) { ebullet[k].new_ebullet = 0; ebullet[k].cord_x = ebullet[b].x; ebullet[k].cord_y = ebullet[b].y; } } quick_cloud(CLOUD_CIRCLE3, ebullet[b].x, ebullet[b].y, 0, 0, 15, TCOL_B2, 0); destroy_ebullet(b); no_more_bullet = 1; }*/ break; case EBULLET_WING_DIAMOND: if (ebullet[b].time < 80) { ebullet[b].x_speed += xpart (ebullet[b].angle, ebullet[b].accel); ebullet[b].y_speed += ypart (ebullet[b].angle, ebullet[b].accel); } ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); // if (ebullet[b].angle2 < ANGLE_8) ebullet[b].angle2 += ebullet[b].status; break; case EBULLET_SDART: case EBULLET_SHOT: if (ebullet[b].time < 60) { ebullet[b].x_speed += xpart (ebullet[b].angle, ebullet[b].accel); ebullet[b].y_speed += ypart (ebullet[b].angle, ebullet[b].accel); } ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); break; case EBULLET_SHOT2: ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; ebullet[b].angle += ebullet[b].angle2; ebullet[b].angle &= 1023; run_standard_cord (b); break; case EBULLET_CURVE: ebullet[b].x += xpart (ebullet[b].status, ebullet[b].x_speed); //ebullet[b].x_speed; ebullet[b].y += ypart (ebullet[b].status, ebullet[b].x_speed); //ebullet[b].x_speed; ebullet[b].angle += ebullet[b].angle2; ebullet[b].angle &= 1023; if (ebullet[b].cord_wait == -1 && ebullet[b].timeout > 300) ebullet[b].status += ebullet[b].y_speed; run_standard_cord (b); break; case EBULLET_DDART: if (ebullet[b].time < 60) { ebullet[b].x_speed += xpart (ebullet[b].angle, ebullet[b].accel); ebullet[b].y_speed += ypart (ebullet[b].angle, ebullet[b].accel); } ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); break; case EBULLET_DOT: ebullet[b].x += ebullet[b].x_speed; ebullet[b].y += ebullet[b].y_speed; run_standard_cord (b); break; } // if (check_ebullet_collision(b) == 1) // continue; // ebullet no longer exists if (no_more_bullet == 1) continue; ebullet[b].timeout--; if (ebullet[b].cord_wait == -1 && (ebullet[b].x <= -10000 || ebullet[b].y <= -10000 || ebullet[b].x >= 650000 || ebullet[b].y >= 490000)) destroy_ebullet (b); else { if (ebullet[b].timeout <= 0) destroy_ebullet (b); } } } void run_standard_cord (int b) { if (ebullet[b].cord_wait == -1) return; if (ebullet[b].cord_wait > 0) { ebullet[b].cord_wait--; return; } ebullet[b].cord_x_speed += xpart (ebullet[b].cord_angle, 200); ebullet[b].cord_y_speed += ypart (ebullet[b].cord_angle, 200); ebullet[b].cord_x += ebullet[b].cord_x_speed; ebullet[b].cord_y += ebullet[b].cord_y_speed; // was 5000 if (ebullet[b].cord_x >= ebullet[b].x - 9000 && ebullet[b].cord_x <= ebullet[b].x + 9000 && ebullet[b].cord_y >= ebullet[b].y - 9000 && ebullet[b].cord_y <= ebullet[b].y + 9000) ebullet[b].cord_wait = -1; } /* int check_ebullet_collision(int b) { if (ebullet[b].x >= player.x - 9000 && ebullet[b].x <= player.x + 9000 && ebullet[b].y >= player.y - 9000 && ebullet[b].y <= player.y + 9000) { // play_effectwfvx(WAV_BLOP, 500 + grand(1000), 200, ebullet[b].x); destroy_ebullet(b); return 1; } return 0; // no collision } */ void drag_ebullet (int b, int drag) { ebullet[b].x_speed *= drag; ebullet[b].x_speed /= 1000; ebullet[b].y_speed *= drag; ebullet[b].y_speed /= 1000; } void destroy_ebullet (int b) { ebullet[b].type = EBULLET_NONE; } garden-1.0.9/src/stuff.c0000644000175000017500000001136112457272166012002 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ /* This file contains some maths and utility functions. The only ones used at present are: xpart/ypart - call them with angle x and distance d; they'll give you the x component and y component of a line in the angle x and the distance d angle_to_radians - I use a 1024-degree circle in a format called 'angle'. It lets me use lookup tables radians_to_angle without interpolation for simple trig, and minimises slow floating-point operations. angle_to_radians takes 'angle' values and turns them into radians; radians_to_angle etc. grand(n) - random number from 1 to n */ #include "config.h" #include "allegro.h" #include int turn_towards_angle (int angle, int tangle, int turning); int delta_turn_towards_angle (int angle, int tangle, int turning); float lcos (int angle); float lsin (int angle); float angle_to_radians (int angle); // I have no idea why, but the first few elements of cos_table always get corrupted // unless I put a big fat decoy array just above. A similar thing happens to the // palette arrays; allegro seems to have a problem with global arrays like these. float decoy_table[ANGLE_1]; // not used float cos_table[ANGLE_1]; float sin_table[ANGLE_1]; inline int xpart (int angle, int length); void init_trig (void) { int i; for (i = 0; i < ANGLE_1; i++) { cos_table[i] = cos (angle_to_radians (i)); // * ANGLE_1; sin_table[i] = sin (angle_to_radians (i)); // * ANGLE_1; } } inline int xpart (int angle, int length) { return (cos_table[angle & 1023] * length); } inline int ypart (int angle, int length) { return (sin_table[angle & 1023] * length); } float lcos (int angle) { return cos_table[angle & 1023]; } float lsin (int angle) { return sin_table[angle & 1023]; } float angle_to_radians (int angle) { return ((float) angle * PI * 2) / ANGLE_1; } int radians_to_angle (float angle) { if (angle < 0) angle += PI * 2; return (int) ((angle * ANGLE_1) / (PI * 2)); } fixed angle_to_fixed (int angle) { return itofix (angle / ANGLE_TO_FIXED); } int grand (int number) { if (number == 0) return 0; return ((rand () + (rand () << 16)) & 0x7fffffff) % number; } // returns the new angle int turn_towards_angle (int angle, int tangle, int turning) { if ((angle < tangle && tangle > angle + ANGLE_2) || (angle > tangle && tangle > angle - ANGLE_2)) { angle -= turning; if (angle < 0) angle += ANGLE_1; } else { angle += turning; if (angle > ANGLE_1) angle -= ANGLE_1; } return angle; } int turn_towards_xy (int x1, int y1, int x2, int y2, int angle, int turning) { int tangle = radians_to_angle (atan2 ((y2 - y1), (x2 - x1))) & 1023; /* if (tangle < 0) tangle += ANGLE_1; if (tangle > ANGLE_1) tangle -= ANGLE_1;*/ return turn_towards_angle (angle, tangle, turning); } // delta version just returns the change needed int delta_turn_towards_angle (int angle, int tangle, int turning) { // if ((angle < tangle && tangle > angle + ANGLE_2) if ((angle < tangle && tangle > angle + ANGLE_2) || (angle > tangle && tangle > angle - ANGLE_2)) { return turning * -1; } return turning; } int odd_even (int v) { if ((v | 1) == 1) return 1; return -1; } int delta_turn_towards_xy (int x1, int y1, int x2, int y2, int angle, int turning) { int tangle = radians_to_angle (atan2 ((y2 - y1), (x2 - x1))); if (tangle < 0) tangle += ANGLE_1; if (tangle > ANGLE_1) tangle -= ANGLE_1; return delta_turn_towards_angle (angle, tangle, turning); } // speed must be at least 4, and a factor of 1024 int pulsate (int speed, int amount, int county) { return xpart ((county * speed) & 1023, amount); } void error_message_out (const char *errm) { set_gfx_mode (GFX_TEXT, 0, 0, 0, 0); allegro_message ("%s", errm); exit (1); } int angle_difference (int a1, int a2) { int d1, d2; d1 = (a1 - a2 + ANGLE_1) % ANGLE_1; d2 = (a2 - a1 + ANGLE_1) % ANGLE_1; if (d1 < d2) return abs (d1); return abs (d2); } int pos_or_neg (int a) { if (grand (2) == 0) return a; return a * -1; } garden-1.0.9/src/pbullet.h0000644000175000017500000000160212457263274012324 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void run_pbullets (void); int create_pbullet (int type); int init_pbullets (void); void beam_collision (int m); void swbeam_collision (int m); garden-1.0.9/src/enemy.h0000644000175000017500000000226512457263274012000 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ int create_enemy (int type); void init_enemies (void); void run_enemies (void); void pbullet_hits_enemy (int b, int e); int hurt_enemy (int e, int dam, int source);; void set_wpixels (void); int fire_dart (int x, int y, int angle, int colour, int wait, int accel); int fire_ddart (int x, int y, int angle, int colour, int wait, int accel); int fire_diamond (int x, int y, int angle, int colour, int speed, int rot, int wait); garden-1.0.9/src/pbullet.c0000644000175000017500000005340312457263274012325 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include #include "allegro.h" #include "globvars.h" #include "stuff.h" #include "enemy.h" #include "sound.h" #include "cloud.h" #include "palette.h" void run_pbullets (void); void destroy_pbullet (int b); int check_pbullet_collision (int b, int survive); void pbullet_explode (int b, int hit); void run_seeker (int b); void find_new_seeker_target (int b); void explosion (int x, int y, int r, int d, int b); void init_pbullets (void) { int b; for (b = 0; b < NO_PBULLETS; b++) { pbullet[b].type = PBULLET_NONE; } } int create_pbullet (int type) { int b; for (b = 0; b < NO_PBULLETS; b++) { if (pbullet[b].type == PBULLET_NONE) break; if (b == NO_PBULLETS - 1) return -1; } pbullet[b].type = type; pbullet[b].persist = 0; pbullet[b].time = 0; pbullet[b].timeout = -1; return b; } void run_pbullets (void) { int b, c, c2; for (b = 0; b < NO_PBULLETS; b++) { if (pbullet[b].type == PBULLET_NONE) continue; pbullet[b].time++; switch (pbullet[b].type) { case PBULLET_BLADE: check_pbullet_collision (b, 1); destroy_pbullet (b); continue; // break; case PBULLET_SEEKER: run_seeker (b); check_pbullet_collision (b, 0); break; case PBULLET_CANNON: pbullet[b].y += pbullet[b].y_speed; c = create_cloud (CLOUD_CIRCLE5); if (c != -1) { cloud[c].x = pbullet[b].x; cloud[c].y = pbullet[b].y; // cloud[c].x_speed = xpart((arena.counter * 64) % ANGLE_1, 700 + pbullet[b].level * 70); cloud[c].x_speed = xpart (arena.counter * 64, 700 + pbullet[b].level * 70); cloud[c].y_speed = -900 - grand (500); cloud[c].colour = TCOL_ORANGE; cloud[c].timeout = 30 + grand (20) + pbullet[b].level; } check_pbullet_collision (b, 0); break; case PBULLET_RECT: // eye of rectification pbullet[b].y += pbullet[b].y_speed; c = create_cloud (CLOUD_CIRCLE3); if (c != -1) { cloud[c].x = pbullet[b].x + grand (9000) - grand (9000); cloud[c].y = pbullet[b].y + grand (9000) - grand (9000); cloud[c].x_speed = grand (400) - grand (400); cloud[c].y_speed = grand (400) - grand (400); cloud[c].colour = TCOL_ORANGE; cloud[c].timeout = 12 + grand (40) + pbullet[b].level * 2; c2 = create_cloud (CLOUD_CIRCLE2); if (c2 != -1) { cloud[c2].x = cloud[c].x + grand (3000) - grand (3000); cloud[c2].y = cloud[c].y + grand (3000) - grand (3000); cloud[c2].x_speed = cloud[c].x_speed + grand (100) - grand (100); cloud[c2].y_speed = cloud[c].y_speed + grand (100) - grand (100); cloud[c2].colour = TCOL_YELLOW; cloud[c2].timeout = cloud[c].timeout / 3; } } check_pbullet_collision (b, 0); break; default: case PBULLET_SCATTER: pbullet[b].x += pbullet[b].x_speed; pbullet[b].y += pbullet[b].y_speed; check_pbullet_collision (b, 0); break; case PBULLET_RING: pbullet[b].x += pbullet[b].x_speed; pbullet[b].y += pbullet[b].y_speed; check_pbullet_collision (b, 0); pbullet[b].status += 2 + pbullet[b].level / 3; if (pbullet[b].status > 140 + pbullet[b].level * 5) pbullet[b].status = 140 + pbullet[b].level * 5; pbullet[b].xsize = pbullet[b].status * 100; pbullet[b].ysize = pbullet[b].status * 100; break; case PBULLET_MGUN: // pbullet[b].x += pbullet[b].x_speed; pbullet[b].y += pbullet[b].y_speed; check_pbullet_collision (b, 0); break; } if (pbullet[b].timeout > -1) { pbullet[b].timeout--; if (pbullet[b].timeout <= 0) { pbullet_explode (b, 0); continue; } } if (pbullet[b].persist == 0) { if (pbullet[b].x <= X_MIN - 20000 || pbullet[b].x >= X_MAX + 20000 || pbullet[b].y <= Y_MIN - 20000 || pbullet[b].y >= Y_MAX + 20000) { destroy_pbullet (b); continue; } } } } void run_seeker (int b) { // int old_x = pbullet[b].x; // int old_y = pbullet[b].y; int target_x = -1, target_y = -1; if (pbullet[b].target == -1 && pbullet[b].timeout % 5 == 0) find_new_seeker_target (b); if (pbullet[b].target != -1) { target_x = enemy[pbullet[b].target].x; target_y = enemy[pbullet[b].target].y; } else { target_x = player.x; target_y = player.y; } // pbullet[b].acceleration += 80; /* pbullet[b].acceleration += 300; if (pbullet[b].acceleration > 1900) pbullet[b].acceleration = 1900;*/ pbullet[b].x_speed += xpart (pbullet[b].angle, 600); // 700 pbullet[b].y_speed += ypart (pbullet[b].angle, 600); // 700 pbullet[b].x += pbullet[b].x_speed; pbullet[b].y += pbullet[b].y_speed; int c = create_cloud (CLOUD_SLINE); if (c != -1) { cloud[c].x2 = pbullet[b].x; cloud[c].y2 = pbullet[b].y; cloud[c].x = pbullet[b].x - pbullet[b].x_speed; cloud[c].y = pbullet[b].y - pbullet[b].y_speed; cloud[c].timeout = 5 + pbullet[b].level / 3; cloud[c].colour = TRANS_ORANGE_OUT; } /* pbullet[b].drag -= 50; if (pbullet[b].drag < 900) pbullet[b].drag = 900;*/ pbullet[b].x_speed *= 96; pbullet[b].x_speed /= 100; pbullet[b].y_speed *= 96; pbullet[b].y_speed /= 100; /* int c = create_cloud(w, CLOUD_SEEKER_TRAIL, 0, pbullet[b].x, pbullet[b].y, 0, 0, 11); if (c != -1) { cloud[w][c].x2 = old_x; cloud[w][c].y2 = old_y; cloud[w][c].angle = pbullet[b].angle; }*/ // pbullet[b].turn += 185; // if (pbullet[b].turn > 1300) // pbullet[b].turn = 1300; /* if (pbullet[b].timeout < 130) { if (target_x != -1 || target_y != -1) pbullet[b].angle = radians_to_angle(atan2((target_x - pbullet[b].y), (target_y - pbullet[b].x))) % ANGLE_1; } else*/ { if (target_x != -1 || target_y != -1) pbullet[b].angle = turn_towards_xy (pbullet[b].x, pbullet[b].y, target_x, target_y, pbullet[b].angle, 28); // 22 } // seeker[s].angle = turn_towards_xy(seeker[s].x, seeker[s].y, target_x, target_y, seeker[s].angle, 32); pbullet[b].timeout--; // if (seeker_collision(w, s)) return; if (pbullet[b].timeout <= 0) { // create_cloud(w, CLOUD_DRAG_EXPLODE, 0, pbullet[b].x, pbullet[b].y, 0, 0, 30 + grand(5)); // also in collision destroy_pbullet (b); } } void find_new_seeker_target (int b) { int enemies_found = 0; int e; int x = pbullet[b].x; int y = pbullet[b].y; for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) { enemy[e].distance = 900000; continue; } enemy[e].distance = hypot (enemy[e].y - y, enemy[e].x - x) / 100; enemies_found++; } if (enemies_found == 0) return; int closest = -1; int smallest_distance = 900000; for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].distance < smallest_distance) { /* for (j = 0; j < NO_SEEKERS; j ++) { if (seeker[w][j].target == e) // should allow multiple seekers to lock on to big targets continue; }*/ closest = e; smallest_distance = enemy[e].distance; } } if (smallest_distance == 900000 || closest == -1) { return; } pbullet[b].target = closest; } void beam_collision (int m) { int e; int x, y, dam; int max_y; /* switch(player.power [0]) { case 1: dam = 12; which_explode = 0; break; case 2: dam = 15; which_explode = 0; break; case 3: dam = 18; which_explode = 1; break; case 4: dam = 21; which_explode = 2; break; case 5: dam = 24; which_explode = 2; break; / * case 1: dam = 5; which_explode = 0; break; case 2: dam = 7; which_explode = 0; break; case 3: dam = 9; which_explode = 1; break; case 4: dam = 11; which_explode = 2; break; case 5: dam = 13; which_explode = 2; break;* / }*/ if (arena.counter & 1) dam = 7 + (player.wlevel[m] * 2); // for show damage see input.c else dam = 7 + (player.wlevel[m]); // for show damage see input.c // so it's effectively player.wlevel [m] * 1.5 x = player.wx[m]; y = player.wy[m] - 3000; for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; if (x >= enemy[e].x - eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset && x <= enemy[e].x + eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset && y >= enemy[e].y - eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset) { max_y = enemy[e].y + eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset; if (max_y > y) max_y = y; max_y -= grand (16000); quick_cloud (CLOUD_CIRCLE1, x, max_y, grand (2000) - grand (2000), grand (2000) - grand (2000) - 500 - player.wlevel[m] * 250, 3 + grand (3) + grand (player.wlevel[m]), TCOL_YELLOW, 0); max_y -= grand (8000); quick_cloud (CLOUD_CIRCLE1, x, max_y, grand (2000) - grand (2000), grand (2000) - grand (2000) - 500 - player.wlevel[m] * 250, 7 + grand (5) + player.wlevel[m], TCOL_ORANGE, 0); /* if (grand(2) == 0) { max_y = y; if (enemy[w][e].y + eclass[enemy[w][e].type].size - 10000 < max_y) max_y = enemy[w][e].y + eclass[enemy[w][e].type].size - 10000; for (j = enemy[w][e].y - eclass[enemy[w][e].type].size + 10000 + grand(10000); j < max_y; j += 5000 + grand(15000)) { create_cloud(w, CLOUD_EXPLODE, which_explode, x, j, 0, 0, 3 + grand(3)); } }*/ hurt_enemy (e, dam, m); // remember, enemy might be destroyed here!! // so we can't assume its values are still good (actually we prob can, but let's not) } } } void swbeam_collision (int m) { int e; int x, y, dam; int max_y, angle, speed; int i; dam = 1400 + player.swbeam_level[m] * 240; x = player.wx[m]; y = player.wy[m] - 3000; max_y = y - 90000; if (player.swbeam_level[m] > 2) { while (max_y > -90000) { quick_cloud (CLOUD_CIRCLE5, x, max_y, grand (500) - grand (500), 3000 + grand (1000), 20 + grand (8) + player.swbeam_level[m] * 2, TCOL_ORANGE, 970); max_y -= 20000 + grand (15000) - player.swbeam_level[m] * 1000; }; } for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; if (x >= enemy[e].x - eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset - 5000 - player.swbeam_level[m] * 1500 && x <= enemy[e].x + eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset + 5000 + player.swbeam_level[m] * 1500 && y >= enemy[e].y - eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset) { max_y = enemy[e].y + eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset; if (max_y > y) max_y = y; max_y -= grand (16000); angle = grand (ANGLE_8); for (i = 0; i < 8 + player.swbeam_level[m]; i++) { angle = (i * ANGLE_8) + grand (ANGLE_8); speed = grand (3000) + 1000 + player.swbeam_level[m] * 200; quick_cloud (CLOUD_CIRCLE5, x, max_y, xpart (angle, speed), ypart (angle, speed) - grand (2000), 45 + grand (28) + player.swbeam_level[m] * 2, TCOL_ORANGE, 940); } quick_cloud (CLOUD_CIRCLE2, x, max_y, 0, 0 - grand (1000), 25 + grand (8) + player.swbeam_level[m], TCOL_YELLOW, 950); max_y -= grand (8000); quick_cloud (CLOUD_CIRCLE2, x, max_y, 0, 0 - grand (1000), 45 + grand (15) + player.swbeam_level[m] * 2, TCOL_ORANGE, 950); if (hurt_enemy (e, dam, m) == 1) quick_cloud (CLOUD_MSHOCK, x, max_y, 0, 0, 20, 1, 0); // remember, enemy might be destroyed here!! // so we can't assume its values are still good (actually we prob can, but let's not) } } } int check_pbullet_collision (int b, int survive) { { int e; // int destroy_type = 0; for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; if (pbullet[b].x >= enemy[e].x - eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset - pbullet[b].xsize && pbullet[b].x <= enemy[e].x + eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset + pbullet[b].xsize && pbullet[b].y >= enemy[e].y - eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset - pbullet[b].ysize && pbullet[b].y <= enemy[e].y + eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset + pbullet[b].ysize) { { pbullet_hits_enemy (b, e); // if (survive == 2) // return 1; // green2_circle if (survive == 0) { pbullet_explode (b, 1); destroy_pbullet (b); return 1; // bullet destroyed } else { pbullet_explode (b, 1); // return 0; // bullet not destroyed } } } } return 0; // bullet not destroyed } } void explosion (int x, int y, int r, int d, int b) { int e; // int destroy_type = 0; for (e = 0; e < NO_ENEMIES; e++) { if (enemy[e].type == ENEMY_NONE) continue; if (x >= enemy[e].x - eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset - r && x <= enemy[e].x + eclass[enemy[e].type].xsize + eclass[enemy[e].type].xoffset + r && y >= enemy[e].y - eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset - r && y <= enemy[e].y + eclass[enemy[e].type].ysize + eclass[enemy[e].type].yoffset + r) { hurt_enemy (e, d, pbullet[b].source); } } } void pbullet_explode (int b, int hit) { int c, xa, ya, xb, yb, xc, i, angle, pieces, pieces2; switch (pbullet[b].type) { case PBULLET_BLADE: quick_cloud (CLOUD_CIRCLE2, pbullet[b].x + grand (5000) - grand (5000), pbullet[b].y + grand (5000) - grand (5000), 0, 0, 12, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE1, pbullet[b].x + grand (5000) - grand (5000), pbullet[b].y + grand (5000) - grand (5000), 0, 0, 12, TCOL_ORANGE, 0); angle = grand (ANGLE_1); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x + xpart (angle, 9000), pbullet[b].y + ypart (angle, 9000), xpart (angle, 3000), ypart (angle, 3000), 20, TCOL_ORANGE, 970); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x - xpart (angle, 9000), pbullet[b].y - ypart (angle, 9000), xpart (angle, -3000), ypart (angle, -3000), 20, TCOL_ORANGE, 970); angle = grand (ANGLE_1); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x + xpart (angle, 9000), pbullet[b].y + ypart (angle, 9000), xpart (angle, 3000), ypart (angle, 3000), 20, TCOL_ORANGE, 970); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x - xpart (angle, 9000), pbullet[b].y - ypart (angle, 9000), xpart (angle, -3000), ypart (angle, -3000), 20, TCOL_ORANGE, 970); break; case PBULLET_SCATTER: xa = pbullet[b].level; ya = 9000 + pbullet[b].level * 500; quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, 0, 0, 30 + xa, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x, pbullet[b].y, 0, 0, 30 + xa, TCOL_ORANGE, 0); angle = grand (ANGLE_1); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x + xpart (angle, ya), pbullet[b].y + ypart (angle, ya), 0, 0, 20 + xa, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x - xpart (angle, ya), pbullet[b].y - ypart (angle, ya), 0, 0, 20 + xa, TCOL_ORANGE, 0); break; case PBULLET_RECT: ya = pbullet[b].y - grand (14000); quick_cloud (CLOUD_RSHOCK1 + pbullet[b].level / 2, pbullet[b].x, ya, 0, 0, 20, 0, 0); quick_cloud (CLOUD_CIRCLE1, pbullet[b].x, ya, 0, 0, 20 + pbullet[b].level, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x, ya, 0, 0, 50 + pbullet[b].level * 2, TCOL_ORANGE, 0); angle = grand (ANGLE_1); pieces = 3 + pbullet[b].level; pieces2 = ANGLE_1 / pieces; xc = 40 + grand (5); for (i = 0; i < pieces; i++) { xb = pbullet[b].x + xpart (angle, 25000); yb = ya + ypart (angle, 25000); quick_cloud (CLOUD_CIRCLE1, xb, yb, xpart (angle, 1000 + pbullet[b].level * 40), ypart (angle, 1000 + pbullet [b]. level * 40), 20 + pbullet[b].level, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, xb, yb, xpart (angle, 1000 + pbullet[b].level * 40), ypart (angle, 1000 + pbullet [b]. level * 40), 50 + pbullet[b].level * 2, TCOL_ORANGE, 0); angle += pieces2; } explosion (pbullet[b].x, pbullet[b].y, 60000 + pbullet[b].level * 5000, 1400 + pbullet[b].level * 255, b); play_effectwfvx (WAV_RECT, 250, 120, pbullet[b].x); break; case PBULLET_RING: ya = pbullet[b].y - grand (14000); quick_cloud (CLOUD_CIRCLE1, pbullet[b].x, ya, 0, 0, 6, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE2, pbullet[b].x, ya, 0, 0, 15, TCOL_ORANGE, 0); quick_cloud (CLOUD_PRING, pbullet[b].x, ya, 0, 0, pbullet[b].status, 0, 0); break; case PBULLET_MGUN: c = create_cloud (CLOUD_MGSHOCK); if (c != -1) { cloud[c].x = pbullet[b].x; cloud[c].y = pbullet[b].y - grand (14000); cloud[c].x_speed = grand (1000) - grand (1000); cloud[c].y_speed = grand (1000) - grand (1000); cloud[c].timeout = 11; cloud[c].x2 = grand (ANGLE_1); } break; case PBULLET_SEEKER: // quick_cloud(CLOUD_MGSHOCK, pbullet[b].x, pbullet[b].y, 0, 0, 11, 0, 0); quick_cloud (CLOUD_CIRCLE5, pbullet[b].x, pbullet[b].y, 0, 0, 30, TCOL_YELLOW, 0); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, 0, 0, 30, TCOL_ORANGE, 0); if (hit == 1) { xa = xpart (pbullet[b].angle - ANGLE_16 + ANGLE_2, 500); ya = ypart (pbullet[b].angle - ANGLE_16 + ANGLE_2, 500); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, xa, ya, 30, TCOL_ORANGE, 980); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, xa * 2, ya * 2, 35, TCOL_ORANGE, 980); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, xa * 3, ya * 3, 40, TCOL_ORANGE, 980); xa = xpart (pbullet[b].angle + ANGLE_16 + ANGLE_2, 500); ya = ypart (pbullet[b].angle + ANGLE_16 + ANGLE_2, 500); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, xa, ya, 30, TCOL_ORANGE, 980); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, xa * 2, ya * 2, 35, TCOL_ORANGE, 980); quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, xa * 3, ya * 3, 40, TCOL_ORANGE, 980); } else { angle = pbullet[b].angle; for (i = 0; i < 3; i++) { quick_cloud (CLOUD_CIRCLE3, pbullet[b].x, pbullet[b].y, xpart (angle, 800), ypart (angle, 800), 40, TCOL_ORANGE, 980); angle += ANGLE_3; } angle += ANGLE_6; for (i = 0; i < 3; i++) { quick_cloud (CLOUD_CIRCLE5, pbullet[b].x, pbullet[b].y, xpart (angle, 900), ypart (angle, 900), 40, TCOL_ORANGE, 990); angle += ANGLE_3; } } break; case PBULLET_CANNON: xa = pbullet[b].x; play_effectwfvx (WAV_CANNON, 2200, 180, xa); ya = pbullet[b].y - grand (14000); c = create_cloud (CLOUD_CIRCLE1); if (c != -1) { cloud[c].x = xa; cloud[c].y = ya; cloud[c].timeout = 25 + pbullet[b].level; cloud[c].colour = TCOL_YELLOW; } c = create_cloud (CLOUD_CIRCLE2); if (c != -1) { cloud[c].x = xa; cloud[c].y = ya; cloud[c].timeout = 60 + pbullet[b].level * 2; cloud[c].colour = TCOL_ORANGE; } angle = grand (ANGLE_1); pieces = 4 + pbullet[b].level / 2; pieces2 = ANGLE_1 / pieces; xc = 40 + grand (5); for (i = 0; i < pieces; i++) { xb = pbullet[b].x + xpart (angle, 20000); yb = ya + ypart (angle, 20000); c = create_cloud (CLOUD_CIRCLE3); if (c != -1) { cloud[c].x = xb; cloud[c].y = yb; cloud[c].x_speed = xpart (angle, 2000); cloud[c].y_speed = ypart (angle, 2000); cloud[c].timeout = xc; cloud[c].colour = TCOL_ORANGE; cloud[c].drag = 950; } angle += pieces2; } angle = grand (ANGLE_1); xc = 40 + grand (5); for (i = 0; i < pieces; i++) { xb = pbullet[b].x + xpart (angle, 20000); yb = ya + ypart (angle, 20000); c = create_cloud (CLOUD_CIRCLE3); if (c != -1) { cloud[c].x = xb; cloud[c].y = yb; cloud[c].x_speed = xpart (angle, 1200); cloud[c].y_speed = ypart (angle, 1200); cloud[c].timeout = xc; cloud[c].colour = TCOL_ORANGE; cloud[c].drag = 950; } angle += pieces2; } angle = grand (ANGLE_1); xc = 40 + grand (5); for (i = 0; i < pieces; i++) { xb = pbullet[b].x + xpart (angle, 20000); yb = ya + ypart (angle, 20000); c = create_cloud (CLOUD_CIRCLE3); if (c != -1) { cloud[c].x = xb; cloud[c].y = yb; cloud[c].x_speed = xpart (angle, 700); cloud[c].y_speed = ypart (angle, 700); cloud[c].timeout = xc; cloud[c].colour = TCOL_ORANGE; cloud[c].drag = 950; } angle += pieces2; } break; } destroy_pbullet (b); } void destroy_pbullet (int b) { pbullet[b].type = PBULLET_NONE; } garden-1.0.9/src/Makefile.in0000644000175000017500000005331412457277345012564 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ bin_PROGRAMS = garden$(EXEEXT) # This is telling the program where to find datafiles during compilation. Define the datafile directory name in configure.ac if you don't like it #no datadir #defined @WINDOWS_VERSION_TRUE@am__append_1 = garden.rc subdir = src DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(srcdir)/configure.h.in $(top_srcdir)/build-aux/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/allegro.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = configure.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am__garden_SOURCES_DIST = cloud.c cloud.h config.h display.c display.h \ display_init.c display_init.h ebullet.c ebullet.h eclass.c \ enemy.c enemy.h game.c game.h globvars.h input.c input.h \ level.c level.h main.c menu.c menu.h palette.c palette.h \ pbullet.c pbullet.h sound.c sound.h stuff.c stuff.h system.h \ garden.rc am__objects_1 = @WINDOWS_VERSION_TRUE@am__objects_2 = garden.$(OBJEXT) am_garden_OBJECTS = cloud.$(OBJEXT) display.$(OBJEXT) \ display_init.$(OBJEXT) ebullet.$(OBJEXT) eclass.$(OBJEXT) \ enemy.$(OBJEXT) game.$(OBJEXT) input.$(OBJEXT) level.$(OBJEXT) \ main.$(OBJEXT) menu.$(OBJEXT) palette.$(OBJEXT) \ pbullet.$(OBJEXT) sound.$(OBJEXT) stuff.$(OBJEXT) \ $(am__objects_1) $(am__objects_2) garden_OBJECTS = $(am_garden_OBJECTS) garden_LDADD = $(LDADD) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = garden_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(garden_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(garden_SOURCES) DIST_SOURCES = $(am__garden_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)configure.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLEGRO_CONFIG = @ALLEGRO_CONFIG@ ALLEGRO_LIB = @ALLEGRO_LIB@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR_NAME = @DATADIR_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ RANLIB = @RANLIB@ RC = @RC@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ allegro_CFLAGS = @allegro_CFLAGS@ allegro_LIBS = @allegro_LIBS@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ have_freedesktop = @have_freedesktop@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ NUL = garden_SOURCES = cloud.c cloud.h config.h display.c display.h \ display_init.c display_init.h ebullet.c ebullet.h eclass.c \ enemy.c enemy.h game.c game.h globvars.h input.c input.h \ level.c level.h main.c menu.c menu.h palette.c palette.h \ pbullet.c pbullet.h sound.c sound.h stuff.c stuff.h system.h \ $(NUL) $(am__append_1) @WINDOWS_VERSION_TRUE@garden_LDFLAGS = -static @WINDOWS_VERSION_FALSE@AM_CPPFLAGS = -D'DATADIR="@DATADIR_NAME@"' all: configure.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj .rc $(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) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu 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): configure.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/configure.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status src/configure.h $(srcdir)/configure.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f configure.h stamp-h1 install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; 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) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(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: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list garden$(EXEEXT): $(garden_OBJECTS) $(garden_DEPENDENCIES) $(EXTRA_garden_DEPENDENCIES) @rm -f garden$(EXEEXT) $(AM_V_CCLD)$(garden_LINK) $(garden_OBJECTS) $(garden_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cloud.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/display.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/display_init.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ebullet.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eclass.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enemy.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/game.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/input.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/level.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/menu.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/palette.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pbullet.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sound.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stuff.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ 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-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ 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" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files 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 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) configure.h installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done 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-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags 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-binPROGRAMS 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 -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: all install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-hdr distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS 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-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-binPROGRAMS #how to build resources? .rc.o: $(RC) $(RCFLAGS) $< -o $@ # 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: garden-1.0.9/src/game.c0000644000175000017500000013715312457263274011574 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "config.h" #include "allegro.h" #include #include "globvars.h" #include "stuff.h" #include "input.h" #include "ebullet.h" #include "pbullet.h" #include "enemy.h" #include "level.h" #include "cloud.h" #include "palette.h" #include "display.h" #include "sound.h" void begin_game (void); void run_player (void); void init_player (void); void init_player_on_respawn (void); void new_level (void); void make_blocks (void); void run_blocks (void); void run_blade (int m); void drag_blade (void); extern volatile unsigned char ticked; extern volatile int framecounter; extern int slacktime; unsigned char counter; void run_stage3 (void); void make_part_row (int row); void make_platform (void); void run_platform (void); void run_background (void); void fix_platform (int y1, int y2); void fix_island1 (int y1, int y2); int check_tile_flow (int t1, int t2); int get_tile (int x, int y); void platform_hline (int x1, int y, int x2); void platform_vline (int x, int y1, int y2); void make_islands (void); void run_islands (void); int get_island1_tile (int x, int y); void make_stars (void); void run_stars (void); void make_bones (void); void run_bones (void); void init_stage_3 (void); char run_pause (void); extern int platform_tile[9][PLAT_Y]; // in display extern int platform_position; // in display extern int platform_step; // in display extern int island1_tile[9][ISLAND1_Y]; // in display extern int island1_position; // in display extern int island1_step; // in display // all stars in display extern int star_x[NO_STARS][3]; extern int star_y[NO_STARS][3]; extern int star_y_speed[NO_STARS][3]; // extern int star_col [NO_STARS] [3]; void new_game (void) { switch (options.tourist) { default: case 0: arena.level = 1; arena.change_palette = BASECOL_L1_SPRING; arena.target_palette = BASECOL_L1_SPRING; break; case 2: arena.level = 2; arena.change_palette = BASECOL_L2_1; arena.target_palette = BASECOL_L2_1; break; case 3: arena.level = 3; arena.change_palette = BASECOL_L3_1; arena.target_palette = BASECOL_L3_1; break; case 4: arena.level = 4; arena.change_palette = BASECOL_L4_1; arena.target_palette = BASECOL_L4_1; break; } arena.game_over = 0; init_player (); init_beat (); // arena.underlay_position = 0; // need to put in 'new level' function // arena.change_palette = BASECOL_L1_SPRING; arena.shift_palette = 0; arena.shift_message = 300; arena.phase = 0; arena.phase_bonus = 0; arena.just_got_highscore = 0; // arena.target_palette = BASECOL_L1_SPRING; new_level (); set_base_palette (); return; /* * arena.level = 1; * * arena.game_over = 0; * * init_player(); * * init_beat(); * * // arena.underlay_position = 0; // need to put in 'new level' * function * * * * arena.change_palette = 0; arena.shift_palette = 0; * arena.shift_message = 300; arena.phase = 0; * arena.just_got_highscore = 0; arena.phase_bonus = 0; * * arena.target_palette = 0; * * new_level(); * * set_base_palette(); */ } void game_loop (void) { int playing = 1; counter = 0; do { if (arena.game_over > 0) { arena.game_over--; if (arena.game_over == 1) { playing = 0; break; } } if (arena.level_finished > 0) { arena.level_finished--; if (arena.level_finished == 1) { if (options.tourist > 0) { playing = 0; break; } if (arena.level == 4) { playing = 0; arena.level = 5; break; } arena.level++; new_level (); clear_bitmap (screen); rest (500); ticked = 0; } } if (arena.new_level_sign > 0) arena.new_level_sign--; if (arena.shift_palette > 0 && arena.counter % 4 == 0) run_palette_shift (); if (arena.shift_message > 0) { arena.shift_message--; if (((arena.level != 3 && arena.shift_message == 100) || (arena.level == 3 && arena.shift_message == 295)) && arena.phase > 0) { arena.shift_palette = 1; switch (arena.level) { case 1: arena.target_palette = arena.phase; break; // play_effectwfvx(WAV_STAGE1, tone [NOTE_1C + // // // // // arena.phase], 200, 320); break; case 2: arena.target_palette = BASECOL_L2_1 + arena.phase; break; // play_effectwfvx(WAV_STAGE2, tone [NOTE_1C + // // // // // arena.phase], 200, 320); break; case 3: arena.target_palette = BASECOL_L3_1 + arena.phase; break; // play_effectwfvx(WAV_STAGE3, tone [NOTE_1C + // // // // // arena.phase], 200, 320); // break; case 4: arena.target_palette = BASECOL_L4_1 + arena.phase; break; // play_effectwfvx(WAV_STAGE4_2, tone [NOTE_1C // // // // // + arena.phase], 200, 320); // break; } arena.change_palette = 0; } /* * switch(arena.level) { case 2: if (arena.phase > 0 && * arena.shift_message == 150) play_effectwfvx(WAV_STAGE2, * tone [NOTE_2C + arena.phase], 160, 320); break; case 3: * if (arena.phase > 0 && arena.shift_message == 250) * play_effectwfvx(WAV_STAGE3, tone [NOTE_1C + * arena.phase], 250, 500); break; case 4: if (arena.phase * > 0 && arena.shift_message == 150) * play_effectwfvx(WAV_STAGE4_2, tone [NOTE_2C], 250, 320); * break; * * } */ } run_beat (); if (player.in_play == 1) get_input (); run_clouds (); if (player.in_play == 1) run_player (); run_level (); run_enemies (); run_ebullets (); run_pbullets (); run_background (); // run_underlay(); if (ticked == 0) { run_display (1); framecounter++; } else run_display (0); // just does what is needed for collision // detection do { rest(5); } while (ticked == 0); ticked--; counter++; arena.counter++; if (key[KEY_ESC]) { if (run_pause () == 1) playing = 0; clear_keybuf(); } } while (playing == 1); if (player.score > options.highscore[arena.difficulty]) { arena.just_got_highscore = arena.difficulty + 1; options.highscore[arena.difficulty] = player.score; switch (arena.difficulty) { case 0: set_config_int ("Scores", "Easy", player.score); break; case 1: set_config_int ("Scores", "Normal", player.score); break; case 2: set_config_int ("Scores", "Hard", player.score); break; } } } char run_pause (void) { int pc = 0; display_pause (pc); do { pc++; if (pc > 256) pc = 0; do { } while (ticked == 0); ticked--; if (key[KEY_Y]) { clear_bitmap (screen); vsync (); return 1; } if (key[KEY_N]) return 0; } while (TRUE); return 0; } void run_player (void) { int i, j, orb_angle, cycle; if (player.grace > 0) player.grace--; char firing_fast = 0; char cycling = (player.recycle[0] > 0) + (player.recycle[1] > 0) + (player.recycle[2] > 0); if (player.blade_index != -1 && (player.swing_state != BLADE_LEFT && player.swing_state != BLADE_RIGHT)) { cycling++; firing_fast++; } if (player.beam[0] != -1 || player.beam_flicker[0] > 0) { cycling++; firing_fast++; } if (player.beam[1] != -1 || player.beam_flicker[1] > 0) { cycling++; firing_fast++; } if (player.beam[2] != -1 || player.beam_flicker[2] > 0) { cycling++; firing_fast++; } if (player.wtype[0] == FAST_WEAPON && player.recycle[0] > 0) firing_fast++; if (player.wtype[1] == FAST_WEAPON && player.recycle[1] > 0) firing_fast++; if (player.wtype[2] == FAST_WEAPON && player.recycle[2] > 0) firing_fast++; if (firing_fast > 0) { if ((player.wtype[0] == SLOW_WEAPON && player.recycle[0] > 0)) cycling--; if ((player.wtype[1] == SLOW_WEAPON && player.recycle[1] > 0)) cycling--; if ((player.wtype[2] == SLOW_WEAPON && player.recycle[2] > 0)) cycling--; } for (i = 0; i < 3; i++) { // if (player.wtype [i] == SLOW_WEAPON && firing_fast == 1) // continue; if (player.recycle[i] > 0 && (player.wtype[i] != SLOW_WEAPON || firing_fast == 0)) { cycle = player.recycle_speed[i]; if (cycling > 0) // probably always true, but div // by zero sucks cycle /= cycling; player.recycle[i] -= cycle; if (player.recycle <= 0) { player.recycle[i] = 0; player.wfired = -1; } } player.wstrength[i] = cycling; if (player.wstrength[i] == 0) player.wstrength[i] = 1; if (player.wtype[i] == SLOW_WEAPON) { player.rpixels[i] = 50 - player.recycle[i] / 20; if (player.rpixels[i] > 50) player.rpixels[i] = 50; } else { if (firing_fast <= 1) { player.rpixels[i] = 50; player.wstrength[i] = 1; } if (firing_fast == 2) { player.rpixels[i] = 25; player.wstrength[i] = 2; } if (firing_fast == 3) { player.rpixels[i] = 17; player.wstrength[i] = 3; } } } /* * if (player.recycle > 0) { cycle = player.recycle -= * player.recycle_speed / cycling; if (player.recycle <= 0) { * player.recycle = 0; player.wfired = -1; } } */ /* * if (player.wfired != -1) { player.wframe += player.wframe_speed; if * (player.wframe_speed > 0 && player.wframe >= player.wframe_max) { * player.wframe = player.wframe_max; switch } * * } */ if (player.orbitals > 0) { // if (player.firing == 0) { player.orbital_angle += 8; player.orbital_angle &= 1023; } // else // player.firing = 0; orb_angle = player.orbital_angle; // player.wx [0] = player.x + xpart(player.orbital_angle, // 12000); // player.wy [0] = player.y + ypart(player.orbital_angle, // 12000); if (player.orbitals == 2) j = ANGLE_2; if (player.orbitals == 3) j = ANGLE_3; for (i = 0; i < 3; i++) { if (player.wgained[i] > 0) player.wgained[i]--; if (player.wstyle[i] == WSTYLE_ORBITAL) { player.wx[i] = player.x + xpart (orb_angle, 30000); player.wy[i] = player.y + ypart (orb_angle, 30000); orb_angle += j; } if (player.wstyle[i] == WSTYLE_BLADE) { run_blade (i); } if (player.wstyle[i] == WSTYLE_FRONT) { player.wx[i] = player.x; player.wy[i] = player.y - 10000; } if (player.weapon[i] == WPN_LWBEAM) { if (player.beam_fade[i] > 0) { if (player.beam_fade[i] < 10 && player.beam_open[i] > 0) player.beam_open[i]--; player.beam_fade[i]--; if (player.beam_flicker[i] > 0) player.beam_flicker[i]--; } } if (player.weapon[i] == WPN_SWBEAM) { if (player.swbeam[i] > 0) { player.swbeam[i]--; } if (player.swbeam_counter[i] > 0) { player.swbeam_counter[i]--; quick_cloud (CLOUD_CIRCLE5, player.wx[i] + grand (4000) - grand (4000), player.wy[i] - 5000 + grand (4000) - grand (4000), grand (1000) - grand (1000), grand (1000) - grand (1000), grand (20) + player.swbeam_counter[i] / 2, TCOL_ORANGE, 960); } } } } if (player.respawning == 0) { for (i = 0; i < 3; i++) { if (player.wx[i] > 640000) player.wx[i] = 640000; if (player.wy[i] > 480000) player.wy[i] = 480000; if (player.wx[i] < 0) player.wx[i] = 0; if (player.wy[i] < 0) player.wy[i] = 0; } } } #define BLADE_DISTANCE 45000 #define BLADE_SPEED 48 void run_blade (int m) { /* * player.wx [m] = player.x + xpart(orb_angle, 30000); player.wy [m] = * player.y + ypart(orb_angle, 30000); orb_angle += j; // * player.swing_angle = radians_to_angle(atan2(player.y - player.wy * [i], player.x - player.wx [i])); */ int goal_angle; // int target_x, target_y; // char end_swing = 0; int old_x = player.swing_x[player.swing_pos]; int old_y = player.swing_y[player.swing_pos]; switch (player.swing_state) { case BLADE_LEFT: player.swing_angle = ANGLE_2 - ANGLE_16 - 8; player.wx[m] = player.x + xpart (player.swing_angle, BLADE_DISTANCE); player.wy[m] = player.y + ypart (player.swing_angle, BLADE_DISTANCE); // player.swing_speed_x = 0; // player.swing_speed_y = 0; break; case BLADE_RIGHT: goal_angle = ANGLE_16; player.wx[m] = player.x + xpart (player.swing_angle, BLADE_DISTANCE); player.wy[m] = player.y + ypart (player.swing_angle, BLADE_DISTANCE); // player.swing_speed_x = 0; // player.swing_speed_y = 0; break; case BLADE_CW_SLASH: // player.recycle = 1; player.swing_length += 2; if (player.swing_length >= 9) player.swing_length = 9; player.swing_angle += BLADE_SPEED; player.swing_angle &= 1023; if (player.swing_angle >= ANGLE_16 && player.swing_angle < ANGLE_4) { if (player.swing_hold == 1) { player.swing_state = BLADE_CW_SWING; } else { player.swing_state = BLADE_RIGHT; // player.recycle = 0; } } player.wx[m] = player.x + xpart (player.swing_angle, BLADE_DISTANCE); player.wy[m] = player.y + ypart (player.swing_angle, BLADE_DISTANCE); break; case BLADE_ACW_SLASH: // player.recycle = 1; player.swing_length += 2; if (player.swing_length >= 9) player.swing_length = 9; player.swing_angle -= BLADE_SPEED; player.swing_angle &= 1023; if (player.swing_angle <= ANGLE_2 - ANGLE_16 + 48 && player.swing_angle > ANGLE_4) { if (player.swing_hold == 1) { player.swing_state = BLADE_ACW_SWING; } else { player.swing_state = BLADE_LEFT; // player.recycle = 0; } } player.wx[m] = player.x + xpart (player.swing_angle, BLADE_DISTANCE); player.wy[m] = player.y + ypart (player.swing_angle, BLADE_DISTANCE); break; case BLADE_CW_SWING: // player.recycle = 1; player.swing_length += 2; if (player.swing_length >= 9) player.swing_length = 9; player.swing_angle += BLADE_SPEED; player.swing_angle &= 1023; if (player.swing_angle >= ANGLE_2 - ANGLE_16 - 48 && player.swing_angle < ANGLE_1 - ANGLE_4) { player.swing_state = BLADE_LEFT; // player.recycle = 0; } player.wx[m] = player.x + xpart (player.swing_angle, BLADE_DISTANCE); player.wy[m] = player.y + ypart (player.swing_angle, BLADE_DISTANCE); break; case BLADE_ACW_SWING: // player.recycle = 1; player.swing_length += 2; if (player.swing_length >= 9) player.swing_length = 9; player.swing_angle -= BLADE_SPEED; player.swing_angle &= 1023; // if (player.swing_angle <= ANGLE_2 - ANGLE_16 && // player.swing_angle > ANGLE_4) if (player.swing_angle <= ANGLE_16 && player.swing_angle > 0) { player.swing_state = BLADE_RIGHT; // player.recycle = 0; } player.wx[m] = player.x + xpart (player.swing_angle, BLADE_DISTANCE); player.wy[m] = player.y + ypart (player.swing_angle, BLADE_DISTANCE); break; /* * case BLADE_LEFT: player.wx [m] = player.x - 20000; player.wy * [m] = player.y - 10000; player.swing_speed_x = 0; * player.swing_speed_y = 0; break; case BLADE_RIGHT: player.wx * [m] = player.x + 20000; player.wy [m] = player.y - 10000; * player.swing_speed_x = 0; player.swing_speed_y = 0; break; */ /* * case BLADE_CW_SLASH: target_x = player.x + 20000; target_y = * player.y - 10000; goal_angle = * radians_to_angle(atan2(target_y - player.wy [m], target_x - * player.wx [m])); player.swing_speed_x += xpart(goal_angle, * 3000); player.swing_speed_y += ypart(goal_angle, 3000); * * goal_angle = radians_to_angle(atan2(player.x - player.wy [m], * player.y - player.wx [m])); player.swing_speed_x += * xpart(goal_angle, 1800); player.swing_speed_y += * ypart(goal_angle, 1800); * * if (player.wx [m] > target_x - 5000 && player.wx [m] < * target_x + 5000 && player.wy [m] > target_y - 5000 && * player.wy [m] < target_y + 5000) end_swing = 1; * * if (player.wx [m] > target_x - 15000 && player.wx [m] < * target_x + 15000 && player.wy [m] > target_y - 15000 && * player.wy [m] < target_y + 15000) { drag_blade(); } * * drag_blade(); if (end_swing == 1) { player.swing_state = * BLADE_RIGHT; player.recycle = 0; } break; case * BLADE_ACW_SLASH: target_x = player.x - 20000; target_y = * player.y - 10000; goal_angle = * radians_to_angle(atan2(target_y - player.wy [m], target_x - * player.wx [m])); player.swing_speed_x += xpart(goal_angle, * 3000); player.swing_speed_y += ypart(goal_angle, 3000); * * goal_angle = radians_to_angle(atan2(player.x - player.wy [m], * player.y - player.wx [m])); player.swing_speed_x += * xpart(goal_angle, 1800); player.swing_speed_y += * ypart(goal_angle, 1800); * * if (player.wx [m] > target_x - 5000 && player.wx [m] < * target_x + 5000 && player.wy [m] > target_y - 5000 && * player.wy [m] < target_y + 5000) end_swing = 1; * * if (player.wx [m] > target_x - 15000 && player.wx [m] < * target_x + 15000 && player.wy [m] > target_y - 15000 && * player.wy [m] < target_y + 15000) { drag_blade(); } * * drag_blade(); if (end_swing == 1) { player.swing_state = * BLADE_LEFT; player.recycle = 0; } break; */ } player.swing_sprite_angle = radians_to_angle (atan2 (player.wy[m] - player.y, player.wx[m] - player.x)); player.swing_sprite_angle /= (ANGLE_1 / SMALL_ROTATIONS); /* * if (player.swing_state > BLADE_RIGHT) { player.wx [m] += * player.swing_speed_x; player.wy [m] += player.swing_speed_y; * player.recycle = 1; } */ if (player.swing_length > 0) player.swing_length--; player.swing_pos++; if (player.swing_pos == 10) player.swing_pos = 0; // player.swing_x [player.swing_pos] = player.wx [m] + // xpart(player.swing_angle, 1000); // player.swing_y [player.swing_pos] = player.wy [m] + // ypart(player.swing_angle, 1000); // player.swing_x2 [player.swing_pos] = player.wx [m] + // xpart(player.swing_angle, 25000); // player.swing_y2 [player.swing_pos] = player.wy [m] + // ypart(player.swing_angle, 25000); player.swing_x[player.swing_pos] = player.wx[m] + xpart (player.swing_angle, 12000); player.swing_y[player.swing_pos] = player.wy[m] + ypart (player.swing_angle, 12000); player.swing_x2[player.swing_pos] = player.wx[m] + xpart (player.swing_angle, 25000); player.swing_y2[player.swing_pos] = player.wy[m] + ypart (player.swing_angle, 25000); player.swing_strength[player.swing_pos] = player.wstrength[player.blade_index]; if (player.swing_state == BLADE_LEFT || player.swing_state == BLADE_RIGHT) return; int b = create_pbullet (PBULLET_BLADE); if (b != -1) { pbullet[b].x = player.swing_x[player.swing_pos]; pbullet[b].y = player.swing_y[player.swing_pos]; pbullet[b].x_speed = player.swing_x[player.swing_pos] - old_x; pbullet[b].y_speed = player.swing_y[player.swing_pos] - old_y; pbullet[b].xsize = 13000; pbullet[b].ysize = 13000; pbullet[b].dam = 80 + player.wlevel[player.blade_index] * 19; // was // // // // // 100/22 // or // 60/14 pbullet[b].dam /= player.wstrength[player.blade_index]; pbullet[b].source = player.blade_index; } if (player.wlevel[player.blade_index] > 6) { int bangle = radians_to_angle (atan2 (old_y - player.swing_y[player.swing_pos], old_x - player.swing_x[player.swing_pos])); bangle -= ANGLE_4; quick_cloud (CLOUD_CIRCLE2, old_x + xpart (bangle, 11000), old_y + ypart (bangle, 11000), 0, 0, player.wlevel[player.blade_index] - 2, TCOL_ORANGE, 0); bangle += ANGLE_2; quick_cloud (CLOUD_CIRCLE2, old_x + xpart (bangle, 11000), old_y + ypart (bangle, 11000), 0, 0, player.wlevel[player.blade_index] - 2, TCOL_ORANGE, 0); } /* * quick_cloud(CLOUD_CIRCLE2, player.swing_x [player.swing_pos] + * xpart(bangle, 16000), player.swing_y [player.swing_pos] + * ypart(bangle, 16000), 0, 0, 10, TCOL_ORANGE, 0); bangle += ANGLE_2; * quick_cloud(CLOUD_CIRCLE2, player.swing_x [player.swing_pos] + * xpart(bangle, 16000), player.swing_y [player.swing_pos] + * ypart(bangle, 16000), 0, 0, 10, TCOL_ORANGE, 0); */ /* * int e; * * if (player.swing_state != BLADE_LEFT && player.swing_state != * BLADE_RIGHT) { for (e = 0; e < NO_ENEMIES; e ++) { * * * } } */ // player.swing_pos2 ++; } /* * void drag_blade(void) { player.swing_speed_x *= 800; * player.swing_speed_x /= 1000; player.swing_speed_y *= 800; * player.swing_speed_y /= 1000; * * } */ void player_hit (void) { int x = player.x; int y = player.y; play_effectwfvx (WAV_BANG, tone[NOTE_0G], 250, x); play_effectwfvx (WAV_P_BANG, 800, 250, x); int i, angle, speed; quick_cloud (CLOUD_MSHOCK, x, y, 0, 0, 20, 0, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 30, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 25, TCOL_YELLOW, 0); for (i = 0; i < 30; i++) { angle = grand (ANGLE_1); speed = 5000 + grand (10000); quick_cloud (CLOUD_CIRCLE2, x, y, xpart (angle, speed), ypart (angle, speed), 20 + grand (20), TCOL_ORANGE, 910); angle = grand (ANGLE_1); speed = 5000 + grand (10000); quick_cloud (CLOUD_CIRCLE3, x, y, xpart (angle, speed), ypart (angle, speed), 20 + grand (20), TCOL_YELLOW, 870); } for (i = 0; i < 3; i++) { x = player.wx[i]; y = player.wy[i]; quick_cloud (CLOUD_TSHOCK, x, y, 0, 0, 11, 0, 0); quick_cloud (CLOUD_CIRCLE2, x, y, 0, 0, 25, TCOL_ORANGE, 0); quick_cloud (CLOUD_CIRCLE3, x, y, 0, 0, 17, TCOL_YELLOW, 0); } if (player.lives == 0) { player.in_play = 0; arena.game_over = 200; arena.level_finished = 0; } else { player.lives--; if (player.lives > -1) { init_player_on_respawn (); } } } void init_player (void) { int i; init_player_on_respawn (); player.lives = 2; // player.respawning = 0; player.score = 0; player.grace = 0; player.in_play = 1; // player.x = 270000; // player.y = 350000; player.wings1 = 0; player.wings2 = 0; for (i = 0; i < 3; i++) { // player.x [i] = player.x [0]; // player.y [i] = player.y [0]; // player.weapon [i] = MULTI_BASIC; player.wxp[i] = 0; if (options.tourist == 0) player.wlevel[i] = 0; else player.wlevel[i] = options.tourist; // (options.tourist // // // // // - 1) * 2 - 1; player.wstatus[i] = 0; player.wpixels[i] = 0; player.wgained[i] = 0; player.recycle[i] = 0; player.recycle_speed[i] = 0; player.wstrength[i] = 0; player.rpixels[i] = 50; player.beam[i] = -1; player.beam_counter[i] = 0; player.beam_fade[i] = 0; player.beam_open[i] = 0; player.beam_flicker[i] = 0; } set_wpixels (); } void init_player_on_respawn (void) { player.respawning = 50; player.grace = 180; player.x = 320000; player.y = 520000; player.firing = 0; player.swing_state = BLADE_LEFT; player.swing_pos = 0; player.swing_length = 0; int i; for (i = 0; i < 3; i++) { player.recycle[i] = 0; player.recycle_speed[i] = 0; player.wstrength[i] = 0; player.rpixels[i] = 0; player.beam[i] = -1; player.beam_counter[i] = 0; player.beam_fade[i] = 0; player.beam_open[i] = 0; player.beam_flicker[i] = 0; player.swbeam[i] = 0; player.swbeam_counter[i] = 0; } player.wfired = -1; player.wframe = 0; player.wframe_speed = 0; player.wframe_max = 0; player.ring_angle = -ANGLE_4; player.ring_hold = 0; player.move_x = 0; player.move_y = 0; } void new_level (void) { arena.shift_palette = 0; arena.shift_message = 300; arena.phase = 0; arena.just_got_highscore = 0; arena.stage_score = 0; arena.max_stage_score = get_max_stage_score (); // arena.phase_bonus = 0; switch (arena.level) { case 1: arena.next_phase[0] = 1400; arena.next_phase[1] = 2500; arena.next_phase[2] = 3500; arena.next_phase[3] = 4050; arena.next_phase[4] = -1; break; case 2: arena.next_phase[0] = 1600; arena.next_phase[1] = 2400; arena.next_phase[2] = 3200; arena.next_phase[3] = 3900; arena.next_phase[4] = -1; break; case 3: arena.next_phase[0] = 1000; arena.next_phase[1] = 2100; arena.next_phase[2] = 3200; arena.next_phase[3] = 4400; arena.next_phase[4] = -1; /* * arena.next_phase [0] = 1000; arena.next_phase [1] = 1900; * arena.next_phase [2] = 2800; arena.next_phase [3] = 3600; * arena.next_phase [4] = 4500; arena.next_phase [5] = -1; */ break; case 4: arena.next_phase[0] = 800; arena.next_phase[1] = 1600; arena.next_phase[2] = 2500; arena.next_phase[3] = 3400; // arena.next_phase [4] = 3600; arena.next_phase[4] = -1; break; } switch (arena.level) { case 1: make_platform (); make_blocks (); arena.change_palette = BASECOL_L1_SPRING; arena.target_palette = BASECOL_L1_SPRING; break; case 2: make_islands (); make_stars (); arena.cruiser_escorts = 0; arena.change_palette = BASECOL_L2_1; arena.target_palette = BASECOL_L2_1; break; case 3: init_stage_3 (); arena.change_palette = BASECOL_L3_1; arena.target_palette = BASECOL_L3_1; break; case 4: make_bones (); arena.change_palette = BASECOL_L4_1; arena.target_palette = BASECOL_L4_1; break; } set_base_palette (); // arena.target_palette = 0; // set_base_palette(); init_level (); init_beat_new_level (); ticked = 0; boss.fight = 0; arena.new_level_sign = 120; } void make_bones (void) { int i; for (i = 0; i < NO_BONES; i++) { arena.bone_type[0][i] = 0; arena.bone_subtype[0][i] = 0; if (grand (4) == 0) arena.bone_subtype[0][i] = grand (9); arena.bone_x[0][i] = 20 + grand (620); // arena.bone_y [0] [i] = -30 - grand(500); arena.bone_y[0][i] = grand (480); if (grand (4) == 0) { arena.bone_type[0][i] = 1; arena.bone_subtype[0][i] = 0; // grand(7); } // arena.bone_type [0] [i] = 3; // arena.bone_subtype [0] [i] = grand(9); if (i > 19) continue; arena.bone_type[1][i] = 0; arena.bone_subtype[1][i] = 0; if (grand (4) == 0) arena.bone_subtype[1][i] = grand (9); arena.bone_x[1][i] = grand (640); // arena.bone_y [1] [i] = -30 - grand(500); arena.bone_y[1][i] = grand (480); if (grand (4) == 0) { arena.bone_type[1][i] = 1; arena.bone_subtype[1][i] = 0; } } } void run_bones (void) { int i; for (i = 0; i < NO_BONES; i++) { if (arena.counter % 3 == 0) arena.bone_y[0][i] += 1; if (arena.bone_y[0][i] > 560) { arena.bone_y[0][i] = -30 - grand (100); arena.bone_x[0][i] = grand (640); arena.bone_type[0][i] = 0; arena.bone_subtype[0][i] = 0; if (grand (4) == 0) arena.bone_subtype[0][i] = grand (9); if (grand (4) == 0) { arena.bone_type[0][i] = 1; arena.bone_subtype[0][i] = 0; if (grand (4) == 0) arena.bone_subtype[0][i] = grand (7); } if (grand (16) == 0 && arena.phase > 0) { arena.bone_type[0][i] = 2; arena.bone_subtype[0][i] = 0; if (grand (4) == 0) arena.bone_subtype[0][i] = grand (17); } if (grand (34) == 0 && arena.phase > 1) { arena.bone_type[0][i] = 3; arena.bone_subtype[0][i] = 0; if (grand (4) == 0) arena.bone_subtype[0][i] = grand (9); } if (grand (68) == 0 && arena.phase > 2) { arena.bone_type[0][i] = 4; arena.bone_subtype[0][i] = 0; arena.bone_y[0][i] = -90; } if (grand (78) == 0 && arena.phase > 2) { arena.bone_type[0][i] = 5; arena.bone_subtype[0][i] = 0; if (grand (3) == 0) arena.bone_subtype[0][i] = grand (3); arena.bone_y[0][i] = -90; } } if (i > 19) continue; arena.bone_y[1][i] += 1; if (arena.bone_y[1][i] > 500) { arena.bone_y[1][i] = -30 - grand (100); arena.bone_x[1][i] = grand (640); arena.bone_type[1][i] = 0; arena.bone_subtype[1][i] = 0; if (grand (4) == 0) arena.bone_subtype[1][i] = grand (9); if (grand (4) == 0) { arena.bone_type[1][i] = 1; arena.bone_subtype[1][i] = 0; if (grand (4) == 0) arena.bone_subtype[1][i] = grand (7); } if (grand (16) == 0 && arena.phase > 0) { arena.bone_type[1][i] = 2; arena.bone_subtype[1][i] = 0; if (grand (4) == 0) arena.bone_subtype[1][i] = grand (17); } if (grand (34) == 0 && arena.phase > 1) { arena.bone_type[1][i] = 3; arena.bone_subtype[1][i] = 0; if (grand (4) == 0) arena.bone_subtype[1][i] = grand (9); } } } } void init_stage_3 (void) { arena.part_flow = 0; arena.part_rank = 0; int j; for (j = 0; j < 14; j++) { /* * arena.part_x1 [i] [j] = 5 + grand(10); arena.part_y1 [i] [j] * = 5 + grand(10); arena.part_x2 [i] [j] = 5 + grand(10); * arena.part_y2 [i] [j] = 5 + grand(10); } */ make_part_row (j); } arena.wave_y = -10000; } void make_part_row (int row) { int i; int sx, sy, cx, cy; int base_size, size_rand, pos_rand; size_rand = arena.phase * 6; pos_rand = arena.phase * 6; base_size = 20 - arena.phase * 3; for (i = 0; i < 18; i++) { sx = base_size + grand (size_rand); sy = base_size + grand (size_rand); cx = grand (pos_rand) - grand (pos_rand); cy = grand (pos_rand) - grand (pos_rand); if (cx < 0) { arena.part_x1[i][row] = cx; arena.part_x2[i][row] = cx + sx; arena.part_cx[i][row] = cx + sx / 2; } else { arena.part_x1[i][row] = cx - sx; arena.part_x2[i][row] = cx; arena.part_cx[i][row] = cx - sx / 2; } if (cy < 0) { arena.part_y1[i][row] = cy; arena.part_y2[i][row] = cy + sy; arena.part_cy[i][row] = cy + sy / 2; } else { arena.part_y1[i][row] = cy - sy; arena.part_y2[i][row] = cy; arena.part_cy[i][row] = cy - sy / 2; } } } void run_stage3 (void) { int new_part_row = 0; arena.part_flow++; arena.part_flow += arena.phase; /* * if (arena.phase > 0) arena.part_flow ++; if (arena.phase > 3) * arena.part_flow ++; */ if (arena.part_flow >= 40) { arena.part_flow -= 40; arena.part_rank++; if (arena.part_rank > 13) arena.part_rank = 0; new_part_row = arena.part_rank; // if (new_part_row > 13) // new_part_row -= 13; make_part_row (new_part_row); } arena.wave_y += 4000 + arena.phase * 2500; if (arena.wave_y > 550000) arena.wave_y = -50000; if (arena.phase > 0) { int i, x, y; for (i = 0; i < 16 + arena.phase * 8; i++) { x = grand (18); y = grand (14); arena.part_x1[x][y] += pos_or_neg (1); arena.part_y1[x][y] += pos_or_neg (1); arena.part_x2[x][y] += pos_or_neg (1); arena.part_y2[x][y] += pos_or_neg (1); if (arena.part_x1[x][y] > arena.part_x2[x][y] - 2) { arena.part_x1[x][y]--; arena.part_x2[x][y]++; } if (arena.part_y1[x][y] > arena.part_y2[x][y] - 2) { arena.part_y1[x][y]--; arena.part_y2[x][y]++; } } } if (arena.part_pulse1 > 0) arena.part_pulse1--; if (arena.part_pulse2 > 0) arena.part_pulse2--; if (synch_ready[EVENT_PULSE1] == 1) arena.part_pulse1 = 8; if (synch_ready[EVENT_PULSE2] == 1) arena.part_pulse2 = 8; } void make_blocks (void) { int i; for (i = 0; i < 20; i++) { arena.block1_x[i] = grand (490) + 50; arena.block1_y[i] = 2400 * i; // grand(480) * 100; arena.block1_size[i] = 10 + grand (40); arena.block1_y_speed[i] = 180 + grand (20) + grand (20); arena.block2_x[i] = grand (490) + 50; arena.block2_y[i] = 2400 * i; // grand(480) * 100; arena.block2_y_speed[i] = 90 + grand (10) + grand (10); arena.block2_size[i] = 7 + grand (28); } } void run_blocks (void) { int i; for (i = 0; i < 20; i++) { arena.block1_y[i] += arena.block1_y_speed[i]; arena.block2_y[i] += arena.block2_y_speed[i]; if (arena.block1_y[i] > 48000 + (arena.block1_size[i] * 100)) { arena.block1_y[i] = -10000 - grand (10000); arena.block1_x[i] = grand (490) + 50; arena.block1_size[i] = 10 + grand (40); arena.block1_y_speed[i] = 180 + grand (20) + grand (20); } if (arena.block2_y[i] > 48000 + (arena.block2_size[i] * 100)) { arena.block2_y[i] = -10000 - grand (10000); arena.block2_y_speed[i] = 90 + grand (10) + grand (10); arena.block2_x[i] = grand (490) + 50; arena.block2_size[i] = 10 + grand (40); } } } void make_platform (void) { int i, j; platform_position = 0; platform_step = 0; int vert1 = grand (6) + 2; int vert2 = 0; int v21 = -1; int v22 = -1; for (j = 0; j < PLAT_Y; j++) { for (i = 0; i < 9; i++) { platform_tile[i][j] = PLATFORM_EMPTY; // empty } } for (j = 0; j < PLAT_Y; j++) { if (grand (7) == 0) { vert2 = vert1; vert1 = grand (6) + 2; // platform_hline(vert1, j, vert2); platform_hline (vert1, j, vert2); } if (grand (5) == 0) { if (grand (3) == 0) v21 = -1; else { v22 = v21; v21 = grand (7) + 2; platform_hline (v21, j, v22); } } if (grand (21) == 0) platform_hline (0, j, 8); if (grand (21) == 0) platform_hline (grand (6), j, 8); if (grand (21) == 0) platform_hline (0, j, grand (4) + 5); for (i = 0; i < 9; i++) { // platform_tile [i] [j] = PLATFORM_EMPTY; // empty if (i == v21) platform_tile[i][j] = 1; if (i == vert1) platform_tile[i][j] = 1; if (grand (7) == 0) platform_tile[i][j] = 1; } } fix_platform (0, PLAT_Y); } void platform_hline (int x1, int y, int x2) { int i; if (x1 < 0) x1 = 0; if (x1 > 8) x1 = 8; if (x2 < 0) x2 = 0; if (x2 > 8) x2 = 8; if (x2 > x1) { for (i = x1; i < x2; i++) { platform_tile[i][y] = 1; } } else for (i = x2; i < x1; i++) { platform_tile[i][y] = 1; } } void run_background (void) { switch (arena.level) { case 1: run_platform (); run_blocks (); break; case 2: run_islands (); run_stars (); break; case 3: run_stage3 (); break; case 4: run_bones (); break; } } void run_islands (void) { island1_position += 7; if (island1_position >= 91) { island1_position -= 91; island1_step++; } if (island1_step > ISLAND1_Y) island1_step -= ISLAND1_Y; } void run_stars (void) { int i, j; for (i = 0; i < NO_STARS; i++) { for (j = 0; j < 3; j++) { star_y[i][j] += star_y_speed[i][j]; if (star_y[i][j] > 481000) { star_x[i][j] = grand (640); star_y[i][j] = 0; switch (j) { case 0: star_y_speed[i][j] = 1000 + grand (1000); break; case 1: star_y_speed[i][j] = 2000 + grand (1000); break; case 2: star_y_speed[i][j] = 3000 + grand (1000); break; } } } } } void make_stars (void) { int i, j; for (i = 0; i < NO_STARS; i++) { for (j = 0; j < 3; j++) { star_x[i][j] = grand (640); star_y[i][j] = grand (480000); switch (j) { case 0: star_y_speed[i][j] = 1000 + grand (1000); break; case 1: star_y_speed[i][j] = 2000 + grand (1000); break; case 2: star_y_speed[i][j] = 3000 + grand (1000); break; } } } } void run_platform (void) { platform_position += 4; if (platform_position >= 91) { platform_position -= 91; platform_step++; } if (platform_step > PLAT_Y) platform_step -= PLAT_Y; arena.flower_turn1 += 10; if (arena.flower_turn1 >= 400) arena.flower_turn1 -= 400; arena.flower_turn2 += 5; if (arena.flower_turn2 >= 400) arena.flower_turn2 -= 400; } void make_islands (void) { int i, j; island1_position = 0; island1_step = 0; /* * int vert1 = grand(6) + 2; int vert2 = 0; * * int v21 = -1; int v22 = -1; */ for (j = 0; j < ISLAND1_Y; j++) { for (i = 0; i < 9; i++) { island1_tile[i][j] = ISLAND1_EMPTY; // empty // if (grand(5) == 0) // island1_tile [i] [j] = ISLAND1_C; } } int x, y; for (i = 0; i < 200; i++) { x = grand (7); y = grand (ISLAND1_Y - 2); island1_tile[x][y] = ISLAND1_FULL; island1_tile[x + 1][y] = ISLAND1_FULL; island1_tile[x][y + 1] = ISLAND1_FULL; island1_tile[x + 1][y + 1] = ISLAND1_FULL; island1_tile[x + 2][y] = ISLAND1_FULL; island1_tile[x][y + 2] = ISLAND1_FULL; island1_tile[x + 2][y + 2] = ISLAND1_FULL; island1_tile[x + 2][y + 1] = ISLAND1_FULL; island1_tile[x + 1][y + 2] = ISLAND1_FULL; } fix_island1 (0, ISLAND1_Y); } void fix_island1 (int y1, int y2) { int i, j; int u, d, l, r, ul, ur, dl, dr; for (i = 0; i < 9; i++) { for (j = y1; j < y2; j++) { if (island1_tile[i][j] == ISLAND1_EMPTY) continue; u = get_island1_tile (i, j + 1); d = get_island1_tile (i, j - 1); l = get_island1_tile (i - 1, j); r = get_island1_tile (i + 1, j); if (u == ISLAND1_EMPTY && d == ISLAND1_EMPTY) island1_tile[i][j] = ISLAND1_EMPTY; if (l == ISLAND1_EMPTY && r == ISLAND1_EMPTY) island1_tile[i][j] = ISLAND1_EMPTY; } } #define ODD_CHANCE 10 for (i = 0; i < 9; i++) { for (j = y1; j < y2; j++) { if (island1_tile[i][j] == ISLAND1_EMPTY) continue; // tile = ISLAND1_EMPTY; // need to fix this ur = get_island1_tile (i + 1, j + 1); ul = get_island1_tile (i - 1, j + 1); dr = get_island1_tile (i + 1, j - 1); dl = get_island1_tile (i - 1, j - 1); u = get_island1_tile (i, j + 1); d = get_island1_tile (i, j - 1); l = get_island1_tile (i - 1, j); r = get_island1_tile (i + 1, j); if (u != ISLAND1_EMPTY && d != ISLAND1_EMPTY && l != ISLAND1_EMPTY && r == ISLAND1_EMPTY && ul != ISLAND1_EMPTY && dl != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_L; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_L2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_L3; continue; } if (u != ISLAND1_EMPTY && d != ISLAND1_EMPTY && l == ISLAND1_EMPTY && r != ISLAND1_EMPTY && ur != ISLAND1_EMPTY && dr != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_R; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_R2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_R3; continue; } if (u != ISLAND1_EMPTY && d == ISLAND1_EMPTY && l != ISLAND1_EMPTY && r != ISLAND1_EMPTY && ul != ISLAND1_EMPTY && ur != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_U; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_U2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_U3; continue; } if (u == ISLAND1_EMPTY && d != ISLAND1_EMPTY && l != ISLAND1_EMPTY && r != ISLAND1_EMPTY && dl != ISLAND1_EMPTY && dr != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_D; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_D2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_D3; continue; } if (u != ISLAND1_EMPTY && d != ISLAND1_EMPTY && l != ISLAND1_EMPTY && r != ISLAND1_EMPTY && ul != ISLAND1_EMPTY && ur == ISLAND1_EMPTY && dl == ISLAND1_EMPTY && dr != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_UL_DR; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UL_DR2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UL_DR3; continue; } if (u != ISLAND1_EMPTY && d != ISLAND1_EMPTY && l != ISLAND1_EMPTY && r != ISLAND1_EMPTY && ul == ISLAND1_EMPTY && ur != ISLAND1_EMPTY && dl != ISLAND1_EMPTY && dr == ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_UR_DL; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UR_DL2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UR_DL3; continue; } if ((u == ISLAND1_EMPTY || ur == ISLAND1_EMPTY) && d != ISLAND1_EMPTY && (l == ISLAND1_EMPTY || dl == ISLAND1_EMPTY) && r != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_DR; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_DR2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_DR3; continue; } if ((u == ISLAND1_EMPTY || ul == ISLAND1_EMPTY) && d != ISLAND1_EMPTY && l != ISLAND1_EMPTY && (r == ISLAND1_EMPTY || dr == ISLAND1_EMPTY)) { island1_tile[i][j] = ISLAND1_DL; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_DL2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_DL3; continue; } if (u != ISLAND1_EMPTY && (d == ISLAND1_EMPTY || dr == ISLAND1_EMPTY) && (l == ISLAND1_EMPTY || ul == ISLAND1_EMPTY) && r != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_UR; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UR2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UR3; continue; } if (u != ISLAND1_EMPTY && (d == ISLAND1_EMPTY || dl == ISLAND1_EMPTY) && l != ISLAND1_EMPTY && (r == ISLAND1_EMPTY || ur == ISLAND1_EMPTY)) { island1_tile[i][j] = ISLAND1_UL; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UL2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_UL3; continue; } /* * if (u == ISLAND1_EMPTY && d != ISLAND1_EMPTY && l == * ISLAND1_EMPTY && r != ISLAND1_EMPTY) { island1_tile [i] * [j] = ISLAND1_DR; continue; } * * if (u == ISLAND1_EMPTY && d != ISLAND1_EMPTY && l != * ISLAND1_EMPTY && r == ISLAND1_EMPTY) { island1_tile [i] * [j] = ISLAND1_DL; continue; } * * if (u != ISLAND1_EMPTY && d == ISLAND1_EMPTY && l == * ISLAND1_EMPTY && r != ISLAND1_EMPTY) { island1_tile [i] * [j] = ISLAND1_UR; continue; } * * if (u != ISLAND1_EMPTY && d == ISLAND1_EMPTY && l != * ISLAND1_EMPTY && r == ISLAND1_EMPTY) { island1_tile [i] * [j] = ISLAND1_UL; continue; } */ if (ul == ISLAND1_EMPTY && ur != ISLAND1_EMPTY && dl != ISLAND1_EMPTY && dr != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_NOT_DR; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_DR2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_DR3; continue; } if (ul != ISLAND1_EMPTY && ur == ISLAND1_EMPTY && dl != ISLAND1_EMPTY && dr != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_NOT_DL; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_DL2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_DL3; continue; } if (ul != ISLAND1_EMPTY && ur != ISLAND1_EMPTY && dl == ISLAND1_EMPTY && dr != ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_NOT_UR; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_UR2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_UR3; continue; } if (ul != ISLAND1_EMPTY && ur != ISLAND1_EMPTY && dl != ISLAND1_EMPTY && dr == ISLAND1_EMPTY) { island1_tile[i][j] = ISLAND1_NOT_UL; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_UL2; if (grand (ODD_CHANCE) == 0) island1_tile[i][j] = ISLAND1_NOT_UL3; continue; } island1_tile[i][j] = ISLAND1_FULL; if (grand (6) == 0) island1_tile[i][j] = ISLAND1_FULL + grand (5); } } } int get_island1_tile (int x, int y) { if (x == -1 && y == -1) return island1_tile[8][ISLAND1_Y - 1]; if (x == -1 && y == ISLAND1_Y) return island1_tile[8][0]; if (x == 9 && y == -1) return island1_tile[0][ISLAND1_Y - 1]; if (x == 9 && y == ISLAND1_Y) return island1_tile[0][0]; if (x == -1) return island1_tile[8][y]; if (x == 9) return island1_tile[0][y]; if (y == -1) return island1_tile[x][ISLAND1_Y - 1]; if (y == ISLAND1_Y) return island1_tile[x][0]; return island1_tile[x][y]; } void fix_platform (int y1, int y2) { int i, j, tile; for (i = 0; i < 9; i++) { for (j = y1; j < y2; j++) { if (platform_tile[i][j] == PLATFORM_EMPTY) continue; tile = PLATFORM_NODE; // need to fix this if (get_tile (i - 1, j) != PLATFORM_EMPTY) tile = PLATFORM_L; if (get_tile (i + 1, j) != PLATFORM_EMPTY) tile = PLATFORM_R; if (get_tile (i, j + 1) != PLATFORM_EMPTY) tile = PLATFORM_U; if (get_tile (i, j - 1) != PLATFORM_EMPTY) tile = PLATFORM_D; if (get_tile (i - 1, j) != PLATFORM_EMPTY && get_tile (i + 1, j) != PLATFORM_EMPTY) tile = PLATFORM_LR; if (get_tile (i, j - 1) != PLATFORM_EMPTY && get_tile (i, j + 1) != PLATFORM_EMPTY) tile = PLATFORM_UD; if (get_tile (i + 1, j) != PLATFORM_EMPTY && get_tile (i, j + 1) != PLATFORM_EMPTY) tile = PLATFORM_UR; if (get_tile (i - 1, j) != PLATFORM_EMPTY && get_tile (i, j - 1) != PLATFORM_EMPTY) tile = PLATFORM_DL; if (get_tile (i + 1, j) != PLATFORM_EMPTY && get_tile (i, j - 1) != PLATFORM_EMPTY) tile = PLATFORM_DR; if (get_tile (i - 1, j) != PLATFORM_EMPTY && get_tile (i, j + 1) != PLATFORM_EMPTY) tile = PLATFORM_UL; if (get_tile (i - 1, j) != PLATFORM_EMPTY && get_tile (i, j + 1) != PLATFORM_EMPTY && get_tile (i, j - 1) != PLATFORM_EMPTY) tile = PLATFORM_UDL; if (get_tile (i + 1, j) != PLATFORM_EMPTY && get_tile (i, j + 1) != PLATFORM_EMPTY && get_tile (i, j - 1) != PLATFORM_EMPTY) tile = PLATFORM_UDR; if (get_tile (i - 1, j) != PLATFORM_EMPTY && get_tile (i + 1, j) != PLATFORM_EMPTY && get_tile (i, j - 1) != PLATFORM_EMPTY) tile = PLATFORM_DLR; if (get_tile (i - 1, j) != PLATFORM_EMPTY && get_tile (i + 1, j) != PLATFORM_EMPTY && get_tile (i, j + 1) != PLATFORM_EMPTY) tile = PLATFORM_ULR; if (get_tile (i - 1, j) == PLATFORM_EMPTY && get_tile (i + 1, j) == PLATFORM_EMPTY && get_tile (i, j - 1) == PLATFORM_EMPTY && get_tile (i, j + 1) == PLATFORM_EMPTY) tile = PLATFORM_EMPTY; if (get_tile (i - 1, j) != PLATFORM_EMPTY && get_tile (i + 1, j) != PLATFORM_EMPTY && get_tile (i, j - 1) != PLATFORM_EMPTY && get_tile (i, j + 1) != PLATFORM_EMPTY) tile = PLATFORM_NODE + grand (3); platform_tile[i][j] = tile; } } int t = 0; for (i = 0; i < 9; i++) { for (j = y1; j < y2; j++) { t = get_tile (i, j); /* * if (t == PLATFORM_LR_TLR) { if (check_tile_flow(t, * get_tile(i + 1, j))) t = PLATFORM_LR_TL; if * (check_tile_flow(t, get_tile(i - 1, j))) t = * PLATFORM_LR_TR; if (check_tile_flow(t, get_tile(i - 1, * j)) && check_tile_flow(t, get_tile(i + 1, j))) t = * PLATFORM_LR; } if (t == PLATFORM_UD_TUD) { if * (check_tile_flow(t, get_tile(i, j + 1))) t = * PLATFORM_UD_TU; if (check_tile_flow(t, get_tile(i, j - * 1))) t = PLATFORM_UD_TD; if (check_tile_flow(t, * get_tile(i, j - 1)) && check_tile_flow(t, get_tile(i, j * + 1))) t = PLATFORM_UD; } */ platform_tile[i][j] = t; } } for (i = 0; i < 9; i++) { for (j = y1; j < y2; j++) { if (get_tile (i, j) == PLATFORM_D && get_tile (i, j + 1) == PLATFORM_U) { platform_tile[i][j] = PLATFORM_EMPTY; platform_tile[i][j + 1] = PLATFORM_EMPTY; } } } } /* * int check_tile_flow(int t1, int t2) { if (t1 == PLATFORM_LR_TLR || t1 * == PLATFORM_LR_TL || t1 == PLATFORM_LR_TR || t1 == PLATFORM_LR) { if * (t2 == PLATFORM_LR_TLR || t2 == PLATFORM_LR_TR || t2 == PLATFORM_LR_TL * || t2 == PLATFORM_LR) return 1; return 0; } if (t1 == PLATFORM_UD_TUD * || t1 == PLATFORM_UD_TU || t1 == PLATFORM_UD_TD || t1 == PLATFORM_UD) { * if (t2 == PLATFORM_UD_TUD || t2 == PLATFORM_UD_TU || t2 == * PLATFORM_UD_TD || t2 == PLATFORM_UD) return 1; return 0; } return 0; } */ int get_tile (int x, int y) { if (x == -1 && y == -1) return platform_tile[8][PLAT_Y - 1]; if (x == -1 && y == PLAT_Y) return platform_tile[8][0]; if (x == 9 && y == -1) return platform_tile[0][PLAT_Y - 1]; if (x == 9 && y == PLAT_Y) return platform_tile[0][0]; if (x == -1) return platform_tile[8][y]; if (x == 9) return platform_tile[0][y]; if (y == -1) return platform_tile[x][PLAT_Y - 1]; if (y == PLAT_Y) return platform_tile[x][0]; return platform_tile[x][y]; } garden-1.0.9/src/palette.c0000644000175000017500000005234012457263274012313 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ /* This function is straight out of Excellent Bifurcation. I haven't fixed it up for this example at all. Use the colour enum in palette.h. */ #include "config.h" #include "allegro.h" #include "palette.h" #include "globvars.h" COLOR_MAP trans_table; //COLOR_MAP trans_table2; //int blend_function(int base, int trans, RGB *rgbl); int blend_function (int trans, int base, RGB * rgbl); int blend_function2 (int trans, int base, RGB * rgbl); int limit_colour (int colour_input); void create_inner_bullet_colour (int pa, int index, int r, int g, int b); void create_outer_bullet_colour (int pa, int index, int r, int g, int b); int build_new_palette (int base, int rshift, int gshift, int bshift); void halfway_colour (int base, int target, int r, int g, int b); RGB other_palet[1324]; RGB palet[2][256]; RGB palet2[256]; //RGB light_palet [256]; //RGB dark_palet [256]; RGB other_palet2[2048]; // what seems to be a weird bug in Allegro forces me to put padding around // the palet array, or it becomes corrupted. The same thing happened in // World of Violence and I have no idea why. /* IMPORTANT TO REMEMBER: I created the palette for the GIMP by saving a 16x16 image with all colours as a gif then importing the palette from that. This let me get the colours in the right order! In the GIMP, must go to image|mode|indexed colour and change the settings there. */ void special_create_color_table (COLOR_MAP * table); //, AL_CONST PALETTE pal); void special_create_color_table2 (COLOR_MAP * table, AL_CONST PALETTE pal); int base_colour (int y); void colour_table (const char *which_call); /* Colour scheme: Trans colours: 0 - base 1 - trans1 inner 2 - trans1 outer 3 - trans2 inner 4 - trans2 outer 5 - trans3 inner 6 - trans3 outer 7 - white inner 8 - white outer base colours: to 28 Remember, 0 is black so base 0 is actually indexed as 1 outline 0 white 1 lgrey 2 dgrey 3 col1 4 col2 5 col3 6 col4 7 back1 9 back2 9 back3 10 back4 11 back5 12 */ int base_colours[BASECOL_END][10][3] = { { // Spring {45, 45, 25}, // col1 {35, 35, 18}, // col2 {45, 25, 35}, // col3 {35, 18, 25}, // col4 //{8, 10, 11}, // back1 {11, 16, 12}, // back1 {15, 19, 16}, // back2 {16, 23, 18}, // back3 {19, 26, 19}, // back4} {43, 33, 43} // back5} }, { // Summer {46, 35, 21}, // col1 {35, 28, 17}, // col2 {50, 25, 21}, // col3 {38, 21, 16}, // col4 {16, 16, 22}, // back1 {19, 19, 31}, // back2 {18, 21, 10}, // back3 {21, 24, 13}, // back4 {37, 34, 19} // back5} }, /* { // Summer {46, 35, 21}, // col1 {35, 28, 17}, // col2 {50, 25, 21}, // col3 {38, 21, 16}, // col4 {14, 14, 22}, // back1 {15, 15, 31}, // back2 {18, 21, 10}, // back3 {21, 24, 13}, // back4 {45, 42, 15} // back5} },*/ { // Autumn {46, 21, 21}, // col1 {35, 27, 17}, // col2 {40, 35, 21}, // col3 {35, 26, 16}, // col4 {18, 18, 16}, // back1 {22, 22, 19}, // back2 {22, 20, 6}, // back3 {24, 22, 9}, // back4 {45, 12, 12} // back5} }, { // Winter {27, 27, 53}, // col1 {24, 24, 49}, // col2 {47, 47, 52}, // col3 {34, 34, 41}, // col4 {16, 16, 16}, // back1 {18, 18, 18}, // back2 {20, 20, 20}, // back3 {22, 22, 22}, // back4 {32, 27, 11} // back5} }, { // Second spring {45, 45, 25}, // col1 {35, 35, 18}, // col2 {45, 25, 35}, // col3 {35, 18, 25}, // col4 //{8, 10, 11}, // back1 {10, 15, 12}, // back1 {14, 18, 16}, // back2 {15, 21, 17}, // back3 {18, 24, 18}, // back4} {43, 33, 43} // back5} /*{10, 15, 12}, // back1 {13, 19, 15}, // back2 {14, 22, 16}, // back3 {17, 25, 17}, // back4} {45, 30, 45} // back5}*/ }, /* { {33, 33, 42}, // col1 {20, 20, 28}, // col2 {33, 42, 33}, // col3 {20, 28, 20}, // col4 {40, 40, 50}, // back1 {30, 30, 40}, // back2 {22, 22, 30}, // back3 {12, 15, 25}, // back4 {16, 18, 30} // back5} },*/ { // Stage 2 - cold {33, 33, 42}, // col1 {20, 20, 28}, // col2 {33, 42, 33}, // col3 {20, 28, 20}, // col4 {40, 40, 50}, // back1 {30, 30, 40}, // back2 {22, 22, 30}, // back3 {12, 17, 25}, // back4 {16, 20, 30} // back5} }, { // Stage 2 - warmer {36, 33, 39}, // col1 {22, 20, 26}, // col2 {35, 40, 33}, // col3 {22, 26, 20}, // col4 {45, 40, 45}, // back1 {35, 30, 35}, // back2 {26, 22, 26}, // back3 {15, 15, 23}, // back4 {20, 18, 27} // back5} }, { // Stage 2 - hot {39, 33, 33}, // col1 {26, 20, 20}, // col2 {39, 40, 33}, // col3 {26, 26, 20}, // col4 {45, 35, 42}, // back1 {35, 26, 32}, // back2 {28, 20, 24}, // back3 {17, 13, 21}, // back4 {23, 16, 25} // back5} }, { // Stage 2 - hotter {42, 28, 28}, // col1 {28, 16, 18}, // col2 {45, 42, 28}, // col3 {35, 29, 16}, // col4 {47, 25, 26}, // back1 {37, 12, 15}, // back2 {31, 10, 12}, // back3 {25, 15, 15}, // back4 {32, 19, 18} // back5} }, { // Stage 2 - hottest {54, 45, 45}, // col1 {45, 32, 28}, // col2 {54, 49, 45}, // col3 {45, 35, 28}, // col4 {47, 35, 25}, // back1 {38, 22, 17}, // back2 {37, 15, 15}, // back3 {29, 22, 19}, // back4 {34, 27, 22} // back5} }, { // stage 3 - red {35, 35, 35}, // col1 {40, 10, 10}, // col2 {10, 40, 10}, // col3 {35, 35, 10}, // col4 {12, 12, 12}, // back1 {20, 20, 20}, // back2 {30, 20, 20}, // back3 {40, 20, 20}, // back4 {50, 20, 20} // back6} }, { // stage 3 - orange/yellow {40, 30, 30}, // col1 {40, 10, 10}, // col2 {10, 40, 10}, // col3 {35, 35, 10}, // col4 {11, 11, 11}, // back1 {20, 20, 20}, // back2 {30, 25, 20}, // back3 {40, 32, 20}, // back4 {50, 40, 20} // back6} }, { // stage 3 - green {30, 40, 30}, // col1 {45, 10, 10}, // col2 {10, 45, 10}, // col3 {39, 39, 10}, // col4 {9, 9, 9}, // back1 {18, 18, 18}, // back2 {22, 30, 20}, // back3 {26, 40, 20}, // back4 {30, 50, 20} // back6} }, { // stage 3 - blue {30, 30, 40}, // col1 {50, 10, 10}, // col2 {10, 50, 10}, // col3 {45, 45, 10}, // col4 {8, 8, 8}, // back1 {10, 15, 20}, // back2 {11, 20, 30}, // back3 {12, 20, 40}, // back4 {13, 20, 50} // back6} }, { // stage 3 - violet {45, 40, 45}, // col1 {50, 20, 20}, // col2 {20, 50, 20}, // col3 {45, 45, 20}, // col4 {23, 22, 26}, // back1 {28, 20, 32}, // back2 {32, 14, 37}, // back3 {37, 11, 43}, // back4 {41, 10, 50} // back6} }, /*{ // stage 3 - violet {45, 40, 45}, // col1 {50, 20, 20}, // col2 {20, 50, 20}, // col3 {45, 45, 20}, // col4 {6, 6, 6}, // back1 {15, 10, 20}, // back2 {23, 10, 30}, // back3 {30, 10, 40}, // back4 {35, 10, 50} // back6} },*/ /* { // Stage 4 {45, 25, 25}, // col1 {25, 25, 45}, // col2 {45, 25, 25}, // col3 {25, 25, 45}, // col4 {25, 25, 25}, // back1 {13, 19, 15}, // back2 {14, 22, 16}, // back3 {17, 17, 15}, // back4} {26, 26, 25} // back5} }, */ /* { // Stage 4 {45, 40, 45}, // col1 {36, 36, 40}, // col2 {42, 42, 38}, // col3 {45, 40, 45}, // col4 {30, 30, 30}, // back1 {34, 34, 34}, // back2 {32, 32, 32}, // back3 {32, 32, 32}, // back4} {34, 34, 34} // back5} },*/ { // Stage 4 - 1 {47, 35, 35}, // col1 {38, 30, 30}, // col2 {40, 30, 40}, // col3 {33, 25, 33}, // col4 {33, 33, 33}, // back1 {34, 34, 44}, // back2 {38, 30, 30}, // back3 {35, 35, 35}, // back4} {37, 37, 37} // back5} }, { // Stage 4 - 2 {37, 45, 37}, // col1 {32, 36, 32}, // col2 {37, 37, 32}, // col3 {34, 31, 30}, // col4 {34, 30, 30}, // back1 {44, 34, 34}, // back2 {30, 30, 38}, // back3 {37, 32, 32}, // back4} {39, 33, 33} // back5} }, { // Stage 4 - 3 {47, 37, 37}, // col1 {38, 32, 32}, // col2 {43, 32, 32}, // col3 {38, 30, 30}, // col4 {29, 26, 26}, // back1 {46, 34, 34}, // back2 {40, 30, 30}, // back3 {32, 28, 28}, // back4} {35, 30, 30} // back5} }, { // Stage 4 - 4 {47, 47, 35}, // col1 {38, 38, 30}, // col2 {44, 44, 38}, // col3 {47, 47, 40}, // col4 {31, 31, 29}, // back1 {44, 44, 34}, // back2 {37, 37, 32}, // back3 {33, 33, 30}, // back4} {35, 35, 32} // back5} }, { // Stage 4 - 5 {46, 46, 46}, // col1 {36, 36, 36}, // col2 {42, 42, 42}, // col3 {47, 47, 47}, // col4 {25, 25, 25}, // back1 {44, 44, 44}, // back2 {32, 32, 32}, // back3 {28, 28, 28}, // back4} {31, 31, 31} // back5} }, { // CFLOWER (for winning screen) {45, 45, 35}, // col1 {45, 35, 45}, // col2 {45, 45, 45}, // col3 {40, 36, 43}, // col4 //{8, 10, 11}, // back1 {35, 35, 42}, // back1 {42, 32, 32}, // back2 {42, 39, 30}, // back3 {45, 30, 40}, // back4} {40, 40, 40} // back5} }, }; int current_base[10][3]; int swap; void set_base_palette (void) { int i, j; for (i = 5; i < 14; i++) { for (j = 0; j < 3; j++) { current_base[i - 5][j] = base_colours[arena.target_palette][i - 5][j]; } } // vsync(); // set_palette(palet [swap]); } void run_palette_shift (void) { int i, j; char changed = 0; for (i = 5; i < 14; i++) { for (j = 0; j < 3; j++) { if (current_base[i - 5][j] < base_colours[arena.target_palette][i - 5][j]) { current_base[i - 5][j]++; changed = 1; } if (current_base[i - 5][j] > base_colours[arena.target_palette][i - 5][j]) { current_base[i - 5][j]--; changed = 1; } } } if (changed == 0) arena.shift_palette = 0; } void define_palette (void) { int i; /* palet [0].r = 0; palet [0].g = 0; palet [0].b = 0;*/ swap = 0; do { for (i = 0; i < 256; i++) { palet[swap][i].r = 0; palet[swap][i].g = 0; palet[swap][i].b = 0; } palet[swap][1].r = 10; // outline palet[swap][1].g = 10; palet[swap][1].b = 10; palet[swap][2].r = 50; // white palet[swap][2].g = 50; palet[swap][2].b = 50; palet[swap][3].r = 35; // lgrey - was 40 palet[swap][3].g = 35; palet[swap][3].b = 35; palet[swap][4].r = 22; // dgrey - was 30 palet[swap][4].g = 22; palet[swap][4].b = 22; palet[swap][255].r = 63; palet[swap][255].g = 63; palet[swap][255].b = 63; swap++; if (swap == 2) { swap = 0; break; } } while (TRUE); for (i = 5; i < 14; i++) { current_base[i - 5][0] = base_colours[0][i - 5][0]; current_base[i - 5][1] = base_colours[0][i - 5][1]; current_base[i - 5][2] = base_colours[0][i - 5][2]; } build_new_palette (0, 0, 0, 0); vsync (); set_palette (palet[0]); swap = 1; /* BITMAP *palt = new_bitmap(16, 16, "Palette"); for (i = 0; i < 16; i ++) { for (j = 0; j < 16; j ++) { putpixel(palt, i, j, i + j * 16); } } save_bitmap("palt.bmp", palt, palet [0]); */ special_create_color_table (&trans_table); //, palet); // pork_create_color_table2(&trans_table2, palet); color_map = &trans_table; // set_palette(palet2); } void create_outer_bullet_colour (int pa, int index, int r, int g, int b) { int i; for (i = 0; i < 13; i++) { palet[pa][13 + 26 * index + i + 1].r = limit_colour (palet[pa][i + 1].r / 4 + r * 4); palet[pa][13 + 26 * index + i + 1].g = limit_colour (palet[pa][i + 1].g / 4 + g * 4); palet[pa][13 + 26 * index + i + 1].b = limit_colour (palet[pa][i + 1].b / 4 + b * 4); /* palet [pa] [13 + 26 * index + i + 1].r = limit_colour(palet [pa] [i + 1].r / 4 + r * 4); palet [pa] [13 + 26 * index + i + 1].g = limit_colour(palet [pa] [i + 1].g / 4 + g * 4); palet [pa] [13 + 26 * index + i + 1].b = limit_colour(palet [pa] [i + 1].b / 4 + b * 4);*/ } } void create_inner_bullet_colour (int pa, int index, int r, int g, int b) { int i; for (i = 0; i < 13; i++) { palet[pa][26 + 26 * index + i + 1].r = limit_colour (palet[pa][i + 1].r / 1.5 + r * 1.5); palet[pa][26 + 26 * index + i + 1].g = limit_colour (palet[pa][i + 1].g / 1.5 + g * 1.5); palet[pa][26 + 26 * index + i + 1].b = limit_colour (palet[pa][i + 1].b / 1.5 + b * 1.5); /* palet [pa] [26 + 26 * index + i + 1].r = limit_colour(palet [pa] [i + 1].r + r); palet [pa] [26 + 26 * index + i + 1].g = limit_colour(palet [pa] [i + 1].g + g); palet [pa] [26 + 26 * index + i + 1].b = limit_colour(palet [pa] [i + 1].b + b);*/ } } // base currently just used for transparencies int build_new_palette (int base, int rshift, int gshift, int bshift) { int k; for (k = 5; k < 14; k++) { /* palet [swap] [k].r = base_colours [base] [k - 5] [0]; palet [swap] [k].g = base_colours [base] [k - 5] [1]; palet [swap] [k].b = base_colours [base] [k - 5] [2];*/ palet[swap][k].r = current_base[k - 5][0]; palet[swap][k].g = current_base[k - 5][1]; palet[swap][k].b = current_base[k - 5][2]; } switch (base) { default: case 1: // shield1 create_inner_bullet_colour (swap, 0, 0, 0, 10); create_outer_bullet_colour (swap, 0, 10, 20, 30); // shield2 create_inner_bullet_colour (swap, 1, 10, 10, 20); create_outer_bullet_colour (swap, 1, 15, 25, 35); // orange create_inner_bullet_colour (swap, 2, 10, 5, 0); create_outer_bullet_colour (swap, 2, 30, 13, 5); // yellow create_inner_bullet_colour (swap, 3, 6, 6, 0); create_outer_bullet_colour (swap, 3, 25, 25, 5); // red create_inner_bullet_colour (swap, 4, 12, 0, 0); create_outer_bullet_colour (swap, 4, 30, 20, 10); // purple create_inner_bullet_colour (swap, 5, 7, 0, 7); create_outer_bullet_colour (swap, 5, 20, 13, 20); // blue create_inner_bullet_colour (swap, 6, 0, 0, 12); create_outer_bullet_colour (swap, 6, 10, 20, 30); // turquoise create_inner_bullet_colour (swap, 7, 0, 3, 3); create_outer_bullet_colour (swap, 7, 2, 12, 12); // green create_inner_bullet_colour (swap, 8, 0, 12, 0); create_outer_bullet_colour (swap, 8, 11, 20, 11); break; case 2: // shield1 create_inner_bullet_colour (swap, 0, 5, 0, 0); create_outer_bullet_colour (swap, 0, 20, 10, 5); // shield2 create_inner_bullet_colour (swap, 1, 7, 3, 0); create_outer_bullet_colour (swap, 1, 22, 8, 3); // orange create_inner_bullet_colour (swap, 2, 10, 5, 0); create_outer_bullet_colour (swap, 2, 30, 13, 5); // yellow create_inner_bullet_colour (swap, 3, 6, 6, 0); create_outer_bullet_colour (swap, 3, 25, 25, 5); // red create_inner_bullet_colour (swap, 4, 9, 0, 5); create_outer_bullet_colour (swap, 4, 18, 11, 18); // purple create_inner_bullet_colour (swap, 5, 5, 0, 10); create_outer_bullet_colour (swap, 5, 20, 13, 20); // blue create_inner_bullet_colour (swap, 6, 0, 0, 15); create_outer_bullet_colour (swap, 6, 10, 20, 30); // turquoise create_inner_bullet_colour (swap, 7, 0, 7, 0); create_outer_bullet_colour (swap, 7, 8, 17, 8); // green create_inner_bullet_colour (swap, 8, 2, 7, 2); create_outer_bullet_colour (swap, 8, 11, 20, 11); /* // yellow create_inner_bullet_colour(swap, 3, 6, 6, 0); create_outer_bullet_colour(swap, 3, 25, 25, 5); // red create_inner_bullet_colour(swap, 4, 12, 0, 0); create_outer_bullet_colour(swap, 4, 30, 20, 10); // purple create_inner_bullet_colour(swap, 5, 7, 0, 7); create_outer_bullet_colour(swap, 5, 20, 13, 20); // blue create_inner_bullet_colour(swap, 6, 0, 0, 12); create_outer_bullet_colour(swap, 6, 10, 20, 30); // turquoise create_inner_bullet_colour(swap, 7, 0, 3, 3); create_outer_bullet_colour(swap, 7, 4, 17, 17); // green create_inner_bullet_colour(swap, 8, 0, 12, 0); create_outer_bullet_colour(swap, 8, 11, 20, 11); */ break; case 3: // shield1 create_inner_bullet_colour (swap, 0, 0, 0, 10); create_outer_bullet_colour (swap, 0, 5, 8, 10); // shield2 create_inner_bullet_colour (swap, 1, 5, 0, 5); create_outer_bullet_colour (swap, 1, 10, 6, 10); /* // shield1 create_inner_bullet_colour(swap, 0, 0, 0, 10); create_outer_bullet_colour(swap, 0, 7, 15, 25); // shield2 create_inner_bullet_colour(swap, 1, 5, 0, 5); create_outer_bullet_colour(swap, 1, 18, 9, 18); */ // orange create_inner_bullet_colour (swap, 2, 10, 5, 0); create_outer_bullet_colour (swap, 2, 30, 13, 5); // yellow create_inner_bullet_colour (swap, 3, 6, 6, 0); create_outer_bullet_colour (swap, 3, 25, 25, 5); // red create_inner_bullet_colour (swap, 4, 4, -5, -6); create_outer_bullet_colour (swap, 4, 28, 20, 15); // purple create_inner_bullet_colour (swap, 5, 5, -5, 5); create_outer_bullet_colour (swap, 5, 16, 8, 16); // blue create_inner_bullet_colour (swap, 6, 4, 4, 12); create_outer_bullet_colour (swap, 6, 10, 20, 30); // turquoise create_inner_bullet_colour (swap, 7, 3, 3, 6); create_outer_bullet_colour (swap, 7, 9, 17, 17); // green create_inner_bullet_colour (swap, 8, 7, 12, 7); create_outer_bullet_colour (swap, 8, 19, 20, 19); break; } if (swap == 0) swap = 1; else { swap = 0; return 1; } return 0; } /* void halfway_colour(int base, int target, int r, int g, int b) { int diff; diff = palet[base].r - r; diff /= 2; palet[target].r += diff; diff = palet[base].g - g; diff /= 2; palet[target].g += diff; diff = palet[base].b - b; diff /= 2; palet[target].b += diff; } */ int limit_colour (int colour_input) { if (colour_input < 0) return 0; if (colour_input > 63) return 63; return colour_input; } /* int blend_function(int trans, int base, RGB *rgbl) { if (base <= COLOUR_11) return trans + base; // int low_colour = base % 12; // int low_trans = trans / 12; int trans_strength = (trans / 12 - 1) % 6; if (trans == TRANS_PURPLE1) trans_strength = 10; if (trans == TRANS_PURPLE2) trans_strength = 11; int base_trans_strength = (base / 12 - 1) % 6; if (trans == TRANS_PURPLE1) base_trans_strength = 10; if (trans == TRANS_PURPLE2) base_trans_strength = 11; if (trans_strength >= base_trans_strength) return trans + (base % 12); else return base; return trans; } */ /* THIS ONE!!! int blend_function(int trans, int base, RGB *rgbl) { if (trans >= TRANS_CONVERT_1 && trans <= TRANS_CONVERT_9) { if (base == 0) return 0; if (((base - 2) / 13) % 2 == 1) return (trans - TRANS_CONVERT_1) * 26 + 15; else return (trans - TRANS_CONVERT_1) * 26 + 28; } if (trans == CONVERT_WHITE_TO_GREY) { if (base == COL_WHITE) return COL_LGREY; return base; } if (trans == TRANS_BACK2_OUTLINE) { return base; } if (trans == TRANS_BACK3_OUTLINE) { if (base == COL_BACK1)//2 || base == COL_BACK1) return COL_OUTLINE; else return base; } if (base < TRANS_SH1_OUT - 1) return trans + base - 2; int trans_strength = (trans) / 13; // int base_trans_strength = (base - 1) / 13; int base_trans_strength = (base - 1) / 13; if (trans_strength > base_trans_strength) return trans + ((base - 1) % 13) - 1; else return base; return trans; } */ int blend_function (int trans, int base, RGB * rgbl) { if (trans >= TRANS_CONVERT_1 && trans <= TRANS_CONVERT_9) { if (base == 0) return 0; if (((base - 1) / 13) % 2 == 1) return (trans - TRANS_CONVERT_1) * 26 + 15; else return (trans - TRANS_CONVERT_1) * 26 + 28; } if (trans == CONVERT_WHITE_TO_GREY) { if (base == COL_WHITE) return COL_LGREY; return base; } if (trans == TRANS_BACK2_OUTLINE) { return base; } if (trans == TRANS_BACK3_OUTLINE) { if (base == COL_BACK1) //2 || base == COL_BACK1) return COL_OUTLINE; else return base; } // if (base == COL_OUTLINE) // base = COL_DGREY; if (base < TRANS_SH1_OUT - 1) // corrected recently return trans + base - 2; int trans_strength = (trans - 1) / 13; int base_trans_strength = (base - 1) / 13; // int base_trans_strength = (base - 1) / 13; if (trans_strength > base_trans_strength) return trans + ((base - 1) % 13) - 1; else return base; return trans; } /*int blend_function(int trans, int base, RGB *rgbl) { if (base <= COLOUR_12) return trans + base; trans --; // int low_colour = base % 12; // int low_trans = trans / 12; int trans_strength = (trans / 12 - 1) % 6; if (trans == TRANS_PURPLE1) trans_strength = 10; if (trans == TRANS_PURPLE2) trans_strength = 11; int base_trans_strength = (base / 12 - 1) % 6; if (trans == TRANS_PURPLE1) base_trans_strength = 10; if (trans == TRANS_PURPLE2) base_trans_strength = 11; if (trans_strength >= base_trans_strength) return trans + (base % 12); else return base; return trans; } */ /* This function had to be modified from the allegro create_color_table because the allegro version used bestfit_color, whereas we need specific color values */ void special_create_color_table (COLOR_MAP * table) { int x, y, z; RGB c; for (x = 0; x < PAL_SIZE; x++) { for (y = 0; y < PAL_SIZE; y++) { z = blend_function (x, y, &c); table->data[x][y] = z; } } } garden-1.0.9/src/input.h0000644000175000017500000000154712457263274012024 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ void get_input (void); void init_joystick (void); void jstick_calibrate (void); void jstick_to_keypressed(void); garden-1.0.9/src/main.c0000644000175000017500000001711012457263274011575 00000000000000/* * This file is part of 'Garden of coloured lights'. * * 'Garden of coloured lights' 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. * * 'Garden of coloured lights' 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 'Garden of coloured lights'. If not, see . */ #include "system.h" #include "config.h" #include "allegro.h" //#include #include #include #include /* For file permissions check */ #include "globvars.h" #include "stuff.h" #include "game.h" #include "display_init.h" #include "sound.h" #include "menu.h" #include "input.h" #include "palette.h" // timer interupt functions and variables: void framecount(void); volatile int framecounter; volatile int frames_per_second; void tickover(void); volatile unsigned char ticked; int slacktime; void init_at_startup(void); void begin_game(void); void game_loop(void); struct playerstruct player; struct enemystruct enemy [NO_ENEMIES]; struct ebulletstruct ebullet [NO_EBULLETS]; struct pbulletstruct pbullet [NO_PBULLETS]; struct arenastruct arena; struct eclassstruct eclass [NO_ENEMY_TYPES]; struct cloudstruct cloud [NO_CLOUDS]; struct bossstruct boss; struct optionstruct options; char data_directory[DATADIR_SIZE] = "\0"; void framecount(void) { frames_per_second = framecounter; framecounter = 0; } END_OF_FUNCTION (framecount); /* Is called every 25ms; lets the game know that it's time to move on to the next frame. */ void tickover(void) { ticked ++; } END_OF_FUNCTION (tickover); int main(void) { int allint = allegro_init(); if (allint == -1) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Failed to initialise Allegro! This isn't going to work, sorry."); exit(1); } install_keyboard(); install_timer(); three_finger_flag = 0; key_led_flag = 0; // allegro_init first :-) #ifdef DATADIR strncpy(data_directory, DATADIR, sizeof(data_directory)); strcat(data_directory, "/"); #else get_executable_name(data_directory, sizeof(data_directory)); replace_filename(data_directory, data_directory, "", sizeof(data_directory)); #endif //DATADIR init_at_startup(); startup_menu(); return 0; } END_OF_MAIN() /* Self-explanatory. */ void init_at_startup(void) { LOCK_FUNCTION (framecount); LOCK_FUNCTION (tickover); LOCK_VARIABLE (ticked); LOCK_VARIABLE (frames_per_second); LOCK_VARIABLE (framecounter); LOCK_VARIABLE (turns_per_second); LOCK_VARIABLE (turncounter); install_int (framecount, 1000); install_int (tickover, 25); set_color_depth(8); /* The following code is for use if your system is set up to prevent an application writing to its own directory. Normally this will prevent highscores and key configurations being saved, but the following code puts the initfile in a better place. This may be a default on some systems (eg Unixes and possibly Windows Vista) and can be set on some other systems. The only problem with this is that you'll have to manually type or copy the various other options (windowed, vsync, joystick buttons etc) into the initfile in this new location (or just copy the initfile across). Thanks to Thomas Harte for this code! I had no idea it was necessary (it isn't on my Windows XP computer, and I haven't tested it). */ char filename_buffer [DATADIR_SIZE]; strncpy(filename_buffer, data_directory, sizeof(filename_buffer)); strncat(filename_buffer, "init.txt", sizeof(filename_buffer)); if (access(filename_buffer, W_OK) == 0) {/*We can write the init file*/ set_config_file(filename_buffer); } else {/*We can not write the init where it is*/ char right_path[512]; const char * unix_path = getenv("HOME"); const char * vista_path = getenv("APPDATA"); strncpy(right_path, (unix_path != NULL ? unix_path : vista_path), sizeof(right_path) ); strncat(right_path, "/.garden", sizeof(right_path) ); if (access(right_path, R_OK) != 0 ) /* we have to mkdir */ { /* platform-specific function, see system.h*/ MKDIR(right_path); } strncat(right_path, "/init.txt", sizeof(right_path) ); if (access(right_path, R_OK) != 0 ) { char buffer[128]; int bytes_read; FILE * unwritable_file = fopen(filename_buffer, "r"); FILE * init_file = fopen(right_path, "w"); while (bytes_read = fread(buffer, 1, sizeof(buffer), unwritable_file) ) fwrite ( buffer, 1, bytes_read, init_file ); fclose(init_file); fclose(unwritable_file); } set_config_file(right_path); } /*#ifdef UNIX_OSX_VISTA_ETC { char *HPath = getenv("HOME"); // use this if for some reason you're running Windows Vista: // char *HPath = getenv("APPDATA"); char ConfigPath[2048]; sprintf(ConfigPath, "%s/.GardenOfColouredLights", HPath); set_config_file(ConfigPath); } #else set_config_file(DIRECTORY(DATADIR,init.txt)); #endif*/ options.run_vsync = get_config_int("Misc", "vsync", 0); options.highscore [0] = get_config_int("Scores", "Easy", 100); options.highscore [1] = get_config_int("Scores", "Normal", 100); options.highscore [2] = get_config_int("Scores", "Hard", 100); int randseed = get_config_int("Misc", "Seed", 0); srand(randseed); int windowed2 = get_config_int("Misc", "Windowed", 0); int windowed; switch (windowed2) { default: case 1: windowed = GFX_AUTODETECT_WINDOWED; break; case 0: windowed = GFX_AUTODETECT_FULLSCREEN; break; } if (set_gfx_mode(windowed, 640, 480, 0, 0) != 0) { set_gfx_mode(GFX_TEXT, 0, 0, 0, 0); allegro_message("Unable to set 640x480 display mode %s", allegro_error); exit(1); } init_trig(); prepare_display(); init_sound(); player.key [CKEY_UP] = get_config_int("Misc", "key_up", KEY_UP); player.key [CKEY_DOWN] = get_config_int("Misc", "key_down", KEY_DOWN); player.key [CKEY_LEFT] = get_config_int("Misc", "key_left", KEY_LEFT); player.key [CKEY_RIGHT] = get_config_int("Misc", "key_right", KEY_RIGHT); player.key [CKEY_FIRE1] = get_config_int("Misc", "key_fire1", KEY_Z); player.key [CKEY_FIRE2] = get_config_int("Misc", "key_fire2", KEY_X); player.key [CKEY_FIRE3] = get_config_int("Misc", "key_fire3", KEY_C); player.key [CKEY_SLOW] = get_config_int("Misc", "key_slow", KEY_LSHIFT); options.joy_button [0] = get_config_int("Misc", "joy_button_1", 0); options.joy_button [1] = get_config_int("Misc", "joy_button_2", 1); options.joy_button [2] = get_config_int("Misc", "joy_button_3", 2); options.joy_button [3] = get_config_int("Misc", "joy_button_slow", 3); options.joy_stick = get_config_int("Misc", "joy_stick", 0); options.joy_sensitivity = get_config_int("Misc", "joy_sensitivity", 70); options.init_joystick = get_config_int("Misc", "joy_init", 1); options.joystick = 0; options.sound_volume = get_config_int("Misc", "sound_volume", (int)(255 * 0.7)); options.key_or_joy = 0; // don't put in initfile! options.tourist = get_config_int("Misc", "Tourist", 0); if (options.tourist < 2 || options.tourist > 4) options.tourist = 0; // set_config_int("Misc", "Tourist", 3); // set_config_int("Misc", "joy_stick", 0); if (options.init_joystick) init_joystick(); //#ifdef ASDFASDF do { rest(20); } while (ticked < 200); // 5 second delay in accordance with competition rules ticked = 0; //#endif clear_bitmap(screen); vsync(); define_palette(); } garden-1.0.9/src/configure.h.in0000644000175000017500000000404412457276776013261 00000000000000/* src/configure.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the `m' library (-lm). */ #undef HAVE_LIBM /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if stdbool.h conforms to C99. */ #undef HAVE_STDBOOL_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* 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 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 header file. */ #undef HAVE_UNISTD_H /* Define to 1 if the system has the type `_Bool'. */ #undef HAVE__BOOL /* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* 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 to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define when building for Windows */ #undef WINDOWS_VERSION /* 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 garden-1.0.9/Makefile.am0000644000175000017500000000006512457276710011752 00000000000000ACLOCAL_AMFLAGS= -I m4 SUBDIRS = src resources data garden-1.0.9/README0000644000175000017500000000724512457263274010606 00000000000000Garden of coloured lights INTRODUCTION From the homepage (http://garden.sourceforge.net): Garden of coloured lights is an old school 2D vertical shoot-em-up with some innovative elements. Innovative graphics, soundtrack and game concept. The game itself is very challenging and as you progress, you will understand that you are dealing with a true piece of art... Simple and astonishing! It is free, open source software. It is released under GNU GPL license v3 which means that it is not only free of charge, but you may also download the source code and play with it. Garden of coloured lights depends only on Allegro game programming library, a multiplatform game programming library. Thanks to that, you can play Garden of coloured lights on Linux, Windows as well as on other systems that have allegro installed. It is not an easy game, so you will need some skill and patience... And maybe you will appreciate the possibility to use a joystick. And yes, it is actually possible to get to stage 4. But it is not easy to beat it even if you have max stats :-) INSTALLATION: unixes: Unpack the tarball and run ./configure && make && make install. You will probably want to change your prefix, so you can run something like ./configure --prefix=/usr && make ... If you want to play without installation or if you want to use existing (installed) datafiles, run ./configure --with-datafiles= (for those unfamiliar with ./configure && make && make install: ./configure --help tells you how can you modify your build and you can pass multiple options to the configure script at the same time) mingw unix: It is pretty much the same, except you have to pass --host=i486-mingw32 (this varies across mingw installations) or something like that to the configure script. The Windows version was compiled on a Linux box, so it works ;-) native Windows mingw: You have to install MSYS (http://www.mingw.org/), but if you don't know much about mingw and unix stuff, don't do it, it is not very easy even to find user-friendly installers :-) native Windows: Easy, use the provided installer. EXECUTION: Just launch garden (garden.exe) and make sure that allegro DLL (and/or mingw DLL) are "visible" (installed, in the same directory on Windows etc.) garden doesn't accept any command line arguments. CONFIGURATION Configuration is done via file init.txt That file is located either in the installation directories (Windows except Vista AFAIK), or in your home directory (~/.garden/init.txt). Scores are stored there and you can set whether you want windowed mode or fullscreen (Windowed = 1 X Windowed = 0 in the "[Misc]" section of the config file) A sample init.txt file: [Scores] Easy = 8843 Normal = 3027 Hard = 120 [Misc] Windowed = 0 GAMEPLAY Default controls are arrows + keys 'z', 'x', 'c' for shooting and 'v' for "slow". From version 1.0.5 on, you get an extra life each 2000 of score every time ;-) You learn weapon XP by killing enemies, the bosses don't count. If you manage to kill a lot of enemies, the level appearence will change and you will get a small score multiplier bonus There originally were three levels, now there is fourth. I have never managed to beat the fourth one, so I guess that you are good enough if you get past the third :-) Update: It is possible to beat even the fourth level (without cheating, of course). But I don't know whether I would manage without a joystick. FAQ Q: The rotating options confuse me, I don't know which is which when I want to hit something! A: This is a game that requires 108% concentration. You have to keep track on options position and appearence. Questions, comments, suggestions? I would love to hear from you at bubla@users.sourceforge.net garden-1.0.9/NEWS0000644000175000017500000000124212457301351010401 000000000000001.0.9: News concern only Unix-like platforms (Linux, OSX etc.) Bugfixes: - The Unix build system has been cleed-up and made to work with autoconf 2.69 - appdata file has been added (closes FR #4, thanks to Tim Waugh and Richard Huges) - Merged printf patch some RedHat guys supposedly made (and haven't shared with us devs, shame on them!) - Merged DSO linking patch (closes B #3, thanks to an unknown helper) 1.0.8: Bugfixes: - README is part of the Win32 package, too. - The 'exit menu' bug has been fixed. Features: - Volume control support in the menu 1.0.6: Features: - Smart CPU usage 1.0.5: Bugfixes: - Bonus life each 2000 is now delivered every time. garden-1.0.9/resources/0000755000175000017500000000000012457302476012006 500000000000000garden-1.0.9/resources/garden.appdata.xml0000644000175000017500000000330612457276024015322 00000000000000 garden.desktop CC0-1.0 GPL-3.0+ Choose your equipment and set off to a journey through surreal and dangerous worlds.

Garden of coloured lights is a masterpiece created by the famous Linely Henzell (author of Dungeon Crawl). Develop a strategy, equip the ship, and face your adversaries on a journey to <spoiler removed>.

The futuristic landscape scrolls upwards while strange plant-like enemies engage your ship in various ways. You are awarded by an extra life for every 2000 points scored. Getting a higher kill ratio increases your score multiplier. There are boss enemies to kill in each of five stages.

Controls:

  • Use arrows to move.
  • Use Z, X, C, to shoot, V to slow down.
  • Press Esc for pause / quit and Y / N for yes/ no
Joystick is probably the best controller, but keyboard is good enough.

http://garden.sourceforge.net/ http://garden.sourceforge.net/drupal/sites/default/files/images/stage1_1.png http://garden.sourceforge.net/drupal/sites/default/files/images/stage1_2.png http://garden.sourceforge.net/drupal/sites/default/files/images/stage0_0.png
garden-1.0.9/resources/garden.ico0000644000175000017500000004107612457263310013663 00000000000000@@ (B(@ j 4+++N#ThhhUUU:::yyy"""caKa{6'6!5(5`  \\\:::333N=0=;y[yx3)3E5EsfOfdD5DD  P=Pi\\\&>>>+++%^I^TtYtr"""Q2>BwgOgj2#2$`K`bw|_|///ddd-CCCTTTLhqA2A3qr6(6&7+7*dNdf=/=uuuddd-CCCI8IId>0>%lXCXW''(ddd0$0pCCCMMM-kRkp_Ia~ 3)3cynbKbp$$$Yfffddd{^{gRgm3"3CCCY@r{djL\EbzbkSkiZHZR>,>: =+=;ZHZRnSnkddd~a~lE5ECCCC888[dd[Bsx,',."""[H[\qYqsoiLLLddd~a~phRhg:/:FCCCrrrB/TddU=ki_K_f3'3ddd/#/l  CCC }XdG~mRq_I_^.).,P=PSrddd-CCCAAA1%1SeMej|lTlmD5DD C6C={pA3A7***ddd-???TTT**C8(8 m|`|}WBWU114.4'p~vq|`|B4B6***ddd-:::TTT.Ll\@t+++iiiiiimmm```ooo111iiiiiiPPVmSq3%A+++iiiiii,,,;;;777fffwww111iiiiii%% o[AtddV?hZEZU.).,6(6&oVoqiQikK+++iiiiii)))))))))"""===))))))))) 111iiiiii  D6D^tYtuZEZU.).,L8LMp +++iiiiii888111iiiiiitttRRR >/>tYtuZEZU,!,,#,fNfl""!!!+++iiiiii\\\[[[[[[[[[[[[888 @@@[[[[[[[[[[[[bbbiiiiiikkkJ9J_G_^bdNdGGGlll+++iiiiiiiiiiiiiiiiiiiii*** PPPiiiiiiiiiiiiiiiiiiiii***hr6'6!G5GD ,,,mmm111111111111111111111111111111111111111111 `J``gPgcnYYYmmmmmm999fNfsxv6(6& eP>P\\\rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr!3222rrrrrrrrrrrrrrrrrrrrrwww<<<7)78M:MF\J\SiQia4(4Y>>kkkXXX$$$6\333cccaaa000W&  l   Bv_#4jj3}<??>??? ><<??s@px?||~? ? ? ? ??~>< ? ?garden-1.0.9/resources/Makefile.am0000644000175000017500000000216212457300507013754 00000000000000desktopdir = @datadir@/applications appdatadir = @datadir@/appdata icon_scalabledir = @datadir@/icons/hicolor/scalable/apps if HAVE_FREEDESKTOP dist_desktop_DATA = garden.desktop dist_appdata_DATA = garden.appdata.xml dist_icon_scalable_DATA = garden.svg if WANT_FREEDESKTOP # the '-' at the beginning indicates that there is no problem if the command fails install-data-hook: -update-desktop-database uninstall-hook: -update-desktop-database else install-data-hook: @echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * @echo "You are most likely a packager, aren't you?" @echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * @echo The garden.desktop file and the SVG icon have been installed to $(desktopdir) and $(icon_scalabledir) respectively. @echo "So don't forget to run 'update-desktop-database' or whatever else in the post-install and post-uninstall hook of the package." @echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * endif #WANT_FREEDESKTOP endif #HAVE_FREEDESKTOP EXTRA_DIST = garden.ico garden-1.0.9/resources/Makefile.in0000644000175000017500000004405112457302475013776 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ subdir = resources DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(am__dist_appdata_DATA_DIST) $(am__dist_desktop_DATA_DIST) \ $(am__dist_icon_scalable_DATA_DIST) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/allegro.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/configure.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__dist_appdata_DATA_DIST = garden.appdata.xml 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)$(appdatadir)" "$(DESTDIR)$(desktopdir)" \ "$(DESTDIR)$(icon_scalabledir)" am__dist_desktop_DATA_DIST = garden.desktop am__dist_icon_scalable_DATA_DIST = garden.svg DATA = $(dist_appdata_DATA) $(dist_desktop_DATA) \ $(dist_icon_scalable_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLEGRO_CONFIG = @ALLEGRO_CONFIG@ ALLEGRO_LIB = @ALLEGRO_LIB@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR_NAME = @DATADIR_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ RANLIB = @RANLIB@ RC = @RC@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ allegro_CFLAGS = @allegro_CFLAGS@ allegro_LIBS = @allegro_LIBS@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ have_freedesktop = @have_freedesktop@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ desktopdir = @datadir@/applications appdatadir = @datadir@/appdata icon_scalabledir = @datadir@/icons/hicolor/scalable/apps @HAVE_FREEDESKTOP_TRUE@dist_desktop_DATA = garden.desktop @HAVE_FREEDESKTOP_TRUE@dist_appdata_DATA = garden.appdata.xml @HAVE_FREEDESKTOP_TRUE@dist_icon_scalable_DATA = garden.svg EXTRA_DIST = garden.ico 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) --gnu resources/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu resources/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): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_appdataDATA: $(dist_appdata_DATA) @$(NORMAL_INSTALL) @list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \ fi; \ 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)$(appdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \ done uninstall-dist_appdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir) install-dist_desktopDATA: $(dist_desktop_DATA) @$(NORMAL_INSTALL) @list='$(dist_desktop_DATA)'; test -n "$(desktopdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || exit 1; \ fi; \ 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-dist_desktopDATA: @$(NORMAL_UNINSTALL) @list='$(dist_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-dist_icon_scalableDATA: $(dist_icon_scalable_DATA) @$(NORMAL_INSTALL) @list='$(dist_icon_scalable_DATA)'; test -n "$(icon_scalabledir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(icon_scalabledir)'"; \ $(MKDIR_P) "$(DESTDIR)$(icon_scalabledir)" || exit 1; \ fi; \ 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)$(icon_scalabledir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icon_scalabledir)" || exit $$?; \ done uninstall-dist_icon_scalableDATA: @$(NORMAL_UNINSTALL) @list='$(dist_icon_scalable_DATA)'; test -n "$(icon_scalabledir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icon_scalabledir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: 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 $(DATA) installdirs: for dir in "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icon_scalabledir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done 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." @HAVE_FREEDESKTOP_FALSE@install-data-hook: @HAVE_FREEDESKTOP_FALSE@uninstall-hook: @WANT_FREEDESKTOP_FALSE@uninstall-hook: clean: clean-am clean-am: clean-generic clean-libtool 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-dist_appdataDATA install-dist_desktopDATA \ install-dist_icon_scalableDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-data-hook 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 mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_appdataDATA uninstall-dist_desktopDATA \ uninstall-dist_icon_scalableDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-data-am install-strip uninstall-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-data-hook install-dist_appdataDATA \ install-dist_desktopDATA install-dist_icon_scalableDATA \ 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 mostlyclean-libtool pdf pdf-am \ ps ps-am tags-am uninstall uninstall-am \ uninstall-dist_appdataDATA uninstall-dist_desktopDATA \ uninstall-dist_icon_scalableDATA uninstall-hook # the '-' at the beginning indicates that there is no problem if the command fails @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_TRUE@install-data-hook: @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_TRUE@ -update-desktop-database @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_TRUE@uninstall-hook: @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_TRUE@ -update-desktop-database @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_FALSE@install-data-hook: @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_FALSE@ @echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_FALSE@ @echo "You are most likely a packager, aren't you?" @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_FALSE@ @echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_FALSE@ @echo The garden.desktop file and the SVG icon have been installed to $(desktopdir) and $(icon_scalabledir) respectively. @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_FALSE@ @echo "So don't forget to run 'update-desktop-database' or whatever else in the post-install and post-uninstall hook of the package." @HAVE_FREEDESKTOP_TRUE@@WANT_FREEDESKTOP_FALSE@ @echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * # 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: garden-1.0.9/resources/garden.desktop0000644000175000017500000000025012457263310014547 00000000000000[Desktop Entry] Name=garden Comment=Garden of coloured lights shoot-em-up Exec=garden Icon=garden Terminal=false X-MultipleArgs=false Type=Application Categories=Game; garden-1.0.9/resources/garden.svg0000644000175000017500000010562212457263310013706 00000000000000 image/svg+xml garden-1.0.9/Makefile.in0000644000175000017500000006160712457276735012003 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ subdir = . DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) \ $(top_srcdir)/docs/garden.doxyfile.in \ $(top_srcdir)/pkgs/w32/winstaller.nsi.in COPYING \ build-aux/compile build-aux/config.guess build-aux/config.sub \ build-aux/depcomp build-aux/install-sh build-aux/missing \ build-aux/ltmain.sh $(top_srcdir)/build-aux/compile \ $(top_srcdir)/build-aux/config.guess \ $(top_srcdir)/build-aux/config.sub \ $(top_srcdir)/build-aux/install-sh \ $(top_srcdir)/build-aux/ltmain.sh \ $(top_srcdir)/build-aux/missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/allegro.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac 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 = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/configure.h CONFIG_CLEAN_FILES = docs/garden.doxyfile pkgs/w32/winstaller.nsi CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-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 \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope 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__post_remove_distdir = $(am__remove_distdir) 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 DIST_TARGETS = dist-gzip 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@ ALLEGRO_CONFIG = @ALLEGRO_CONFIG@ ALLEGRO_LIB = @ALLEGRO_LIB@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR_NAME = @DATADIR_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ RANLIB = @RANLIB@ RC = @RC@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ allegro_CFLAGS = @allegro_CFLAGS@ allegro_LIBS = @allegro_LIBS@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ have_freedesktop = @have_freedesktop@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = src resources data all: 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) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu 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): docs/garden.doxyfile: $(top_builddir)/config.status $(top_srcdir)/docs/garden.doxyfile.in cd $(top_builddir) && $(SHELL) ./config.status $@ pkgs/w32/winstaller.nsi: $(top_builddir)/config.status $(top_srcdir)/pkgs/w32/winstaller.nsi.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt # 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. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ 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" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) 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; \ $(am__define_uniq_tagged_files); \ 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-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ 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" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files 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 \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ 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__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_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.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 u+w $(distdir) mkdir $(distdir)/_build $(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 \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=.. --prefix="$$dc_install_base" \ && $(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__post_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 installdirs: installdirs-recursive installdirs-am: 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 clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: 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 mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ dist-xz dist-zip distcheck distclean distclean-generic \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck 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 \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-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: garden-1.0.9/configure.ac0000644000175000017500000001007712457276715012215 00000000000000# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.68) AC_INIT([GARDEN], [1.0.9], [bubla@users.sourceforge.net]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([-Wall]) AC_CONFIG_SRCDIR([src/input.h]) AC_CONFIG_HEADERS([src/configure.h]) AC_CONFIG_MACRO_DIR([m4]) AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug], [Builds the debug version of the library [[default = no]]]) ], [], [enable_debug="no"]) AS_IF([test "x$enable_debug" = "xyes"], [CFLAGS="${CFLAGS} -g -O0"]) # Checks for programs. AC_PROG_CC AC_PROG_LIBTOOL LT_PROG_RC AC_CANONICAL_HOST dnl dnl Check whether it makes sense to install a garden.desktop file dnl AC_CHECK_PROG([have_freedesktop], [update-desktop-database], [yes]) AM_CONDITIONAL([HAVE_FREEDESKTOP], [test "x$have_freedesktop" = "xyes"]) AM_CONDITIONAL([WANT_FREEDESKTOP], [test "x$enable_desktop_install" = "xyes"]) AC_ARG_ENABLE([desktop-install], [AS_HELP_STRING([--enable-desktop-install], [Whether you want to install the garden.desktop file if applicable. !!! DO NOT USE if you are a PACKAGER!!!])] ) AS_CASE([$host], [*mingw* | *cygwin*], [AC_DEFINE([WINDOWS_VERSION], [1], [Define when building for Windows]) windows_version="yes"]) AM_CONDITIONAL([WINDOWS_VERSION], [test "x$windows_version" = "xyes" ]) dnl now the datadir specification, that is useful if one does want to play without installing AC_ARG_ENABLE([datadir], [AS_HELP_STRING([--enable-datadir=path-to-your-garden-datafiles], [Normally you dont have to use this, but it is handy when you want to play the game without installing it or if you want to use already installed data. In the first case, use for instance --enable-datadir=`pwd`/data (if it makes sense)])], [DATADIR_NAME="$enableval"], [DATADIR_NAME='$(datadir)/'garden]) # Sets the data subdirectory AC_SUBST([DATADIR_NAME]) # Checks for libraries. AC_CHECK_HEADER([allegro.h], [], [have_allegro="no" AC_MSG_ERROR([You don't even have Allegro headers... Get Allegro first!]) ]) AC_CHECK_LIB([m], [sin]) test "x$host_os" != "x$build_os" && CROSS_COMPILING="yes" try_link_allegro () { LIBS_SAVE=$LIBS LIBS="$LIBS $1" AC_MSG_CHECKING([for Allegro using $1]) AC_LINK_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT [ #include ]], [allegro_init();])END_OF_MAIN() ], [have_allegro="yes"], [have_allegro="no"]) AC_MSG_RESULT([$have_allegro]) LIBS=$LIBS_SAVE AS_IF([test "x$have_allegro" == "xyes"], [return 0], [return 1]) } # first check for 'official allegro' # The official allegro does not support cross-compiling, though... AM_PATH_ALLEGRO([4.2.0]) try_link_allegro "$allegro_LIBS" AS_IF([test "x$?" == "x0"], [[LIBS="$LIBS $allegro_LIBS" ALLEGRO_LIB=`echo $allegro_LIBS | sed -e 's/.*-l\([^[:blank:]]*\).*/\1/'` have_allegro="yes"]]) ALLEGRO_RELEASE_LIBS="alleg alleg42 alleg44" ALLEGRO_DEBUG_LIBS="alld42 alleg44-debug" AS_IF([test "x$enable_debug" = "xyes"], [ALLEGRO_LIBS="$ALLEGRO_DEBUG_LIBS $ALLEGRO_RELEASE_LIBS"], [ALLEGRO_LIBS="$ALLEGRO_RELEASE_LIBS $ALLEGRO_DEBUG_LIBS"]) for lib in $ALLEGRO_LIBS do ldflag="-l$lib" AS_IF([test "x$have_allegro" == "xyes"], [break]) try_link_allegro $ldflag AS_IF([test "x$?" == "x0"], [LIBS="$LIBS $ldflag" ALLEGRO_LIB="$lib" have_allegro="yes"]) done AS_IF([test "x$have_allegro" != "xyes"], [AC_MSG_ERROR([Unable to find Allegro game programming library 4.2, check out www.allegro.cc (or your distro repositories if you use a unix-like system)]) ]) # Checks for header files. AC_CHECK_HEADERS([string.h sys/stat.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_INLINE AC_HEADER_STDBOOL # Checks for library functions. AC_SUBST([ALLEGRO_LIB]) AC_CONFIG_FILES([Makefile src/Makefile data/Makefile resources/Makefile docs/garden.doxyfile pkgs/w32/winstaller.nsi]) AC_OUTPUT garden-1.0.9/ChangeLog0000644000175000017500000000412312457263274011470 000000000000002010-28-04 Matěj Týč * configure.ac: Added explicit libm dependency to conform with the new Fedora DSO linking policy 2010-05-03 Matěj Týč * configure.ac: Smarter checks that use shell function, version bump * src/sound.c: Added support for no audio and for volume * src/menu.c: Added audio menu entry and version info * data/init.txt: Set score for Easy (de-facto Normal) to 0 2009-03-12 Matěj Týč * configure.ac: Fixed the file for cross-compilations * src/menu.c: Removed the code that caused trouble when exitting under Windows * pkgs/w32/winstaller.nsi.in: Added README to Windows installation 2008-12-20 Matěj Týč * src/game.c (game_loop): Made the 'quit game' possibility better, added 'rest(5)' command to the 'wait for the tick' loop so that garden uses the CPU more effectively. * src/menu.c (startup_menu, ship_select): Added joystick support for navigating through menus + made the menu input processing more sane. * src/* : Converted spaces to tabs using 'astyle' program (just the code reformat that shouldn't have any side effects) 2008-12-14 Matěj Týč * configure.ac, bin/Makefile.am: Added a possibility to specify a data folder to ./configure in order to allow playing just after compilation * README: Added basic information there. * src/input.c (jstick_calibrate): Added notification for lucky owners of digital joysticks that don't require calibration :-) * menu.c (key_box): Made the definition of keys short and sane. 2008-12-12 Matěj Týč * src/display_init.c: Made the code in coat_sprite() function slower, but safer (forced usage of getpixel instead of _getpixel) 2008-12-11 Matěj Týč * src/enemy.c: Fixed a bug causing that the player didn't get the right bonus life award due to score bonuses. 2008-11-20 Matěj Týč * src/input.c: Added correct handling of config file storage * src/display_init.c, src/main.c, src/sound.c: Added more correct handling of data files location garden-1.0.9/data/0000755000175000017500000000000012457302476010705 500000000000000garden-1.0.9/data/wavs/0000755000175000017500000000000012457302476011665 500000000000000garden-1.0.9/data/wavs/bang.wav0000644000175000017500000004221412457263300013226 00000000000000RIFFDWAVEfmt DXdata`D'<^L12EX: A Ye  {6a HY0 ɶ$e[9.g8d6)vۑV[6ֹ(3a;,O "*1`F1z#3WAgg~-:"uMX2楶'"GX #`z_ KE2LTH C9!N2Վd[Jgr;RC ʳ4"-G6 03C%,JMԕJjΤ,i 11W, +{)GTa&'>I/5{]ddDD-Wjn"0]ݞ$-6.#'J2^&;_ntgg.| ծ:";.J(INY=Nůo iYrn=3Z FW_90V& Lh5, JCwկJjӤ  ֱ~pJ232A>6Y Re >*%9&$u] s+1 vB O.V -'{%}"/Ua KUQH9:]j`2%]†:}$KE <+WHߏ%- :IC@h a ?98ڬJt =2r8B)S$M(0$0&@;OH*>&R(*G˂]'r"S-ODoV޼ʼn %c̹"h ma\'z?^1M. YF j&>[ߐ!8kٟZ\5 sUܺ 8%CZ3H\!P!ig?+1v/ui< GaL+x`7 5 +G7v*&,(?,(t)}v.co1Pj.IUtl VY /> D%߷O#>H* ''h OH+ ̭#%x9;|t2p*K CݫH~)f tu5X,ʻ"w)F`QM6(   :h)8C#:W !O"4jXb۷9+D/Z ڝw X mӮ-_ct@q܂F0?&'72l~&X! 1Ө e!Bo Oi*r*6OY T 8;_ nAl *;)IkbzSzo p \b ]Q .yt'  )  rLk/Ztqnp wb: C   * $^ *#nM X{{>@q߆SFhY!X"AY" D!9  _ nYR) g-[J(#6W'm@HS* Gߍ*F    e \8%C E@ SY DuhP  bl&E+$s -K3( rx SK LEQ l8j/V1P /ށ V'.o! S ٿ1 p+p3 y ni(]l1 }VS2"U(Z 5 RcLBC. fX ;LUOi <%&j^5 e6s|%:Z+: C  $ { $GU .qsNI 5 ,}G?]7?l V-74AY JA ob- !? |5~ : r* <\ b4 S$"V  if j/lw~߇V_^vT  U3m,' r &0;S= x@ $q s1:p P.I %pxTa)[I ,[j AW0J  !z}r& 8E`u,->OAU Qh7 K ":C"<-# 3d2ZjJK d-|U IIn]FFT? ~ rY &_*zfv DR *l" DZgb  6 Z C 2F7 t d.`+WR E u\GR&Q ;0;r GAa[EAc Z[9/I"4[8OySA 5 U<=u]  I0!9xPrh/W Yl R Y 2 |Q^?Z:%J X ; Ctw, `'. cAO lYlZ<   xkptxm a>  YU7,zZZ BVU.fd% Z~  +\m{BhaJ k YPL!  37s 7 c  F =d>4D jv m9{i, YG.qoM^^ b\;*[T@ l}b-=F>f v E= Z^~06'wi/n"a{E  [ m{w`i }c(Mx&),: 6i NH 8 P i l enJ5 EcC6 A  (|&{+ B # ? M$'  3v }#M!!"w$b`2}8yjKKB 0sm?SB^- - !p >u =pnmF f$ejHZFDrCy&50{ ( : r5F$6Li AV}<%b Uz>%?="APFd 2@Y~ 6 d JOs}HW< % 2Q#|^FL G_ P @< 9rmAy$MOe Q;Pj e0US  ;  7$ [MuP+HJ9c6]@JM &k M @l:mJ? SM|=z7 F<Z}Nm ? j9N Qc V : HgRcC^FUs2@5zM ? ( | k0 <!- y v<  _sdE=l%SXA-|]|n=p2 9T F_?@6q?i-Np; B%_ 6FC| #~ WXaa9bOiK y6 n< /yiBby]'sYSM < Q =EGP '54> 7hB  cDj W3 0~:I<x,D+,7 JrChY+=c  \]skG4mxPE \W Zhh.2 Sy91 J_j0^ @ fVIqz +~ F C e;yq, {"cm`W7 Tf%~,s &OTb  u1JU zt[)tWk*w j _7,KQU A'>3 U.`G^=9I5 5 Vc# iok k RFeh},B&Y A)g \{4t Iez F~K 8W!x\ S/x v;ssC O ,A9" NuR EhX) f ds QTH&YPj}d>=)VI_ ) P lgV ,%.1 _6  p vj$ V~"p!4U(z|s=/  R 3 vzR [2 R99v<@ l,  ,`k lIiUH*Ty 3 tli I tWJs0wo~O : |FD]v? a^U?,N# =5w[2 "(/x jk_BaTl$ }# D 3+]a[u >>:+]P:P (^{-C& =wU;yK4:AP-F _ # hg >W1-LL5) 5 :l`5[QRK 4 4K { CfcUh> m  DHM|kz "\$[ 1F tqZL*QYEB%+ d"P_d RqB6: Srm 6\/7{x U jU(: E;% 6rpf|S7mN :Gjf i"xGG!_k K +IRbF gZ { (T 8rc \{0g u%@E }GUq/ br.n<bIe #N  =/'rf bn?]q l [+l}> zrI,Z)TbQ3XSpe H2;gC'x}F9 M{O PZE9?s15GpW<}( >@ 9<^~d$7J%QU(9SOZ Cc}UeE1Y 2O\(FO46c *Y>*Te" ;/NJu!,{"Na:jyQ k .vY+ :VuH ;vl %Km7OP0+GT8 5 WFi & : Lxuc$//_A # {gz@- 7s_d zcn E%~5T2RIHG`|"H\A2 "po@#. vhMaF$Z9\o3S `GlG)*Dj LyD 7d2NPh(X 56>#h[1# G-PYc v['\t`? iw ) |5 g EZ 5zy WY]0SE%J;B 7 0!nM!;c y) Y'#&;0 \ TLu.1# p D&i5N_`54 )G/ K%0#pe6Wds$~2|gFS% e#s } ,)q8v-~ q~xMtM)E4cg`'VP :\aM Ce_k cQK  d4|21  c+ 8 'NMQ&pK& W5vePfV P% x ZMqL ?j& "~KW\Z [| k!b(Ye -z A LNEtGr"*>O @p1Db*IEO.9;!zsGHf2knM {fDgLX fbFARxR DQqe[8Cox?]>hk5Ot/,*+x<w {d0< xetrItY^C.!K"s?qRex/M&-Aw>O FUpp&T4GqRVHB,$D'_3@ NAs|E!7HwjZx""+[m oxFW]}E3_AM^1wF 1xf|^hTDg~RjQ\6FLgU`DUt2J3r**,([ f LT~[Jg$X3hf:p/d +i[*oQ>]]L5#;`"dPI7. a@}D>5Ne?m/w.Y~gz,/T(U|Le<#2o %s!s \B.6 ZWC\$L)aWHp s=d)0>d!`/wFc!23$?qx {-%;Sd= ,fYpV ~'"N X26BE;E2HC 9Q`~R8yw|mrD(B'iu)0aa*Wqt+sciD7(]]SQH3D+I@bzSs|^PGZ[Ui(=^e.gw8#k5] +=bZ@cPNb7a$,(#="!FJX<I;2x"WAF#o`E?:z ( 5K_TiJB%>3=$;L BRNEyU ^A.`>gR  eLRn0FG YddygHRb? I.(<xA!p,}K'(V+~vc~Rd_ybAm;Z  ~oyc9(9L!_lGDOF]k2] 9KA*.qygMEt&=^1 f@#=\OeTM{yf]2R>qwabD]C$^KzCzE6;Rl+]vX9kAuF ,*28huS/ ^%>I^mmY""P AhV#S>B": TN`:Qw`K0"y4@Ktd1;?]Hl?s^r9Q11 E^d/u&BfwzX@wv6b\d&R|zQ{Bx!|8OqCrA=4++$PVcRw`$(m3BI~ juyY ~-l $N/^>=A?c mRDV`gFyk9$w; |&6k]h,;-l0k Td1nsv<CJ|K3z&2K+BPL@hJO i 9gA$) ifLNz`.?OBu?*hs ^FtH#[M N'=P0a .3kpd"K6 m@KkE ,% )'-% "*$ ! #$ garden-1.0.9/data/wavs/p_bang.wav0000644000175000017500000014142012457263300013544 00000000000000RIFFWAVEfmt DXdata "18,$%))6+//357fhmnnqsttxxy}{eed^]ZZYUVTRPQNKK/HGDCBA->;991443-+,I!"  99;@BCEFHIKnNORRUYZ[]^_ccefhhlmuB|{zxm22rqonijiiecb`V0()&%$!  "#J$%%(Ut./.14578@ghpprtxyy|{e!dd_[ZWXVRRQQMKLIEECB{:996420.**@6  :;<?ACEFIIKLMOQSTT\Z^_`efhkmm;zxwufqmljgfe`^5974..,+*(%$$! . u     !a((+--00699ehikloqqttwyyzhcb`\_Z[TTRRN1LJKHEuB@><:78400cjXg./4989;??CDCFHKOOQRTTVYY]^`jg ~z|xwsurmmkSCD984211-,,'%"!p    Cu#!!"%\^_`bbgfillon)quuvy[~~}vspnljjggcb`^]ZXTUQQNPLGDC@3 Sg ^:R !$$%(),--/13457;<=ACEIHKLB7|}  ]WQONLJJGGDB@A=?;:8754L--,(%%#!   !    P2AADDEHIKKNOQSTUWV[\^ N bcefhhlkosrG||yzuv9qrnnf6ih`a^WV Q  1/.+&$#  J            " # ( ) - 0 2 2 3 : : rZ5I` b c d h f i m k o n q s t u x y y | ~ { * ^ { n igedcc_\\YXXRRNNLLIG @@=?; 75 k 5 0  9i ! & % ( * + + / . 1 2 4 4 8 9 9 < ? @ B C E G G I O Q S S Z [ Sx^ X PPM HFBD@@?N:;776C10-,+i&$" !  7          5 8 9 'D J K K P N Q , V Z Y \ Q kb b f f g i k t ~}|zyvRKprnolEgfeda_^ 'l  866 ..-, %%#!!l                 &  ! " & ) ( * , 1 2 uQZ Z ] ] _ a c g e h i k l n n q r t u x z {  i qoomiihb`^:YVUSSPM GFE =< B4 9   SD      ! " F% & ( ) * . l. 1 2 3 8 I: < = ? C C D k k v v | ~ ~  s ge _`[\ VVTSPNPKIHFDCh>=:;87533 ,*    ;",/24779:;=F@BDEDKLLOOPTWV^_D{}Z}|zxwtuNIDCB@><;9t75510i,*%##IC   d23>DGGILLNOTWVX[^__cbffjop|{zyuurqph jffcaaS~:861/--)*'&$# W     =I 7&')WsQRXZ\^^`a'4xhhljoqrw{{zyxttrpmjhhfaaY\XUUONC;&&%#! > : !$$'))+.143=<<[_afeilnpqssw||}~ywtolmjihfdc`a^\[[nWUTRRLJGDB@)$  o!"#$&U))-./047; =>@BGGpUtoqsxxy~|jba`^^[ZWWVSRQLLFC;@=9895 &!!'((,+.0066:;;s@BDGGIKSRdst}}~,]XTURLNJIFFE>=;:8i641-)AA|f+,/016668:==?h@DEDIHNVUWY}{{>SSPOLKJGEDDA@><:876/,*)''}62/Y013:9;>?@BBFHIJMhRUWZ\\deM AB~~xwtNKKDDA@>>;:+7642//&*&""  L$    f&457:;>??DBFEHHKLONR% WYY]kabbiކ~~|yxtsoqA+5!IGEA=<=987540/,,/q&$ m j XP2:;=@BFFGILKNPSRTVV]`adhC|xIrqljaJD@A=:785231+)'&$ > ق*99@ACFGGIJ9NRPRT'u9 Y\\aakmn}ipxurokm PMCBB=;:8753-,*((A8" JT  Gߦ59@?BCDGHJJLNPP&!)!XY^D`dhkߴ؄~ywrqpgf#!GFE@<;98753q0/.,*=}&$" !&~  t46;>@>BDDG-xKMNO #$VVY\`_`iiMtܻzurq?m#3!SPGFEA><<995n00-+*(#!"V#  `X0247;>=@BDEEJJNMP"$~U\[`aL׆|~.z{sr$"|"RQIGGCDB?<=99640/.*'#(!  ڑ4(*+3458::;h=ABCF3$'INRmWW[a9׏"ބ~{}0Z1.ZTSOPMJKI CDA@>;9620/&'%B!d$4%$//˽"+*.-02367::;<"t'BBH LOTW`ٙh\یww ,"$'#dc_ZZWVRQNNLIIHy6DA?>=ޮ6//.$(S*z% ;=v!$%**-.1135262:=;?!BEM#ՠ lnouwyz}} )2G##mlkecaa^[XVWRRQNKIGE@=(5%#'!   |#""'(*++#)'"48 <>۳|ڦZ\^ݟfijnprrtvvy1274~}~#tspmkhiedcbb^ZV;ڎPPMJFH0!~-D#&&(&ߊ  pِ           .35 # % ( "+ . 3 7 ߽߽Gܹ߸߶ߵ߲߲,'խ߫V W Z ߥߣ` ^ c c f g g k %l m p q t $?' x z ߂߂߀ zzwwvsrqilmjhg߃ڂbߟ [ߍVU߬ " , $'P# 976 0! .*,('&$v! ֿ  !!! !! ! !f+n15!!!!!!!%!$!'!f=!޹gۿ޼E!F!H!޵޳M!P!R!R!T!V!V!" -6]!`!_!a!d!0% %i!i!ޔސq!p!r!ފވވކޅރނ+{{yxuX:qޏ!!!kifޚ!!!!!_\ޤ!!m.!!!!!,D0/!!GG޻!!!!=<=8!!!4g00,,*Z%$#!!Z!!!!!!!!!!!*(/Q3""""# " """"Cn؃,"f4"6"8"8"9"A"B"D"E"G"G"I"L"R$N"O"Q"T"T"w,,"Z"ݤݠݡb"d"d"ݘݘݕݒݔݏݐ݂؋݋݆݆݊D"ۀ~݅"""wvw݌""""""""G'"""""%m=":+"VUTݮ"""NLIIGGCCB@=>:;8={20""-*)'"""""""")"""""113*" """"ܰե## #gy'#*#+#-#.#0#0#3#4#7#6#9#9#=#)/B#ܸܽܺJ#0T)N#M#ܮܮT#V#ܨܥܥܣܡܞܟ{Ηܖܖl#ڌ܍u#w#y#܄~#~#######R396##olܕ#&###dbbܠ###\WXVWSS܂ׂΥLKܶ##FB@####67########%2##$!##95*#### |ح$#$$$$$$$$"$#$"$@+4'$+$/$b%&2$5$<$=$@$۾۽ۺۺ۷۷۶<ϳ۱ۭۮ۪۬;KĶۣͦ^$`$۝ۛf$h$j$k$m$n$p$q$!,8v$v$z$y$|$1-,u'$||yۈ$$$$sqolmiiգdcaۢ$^\UךYT۫$$$PQK۵$$$$$$$$)8$$$$$10f*$0--$$$'#%!Q$$v$$%%%%% % % %_*%%%%%%9:5%%"%&%'%9%<%ڻ"ջڻG%I%J%ڴڱP%Q%S%S%W%W%Y%Z%*;&c%b%b%e%32,k%ڒڑq%r%u%ډچچڅڂڂ~e{yډ%%ut}lnڕ%%gedڝ%%%%%%%%(=9%%%%%L11,%GDCھ%%%%<996442׮.-))'&Ý %%%%%%%%%%%b+8%%%&'X*(&&&&ٹK0&3&:&8&=&<&?&A&A&D&E&3G&I&ٳN&O&@<1V&X&٧[&^&١ٜٖٞٛٚ٘ٔ٧лƏّr&t&yى׆ل}&&&&}|yن&&&&&&&&1@'&&&&F62(&\YY٩&&&ROONLJIHmBA&&&:^ș63&&/-,&&&&&&&( 3Y<&&&u'{(&&& &&آlƏ''''''#'%'('''*'*'.','1'4b74'7':'y6V1@'A'ؼغعغشصصزدذجحتؑ ͦؤ]'_'a'՗j'l'l'ؑ؎r'.f)v'y'y'}'\/5:'~y{w؊'3,''olmؕ''hfqbaa^[R-mVث'''QNJض'''''''z('''''';@9',,+')H;)'"= nĢ2'''((( ( ( ((((((((((@QB6"(&(((+(,((׾]XϸI(J(M(װׯ׭U(V(X(X(Y(^(](_(-b(d(f(f(h(i(@B>j-p(׎׊v(x(y(ׄmՀ׀z|{owut׍(poהihך(((bb_ע(()(((((+0(((JI׹(=0(C>?;(((663.0-|̀'&((( g(((((,:.((((5,g4V:)) )4 ) ))sDԐh+)*) +)+)+)*)+)*)+)+)P4*)+),)+)+)*)C?*)+)+)*)+)ց"+)+),)ָxs+)+),)+)+)+)+)*)+)+)*)*)8@D*),)+)5w,*)+)H*),)+)*)+)+)*)+)*)*)+),)3*0+)+))),)*)>2,)*)*)+)*)/1,)ւ*),)+)))+)+),)4/*),)))-)))BVCh=+)+)))+),)*)Mϒ+),)#*)+)*)+),)*)+)+)*),)+)9B%G,)*)*)+)z?0+)))t4ȻJ*)-)*)ֈ*),)+),)+))),)*),)d3+)+)*),)+)<0K5D-*)*)+)ҙlj,)+)*)^,)*)*)+),)*)+)+,),))),)*)+):>.=*)+),)3),)Ջ+)+)+),)+)-)*)+)*)+)+)+)*)M+7@,))),);4+)+)+),)uL+)*)+)*)*),)+)*)*),)*)V*13+)))+)+)+)J4L7*),)))+)֪,)+)*)+),))),)+)*)+)+)5,)))+)+)*)+):X<7,)*)+)))+)r+)*)+)֥¦,)*),)))+)U4)*)*)+)+)@.4W8.*),)9,3:*)+)e!,))),)+)*),)*)*),)+)+)d-L8?,)))+)+)5+)*)*),)֌Y8*)*),)*)+)*)+),)))+)O1{?I)+)+)+);:4*)*)´+)*)+)+)R*),)+)+)*)*),)*)*5+)*)+)*)+)y2K9*)+)*)+)*)֠|*)+),)֞*),)*),)*),)*)*>,)))+)+)*).32*+)*)*)+)+)ִ˴+)+)+)+)*)+)*)+)+)+)+)*)+)+),)+)))6i<~=/+)*),)1*)֢j֎,))),),)*)+)*)+)+)+)+)*)+)1;A?,)*)+)*u-*)k,)*)*)+),)*)*),)+)+)*)+)+)+)+5Q=7+)+)M/JA .,)δ ^+))),)+)+),)*)+)+)*),)+)@9AbE+)*),)*)$;+)*)*)ֶHaə*)+)+)*),))),)*),)*)*)e7A H*)*),)6/*),) րҐ,)+)))+)+),)*)+)*),)+)*)C03,)+)+)95+)*)*)+)*)1ֱ},)*)+),)+)*)+),))),)+)0;}C+)*),)))lB5,)*)Aʼn+),)*)ցպ,)*)z),)+)+)+)x1:;+)+)))3j0*)+),)+),)֩79+))),)*)*),)*),)+)+)+)I+9JD+)+),)7,)*)*)*)+)+)q˓‘+)+)*),))),)*)+)+)+)))Y7C,)))+),)*)Cl:),)+)M3ӳ/*)+))),)~+)*),)*)+),)*)h+3:,)+)*)+)+)*)>+0,)*)*),)֛j֗5,)+)*),)*)+)+)*),)*)v6@G,)*)+)a5J9+)ԓ˼ÁՍ,)*),)*)+)+)-),)*)+)+)*):>=,)+)*)**),) e+)+)+)16*)+)+)+),)h15)+)*)+)*),)@[B>8-*)+)*),)uzͺ,)*),)M+)+),)*),)*)+)+)m,=*)+),)+)*)?>5*),)+)+)+)"֪qG))+)+)+)+)+)+)+),)+))),) 595B*),)*)))6+),)+)*)֦֊w+)+)+)+)+)+)+)))+)*),)96@C9+)+)l.))+)k̇+),)*),)*)+)+)+)0,)*),)+)*),)x4Q6K|<,)+)+){*)+)*)+)̨+)+)+)+)*),)*)+)B-3+)*),)+)7 P:*)֡~֭+)*),)*),)*)+)*),)*),)q:BJF<*)*).+)+)փ֪*)+)*)+)*),/L.)),)*)+)+)a;'XQB+),)*)+)t-Ŵ*)*),)*)̶*),)+)+)+)+)*)&06G;*)-)+)*)+)+)k<5-)),)+)!ϡT),)+)+))))),)W/+)+)+)*),)*) 9=6,)*)T34@**)p,)*)1*)+),)*)+)+)+)4*+)+)+)*)*)>>?9T,*)+),)֡ +)))+)+) і,)*),)+)+)+)$/9;A,)+)*)J3+),)*)*)=ȓfŧ$+)*)+),)*)+)+)*)*7*)+)+)+))),)[>D?3))*)+)L-))Z8 Z+)+)+)*),)*)+)*),)+)*)+)5"?+),)+)*xD8*)+)%ֹ:+)+)*)*)+)*)+*+)-)*)+)+)F:i>>I6*),)+)+)*)֯e_+)*)+)L -)*)+)+)+)*)+)*),5+)*),))),)+)?9+)+)*),)*)CIpQ*),)*)+)*),)+)+)*)+)+) 5b<@.7,)+)/)),)ҥǍu+)+),)*)+)+)+)+)*)+)-,C>+)+)*),)+)F<,+),)*)1+)֏ ʼԷ^*)+),)֬з+)*),)*),),)*)-w<Hz),)+)7O@*),)\ ċ,)+)+)*),),)>.*+)+)))+)+):l>=54+),)+)*)֠1$)),)*),)+)+)*),)+)*)+)K)24^= A+)+)*)1,)+)Ʉ,)+),)Y*)+)*),)*)+),)*)0:)),)*)+)+),)@<*+)+)+)+)֡aΛ7*)+),),)+)+)*),)*)+)+)DII,)*)))c.=b),)˃+)*)ϰ*)+)+),)*),)+)+)3B,))),)8RE1+)ֆ*Ɇg֣Ż+),)))+)+)*)+):))+)+)+)*),)=>9,,),)*)>|9+),),)+)*)*)+)*)+)+)+),).X8>+?*)+),),+)+),,)+)+)ǿ+),)))+),)+)+))1c8,)+)+)*)*),)q:Oi7+)Ҽpɾ+*)+)+),))),))).+),)+)))+)+)6XRL9*)+)+)+)*)֬{֊;G,)+)+)+)))+)+),)*),)*),)/8"=4+)))2,),)ϼ ,)*)+)־,)))-)*)+)*),)+)y-|;EF+)+),)7N?*)+)+)+)+)+),)+)))+)+>+)*)+)*)*)<<6*)+)*)+)P*q(,)+)*)*)*),)2),)+)*),)*)-JK^F8,)*),)l֦ΠÓ*)*)+)+)ֹϊ+)*)*)+)+),)+)+ExJJ+)+)-)+)0+)Wݺ+),)+)*)V̝+),)))+),)+)*)+)/558*)+)+)))8NL2,)֙ڼ+)))ja*)+)+)+)*)+)*).8+)*),)*)*),)Y=T>+)*)^M֪ͧ+)*)+)+)*),)+)*)6*)+)+)*),)+)8@*),)`1F@+*)N~,)*),){*),)*),)*)*),)+) .9A,)*)+)6M=*)֐^\,)*)-*)-)))+)+)*)+)+)>4BK{**)+),)8J1*)+)-`c+)+)+)+)+)*)*),)+)2@*)*)+)8R'Eg/*)BȞXЩ·H*)+)*),)+),)*)V9;0,)+)+)+)*)5PH9+),)־iŅ )+)+)+)+)+)*)?0+)+)+)*),)?/@?;.*),)*)*)ցưW,)*)*),)*),)*)),)+)*)+)1INqME6,)*)*)n֍к_+)*),)*),)*)+)*)+),)))+)+)1OkNF+)))))+)+)+)֝ւ~#?,)))-)))+)+)))+)+),)+)*BGHA*)+)+)+)+)*)R֚*)+)*)*)ֱ+),)l*+)+)-)+)+)@EEl>+),)+))),)$G)),)+)))֮*)+),)*)*)+)*)+)AAH[I*)+)+)z-,)*)ü ϴ))+)+)*)0*)+),)*)*),)*)*)SAGH+)+)))-+)+)Jb*),)*)+)֮,)*),),)*)*),)*)s@GH+)*)*).+)))֜6*)+)*),)l˪*),)+)*)+)+),)+)> FfH+),),)*0*)+)֩h))+)+)+)ֆy*)+)+)*),))),)*)g;XDH E+)*))),)+)֖Ƿ"+)+)*),)ZН*)-)))*)+)+),)+AGtI_D-)*)*),)+)*)ֹļG$+)+)))-).+),+)*)+),)*)7h>'B?,)))+)*)f-))㱓+)*),)+)+)*+)+)+)+)+)+)*)*GOKI))+)))-)*)̻>,)*),)*)+),)k)*),)+)*)`-}EGEn;+)+),)*),)<͵=7+)*)+)+)+),)+)))+),)*)*)+)-L L}D|4+)+),)+)p֥eݳ*)+),)+)*),),)*),))),)+)-"J)KE8,)-)*)+)ȭ֞,)*),)))+),)+)*),3 *+)))*)+)+)I>H>,+)*)+)jKֱ*)*)+)+)+)*)+)+)*)e.<,)+)+)4PF4*)EҒIֽ2*)+)+)*),)+)+)+)T<,)֬,)+)*)aS+)+)+)+)+)*)+),)*7?,,)+))),)+)=O%5+)Sâ9*)-))):˔+)+),)+)+)+)*)/HALK*)+),),)),)֘!)),)*)+) p*)++)*)*)+)+)3MMH*<+)+),)*)OϬ}Iy$*)*)*),)+)*)+) @.+)+),)*),)e=DWK8*)@1*)+)+)*)+),)+),)))4*A*)+)*)F@2,)ֺS7,)+)*)s *)*),)))+),)))-)*8iDBB*)+)-)7G1))<ֵ? ?Q+)+)))*)v+)+)+)+)+))) 3MK=a**)+)+)*),)֘aƶ L+)*),)+)+)+)+)U-m<*+)*)+)+)+),)+)+)+)+)))ֽЮd %)),)*),)+)+)94+),)*)*)*)7Q&J;+)+),)Vր/~+)*),)+)+)+)+)+)*9D+),),)C<,+)/*,)+)+)))#*)+),)*),)*)*)-)L:TSE82+)-)+))),)oʱֽzž+)+)-))),)*)+)=8v),)*)+)+)+):LSH0,)+)Xĺ=ڼ+)*)+)+),)+)+)))29i<}D)*)+),)v9?*)*)ΚUf)),)))+)2,)K.4++),)))+)O.HH CJ6,)+)+)+)yˮs*)+),)+)+)+)+)+)q5})))+),)*),)*)3H^^M3,)tѽF~@*),)u +),)*)*)+),)*),)8<>A8*)+)49*)۾[+)+),)+)+),)*)8*+*),)+)))+)8RjJ4*)p,)*),)ߠͳG*)*)+T++)+)*)6MA BE+),)*)->*)+)c,,+)))+),)*)3,)*)*),)*)*),),)B^.YOLZ7+)+)DŤմ|+)*)+)+)*),)*)+),)-L)))-)))+)H5xK4+)ւ*)+)*),)))m)),)*)+)+),)*)/}IXLJ@+)+)*),)*)෌2))+),)*)*),),)*)4G/,)*)+)+)*))H[Fx*+)ָ֯̆5+)*)+)+)y*)*)-)+))),)*),)4zP>PB/*)+)*)+),)q֠gu*)*)+)y*+)+)*),)*)q4=F,,)*)+)+)*)*)DW4*)*)ʹ0*)+),)*)օΊ`*),)t0H*,)))-)))>WRG4+),)*)ִpӵ+)*)Y),)*),)*),),)9F7),)+)+)ETT=*)ѓN*),)*),)+)+)))+),))),)+)*)+,)+)+)*){VŢ۷+)*)+)+)*)+)+)+)*)/u<%D,)*)*)=3+),)ֶԾ*)*)+)*),)+)0,)*)+)+)+)*):T3M8,)*)+)ʷ+)*)+)J+)+)+)*)*),)+))@;HwKH*)+)+)+),)))Μ9-)*)+)Z),))))),)3=E&,+)*),),)))GZF*,)֌ֿCGŵ-*)+)+),)+)d)+),)*)+)*),)I+kC\S<+)cz*)+),)֫*),)*)+)*)+)+),)99*CIIH+)*)*)p*+)*)d̳s +)+)p)+u)*),)+)*)2D,,)*))),)+)G[H-*)ւa֖]'=˿*)+),)*)+)+)*),*)*)*),)*)+)k7QL2:*)*),)it))ص_ȹ,)*)o./,+)+4,$;ERQJ=+),)*),)ֵe+)+))),)*),)*)*)+)+)7E+),)*)*)EU?+)4rhn˫)),)*),)*)*)+)+)4+),)*)*),)*)n.fK/E1*)6ƻ*)+)+)+)1ɭ*)+)/%,-)))-),?yXTI7*)+)֛^R))+),)*),)*)+)*)/FeJI;+)+)X+-/+) +)*)+),)*)-),)*),9,)*),))),)*),I[?+)ֱδܵ*)+)*)+),)֞+).5/-)*)*)+)+)0LdV?+)Nщ֋P\ܼ+)+)+)+),)+)*)+)+)+)+)*)/E"]uUj@+),)*) ߿+)X֜DEK,)*-h/,,)w+*)h4JLI?+)+)+)+)1+)+)*)+)*)+),)*)6+7B @+),)+)y=!Il2*)̡N5"+),)+)s)))+)+),)+),8))+)+),)*)+)*HZ??*)UP+)*)+)*)+)! ,)y-.,)*)-)*)+)0/dKc&V@*)*)֏Սf%(š+)+)+)*)Q~*)+)+)*),)+)))Z,@ZUC,,)+),)))֊l֠,+))//R,*)+)>+@F7I;E,)))+),)))+)֯y*)+)*++)))-)*)+) 6U=A69*)+)5=*)Уz)),)(**,)+)*)-),4:+),)*),)*)@Qf5*)֙ɤDz *)*),)))+)-)1?.+)*)*),)+)*)+)*)+)+)ֈA]+)))+)l,+*),*)2GJI;+),)G- 4+)$p4;,)2::6,1+),?DFC*),),)*,,)VcE+)+)+)*)+)+),)+)v+7LAq>*)))+)+)*)CUvA+)pEȉ.*ѭh񭓽+)+)+++)+)+)+)+)3)7>+)+)+)69@5))6MִZr]+)*)-)/*+)+)+)+)+)3<@+)*)v9 :+)քԧ֒ z+)$0$41$,,)*),) 6=BA+)+),))),)*) s+)+)u).R.*-.+)-.AEFa;*+)+)+)))+)ɞE',)+142-/1m7wH]UG2,)*),)ֲ ֵ29+))23p/0h0|06G\R;+)+)@ְn,)*)+)))/C,)K*+)+)))+)+)+) ?ZXl;]4C+)%F̔&i(E+)*)+)*),)*)+)6 -+)+),)*)*)4NcQ1+) W`չ^u+)*)*)+),)*)*)+)9#1*)+),))),)+)8Ue(My-))֣ˆm"opBũO,)*)D..?),)+)*),)*)/4+)*)+)+)+LED,)+)ֶjɥSL+)+) 020*u,*)*<>iBCT8,)+)1*),)օV*)V1544U/*-2CfYSH7*)֒ +)E[PD,)*)+)*)*),)+)P-f?1WOl\?+)ͷ֩e+)+)-)*)*)+)y+)))-,)+)+)+)*),)?[XlW :*)G(̾ѿϽѦ+)*),)*)*)+)))+).,)+)+)*)+)*),)8T`@*)-[Բi2υőɨ+)+)*-/++)+),)+)*)+)2=*)*),)-%IPe0*)}MΏ鞭<+),)673,,)*)+)7=KAr?6+),)*)-)֝B^D8*)s.43;/012!?RLf%W:+)oF+)+),)+)))+)ʷ+)9**)+)+),)*)+)J?ZVlZ?))CԳ»tȀ NӾЩR*<*)+)7*),)+)*)+)V2 >&.+)*)+)*),)))d0HI+)+)=֛VҲ»76*)+)1\3.,)+)*)+)+)l1: ?o5,)))c38+)o_9,)Z,J@B=%654P9H[pQA-+)K\օի=+)*)+)Ċ*)22),^+)*)+))ByZhRI,)yԜɞ@+)*))+)*)+),)+)2SE+,)*)+),)+)+IYV4+)'7ԆTƘª*),)<>80,))),) /w6;<6+)+)*),)+)փ4vǬޢ!*),)4/ 0n,L.//R7H]fS<+)+)W3tS+)+)*),)))+)ֿK+).;0))+),)*)+)+):~WHjVlI*)tϔjx??ѱKbn,)-42\,)),)+)*)+)+-8;>,)*)*)[68)),)ֺw W*)+)0v523--^--+)3G]R;+)֙Гv=+)*)+),)F))~9= 4+)+)+))),)?[YhSQ2+)̨)Ȱ@cPk,)+)*),)+)+)*)+)+)+)/95+)*)*)*)+HFo8,/*)+)+))#C[jR4+)ցˌȾ+YϽDρ֦3ݾk*)+)o.d-+)*)*)+)*),)v+)2g;,)+)*),);N?0+)9ʅN;Wp/`*)-32- -o,D,1aB>WN]:,)J+,)*)/_,)*)+)*)֗սw+)*)xH/<,-+),)*)+)q0KahMJ+)֒ԱaѪ[ñüp+),))),)+)))+)+),)3<&B<@*)+)+),+,)ş?ֿϫ?-,)+)35n1S*4*+* +}7Kv`4S'9,)Ͼ֎1#*)+)+)+)*),)֨̽+).H5*)+)))+)+),)T9'S\A*)$NjTRp*))+=>'8V/+)+)+)0IIDB9*)+),)))֪MČOB+)))95,)*)+),)+)>WeF+)m+U%Џao+),)+-*),)+)*)+)*)3$?=,)*)*)+)=?,)ظk_*)+==7%/+),)))8"OcT?*)+)2>º+)))+)+)+)+)-2=0+)+)*)*)+)*)P3mLN/?+)̌P Ұ.Ԡ9ҩ*)d.?FEvA7*)*)+)+)n ȴ,)u477C32C0g-+*U>eTdnh?,)֪Œw˫2*Нo*)+5a6@0*),)*)+)))1I;@i9+)+)6.*)<Vo*).?Gs?)5+6*v*:MP:ck(N**)"˶)Y˟΂7ϲ@*)+) .Z/]+,),)+)+)F18=t>m8+),)*)*)ѳó = ,)55J/+)+)+)*)+)=1VgK&++)wV̲NG= *)+))*)+)*)+)*)+)+)2F=8Do=*)+)5o.*)R<8֜ƪ͝k`)=SGeA+8.--R4*+))),),)F^(i(M*]ѭu8Զ֡"1-)0r=91)),)+)*)19JHKAv4,),)+),)+!I)),)+)ֿ,)0 C3*),)*)+)*)+)5&O[2O,)O7ʑ+3͵ÃuL*),)7t>h<5+Y*v),:OIw?+)*)ּ֛҃+),)*),)*),)*)*);K0+)*)+)+)+)+)w0HN8,)'=)fr+)?OMD8,F*,)6J]VNM9+)))Ƈ@ *)+),)+)*)+)*),),))),)X/:=-)*)-))),)*)m+)*)<91.*+)+)+)<0Tc]5*)J94MF08ѣĢް *),)35;1+)*),)*)+)~5NK|C-))+)*)ּΜl*)*),)*),)֪v+)+VH?,,)*)+),)+)+)=FSV(9+)7^-[*)13GHBg9п5+)*)-)*)+)*),)*)*)45?^F G+)-)*)+)+)#֘ͭyM+)#78(42/,)+)*)CWYc#A+)wC?W/Ʀ)C,)3;O;4z+f)*)+)/CY,N6*)l ϾNɞ+),)+)))-)))ּ+)L1 IP5,)*),)*)+)+) /tDFl-+)k~H[!+)f9G6Kl@v3+)*)+)*)^>1VdcL.+)֠ƍֲݰw+),);:w=90))+),)+)8ePjKvA1+)ֽ+ ,),))),)+)+)*)*)1/<,))+)+),)*)+),)&2:0*)PɓpȠuZ*)+)CFGp@51`-A*+):VP`ea>,)"ż&̖$ӗe΂›b+)6<9W1*)+)+)*)+)=TK6-)Dֿ*),)+)*),)*)*)+)=xL/)),)+)+).FUM 8,),i֪J֗+SCXLn= .*)+)+)6(M]na@*)dتϵSֱҞ¬:+)X9HE%<0*)+),),@VcL<*),)Ө̄~I@*)*)+)+)+)+)+)+)+)Z6 CIpH+),)*)-)))ϸڮyŒ+)B?KT"D8,+)*)+)+)3 KHVJI,)?Lu.ֈ,4m!*)15AK6+)*),)*),)x=N4*)+)+)+)*),)*)?VPS4*)*),)+)))+)-);1B @,)֓ҝǹ75],)<HLC9.,)+))),) CZgd9>))̓^̷*7CN(I>1,)+)*)5K^MO8*)֝Ŋ~~*)+)./b*+)+)*),)+),GGHD9+),),)þʸ,)*)+),)+)*)+)1@P/;+),)*)-)+)+)+)=:+),)DbǾO ,)H@>U73.)+),)+)V?U`S))֫3»&Q֌ ʛ*)/4A*C=310),-)))7L^M.+)րʜ]2+)+)02420,)*)+),)*)/fIH Ci0*)>(*),)*)*)+)+)+)+)J.@KPG*)+)*)'2*)+)~͐p҅M-)0%N1bG-,)*)*)+)+)-E NC*)5sրǽg*):H&LA3+)-))),)T< T?cc@*)֊רöֳ#UD*)e6ZEMB>9-*),)*)J,q@4VeP4,)BɽukN5J*)~*^:80,)+)+)+)))3MICA2)) -k`N`)),)+)*)+)*),)*),).4@ FD)),),)+)r#!*)+),)*)*),$? L};*+),)*)*)+)*)->d4*)l"˷Sſ,)+DqOO/+)*)*)+)*).+)!Nț+)'6Oq`+C+)*),)*)+)+)*)s+;0,)֒ͱ ĸ ɾ+))NKcXM5+),)+)*)+)/HS2M*)"BS¨r֫*RhYN?0,)+)+)*)n9Q`^:,)XdW0֝޲Ţ +)AQ|UI~:e++)*),)4lK\4bB*)vƷѫâf1D¹*COI >0+),)))/$DXrenL.+)֑a2–֍Ԁ\籚,)t.PB.JA5+)*)+)+)6MKw]GL5+)0Ê)+Ի}Ѳ,)-;90,)+)*)*)*)?<(T!M@.*)EA@K9+)*-1)+)*)*),)*)+)BGgFK?1+)ҹ+)+),)*)+)+)+),)*)-;EdID8,)+)ٱ㷉))+)+),)*)+),)+)+)*)5@)GoG?*),)*)+)Ie'*)+)*)+)*),)))1-9^I-P4,)+)+)+)+),A*)+)*)\4?LeQL4,)+)+)*),)֕Ǥ+)*)Z1KC|U~A-+)*)+),)))-)*)8w/*)ΧMz#+)+)6HYD/+)*),)*),)*),).*)*)Ӳͮ,*)p)_CVKI=g.*)+)*)+)+)+)n-3*)+) :޺19m+)+ EWKq<%-+)+),)+)*)1/C@,+)sTe+)*)ByW]M}?*1*)+)+)+)*)0oDk@+*)ֹ-< L+)*)BqWF9a-*)+),)+)*)4}G"C-+)L<Lgſ+)@2hPf\TF7*,)*),)))L0C>)*)ا-s$@V*)1_ONeSF7*!))))0|Cc?*)W& w}((@$VEg:K.(((((A4)HD1(6-VTiˢEGHKMkӺTש(*DXGT;+.(((((1FDi2(yŰȝ$_ щ׌׌׏ג2׹ɚe()bBUDB8J+U(T(S(Q(N(K(0?5D(<ԽG ׌ѻI(~?T aNI;+)(( ( ( ((6.'!ѕjķǃխ $'-kBWP@v0''''''w+=o7'H2aɛUXX[]aaeiؖ'36GJTl_F /'''~؁؂|'y'v'؎1[)jzՙؚ؞؟آؤإبتثR'Q'6CP:E'C'B'A'<'<'9'8'6'2'2'QАķ5t''''' '6'|=GfRS6'& &&&(hsD#&&&&&&25&&3AIJ+&HIJMPPS٬&&[;ɽPdhٖ&&&&&&&zل&&H4 ?}EzE=y&t&َّٕٓٗٚٛٞٞ9ʬQ&Q&N&L&I&H&F&D&A&@&.G?HC9)2&ִֽٜ& &*-)&&&%%u'=ISK>_,%ڂ1̦##&'ڤ65%,957:/%%%%%3HVYI4%YZR%~ehjlm`%Ʒqzڃ%Q(1;B;0w%t%s%r%m(%ڷ _tL)$3STG7B&$$$$+B0X_L%2a$^$^$Z$X$W$T$34M$۶-~($)CUWg:$$$$$$ $ $$ȷ######*;EB8##/01659##=Eڂҵ_GMܲ##########6,*DOD?|/#pquvy{{~܀܄܃x"Eŗבn#j#i#i#d#c#`#^#]#[#X#f5XJiZcJ/K#ܸZϱw6~&#/76P/%####E&7YITT0#{ɽ) ݣoc)'"7<+:2-'""""R0CNG3"Bi|H˜ ԫSTWZ݇!cݚ".2G>7. %""""",T=W:^)z"ί{֗ݛݛݝݟݡݤ?ܨݪS"*:KcRf;%E"C";"6"6"#2fj"""""""""0U;@4?z6"" Ԥ#!!z&$!!!!!!9'<P^F7$!F*AάRRWVZC_efޗ!/a94+!!!!!%':KxT$>|#u!mľԙޜޜޠMŊ.*կZ#DML?0C!A!A!5\*$@, >E;lijȝ./2372>A1BK=.fشʚˑswzv\+6=>7jiˇǠvָ̀DA<<9754!(3E?55&%YЫ\k"282(B&9G#MF(ҾD#ř2468;Y G9PNm?X.9%48.kҍ:x{|~s1>?2:fcRP٦#ljз>;:7722/.*&L;L D1sEjȸɲr*/-{'`):F)H*+CM͜:<=ACjaN%9H<2':"ZCUσ64A&#,)&%$$l6Ev;%-|LrӖQڿ;0d=A8h-q!7$V5@C94FN3CEGHKLjӵмW.BWK:W&-&u{;__~݊rnmkiec`Y'q=>;x-TS%輤/.#%##!L-<%F|Fw) enŔIر 0z x̊ 2/C:|3*r /Q"@`N!LOR[]_#0D:=1;1tux|{}SQݔj(-'r_^YXW'7=B4#IӢMdc$6_GZG:?* //60߂ D #")6 ?;368:;??CDHHIrVT#`2a?E/z{nAd&g͝b"66W1([#PNMIIv$0,>>ٓ辑vX*06;:%  BBuα#,)^$ #E2=)B/4UӊLPQTUމ#ƥŸc)?@6)(!-. x` %eb`_\T"-5G7g/"F5 [^ &K3"=@(RL͟ӗ;у&"2=02(9Mۿ$Ȫǂ\\c#>55(2s* FdtYZ]+/^*!NMKGF!0 9$8,:D|¾_ N)9H?C?d,. <>*Ӗۙ *7>-Dڌ4QRVVY^oƒZe,:%4*"~%-"ttKXc6|`]ZWXN#,1^2-$@=׶?!(-( +  -6~5! BNj!#֋է-:$4;;9+oADHHJS`ѵ-٭a$1:/|އ=Ӣ1˨תU#.3:4R+X!BB??;9831uwΛɹ K(?61)Y)B)Cȁ{(<%,}- &#+1/ $N%^_acffjjnp"L,14.O&~7ӊ_ߣZYI(NLJHEFW,)2n5y,8%:3ϛ=!+,5T7(( AԠڱ%$R_!,I56&:K]JXZ[]`ab&Ӫ֙nE(6 6o1T!zwvtqoUݲ3֙ߠ\[XWUSPNKKGi+N5,=k[0к +#/4/%qB;֦ѻѲև!(E3b,"H&RVWX[55ܲҗѼj&~3v3J*zzPqq~][YVVQRML e".+O%<UFbq΄M; ++2+E$ _ޕ !g(**& DG]NPSVVYEWi8%00(B~z!s+։ύWч_]\YVSSQN ,^)\#pAssT׃Ac)/r,"PjkUw n$.[)U!BEFPPSTWu4بJf9.<.9.'~zDu6"^Yݑa_\ZZWTRQLp$-]&?@p֮P&,&N  N{Xې v$+$,("B&3kNPQRVU[Zߥe$++&}}zzw ba`^YYWSSPN%F M(*&?lGgHm"'(t  ֓eX]A %%Cؤ֩ևߣPTTWW[]aace, #& y|;Llrc"" QPOMI[AׇF*&%$!%j")  bq Rk^Kz'''e245D<<R=&M&xzݍhAa/;#%%aLPNj}ߞ+<9i!"#(-3    a 33689;>ABCGfDUS! . { 9ކ܉fup o n k i h d d a _  #O \1Y (  """7  c+ ;r OS3vD 3chvEFH UW 8 z  mMw{{`Bp  _ _ ] Z Y W S S R M L <*8 6 2 1 / . + * ' %  ED{  M89 '&*,-02368zF y2  pyO~ z z w v t q p l Q <k` ] W(OB2 Cjca% % /Y kHv[ p )!n(98 EC `lnorstyzy |uB i mD ` 5 3 1 0 - , ( A  mszI     ')$ &Wx%'*+./144>  SVWYZ__acgbit v>*, | z w v s r o f |L]bhP O K K G H D @ A > % <60 nw( 9   2, "q   X )Qf Nd tO|%LLA o =9N 2.)7  58!R {  I%[\n _ y=V ?:5 HG (-#3    B IB?RKZ w{ >#BHKSMO]`a Aut vwdel}b  pSP U, m  & 5V};@N  ]X 24zBEEQTSW~  A i k!D0xy|~\Wa[ =74 ^]V/B-7 a q(($#"s7!>\  # - &?{OSZ8:GHLMM I `aUkopqrvyyz_i6* {giDCO &   v2/&#!D ~^ZW  ^h10) H]hmsegrsvxy|VDup$II.[7rYb !%MPR? _`=|gdd`_]SOyCDGvOvtpi$ ,$%<`_23589=?BDGUw?#hmlcb^^ZYV=cGN20-,''%#!NMS  :D-I0,=>BCEIHK&VJjmnqttwx|}x3Mq``qSRV<Gw]7*garden-1.0.9/data/wavs/mouth.wav0000644000175000017500000006571612457263300013467 00000000000000RIFFkWAVEfmt DXdatak(c/{$s`K pN699>}v5I\ޏ\z&ڢ~֚*,ݗ]ߋz~ޖYak3)3kU/ ' @ %(**y(%$%t&))=-197y<@CgEEgFFiGJHYJMRUkU|RLrHIEVCBBCElFFdDQA=9519.H,,.}11.)#+  %׬ӍvMٱ۝KU~P|3Trȥ!kеbTìdZaϿMg2ң׾'E j  1?J%"4 n&+0'6;@BDLFDHJVMQV#ZEZaWQPM^JHH$JZLO-RSVT6SP"NKHtFb83W0-U+)'$ x /aapVe&y\!z#kgy'P7ͳRZ۪3ϭt f;/˪7䱂ٽeƷXʢͫm<?r_*$V He!%*.39>;A{A>9;79668<@EEKORTTTTS SRgSU&Y\][dVVPKHEED:EFE4D~Aw=g9K5;1A-K*((+-h-#* %ev 3 {D[b_Mߦ9иQ׵;̲jHGکH`b BbԱ%έծ5UʽAB]F' ܲ! 4B hI m < dr %*.O49`<>#ACFJNSVVS`NJkH_GGILOSVWWFVhTRPNMNPTVT:PIC0?;986864"2t.)$ <5B U-yzP#ļ &ƁǭUuܻ@.IR©5ey:բCuMbķ!y޾£K-ѯҘϣ*Wo ar E k#&('#N!!"$(R.38M=fBFJK:MNOQ7TX\_S_O\VER*OMMLMOQTCVVU(SPM6KHFF"HK/MKHA;620-+ *'$ iD$ =pD߯Е@ʲ«7ֱ4olH$ٶ jN~榫-4(ںɻDuٯGL\lZ5 }"'$,&/60.E*''(K+>/49>mCHhLN5PQ R.STVZ_ja`]WvS>PBNMnNOQCTUUBTQNLYIFDFDiEH@J7IE?I94'0`-*('$! R%"dsCAD,VԑPɺ +0#DZԹʻCکئ0ǤjUt].ڲV@#)`728.EHGwi0) Q~ _%#)+*,)/&$$&).37<AFJL5NoOPGRTVZ^`(`\VR,PN_NOjQSV:XXWU(SPGNK\J2JKNWPHOKE?:6&4100!/-+'@#w' e n& M%}ƂؼHW^[2(WXmɤZHJ1Oʦ!߲wa԰#""C7ɥȅ@i ɇT}޴[e/w +TK~6!%p*.2M7L<@BDHGILPeU YZY=V^QwNLLLOQOU6Y[e]]\[YXVUVX2\]m\XmRLoH%ECA@@]@ ?׈gGӰXҮϝ˼†H˰?Ҭͫu⧱'؞.e{:v(xհҳ-65)rƘ&EұL܉*>X^&9 T"`&k*.37%=oADFFeE B> =<=>@CHPMQsVY[\]]9]]V^-`Ocguh:gzce]X}U-SRORS_TUVVZTQxNgK\HgECAKBDjFEB=+71Z-*r' %.#1!5 4^@7Lt:/Cu̩iLUmB5ֲ~>и "ӫ0z,D?㙇cva=6MW[~0 ]5+2ĮmˇJpfoR {I  [$x(Z,0848 =?BiEjHKOTiW:635160034E3/g*%$ E " C2y֫ҬǡLԸ}0!"7t$+A 3O3oԡѢwǢ٠@MŠ1l+5o,Ř3nГcpM p}~f2A s(""  {#:(,148c<@DGJ^LNQwTzXK\__]YUdSRQR7UXq[>_acc@cb`_^]i^6`Bcdc\`ZZUQMvKcJIIEJIHeFCk?;8{4#1.-o.N120,'p!OE$} N /@Ur3X`߼3{r*ߡհ2ʕƀ]{(XUJ(Bʭ=vr4`֛ƚɚћܜɞj/Ɲ#٘ߘF3ϭ[ñbp象;óVչ[GĤ]6ʑɿ˄Їܑ=V i#!Q&,*-,148Z=@CFILpPTkXZ[Z%VRPO PQ>@A@=}8<2,(%"t p`J - 2%r4 p8}هִ}ʮ(ov30׳>ҴᲲף؜zCQa ͜h$LbsISuc-ϯlC[bCfdݸ T%G |  !t&*n/84 9=A{DfF4FCx@>>?,BEIMNQTQX\^x`faYbmcdVfhiloonjeby_]h]+^_ad.f0g!gfdb`^`\X[[]z__^ ZSNJF$DBkA@@?=:S7g3/+'d$!t "#u";vL "Hj(ߠKԓWՔh3!}彈v;Ш0F3Oםi֣b۔SRF!ǗSҫkF ů L*ܿj$2wB!  Ce ^t"%(+/37;t?CGLPR}TTQMK{KLM~PlTX[^ bQe}gh"iijjkmp8s@tso{j`fEca``albAd;f*ggfday_B]2[YXY{[\[yXOShMuHrDgA[?= ;75E4L456H52,&!h}7 [(Sr|ٸ,wh.`b;E2ɥcBɭ#z؜ɖU͒'ŐՏ'ȓؖ-IIЗꕙaהʖ~朰h<}׫![N"]nZ{rЉ2ղ՜|3;eA~g "1+D9R {$X)G-f0K35V8*;C>AE.ILPTX[^`@`i^Z XWWXZ.]D`)ceDhkmopTqq~r_stovyz#{kyuOpligffgqiTkmnornmkigUec.ccdfReb]WRNK?IGGFFMFEB?c<8h52.%,*@*h+A,O+(#V* C<R}P5Zg:4LDuʣ1PҴ,ɥ;~Υ©ܝT @)C)֊VwÄЇِ͖ٖӕAE~9|ΕՓՙͤ(/±CTuw-z: ~xkJ  5C #&g)+-0025X9Y=FA!EHLO;RS*TRDO>MLMkO2RUX[]`JbdgSjk_moprwuxyz~yvqCnlj,jjOln qPsuHw#x&xbwLvAuWts_][[[)\]H]\[XURPeMJIMHHJI HFD>9$4$0,*)''"&$\"kF e nZvqMadRV޿ Mϡ& <=Ʊ}-迧/$άFs6ě>:8ڒӘ͙] *܆w5bu:j-&4HM.ɜ؝ 웘!q~ ;޺ݻ_uLԾ"3Ċ6)?G0׺Օ \ v| N&w1 sz)M,"C'+.~024_6X8:c=@KDGBKNQTtVWLW5U;RPPQS WNZ\^`bQdfikZm oq4su'xBz{|zxmsomll*mnprt vway zyAyx xww xkyzzNyupkgdqb$a`2aacdAdc8b`],[XVTSSgTTSPLE@<9y64332l2S1/,)D&"C"_ X'#0(v{BջVWJS5h-1t@;շܴU- ǟٟ9VM@ћ9rZ1CEꃖ!L‘ݍTنj4ủډ"Ň&ewfNE<ˡ L﬩sQ>LոX\Ǒ=*Ϡϱ&wճ79kfli* }  &B&D".%R'((/'%%a'*. 36l9z;L=>@`ABEGJMPSpVYZ[>\ZWiUThUWY\M_abceefhi4ln"pUrtwTyz{{{yv#roimllmtopBr^sEtjuvxxx-xwwwxx1zzzly0vWqGlhecpb2bbc=ekf_gggeca_3^\[8[[\[IY*UsO@JENB?=g!hhhggpffef gXgf.ea ]WSPHNL LbLMNNOPONLK'IjGEDC%DDDB?:$50,)'& &%3&&&P&%# ;GO= mU t<>>X5 7A<Q __F͵̡q%žļD_6n;CZ_ 7{ߠ񟱟:.QpILۣ##}ԟVǞܝRϗZۓhbx#՞Ğ/v|@ÙϗB?3|A9Yp󫘫ѪBp/[9ɻL~kȁɽDuȖ8='ˊdpѵ"ћ:Z5mVUUVVW$YtZ[\^^=_^]Q[LWSQPPQqST/UiUsUPU U8UUVWW Y*Z:[C\]Q]\[{YUQMFKI`IIJNKKKKKKVLM9MLLLL[M NN\NMK%H^C>p;8D7[6B677%888J999+9765854r44q5L54Y1B-'#e * n|j0TmRsL <1Hg`>%g^q+6OlNmQS2۪RurMlےYڻtʴ_'ʖ Ǚ82«Y-ȨDZō޿ݽ໫ûA)ƽ뽣׼:ŷ<ٸQp-!ٶݶM!Nܳⶥ>)qjXEyx~ܳZqhiEÀYl7¥~ Cžνּ|Oٽ) 0ϐ,$μwZe_ r9(bˍ6Ь.޳k\,޵d۫۽ܑC޺i޶ݐBNWu}f}DK^/ H/V'p*u @ ` O R c>v6g;V?p}f=4!%')*g+B+*)(''''()+8,C-%..L.%-8+)!(x($*-/D234C5543P2k100123456p77:7530\// 0K246M8 9&98v87i65F5[556789{:);F;:S96|3X1p0082h436a7777B7s654445}6f7?899Y:T:9\8514/-r-*./N1c2222J21$10011234T5666542%.*( (((h*u+++++B++*3++,-./o0E111$1/x-)%m# "z!!"#7$r$$q$7$L$$%%s&''()*++,+ *'$mo?R 2!"f"2"H!"G4nH_henj +>v  # { p- p ) 2 x>gG ud;V!F^3`UE!!c&7\1M Tb>$O3E?@ޑ}߳E`i\ߥ*urwQLuެ$;\8ܧ[O9݀ۀܤO Rwe#ٯْ98ށި^ۿ6;sm=XDA6ڍ--ܑݙ?xBߑ޿Aܗ#<#Sq+Zݻm}߅5k ?}$ݨܪ[1}Ke;O3=6?z 0?RL.]`9- g2flSO<wF=(6)!&0L_QbgJ5R>K\2Jq{]P?8D@ lO2hS}}SQihNdJ\5 aC}  % I Q?SBGc *e e ?W o  i> 9 { ko  $lE1 ` M I[  # W= _ Q[\ zBSb[ hu   S |~ , 1 _d v h k SG}[|<gE#H    gl|jg$L$ u A  # _ C I .jcV8{749 N 6 sXh]-m0t1 g :+QYBi3QZYY\I-R7-bOn;9_DR[CFy JSthm/|,9nOJc%t.Q=)!!zY*A Wx`0Y<;4bJ8V6s 8]|Rd<{$Z^@/UTGg-|s&*|d s3}N `)&*V]BT8F>w  vH~;l ICm.S;cVr/kX3\ fnr^|5Z *C:{c+x0VARpD:/9 JgG&zvrp`smKm(Q"} w=CY.x5ZEa^Z* Ml2m m 3&I4F=&/ |hMLV3+\0c5cmM{]uPOz=GN7E I^i3x+Rg: Kr}Ui?EM/Q KFfc:_brLA 75!|"/{[i@~Az'K[L0^haBH}g\>hk5ox/Xzy;MCH;W,t"2U).i,GV1R|v!BtVq ] '  A Q J  M v{z9  m w 4 s 3 < W ,  E@X"[;#z0  ` !91+s~PAM h-vY/!c&>vb} f.%-f+n+P'Fof401J:{uTS6oT>R6:i%6aJcR< L'sj6 Y B%7811cL|%k<b2<mV`  vepV6lB$2nZ (b\@a5yu8$ u;F QL,EK qm X a X #  P z Y n 1= ] i*6;gzTZq"QYu- +>S]v-nN"Q*^d(,%*5b@UtehۓڂA۞sߩ~߂ެݙ܊۴#,ڜb۵1܃wػ$TRլXءى@zڼٽ؈q֠ U>֣=f,sFլ;;ҝӲQח~ڸ-խT)Iӹ3ԧ _Տ՚B{EӸЇ_o Eۏۈ FM!֚E2Ԙv %ֱԫҫJӺ֜٦2a&xWܴR Qش DbX(٩N%חڀ('ZMlgo'+apx߸]u`GGjAv7X4Qgpl'Q |ed-? B Z K A i  XW;#:  03l.c>R !:""""o"U":"2"2"@""#$&$)*,^,+*)('''2(()*>,|-|.=////x/C//...'//1245y69685{310/d/E//?0#112r3456H7y7_7 76i606 65"6678g:$; ;S:864E322z1'1A11234,6d7O88196988:87777889::J:97i4,20D/Z.-- ../0511]233333832222#334(4331I/T,)'o&j%$$$V%%%%o%8% %*%Q%%%x%h%r%%%=&&x&"&r%q$"~ h~vU.Zfx\1 H G,D ~HSmDb'Qy %!{R ݲ݁Kݢۦ֙P҃ӂ.ՉՐ>Պԙtі(ʧʯʰʪʡʀC 7=b’{ŔƳ}!Ű2ؿSGs[M/ lì7_!|ĉqoƾ br'7+[J˾"0$ʪʍɰɣɸɯpaɑɰɳɝ`:@ABCBA?e>r=@A CDEFGHNHMHIHHHbHHHOIIKK[LiLKvJ~HFLDCBvA6AWAAB-CCDKDDDLEE"F)FFEF3FwFFQG~G[GF1FDBJ@=^;9877777s77s65 5T43#32X2-22111X1 10/.- ,)&#!nLtRxx ~V  )  =<l7_96i(k#o(^1ݘ6ڇم#OwKf &xgʛ-ɮ!yDZƢBă}^>3-ߺ\zӶhCӵz,T·[k*IpH@D/͸5󷱷Wж_;av|!cK&Ln1  ͮ:ϔOв'ѥ3!؏ۂ]xF^rn423[ 2  X GT+ W!)"#%$%9'E)+9-L..~.-,#,++U,-./124687:;<=s>>f??@7ABBDsEFiGGGFxEC3BMA@@@&AACCDEEE[FFxGHH IsII\JJK!LLLLLLKbJH FCB@@@??O@@@6@?0?>=<>????>i=h;98878u8;99H:c:]:@: :9T988o8S8\88888888808u7d642y0x.,,++3,,,L,+**('%&$#!y wc HpD15 d d  V ]  w7*OgeO=s5} H4jZܪKe!FwӖҥћx?#˥rʫtyέiЮСDДϖ>̵̙̬̺̓̿̎AqʘgISʣ2P&l7{<|AռJ8Ԕ7Nپ=B?ARbV+0 }gpwD7^Uuz h E"O$v/RS5 !P#$%Q&*'();*l+,-.e////. -+**)**]+Z,--------x-c-`-}--!.s...,/Q/f/V/ /x.-Q,*\(&%$$$%&C&0&%C%r$#g"!33<S=2W/A  y Guye{MB|BW]lgo*uQ:Ejߛޘݏ{uژٮخמ֙՟ԯIүӓؤؽ|cպ$x֌ؗ-E5.Nك٪ں |oo;lBN Ng+qtKf|E m FV5),K0D !!!! Q?^y{t !1""7###$U$$$P%%d& ''1(())))**))4(&$B#+"!y!!q"####<#" ">!D ;5f>!>  ] R _ B b V)0~1FH(cnT|H~o !d 3]ړ؇]nؽؒڎݕj޼P8܊ܙQސ]S~$lb8J)_X>TL 2   ~GU/Z3]X?u7W"@H>!M:bWY;tE+-Dz>}R5(0uQ ^ :O06b*<%"XP*<" y(Z`5 A|^[jVJqhvc79q=mV1=ev+fOo$  <  &ddM#x2M`>B^?< m1e\N5e8O4O[o6UJ"&iCz3#C | l   G > 95w+ 2;RT@.9xnb FC_Mb U^6J2W9?+yN*=Q(S5<j A c [ /tv={m:?>U+ Cwyt!N' U uyk5|1*L fs#T,UZV5nVoW\=KXbf#:7~b 7OB{@6b\8Kb!M V  #=SupB [rxh>32=8)$SAjC z   B % B l 5 oWDSB% 7H:w^dn}D@D^|dul@?z$R]. _C+1Xwh/R `'-r?a1FpRa t 3 n N/ g%|GdV eS D]p73mrG t'M   Q  - ?^U[9Q=|flO( A;NSLRvLrd`m8.4KQh{syF?k|d9=|GK|& H8IPM { 2 r e/;a+_b6>   [ F fC>.2b{pDHtrlv`[l>MxOe2"9x*|rzuARKkJ HlgE2 ys uEF|~9tTrl  # < 8 tlbu6  ?,v % K Y J ! Hzcj!U,XYKuq&ZhCCs!fZA ]ThZR@V[c0L " ^ < J  x0vz2 J  $ = Gd _ &{xh+MBFgyKP_0DC8YDDp_e- F '( { B!p6$AB;U"!c  o - X B x B'\r!  / P   e[}x7|! Gg MhAcT' k5ss5&_`02hx*C\1  x F r M )   & w  v & X 8 % ) E _ s { { v _ A ! ] o R6WYL=@5kO?>Udr{{.r+p`2PYzJ?T6g]uHAnl<2ElQZv' Z4zt% L   5 & ` } 3 D 0  w  =r$1R [zO{,+i$hx[XF^~HD3},yR9?q`%S;I~J9Lq w2bKSE = ; 4^   Q z H $   & / 7 7 ,  ;:@J?8m^Yx9E>D{?(2 @)*E1h^$E!f pn ~#OS!4mHG56s)^$zc 4 T ] D  k`E&7l0X@2` >I#^ye}T51JUX$e%O{n_3o]_VhDs"PN|DrQ6 \ C ~ a (Y8H^Ui7yk@m ei;j* ]]{vJ08e"Fvs-B,{"%q\! [+jH%E. m W t;\fI3Ti1l egv n0^iPt6'*I!&qPkRHVwkrf5;ASo\@\hY7!t@|jqW `&L,?GL\b&puno| KnHXbAE)W<05R{RH5jG H<]{j9Y! ?''d4:=]We(G3gE0,?u8[ |~<a$CVj7mX4 c6$%6Vz7a0Qqh#_0TikfO*Y>\N~7t8c8JOk76oFc W 8dE S$Rso?pk{Evf7 l^XQJA5&M bMou_> Lte_UJA6#|3} 5LK:H\1a)YJt&-*\7LVVL8Ho%k7zU1s>l^Y`{ .<<.zbXUWds!Ho&=SpJbNIL^r0FUalopnaVLC;667<CKMQPNIB4) W#0GQVRI6zZ7{hUB*4eDt:\} *Ge /?ILJ>0zu{^=mJ,zaH.xrw9Ofx&>[wuhdelw|zvlh\P@/}spjffgfjjjkigd`\YVVVVWY`fr+4@IMU[bfkrw}~l]PKGHMT\adedb]ULC4$ }wurrrsv| $&,-38;>DFJLMQOOOLIE?84.--+,.103100-+'%! garden-1.0.9/data/wavs/swbeam.wav0000644000175000017500000011325612457263300013602 00000000000000RIFFWAVEfmt DXdataCLU^hu(?To;][5 qR2qO, xR-Gq@jGu 1 b ) [ > j4Up9G P/m0t< M jA*Jf}/?LTTSV] j !!{!!2"qݵWۘ8vڲS؍)a)l))8** +p++B,,---V..0/0/0///1/0/0///0/./1/0/./0///0/0/0///0/1///1/0/0/0///1/./0/1///0/0/0/////1///1///0///1///1/0///0/0/./0/1/0///0/0/0/1/./1/0///0///0///1/./0/1/0/0/0/1/./0/0/1/./0/0/0/1///0/1/0/0///1/./2///0/////0/0///1/1/0/0/./1/1///0///0/0/0/1/./1/////./0/0/0/0/1/0/0/./1/0/0/0///0/0///1///0/0/0///1/0///1/./1///0/0/0/./0/0///1/0/0/0///0/0/1/0///0/0/0/1///0///1/0///1/0/0///0///1///0/0/1///0/0/1/0///0/0///1/////0/1/0/0/0/0/0/////0/0/0/1///1/0/0/0/0/////1///0/1/0/1/0/./1/0///0/0/1/0/////1/0///0/0///1/0///0/0///0/1///0/0/0/0/0/0///0///0/0/0/0///2/////2///////0/1///0/0///2/////0/0///1/0/0/./1/0///0///0/0/1/0/./0/0/1///0/0///0///1///0/0/0/////0/0/////1/0/./1/1/./0/0/0/1///1///1/./0/0///0/0/1/0/0/./1/0/0/0///0/0///1///1/0///0/0/1/1///0/1/./1///1///0/0/0/1/0///0/0/0/0/0/./0/0/0/1///1/////0/0///1/////1/0/./////1/////0/1/./1/./1/0/////0///1/0///1///0/1///1///0/./0/////1/0///0///0/0/0///1///1/0/0///0///0/0/0///1///1/0///2/./1///0/0/0/0/1/./0/0/./1/////1/////0/0/1/1/./0/0/1/0/0/1///0/1///1///1/./0/0/1///0/0/////1/0///0///0/0/1/0/0/0/0/0/1///0/0/0///1/./1/0/////1///1/////0/1///0///0/1/0///0/0/1/0/////0/1/0///0/./1/0///0/0/0/0/0/./1///1/////0/0/0///0/0/0/1/1/0///1/./0///1///0/0/0/1/0/./1/1///1///1/////0/0/0/0/./0/0/0/0/1///0/0/0/./0/0/0/0/0/0/////1///1/////0/0///0/1/0///0/0/0///0/1/0/0/0///1/1/0///1/./0/0/0///1///1/./0/0/0/0/0///1/./0/2///1///0/0/0/1///0///1/0/0/0/0///0/0/1/0///0/////0///2/0///0/0/0///1/1/./1/./0/0/1/0/0///0/0///1///0///1/1/////0/1/////1/////1///0/0/0/0/0/0/0/////1/0/0///1/////1/./0/0///0/0///0/0/1///0/1/////1///1///1///0/0///1/0/./1///0/0/0///0/1///0/0/0/0/1/./0/1/0/////./0/1/0///1/0/0///0/0///0///1///1/0/0/0/0/1///0///1/0///1///0/1/0///0///1/0/0///1/./0/2/./1///0/0///0///0/1/0/0/1/0/////0/0/0/0///0///2///./0/1/1/0///0///1///0///1/0/0/0/////0/0/1/0/0/0/./0/0/0/0///0/0/1/./1///1///1///1///0///1/0/////0/0/1/0///0///1/1///////1///1///1/////0/0/1/0///0/0/1/./1/0/./1///0///1///1/0/0/1///0/0///0///1/0/////0/0///1///0///0///0///1/0/////0/0/0/0/0/1/0/0///0/1/./1///0///0/1/0///0/0///1///1/./2/./1/0/0///0/0/1/////1///1/0/0/0/0/0/0///1/0/////1/0/0/0///1/0///////2/0/./0/1///1/./0///0/0/////0/0/1/0/0/0///0///0/0/0/.///1///0/0/1/./2///0/0/0/0///0/1/1///0///1/./0/0/////0/1///1/./1/0///0/0/0/0/0///0///////1///0/1/0/1/0/0/0///0/0///0/0/0/1///2///1///./1/0///0/1/0/////1///1///0/0/0/0/0///0/0/1/////1/./0/1///////0/1/0/0/1/./1///1///0///0/0///0///0///0/0/0///1/0///0/0/0/////0/1///0///0/0/0///0/0/0/0/1/////1/1///0/0/1///0/1///2/0/0///0/0///1///0/////0/1///0///0///1/0/////0/0/////0/0/0/0///0/0///0/0/1/0///1/0///0/0/0/0/0/./1/0/./0/2/////0/0///0/0///0/0///1///0/0/////0/0/0///0/0/0/0/0/1/0///0/0/0/////0///0/0/./1///0/0/1///1/0///0///./1/./1///1/0/./0/0/1/0/0///0/0///0/0/0///0/0/0/0///0/0///0/1/./0/0/0///0/0/0/1///0///1/0/0/./1/0///0/0/0/./1/0/0/./0/1/0/////1/./0/1/0/./1/0/0///0/0/1/1/./1/1/0/////0/1/////1/0/0///1///1///0/0/0///1/////1///0/0/0/0/1/./2///0/0/0/0/1/0/./1/0/./0/1/0///0/0/0///1///0/////1/0///1///0///1/0/0/1/1/0/./0/0/1/./1///1/0/////1/1///1/./0/0/1/////1/0/0/0/0///0/0/0/./0/1/0/0/0/0/0/./0/0/0/0/2///1///0/////1///2/0/0///0/1///1///1///0/0/0/////1/////0/0/1/0///1/////2/0///0/0/0/0///1/0/0/0///0/./2/0/////0/1/0/0/0/0///1/./1/0/0/0/0/0///0/0///0/0/1/0/////1///0/1/////0/1/./0/0/0/0/0/////0/0/0///0/1///0/0/1/2///1///////1/0/1/0///0///1///0/0/0/1///0/1/////0/0/0///0///./2/////1/./1/./0/0///0/0/0/1/0/0/1///0/1/0/0/0/0/////0/0/0///0///0///1/./1///1/0/0/0/0/////0/0///0/1///0/1///1/0///0/0/1///0/0/1/////0/0/0///1///0/////0/1///0///0/1/////1/0///2///1///./0/0/1///0///0/1/1/./0///0/1/0/./1///0/1///1///0///0/1///0///2///0/0/0/0/./0/1/./1/0///0/0/////0/2/////1/./1/0///1/0/0/0///0/1///1///1///0/1/1///0///0/1///0///1/1/0/1/./2/./0/1///1/./0/0/0/1/.///1///0/0/0/0/0///0/1/./0/0///0/./1/////0/0///1/////1/0///1/0///0/1/0/./0/1/./1/0/0///0/0///0/1/0/./2/0/////0/1///0///0///0/0/2/////0/1/0/0///0///////,/,/+/)/(/'/&/#/$/$/!/ /// ////////...... ............*,--.02336589::<>>>BCDDDHIIJKLMQOQSSUVWXZ[\]__`bbfcgihkjmnoqqsrswwxz|y~~рттхучччыъэюэяђђєєѕіњљњћѭѯѯѱѲѳѴѴѷѸѸѻѺѽѽѾѿ3././.-.,.,.*.).'.'.%.%.#.!. . . . .. ........----- ---------------++/0/1436578::;---------------NQRTUTWXZY\\\-----------norptsvvwy-------{-}-z-z-x-x-ҌҍҏҐґғғғҖҕҘҘқc-c-c-`-^-^-^-Z-\-W-X-W-ҫүҰҰұҲҳҴҶҸF-E-E-B-B-@-A-?-------,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,<>??@BCDGFHIJJ,,,,,,,,,,,,,,,,`accdefiijknmopq,,,,,,,,,,,,ӃӅӆӇӇӉӊӌӋӎӐӑӒӑӓӕӖӗәәӚӛӞӞӟӡӡӢӤӥӦӧӨӪӫӫӬӯӰӰӱӳӱӶӶӷӹӹӹӽӻӿӿ',$,#, ,#,,,,,,,,,,,,,,+++++++++  !++++++++++++++++5466999><>?AACDDԻ+++++++ONQPSTUXVYZY][Ԣ++++++++++++++++pqqtvwvyx{z~}ԁԀԁ}+}+}+y+y+y+u+w+u+t+q+r+o+o+n+l+ԖԖԘԚԙԛԝԝԟԟԡԣԣԤԦԧX+W+V+U+T+S+P+Q+O+N+K+M+K+H+H+G+ԽԻԽԿ3+3+2+1+.+/+-+++*+*+*+(+$+&+$+"++++ + + +++++++++++ ****************()+*--.003364688***************KMOOQPSSUVYWZY[գ****************ppqssttwxy{{|}}ՀՁ*|*|*{*x*z*w*w*u*t*r*s*p*q*o*ՔՖ՘՗ՙ՚՛՞՝ՠՠՠգ[*Y*Z*X*V*X*U*T*S*ճղղմյշշպպպվA*A*?*>*=*:*<*9*:*7*7*"*!* **************))))))))))))))))))""#%%%())))))))))))))));=>A>ACCDEHGKILL))))))))))))))))`abdefghhklkonro)))))))))))))~)~)ֆև։։֊֋֌֐֏֏o)n)k)k)i)h)g)e)e)e)c)a)b)ְֱֲ֤֤֥֦֧֭֡֩֩֫֫֯֯L)L)K)J)H)E)F)E)E)B)C)?)@)<)>););)')%)%)#)$))!))))))))))))))))) ) ) ) ) ))))) (((((((((((((((((#%%&((+*+-.00313((((((((((((((((((((((MQPRQSWUXXZZZ\^__baמ(((((((((((((((((uxxy{z{~~ׁׂ׃ׅ׃׈w(w(v(t(s(q(r(p(o(n(m(k(k(j(i(f(g(d(d(c(`(c(_(עףצץררש׫׫׬׭ׯװײײ׳L(K(J(H(H(H(D(E(B(A(A(A(=(>(?(;('((($(&($("( (!( (((((((((((''''''''''''''''' !!$$''''''''''''''''68;::>'='<';':'8'8'6'7'4'4'2'3'0'.'/'''''''''''''' ' ' ' ' &&&&&&&&&&&&&&&&& #!$&%'()*,,&&&&&&&&&&&&&&&&&>BBDDFFFIHJMKNNQQٮ&&&&&&&&&&&&&&&&&fdehhiimmmoqrptttwى&&&&&&&&&&~&}&|&|&y&y&x&v&ًَُُِّْٕٖٔٔٗٗٛٛc&b&b&b&`&^&^&]&\&[&Z&Y&X&V&٬٬ٰٮٰٱٲٴٳٵٷٷٸٸٻD&C&C&A&?&@&=&=&<&;&:&9&8&8&5&4&3&&&&&& && && &&&&&&&&  ! %%%%%%%%%%%%%%%%%%%%%%%%%%%?@BBDEFFJIJKLNLQPPRڮ%%%%%%%%%%%%%%%%%%%%%%%%%%opqqusuvvx{z}~~ځځڂڃ|%{%z%x%x%w%w%u%r%s%q%p%n%o%m%k%l%j%i%h%e%ڜڞڝڡڠڢڣڤڥڥڨکڨکڭڬڭڮڰگڲڱڴL%J%I%H%E%H%E%B%C%B%B%@%?%>%<%;%;%:%8%6%8%5%2%3%%%%%%%%%%%%%%%%%%$$$$$$$$$$$$$$$$$$ !"$#&&')($$$$$$$$$$$$68::;<>???ABC$$$$$$$$$$$$$$$$$$$YZ[\]]a_bdeefgihk۔$$$$$$$$$$$$$$$$$}ہۂۃۅۆۅۇۉۈۊۋu$q$s$q$o$o$o$k$k$j$h$h$h$f$e$c$b$a$۞ۣۣۡۤۦۥۨۨ۩۩ۭ۫۬ۯ۰O$N$L$L$J$J$J$G$H$F$D$C$C$C$@$@$>$?$+$+$)$'$'$%$'$$$"$#$ $!$$$$$$$$$$$$$#$########  #################0013255579::;;>=?#################RSTVVXXX\Z]\^_aabܜ#################swyvzz|{}~܁܀܁܄܄܄y#z#w#w#t#t#s#q#q#p#p#m#l#m#k#j#i#g#ܚܜܛܞܝܠܟܡܢܣܤܦܥܨܦܪܪU#U#S#R#P#P#O#M#M#J#K#I#H#F#E#G#C#C#ܿ/#/#.#,#,#+#*#)#'#(#&###$#$# #!###############""""""""""""""""""!"%#%&""""""""""""""""""9::<>>?@@BDCEGFIIKݳ""""""""""""""""""___bcccffghjjklmpnݑ"""""""""""""""""݂݆݈݃݅݅݇݊݊݋ݍ݌ݏݎݐݒl"n"k"k"j"h"h"g"d"d"c"c"a"^"a"]"]"ݤݧݧݨݪݪݪݬݮݮݰݰݱݱݴK"L"J"G"H"H"F"E"C"C"@"C">"?">"<"="*"+")"&"("'"%"#"$"!"""!"""""" " """"""""""!!!!!  !!!!!!!!!!!!!!!&'()*,--1012354!!!!!!!!!!!!!!!EHGJKKMMMPOSQSTޫ!!!!!!!!!!!!!!!!fgghhjknmnnpqsstތ!!!!!!!!!!!!~!}!~!ޅޅއވވމމތތގގޏޑޑm!m!k!l!i!i!h!f!e!d!e!b!b!b!_!ޡޤޤޥަިާީުޫެޭޯޯްP!M!M!N!I!K!H!H!H!E!D!E!C!A!1!1!0!/!/!-!,!*!*!*!(!'!&!%!!!!!!!! !! ! ! ! !!  "!% 3548689:;<=?>A OPQTSSVVWYXZ[]ߣ kklnloqprsuvux߇   ~ ~ | z ߉߉߉ߍߌߍߏߎߏߒߑߔߓk i j h f g d e e c b ` _ ߥߣߥߥߩߧ߫ߪ߫߫߮߮P P N N M L J J H H H F ߼߾߿߿7 6 5 5 5 3 1 2 0 / . , -                &$&(()),-,.012>@CADDEDHIJJVWXX\Z\]_^```qqrsttvxxzzz}}|zyyjkifhgeccdaa_RPNNMLKKHGHH;8886452300/!"       /01223366779;;;=>?PSSTUWXWZ[[Z]]^^abadcfvwxz{{|}~z{{yxwutttrqgiegebda`a^RQONOLMJIJGH:;98764422%&#"$       %('+),+-//;<<>@@CBCEDESSUTTVWYZY[fghjjkkolqo|{~{yyyvwtssrqfecdabaa_^][PONOLKKHHG?<>;<9:8867(('%'$#!" "!$$#&&&:;==<=@@BBDCFEGIGJK]]]`_a`bcedfhihjknmliggdfdcba`_]\QOONLLLJIHHEFBFBBB@?==<;;8:7%%''))+689::;;>=@?ACJKLMMNNQP\]^_`b`cdciihjmknmpoqsrsehgddda_a_]`][GDDCCB@A?=>;<9        (&'(*(+,/,.01123465GGJJKLMNNPOQSSUUUXXXhmklopmpsrrtvvuywz~~|}{zfgdecbc``_]]]CBA@?>=;=::9776644312/0.--,***('&$&###!        "#%$&'))++++-.01112CCCFFHGIIJKLNMOOPOS_bbbcdgehgi|lkjhiggffcNJLIKGGFC?B?>?<=:::987$$##!    "!$#$'&'&+*(,,-.//2123=?@ACBDBEHFIIIIKLMMNPhejijjmlmnppprrtsuvwywz}~}{{kiigfdeebba@=?<<:;97885552421//.--,+*()%(%%##""!        $%%&(())*,*-/0.1023BCCDBFGFHJJJJMMONPQQfgiiiillmnnpoqqurtuv}~}a`^`]^Z]Z[XXWVVUTSRRP?===<;:87966634312/0-  $$&'((*),,.-,0/21044FHGHJKKLNMMNQQSQSUVUghikklmmmqoqqssuuuwx}}}||yzxxegccca``__\^\[YYZWXUCDBAB??@==<;999966663"" ! 1244357797::<;@<<)*)('''%#""""   >=?>?@ADCBEDFGGIIJiehjkkjmmmmqorrrsutwuxwzyy|||~|}{{zyxxwwtturrspZXWXVVUTTQQRPONONKJK;:<8986665334110  !#"#)+,-,./0/2214445688IIJJMLLOPOPQSSSRVUVWYYijjlmmpnppqsssuswvxwyz~~}}{}x|wxwwfddcc`_a`]]]\ZZYYZVXUDDDABA?@?=><9=:798764#""#! -//.102324557788:9;<;POOQRQTSWTWWXXZZ[jllnnnoonsqsssuvvvy~|~{|z{wxxwuvussqrROPONNNJNJKHJGHFFEDDBCA@A>?=<''%$%#"!!       "$%%$(&()*+*-,-.///2BBBFDEEHGHIKJJMMKOONPQabcbeeffgjhikkkmmmooornolnkkkjihhheffdcbc`aaNPNMLLLHKJGGHEEEECBAB?/0,/-++++)((''%%$%#"!"         !! #"##&%(&(')+)+,.-./KKNNMPOPRRTRTUVWWWYYZZ[knnnnqorqssusvuxwxxzz{}~~||y{yxxwxtvfebdbbb^``]_\\[[YYYWWXGGFFCEBBBAA=?>><<:<9:9)'''%&$$"#"!           ""!$"%&%%)'154366668:9:<9=>HIJJKKKMPNPOOSPTR_^_bbbcdedgefjghlillkmom|{|{zzxwxuwutstrrqnrnommjmkij^]][ZZXYXWXTVTUSRRQRNPMN0/-.-,-***()&'%&$%#"!"!          !""$##%&%'')(*+*+,><=@?@BBABDDBEGEHHGIJJ\]^]``aaabcdddffgeissvvuxvyyyy|z|}~}~z||zzywzwvuutssqrqqnqmonlllkjhjheheefdbbcaa_`]_]]\]Y[YYXYVWVURUSRQROPNOA@B?A>?===;;:9:8      ""##%&%(&)*(**,-+ 343656868:8:9<;=<=??@>AC@DCCD VTWWWXXX[Z[\[]^^__`bbbbb trutuuwxwxyzy{{|}~| |  | | ~ { y z x z x w v w u u t t s r r q p b a ` ^ ` ] ] ] \ \ [ Z [ X X X X V V T U S S R D A C B @ ? @ > ? = < = : ; : : 9 9 8 6 6 5 6 6 % $ % # ! " ! !                                YZ[\[^\^^`^a``ccc pnpqqssqtutvuxw     } ~ | | p o o o m k m l j j i j h i f g e f e d d V U R U S T R P Q P Q N N O L C @ B @ @ > @ = > < ; < ; : : 8 9 9 ) ) ( ' ' % % % # % " " $  #                  !"!""$&%$&'&)'))+++-+ :;;;><>?>@?ABBBBDCEEFGFGJIIIK UUVUXYXYYZZ[][^[ jlklmmoonporprssttu }u t u s t s r p r o p p n m m n l j l i l h i h h g f f e d d c c b b ` b _ _ _ ^ ^ \ \ P Q M P N L M L M J J J J H I I G F F D F C F 6 3 4 4 3 2 2 0 1 / / 0 . / , , +         '*)+)+-+.-.-0/02122245458 CEFFGHFHHJJILKLNLNNPNPPQ `aabbddeeeegffhjikjkkjlo |}|~~~~v v u i h h g e e g e c e c b d a _ a ^ ` _ \ ^ N O N M L L L L I K I J G I G G E F D D D D B C 2 1 / 1 0 . . , . - + * - ) ) ) ' ( ( ( &                          (*+-,.--0///0 @BBDCDCDGEEGHIHIJKJKMKNMN []]^^_````bbbbddcfffhghhh wxxxzyy{{{}|}~~} | z { z z y x x v x u w t t t u s r q q r o p o a ` ` a _ ] ^ ] ] \ \ [ [ Z [ Y Z X W X V W U U S S F G D G C E D C A B A @ A > @ ? > 0 . 0 - . - . * - * + * ( ) '      ! ""!$!%$$&%%((')')+*,*-+;9<;=>?@?AA@BCBDCEDEGFXX[Z\]`__ccceehijkllmorpt~{}zwzvuussqpRPPOLLKJHGGFDCBB??==;;977    8:<=:<:86675231/1---,)((&')()+*.,0.123265698::<>=>?BABBFCHGHIJJMMO}{! ""&$%((()*,+.../03234749889__aabbedgffiijmlkmnoprqtsuuxvxyz{{||nkmjjhihgefdcbba__^]>??<<:;8986655313/1/-.-++         4355867:::;>;?>?@B@CEBFEGI[`^`_abaddefghgiiljmloopor||{{gdebcaa_`^^]]]ZZYXXWUVTTTS===;::988666451421/../-,+,*()(&'%$%#""" !"!557688:99=;>?@BACCCEDGEHZ\\]_^`_aabdbdeegejgiikjmmlmnllkjiiiiehegddcac_a_`^HFEDDDBDAAA?@=>><;<::89786      !" !$##"&$&&'99:;;:<=>=@??A@CADCDDEGEIGWZZX\Z\^\__^``aacccdcdfeiejfx{{|||}~ssrqpqponnmlnlkijiihjfgfefdbdbcabPNPLNNJMKIIIIIGGGFFECEBDABB@001./--.+-*,)*))'('&%&%%##$       !" ###$$%$'%'&678889:;;;<;=<>>>@??@BRQSSRSVUVUVWXXWZXY\ZZ\][]]`]`^``bbabbbedcoppprrrsrsututvwvwxxxzyzz|z|}|~}~}|~||}zz{zxzyvxwvvvuttttsqrqrppqoonmnnllkmijjkighihfXUWVTUTTTRTPRRQQOPNNNOMLMLKJ??>?><=<=:;99:89:7786656635((('&&'$&%$$%##!"!" !               *++*-,,,--/..00/01021331425445647767796:79::9<:<;ccdebfdefffgfggihgjhikjkilkllnllnmnonopoqpppspsqxzyzy{{{z{|{|}|}}~~}~}|}~{||{{|zyzyyqroqnopnomnmmnllmkkkjljicccacbab`_``a^`XWWUXTWUTUTVSSSTRTRQFGEHEEFDEEDCCDCCACAB::9;89:9789688577665555*))*()))'(&)%(%&&&%&%&#&##$#$"#"!"!! !!       garden-1.0.9/data/wavs/rect.wav0000644000175000017500000005011412457263300013252 00000000000000RIFFDPWAVEfmt DXdata PPSY!]p] qd(nG ,JkF| "ײL ߧCW`~,G\Lfgkg&e\`XNXC|7,[%!!4"-#$q&Y()*H*'Z# qgC~݈Ԕʹָ̀nZ9[!)*3-'1>ݯӎ0)b4%D#O2(:Nm?O> ;M5-"S  pݵ x Ҫ}Զ@'04:?D\H]HC8'ХǧNjf YAځؼ\jJ [CP !lXH6Lu\d"f$h[jWlmTm(kfj_UJY?4 -}(&C$!s! (1;FP*WRXMSH9$ cO(ϻC)ϸ弗âOdcm fcuJ̀Ƀ͊C+ACRZ\_axbb`P\fUL@)50*|! )%7DPX^ZVUK5;r&a߆Ň«źvĊnC%-&~S o :rf&/1b357W751*b!  Cpj!PQ +7=C=8. ׋­ӣyEw%Ūص*A6ɆlWXռ4Kb\b_ZeS J?5-(''*4,y-N- +u&%o Qh0Z48<\ K |H)b3 q kUyc"V,7DOY^`a`]]VL<@1/#3 ,/!աļ>w~X*<`GK(MZLGT>50X ^?Jb5iSn Wb+6C?:DEEDuA;3V) ". e ǃ s"5g@DG1F@86&NnvBOI W$F(4))@)'j$4 =^ϵз Oҿ-9>EAK@R:e.WvS`_;[YO x6DME QxQ`׀ 2G~XaceecD_WMA4(Q.i !'80\: DfKTN8KWA1B5#`1l'"w9GC{H2 +VAQZ\][WP;Gi;x.! ~,; IqQPG7P#Q LK]A(#p ݴ< 6@ L6ED*3w55*4/J(Ky{m^%064<*i_> yO̴_ϓz"x_1EQ&SLDd)P*)'"SEu/8^!3ET"_Zc/c^WU2F1F׻͝6[Цx=%, -&gvB4t<h[4)~נi Q)a;KUVd[ZIVL=)U Ӳ-ɗɐ{FV  tO˩sߥY͒s¥j** "& /9EPX]S^]Z6ULA4&+oBErR: cu#,=CFGnF[A7*/-XkY>`r k N*15k6I641,|%]jB&ޓثJ(ǩNQ&I7?=7$,HT֩T<6Ϗ ҀӋwU& '3h 7h:F0EmU]^^ \VN/D7j+f X&.6E:r0q[ ։ĩ¬U*  Ah[XnĠBC9+34c4}1+"mO euf# $_# !u܅>HI̗B1"gw+ӟW)=JNICW;3 +?$ 4{Iwy9uQ|'4@IMLLPF7;* 57>¢R׃.S1R)ODs'~yU!zJ^8ڻv ? r[&.9EO]W8[ZXS LwAZ4%O )ʓaV|0z-F9/~!uڌИ+ݝL  jc}f` T7JW~\#Y&SJ?94(N%K-4*;$><3 $m=%v߷ lfS cJΠ¥ɮܒk*/}-)%" ;5 S&92>H ONH7FID84(AshT ڵrSո3Ҁ${+0>TAr?87B(1$8Õ~yׂ^[3π:S G*E-(.!K btV CD'2=FKJB6%lp7& >0M!!M 8ypˮLُ nm q Z ,(3?LVdYPD4z"&;߃Ҟ?%,8;6c-^ G֧"" .jaq LO 4DNPJ C9/&^"T'+..*V"ceίed^0ɂ˶o#'"i[B`G& &)6yBILG(< ,h+ҫۻ6* nљȡ4gx h ^iUO !i+5<@a?)90F$^\}h*4¡±.+'N0:/$\ۘM~ػN 8bI(%484*b hHft j8Z5 hZ[εBHΜ6SRܰjF %)='_ FݺȻėk##r%*-c,p&s>>,,M:<39 C܎Ҧj y $,5>5H,:Z*%ڸtag k_R w\3 n1@IcKE>y6-d&!z $')(!$j1PDյ}֓T-+D!M/89T4.)$ M-D{) #,4::5S+GZ+ >D{F!/5:2'|  \]#+1=2E/)! ߴ B__; *1 6j86/"-~^E4˲x0uЀ O #$n}$# M(4|=[B@S8*+UA8 pE#M\Pþ7=Ñކj\ )36-+= NG'Mĭřнx j#'!Cr؆=.+ȔεH[ߐn8eL%Z%tg&.9 _!+39;,8j.* t@F$"zzAAR߽S*_ Er"*4=DGiE=62#H\P9m{$(3#&z ؐ"= +u}>!),' kEOc F= L uil`j#P#y #!#ďӶ;ړa W 'k/8AHYKHi@4% WUHKl֎#b'"D& ݚdmWDg80 5(1:4.o# 1= 'j @zXP<a!roVO6*UqZͅۋw G !'0G:}C+JkLH.?1 H dҳ1_ב?$(.#mN&ʺϔ7ZoTg&& {H {/Qi  n 7  Y3 Hie# wϻ l\ڼ9m #d,5>DFRC9,Q P;ҕb>;ByF rcɌ;ͽsتEQQ_yQ",jnm8fw(0551( {R ( 22#  K;tʸJ &2/S6::4( "*?׸E"=Bd?(<;ؐ9'`ZI#^T20 *Y6z?[V= (-P/+"4ob@Ju]$Aգc߼8FP* ").K/*!?w)߆R'I(!)`+y+n(!o_՚Cq<޹] z0m p5y%,/z.(\J^FRKO(M,(' , o vB W(* 4870H*%! "%'% W M1R(чmܬj 1X'[276/&(zԬѡ ߟ^  #K*T.-'e]bT@n߄G m @; 3'Yd,-nTH9 'D141'rSP < TMHߋwD†SR g/"j- bp+Oh# !K)08>A?`7)RZ-.|e".Xnֻ-.+^  ^7',;0r/)q l- [u18a ) Q ]"(,,f&x\͔ /@Y!&%"Dޙ>Hݶ#iG qH[߁U"&'$@f56]gacU>J -n []\.VJY T",10+&"Hz +Ը C k"p? df]2 1IQY  z(/6.;3&'MO߬%܍6nIP?@:{_t>U}E j ]Jf%*,)*"3v< j1 "n  r<Z_e=yv 1#k*+&#C"""$bslY4 i'04H1'n,d0 S ( _ xd z)S+Kx@[E9p"p.e31Zd5 r e|L -Xٙ l1t# $}*-,&RE ԲG !F%"GX`w5)sT diX0 a lN&'p%gX@4x<6 wmt302AkEfLN $$Z#b / 5O? h8ʯPЧ۬{ " )./c-% QݟkI V B"&a$ ^B0l8sS'E  =@YM~ !i UDS7  Nrz+1 0 3 &($mv |  ~ 6I^5  #]Ԗ;ʟ[Ѵ70 &d+]-E+j$< DBیD aE"~|j\| "]C x  14;$F&#V/C ^$UO8\'ts5 _ Io C:] 'rNRC O_ hڦDeV* D?  TZ|m B!tDX avVY\ !'("`G ,ow ?qR 4-EvM=l) & @M޸|rCo `+ Jz CES.  Yt3o7*uzjt Exn( %M F_P 3(-.,E)&?$!#u9tܔ ю-G 9չڳW j*$*l/S2 2-$" hfT~ kR(%N:2+F EoQs#( @cTy$];  0!` |( s|xrD *}~ ӂxHV*tR"" e0fV  E ;i5.#"aTM 6w JM z"T##"a-- MT *nh+^>5a@ | oDlAJ4lQAQi2 U 6LY2Q ~YNS r"%.# 2)( MFl޵F_Nځװj" a!#" ~ ߧR\ > mS8j#";YSS P !,"Z"V!cp7 yX 1 Ie)&?M0vj/KmG{387\  [  P^WIX f!j#P  @V;em'Ej  ; :жw{Z , %yX7 2R$dv hnޅ~ % $e dD%d*,,)"( n- d`Ma0en`  < W~S_wh| Z$GpLI, O"5z M]U7Cq&t,AG- VC"&W'$" 4%>=Z te| @#i߲]:>!#+$!6]^y7 9w:r;_c  6 uK& O2| +pf0bylU a /$~|=c{OZ]~ZY KL0w4%~3g R %ysr\w "% q7`   H G\wigwk|A4w U~-U #c$ >5ju _bLwh ;+n q)ݝFdr l&P*) T@1 _vee)e3p (uo; X3%& 1!_<|@2Q? ~  PO^iK"$`eo(Q  y n 1`tx A 8O=  ?eke` "!s @hk505di c>>ߏq  ~" >@'/  ! _E t+ 6g-=li b?,{R#<yv  ?CQ=CjKlA + tv> fYppsP~Q5*lz &` c %M] 0 M&HSm`"v]#=Spw n&^NUo J C84 _}N '] 8OC#OQ@O  W3 x;Ht1 I 1 {.363C s{cG lxJ C YnXV D %w 6PHd`Z4? )C73y [~< vVUo}Vv"S-5wUy; ^+W SxKDa@ J,r<[Urx w J ~` he `5\ Z mJW=7 'Q,   /18dS[H|[E)Jv; y`Ly/ n-%rfEk@W#]d[* ) [0WFEX| ;%y $l t d|YxVv  C!_-)O # * 80y! e(2 Y;zWzi>X07~5x;~(N ! g97iO@n{9QY, { 9 Lu_G.4!7woJ= A  "{##QKpeGW?  ' zgm 1 i @v#?Edf{ .D| L [# &)  E},ubi Tw-w V'ZB H<7w ,rqO(&emC  $V` E H q* , p8 X#=h#XN 8 CC:S m Q Er VD,]   Z )hyA H ,M7 \ pv  HGa G#_ 5A][ UvOsaiJFG +X& z &!i1LTAl[;'zGSS cZ'U7MENF I"{EEo{ + + %,;F3MG&b-AAsIO r  ^rV%/'d!4CC2C!y&p + ] 04"`\RQ<SbB~{ttn I h q n=pik6o> jb?H'X!5 mP/GT~Qd>U2 a]=Z Ux,G*dtS^V8 O  8 y ku-1F_F_~tKY0 _ u j-9IIz!%.3 9|dLhR ) 7a " Z&J" =0$ 3[! Vu , 1pQUN> u K-RREd.Intu=(qF) k  ^.B$E+RNzxK6  w } q n6, }o -8}2\SYV$P{4 % Hg}0\IIbQQi@@*B  , }&LW7*!1? T,cL0d{R&^;njOgat-`)9\^r>vDYM8{8zz~D$%!Y ;}*bFM0\I<Dldf8zfBSTv= 96%'d/[wzM~LZN#c4z~t6w,!$7$hLSUAT}*fSz TW F ;99WlO0jf;Ep'P0@yrQB6, " (Me6.cM.*NMJBR@~zr,MmX/j>X,Mxnr4mZ[- > UQh)3smhT?xB:2]lEg&f_EQ+MAvQm=2"M%["~&<0{tt$,g0>zF5ACC4]eSRUWHzu!U X7=F_hOOngP\RIlQp +4&/+t0\3`1:k|08zGl} `6@g3 ):@HWr#RadqV ~jze %4Kx2[|R)u>.Ts HT#Me/$:>* -.EjyzhQ5  $,($ (-/    garden-1.0.9/data/wavs/cannon.wav0000644000175000017500000017151412457263300013601 00000000000000RIFFDWAVEfmt DXdata  inrx~|,? U3*&u$y3V\ !'uh ??b\ST 9p&:&v=EJSWUFWA!)/6<DKPo%)  =  5vra%4 m  Q y  &.6<B4+KPx:3-#   &/5<CHP: J i hk ?  /ej5Z%*yskd\ * g 1W=3H P B I P U ^ zpke^VUo & , 4 9 B I N V ^ c l r x { V[O     % * 5 : A GG5L gKN,    % - 1 : A < @`o{i ;5. }h\{rne_XQID<5/(! $sNY6K/n=+9נޒsmf_ZRKD<60( #*2m6QMLRJC>6/*!_N#uB@߾ߚloD8/*# #+09>FNRYbmM@AMau!#%')4++/*&&N#iGELSO>C~uohB՝ֽ~*`<GKTZbgmu}*:!"$N&')6+,4-&+6&agmv}^"&8)(G% !) ϴ }lX3Ξyel[TMG?91++-+**-+*,,)+,0< !g#$=&{'()*+]+(!X+),Ga+*++*,*-,*mSHHIHHIIGbٞޫݳܬ@+++*+++++-++,*,,+>tD !"6$V%U&;'(()p*D+N,>,)]$,,*->T;,*+-,+DIGIGHIIǴ͹~dݩTh=G=Fz|D.*,+-++*+*,++*-*,+**+#c(J g!B"I#$%y')x*+,-.|/0001_233333[3S3}3s2.(+++,++++ӑl,*,+**,*-++++,++++PԩԨ3ՓؽQ!`g+++++,+++),+,*,+++++*,*,++,),*,*+++,+*,*-),,*,*++,++*+,*,+,**,+,+)+,++,+*+,+,*++++,*+,*+++*+++,++++,*+,*,*+,++,+*-*,**++++,+*+,+*+,++++*,++,*-*,+,+-*+*7Vy8Oi#=YsoCAi*H1=DFJP^*?L !! !!!!$!:;<;7/f%-**+,+,*+-+,*,+,)+,,+*,+,),*e3m6!DPRi#g!! "!!O VD } ++*+,)-*,,+++**+,,+++*,*,*-),++*,+,+*-*++,+++*+,+*,+++*,+,++l݊ޞV],*+,+++,+*++*-+*++-+D,+ JHHHHQ$։գ+)T9Ѣ8^x҅ҍҔӝ=ڰހ+,*keJ׋ԽF/:=٨ڷy<8ϮWȉǙNlɨt͇ͦsu͆ͧ/^Ία΢sKZGJGGIHHI’ĉgЋcҙSҹXχr?x]֏ٞ$ l FޚIߏ!,:NazYtB+,*-)+,++*-+*,*++,sp'|D#i۽%7ٮڰ۟dCddR8' (<]ޅ޳ 5[|Cd܌ آիWҿkQYR"ֶ׀Mؚ[YT?.8Z_G+++,*+,,*+*,+,*,++,)+++,++,*-++*+++,*+,+,+,+*,,*+*+,,*++,*+*,+-+*,*,,+++++*,++,,**++,,*+,*+,,+*,+*++,,+*-+F+++,*-*,++*,+++++,+,*,,*,+*,*+,+++*,+,*,++,+*+,*,*+,*+,+++,+++*+*-+*++,*+-*,*,,*+++,+-++++,+*+++*,,*,+8Oj #@\xi@ ;] 'SC7g R5E T x "!H!q!!!!!"0"N"l"""""#z#$$%]&'''!(/(*(( ((('(I(c(U(('K'&z&?&.&G&~&&'j'''!(*(''&:&%$$$$$(%%%,&j&&&&&&&&''8'W'v''''' ('(@(2('D'b&c%j$##""!###]$$$$%Y%%f&D'=(4) **+1+(++**y*h*n**<+,,`-.011T2~2j262111x1111262k2222 3#3=3Y3q333334]4 5.6163-$:+,*-*++-*+,++,),+,+++*+M1 !?!!~ KEK!p'6]V!A#$H$#!6,,+MR+,,)-*+,+++++*++++,++*,*,*-++,+++,++*+,++*+,)+,*+,*,++++,++*+++,+*,+,*,++Bm{y#?`'+++,*-**++-*,+,*+,*,**,pGHIGHIIGIHHIISņ[x"2|ksրצ 1Tұn0Ժ '2E[tՎծa`ڼy++++++p:G'o(ߜr/آ؁ك{L8ۦ֜ӗ!}̽̐sѨъ{{ѐѭ4^҈Ү 'Ƅ'"L>Wȁȱa 2Vyil1Jٛخ;ۡ-݆ݮݤi?+++'EK-**+,++*+++-+*,+*,++++,**,+*,+,+*,++*+,++*-+),++*+,,++,,+++*+*,+,**,++,**,+,+++++++,*-+++*,)++,*+++*,,*+,+**+,,),*,,+*+,+*+,++*+,++++*-*+,*++++,+++++7X{!@`}7U|Yw$CZm",& ![9J?6N(Jg| - K h !-!G!K!"! A I'5dA~ Q c!""f##)$K$L$:$$$###$5$v$$%w&k'S()) *.*-**)))))) *:*h**** +++I+c+~+++++,4,W,,.-.5/w0123454*4333o3g3v33333Q3210L0/// 0p00S11262[2F2110.-,f,),<,,--.j... //!/!/%/./;/Q/k////o.;*",*+++,++*++,*+,,,*+,++,+*+++++,+1q ^CD/r0E\y !$'*$-./$0/$/T.-,,,,,-|,9+(!++*T++,+++++++*,+ +*,++-*+,*,*++,+,*,+*+,++,+**+,K}ݙܑ/8i߈rp_++++,+,*-*+,,),++,,*,,++,*+!c7H-*,7Sذ^bNĆIT]mO}%0*#X Z7heش7 P:ܗIޑޮފr{:Q;myW#F:o֍IӰHԺw!֭q׷׉ؾm]MFIm'!66$&'"'%5ߵ"/ށmy.5"Faf^`hotMVe:ݿH޻߻WNHA;")/5=DKSZ. vP4rlc\VOIB t܂:W}vk5a#$%''9&CR    & ~wpic] m  ! !!!!k"P#,$$%O&d&%$"j!o!z!~!%   K Z U Q G A ; w""""""""""$#v$%a'(*Q,-....,j*'b%;#+#2#8#A#H#N#T#\#d#h#q#y#, %  jIid $#$,$1$8$@$G$N$U$\$c$h$o$$&' (()r*.++@+)'$$$$ %%%%$%+%y q k f } V|<9qX ,&N&r&&&&'*'Q'y'(*,o.f0e2l4r6l89:8%6(2r-)*Z**+++],,,)-N-f-}-"3N W G w 3NgkQ}/)/....#/h///90n00002\34.67>9:O<=>->>>======>>@PBCwEFiHI=KLNO6P:O%LG@A-AXAqE=GbH@IIIII"t" OY\znYF a o I hm  #g,n,,,-1/02- J@+ M-LYBBE%G.!>71("........../ /// /(/./5/@BxDF5GGGHHF @^7////////V26:I>AGCA<$5//////////)a////////////////////2?5P8:<%>>`??@@uABjDxFH KDMIO QRgREOsGf:///VUUs,01z1`2=4+7:=V>_;U5//////VН[Cssqsrsak̴ΛF7>'˚˄̽TWUUUVTVTUVUUUTWUS+7/4gc js?l]*<Q\c_TB, y;d2? @AABCD?FG JHLNPPNGb>3///////////CqsqŦ'8AT,]8Ű񹲺ﺔǹ͸? ]IѱխVr߰mFc涅/&Ͱ ¯ųź`KȫɌ4ʞX?D 3F; ѿ -N1Ǯun(qƶڶ~{ %Mx;[w 'ZmM 02R!Ta?}EwB ~c"'x7A  Y.Pw M4"etUK7YhNDB P7  UUUJЏΘ̸0-d}d >///////////////////UUUUUVUV) ^D< H q I  853212v2'334e55553I1////////////////////////////////////////////1aHc%/////////////////////+73e ,Lh0Mf22223!3>3Z3u333333H3V H$U܇ܴܖM݇QK߻Igpoe^]euC*s&ke8ccfTQ)\ZC&T > S } asI`{  1 6'{p % y*1xpGGT?{At@Ef>O_&ZRoP'Hz}! rIʌʣ-ˀJp4FSbr,U"%jJ_?35) -Lr5U&`~qY@^Tw'YFVTUUDH:U2#@Zm(Hj  3pq3 TUUWTUWUUUVUTWUUUTV4Uf///////////////////////////////////////////p024V43210///// 000///~ڇݖ܋ےܙ1* 7ilbT.Kk)8 Jt` fH\W|T!AJLIK!X^&e? ;K:eVh+Vo.PIA^r0y3>|%9y   J  U  & 3\KTyml3GHJ Bz; d#5Ke ;XJ/& D Z Z < G J Q i3$KJ.6;D#M$A6ʤș'h-Wr9////////S ?  ^  A  s L ,e)( Wv*////////////////////////////////////////////////////^ha|////////////////////// %: M8ZCcF2M2b22223-3T3q33333344#04Qnވޡ޼ޮrߌߨߴrߣ4ݦݑݟCށ޹z]p{[ .;40([ SBXBY{_xJ *G^}zf6$' ^   :P/}GaB| +bzywtVKiz oHJoo|dyvʱC8+cT˯O̠/b͇͢ͳ#==>=? ܓq&|"reޟ3Ic}ߠ߿%Cezٜܠ.LGm/# DwO5XE!Hz0]rrhZXfOY,S _!>Rdv{h v+YO7?!I;    %l:m>g8ezT{0 \ M ]sXYI&;C;EwJy*!W *Llf Kww|}z~}|}~~~/////mn////////////////////////////////023O4z4-432M211111,2~223G3q3333333414Q4q445J6P8;>@fC&E#FcFFkEDCRCBB CBoB8Ai?M=0;l918778y7r4///\[[\YZ[XXYYYWXYWXXWWWWWWVVUUWUUUTUUUTj )$ T4+ROPPPQOPOOONPLNOOMNML.....KMLJJKLKKJJI......................2//!/8/T/m///////m/Z/S/V/c/{/////0(0;0O0_0o000008yv6VhnrvLGXޘh|iOZ})3+3-9iizY& #rv f70-3@t#]s &͢q+ Ή3SS)h*^xiw_NGRe+Qvl@k|-?"(| ?8&" q1X   ^l5 FgAJx ^2Obv%Gf/gggх)hjhg..........! !   " "!!""!#"!$#"#$"%$$#$)!B6ieW>9)((*)**)*+*)++,+,,,+,+.,.,}.~.|.}.~.{.}.|.|./.;<>>>?=Aܠެs 3w@MNNMONPPPRPRRSRUUUUVWVWWWXB6^*h}B5+A H"t]T+WqugM8.7P ]7) 7Lg~ #?Zuf )W{ zbVgJ\W >3N<a aJ0 i  R I . ~ E t . >[!^ X N E 0 _ &  {G3lav?A{%#.=Vr/Md=Y!u hhѽѿѾѾѾѾѾѿѿѿѿnnmnmoopnpnqpopporpqpqsqrrrqrtsssstttustvutuvuvuvvvxvwxvxxxwyxzxyyzyzzzyz{z{{{{|||}{|}}~}}}}~~~у%.#.$.".#.$.".".".".!.$.!."."./1}2E3r3*321V100000-1y11 2>2g22222223.3L3n3333[457K:R=>@ByDqEE^EDC"CB:B'BEBBBBnB#A9?<:8G61...ljjkjhlihjiiihghihigfifhefffegefddfddddedbdccbdcaa,cFL~)F]]`\^^]]]]\]][\\\\[[Z\........ZX[XYX............. .*.I.k..........W/0 10/W/u//////0,0E0[0t0000001!181R1j11111112-2JOi8Yz` DooEi=Y*D+=jO1v{ ''bh&I^-kR7 +Ob[?h^!2i%ce ~W.Ujz K  5  / X > _.ͩ*,+,+(*())'--/..-/.(''qAЩ001202113α̃ʿȚ,ǺNjvTˋ%Oy'Cb}ge#lnwP9Th2u*^R1&C8"p J3-b  a#?B>3/1=S2s   XVWܿT0ůǣd\ʗʸʌA[[[Z^[]\\]^                            ---------------------------------------------------------  ! !3eߑlr7-T@b~:qIF()'(`u`.Sd%HU~pdBiz\Mc~ e)0r$}G+wF0gO@}3~y} &@b;qp4{|r<^73~ >{ ~ /  H T 4 % Z N / P  y !),G;igJ>F^%G7 rcl%[4Mg>]!"D$%&*'_'M'% c t@XҰүүZZZ[Y]Z\\]\\\\\^[^]\]^_^]_ҴҴҴ_a``_a`b`abbac"3SccddddcdffeceҺҽһҺҼҽһҼҾһҽҾҼҽҾҽҾҿhijijjkjjlkkilklmlllmmnlmnnonloonoopppqppprqprpqqsqtqsrst7-7-7-:-/!246K8&9a9#987M766666:777'76T4b2u0.-H-O--~.Q/00>11111W1g0.0-/-.-.-/-/---/-----.-.-.-,---------+-+---,-,-+-+-+-+-*-*-*-*-*-*-)-(-(-*-)-(-(-)-'-(-'-(-'-&-'-&-(-'-&-%-'-%-'-$-%-z{yGlxywywxwwwwvvwvwtwutuuvrusturtsssrssrrrqqrqprqoqqnqoopno-------------------------kjjji-----------ghgheffhefdfdfeeddv:Sk+*rE'8$#|.evNmr_ߌPuTff]]k@`S;tTJ8SoUqGc68z.%f!K soM3e[D.9>j|a+(:! H |+Ga{  * v{ hrFl AWijxXxxeP<5=Srǝ%Jrȓȳ$Uqw.iyissE=dl]J}CjQH(7+*+)***,)*(*)()))&*'')&('(%%&&'$%%%bCU)_.$>qD/K4  .N[YTLOVf/- GIrТș¾4}:}ȆϾKLJJKLLMLKL,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"l}uD E$QAVgz2KezUSn3AIIJ}vbDn}|tv:{|#+s5Zkov7h{o *Gk Q ;7*Kbww{g{:=k?Yl(9vOShtT'9 B#zG .WVfk_=-7U}Hs!?]y#Ee4 k"$%&''"<IJӟӡӟLKKKLKMLLLLMMMMNNOONMNPOPONOQPPӧӥRRQQQRRQTSRTRTSTRUUSTUUTUUVVWTWVWXWUXWӯӭӬӯӭӯӮӯӮӰӯӯӰӯӰӰӰӰӰ[[[[]\Z^]^]\]_^^^_]_`^_```_a_`aaaaacabbcbcbcbcbedcedceeefdE,F,E,D,E,C,E,D,.g0357p9Q::N:9 9h877777J8889m827j5\3^1/....X/3011-2{22222242O1/-<,:,;,;,;,<,9,:,:,:,:,9,9,8,9,:,9,7,8,9,7,7,9,7,7,6,7,7,7,6,5,5,6,5,6,4,4,6,5,3,5,3,@7 mO8W!Jy]~}~~}|}|}|}z~z}{z{|z{{{x{zy#,%,#,#,",$,#,",#,$,!,",",#,!, ,!,!,",!, ,, , ,, , ,,,0,A,N,_,p,,,,,,-6-T-s----5Pk)E\ggYC( "=b %;P`0UۚݭE>XH.` ^\VPg5I4)mpZdt(`a! G1s 4\t;x:w{bPo2TU(kmM7=uillTemT ) } ;  3 $ KZgR0"ry e{OOONNPPNONPNOPOOONPON|F*QNOPONPONPOO^i9b8A ~Nuvl]PPYr /Wz.Kkl eR6 *DъPOOPNP+0POOOOOOPNOPNONOQONOPNPNOOPOOPMOOOPONNOOPOOP3R :],,,:-y-R !4Le $>Ys1Jg6O|6 }T]{ OPNmnlnnnooPNPNOPNrsrttstsutvuvvwwxywxzxy|zzz{|}}}~|~~~ԀԀԀԂԀԁԂԃ԰H0 ?F,w;*KLr]b|T *  +Pw8Oh1Ke;Wqmnop#Cd"2?.***OPOBOPNNPPOPOOOPOOPPMOQONPPNPOON***~*~**~*~*}*|*}*}*{*}*z*{*{*{*z*z*y*x*z*w*y*ONPPNOPONPMOs*t*q*PONQOONOOOPNPNPONOONPNNPPNOOPNOPOOOOOONOOPOONNQNNRk |_%'#?\,1Z/c7m5h0 } N\t}\im8=t#DcRgwD J[[ԄԌ}cL=ԑP/T68c 'B^z6Vv^k+$SA+5IJ<1/8Qd_Q@E(Mm1,V#d) MOPNOPNPOOPONOPNOOOMOOPONPOOMQNOPPNOPOMOPNQONPPONPOMPNQNNPNPNPOJM,LN/Sr/Jd.G_{(E_x(@Ys|NOPONNOOQPPONPONOPOOONPOPNOOOONPOOOQOM[[[[[\]]^]]]_`^a`a`ֱ V0Wcy}5={&!uV)Wxn`bl0G!}:j2 s-t5TR<">a.j9\x+] DJzAuDv>4d~hP td 9bi%9]X*" ?k,.c g_wM DY ^ 'lybm/98c 6d/b@'^l? ,S'U} c.V %4?JXhy4kHQNֱ  װv K < T T   a  O = 7 d0 BY\YPQXhc(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((NPOFPONOQONPNPOPONPOMQONNOPOOONPNOOQOOOPNNQNOPONPOPOONPOPONPNOQONOOOOPNPO((((((((((((((((((((((((((((((((((((((((((((((()2)J)a)y))) ;Qi+Haz *V16{\<]c]WyQGM /2$=un"'1ZfNX4CZR$8b >`u3jE{Bs3d)[$*2|t.EYlK~qst3iZJ~|OS)]tm;QXҔ'oө(5Թ4Lf~Ֆխ'AXsּPONPOONPPNOOPOOPNPMOPPPNNPNPNOPPOONNPONPNPNPOPNOOOOOQNOOT@7NQOMPPNPNxipaZQ~u%hwD\DQx83DT49KLOPXsn&583.).8Ha{5Sk%W!OONQNONOOOPOPPNPOOONOOOOPNOONNOOPOOOOPNQNPOMO1ذ' Z!'zI &pc@%ққҩҺYr8p''''''''''''''''''''''''''''''''''''''''''''''6kkkmjnknm,c,fJ6R$srtutuuvuvwuwwxwwxxzzw{{zz{{{|}||}}}}~~~TeP9l<5P5:(aOU8dr_pR\1k92R27}Bh<lI)r#N . G X f v  Q  P  ; a j P  y 6   $ [ ^ 4<5Pm5.}%z;`x ,Db|  6Oe~ %=WpY1-4PCf{|zxy&V-U[<n\dy ذQ$&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(E+R-./v0v00/.^.-----2.}...A+&&&OONMNOPONPNPOOONONOPNOOPNPNOPOP&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&NOOPNNPNQO&&&&&&&&&&&&&QOOONPNPPNPONOOPMPOOOOONQNONQONPMat+AZp,D\uHmzS ?b|$Q.$)1q#h=H4-p %,./573$UWc-ym! "Gu4v'] DUEIG?4Z|)=UmVopf`exC_~ZEnE2v9Nyh{(nxoKaG`mvcAZsՌxվ2Jbw֐֨\ٽپٿٿپOPOPMPPNPONQMOPOPNPNOOBONOPONPONPNOOOOOPNNQMQMzUly'!f~vov$Eh.KOOPNPNPONPOOONPNPNONO",! .Mo{C1OoyDx~ae,j#ATl}$?[{y0E)<I%;A=3-,.7Nd4Nd|'l$OOP +(*ڲ5V UeQjG&2Idz '1ok]n!&["ZqD2Yf`ZInVDUm5]2mT&[9bFuw7+K}1J (32y#_"bMV1i:[XL'n0$ ^ w z u t y  b 1 u # \ B '#A|c3w!)lI1J5B_ry )D^w&<Ti !6QhS ڿھڿڲڲm V wucu&l > ^ { 4 g<c u4Wy!%%%%%$%$%$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$NOOw=4n!ONPNOONPOOOPNOONPOOPNOPMPOOOONQMONOPOOPONOONOONOPONOQNNPNOQOPNONOPOONPONOPONOPOM$$$$$$$$$$$$$$$$$$$$$$$$%%&%9%J%_%r%%%%%%%%%&"&3&E&Z&h&}&&&&&&&&'#'3'6'.''&&&&p&{Yxݗݵ ;3yea7_ Me0ER[ds^ S+6AQg#RXj:V,5Bkn_alfMct /PwA7bwMs1Y1l <k"SFx=> HLIb}3uGΎ8.St@4j}|j[MMWm26Sa]MUo#b?a~UNPNNQNONOPMQNPNNPNOONOPNOPONPOONOOPOPNOONPNPNPOONPNOOPMPOQMQNOOPONOOOOOPNONOOOOPNOPNOOOOONPNPOOONPONOOOPNOOQOONOPNOOOPOOOPNPONPOPOOOOPOONPNOOONOPOONOOPONONPNPNPOPMPONPONOONOPOؚ[z ˉ͖ϵѤ5O0Nc Բ԰ClՕճ֏Yׂًܲ  ܱ##################################################################,}}}|}~p `9\3<*Omxh.F`z2.]1j\!zy+BVAtJ'_)ENC/MQDe_x[Z/? W" 8Sdi`O@30=UwN*KfJg+fBrt 9VrҍҦҍjZ_ xJPovk]OMScAhpw;d ,i*Hau1NOPOONOPPNNPOOOMO=Xqeo@m -ATi4Oi&?Vp7PS& $% :OOOMZ=]4Nh-?Uh{*CUk~ #>U(QNPNOOPOPOPcPPPOP:ذcוy   !###('()+,-//20346798<==>@@DBDީ-I1t`kwW9  3Jcw#6`>&p1 NGod&_w H&3/ (A[o"2CTbs!/@P`on(Da ^ nb#>*Q%] Hs=iCl!Ky*U'S}'R}+V@#b_!+5?Tp2m L   : j  L o y ` - C  M D $ Z l ? /f,^~^Po;G 5 Q s  E q ) T | " J u  D n E}E9AKC&7Z8K .5698:;><@@ACCFFGHJLKNOOPRSUUWXZZZ^_^b`cddggj}||~|}}{|}{}{|{}z|z}z{|{y}zy{z{z{x|xzy{x{yxyyyxyxyxwyxxywxwyxuxwwvxwvvvwwuwwtwuuvvvutuuuttutuustvs "m l"*$%3'<(( ))(Y(''5' '''='u'''&(W((((((()).)F)])y)));)('H&$#"!!r!!""9##1$$$$$$$$$$$$$%.%P%l%%%%%%%j%$O#! n]QL2Or,4w{Z:  )@Yq%4CUds$6FX  2 C R d u !-?PeveGY`_5Xu?i=fK6 3CVf{"5FYk} ->SbxF^ZL%"9A$Jx9\~8H@iA>["r6f & D g  + Q {  A i y g 2>N`,?(8L]q ?mc_ߎ.f,ۅ ܫKg Vp{viX<-"#.:K]l}#-7DMYdox%/8EMXdoy.)&(&('&''&'&&%&'$&&%&$'%$%%%%$%#%#%$#$$$"#$##$#####"""#!"#"!"!!# "!!!""?frG#A{aB2?0 CO  #:Ul +=L\n}$4FTg5X}*Nq2i4}4d!?d-V$Ls;d(H_ibS>.!&3NxK}$Ee$Gl"Ei;B6h7*Q^ %:w"!"Ol| 5Z&Lp?_ *No?c:Y'lg!5IeL  c   + 8 C K ( d 0?@@BDEDHFIKQQSSWVVZYZ\]]`_bbdcErDI86d.F[j|.DXp~E GU?bL 4Kbz 2$=O*c!&lfogMl7?2+,3R}"S;x*5AN^n"2BO^ny )4FSdr 0=;<=<;>><>===?>==>=@?=>@??@>@>?@?@@>@@AA@@@@@BAABAAABABAABD@BDa&UU+;] %2<IUcr%6GWew!2AQ`n!1?P_o}'5ETdv#1@@#d[eM]#t9!sPPO yI_Jd}+V/DS`it{%0:FP\es{$/:EQ^r*@Yq(@Ul &=Tm6oOy(>Wt <Vq4Ni5Qh 9Pj1Jt7x   ! 0 > L Y j x  0 t A 5 9_opdS@5-.:J`w+<N]n2@Sfv}qK WtSOaJr%8K\k~_' Y ~~~~}}}}}~}}|}~|~}|{}~|{|}||{{{}z{}{zz{z{|zz{zyyz{x{yxzzywzxyywxxxy9:<<=>@@Awwvvwwuwwvwtwvuwsqtsrsqsqsrqr}}{zzxxwvtssroqnmmkkiiifdfd"aoNF:] $/7DP?=;#-7BLVaju "+6@HT^iq}khq3<}J8Eh >n!4E[o0H^u5b'uAp#;Uq.Gav9Qj$r #1;ITap{'2@KXeo{+4AMZdPu[ql1H +|,;LX )2=ER]fs}hkKfAO(Jn~}yvvz(7AN[ht %3?LYgr .;KVcr|D_^4f+Hc)C^x )1 K W e q   ' 3 B N [ h w v G  p k r & = Q [ g o t z ~    ) 5 ? K T _ i v   A C  5 _ z Z32556789::<|~{|yyxxvwutsrrpqmnmkkjjiffgddeaNWk7'CrMJJo   '.5<AJOW^eksx(:NO( R> (.8AIRbH),[!/==<<>====>=>?=?=>?>?????>?@>?A??A@@@?B@@AA@A@AAAABACBAACACCABCADCBDBCDECCCDDDDCECFDEDDFCFFEDEINW`fmw~ ")/8>HOV^fns}EKJLJLLJMJMKKMKLLMLKMMMLNLNLMMONMOLONNMN^7^S  DJMUZceorzW'c{tquzR4^]^^a_ad}~}~}~~~}}}~|~}|}|}}||||}{||{}{{{}{{{|y{{z|yzzzzzyz{yxyy{xzwyyxyxxwxzeBVXD, { :HQZbhqw +3:DMV`   ' , 7 ? F P X ] h o x } i ? 4 n  " Q |   ' 1 : @ I O U ] c i p v | u   $(.3:=DGOSW_chmtx} fXI D { `>% 1I]x".8CKYfy4Si|&,38?D= XquVUj6e*:HVanz  +6CNYeq{ #-9ENY\M!*<w Gq!09=;851026;@LS[hnz$)16>ELQW_fnqz  ',5:@GMTZbhnu|h[]p%<@EJNSX]bgkouxxD~S]F  !!#"$%%&'''(+*,+,-++,+-++,**+++),)*)+)+))*))*()))(*(')()()'')'(''(''''&&'&(%&'&%%%&%&$&%%&$$%$&$#%$%##%#"%"$#####!#"#"#-?IG2^}}oZF4(#(3>ELT\_fgilqqtyy #.3>FMU]fmt~Dyc "$',-038:;ACFKKPTUZ]`bfklqtuz~4GQZ^\ZVRNNLNQU[`gkqx{ #&)-159<>DFLNPVX^`chkprwzP|jVadbdefggg>=<;;;99 <?EFKPS[u#w dsbYSVZen}      ! $ +  Ow g'6KQK>,  ,9EMY_gotx2FZn ",2:AIPW]dlqx #,37@ENQ[_fos{  %.48AHNU\ahpu~t4Ew{7979898889:98:9:98;99;::;;9;;;;;;:;;=:<<:<<<<=<<=<<=>==>==>=?>>?@=?A?=@?@??A@@?@A?A@@A@B?C@AAACAACABCBBBCCADCBDBCBECCDDCDDECFDEDIHMQSTX[^_dghkpqsww}~qKKIJJLJJKLKJKLKKMKKLKLMKNKMLMLNLNMMOMMLO1=re0=i1CORPJA5-&!'*/47:=?@DEEGHKKNNPTSXW[\^`bcghhmlppsuwxz~~ '0;AKRX^aginq}EINNTXZ\`ceikpqtw{~ !&&+./377;?@CFHLMPTUY\]bcdjlmrswz{~|qcXNGBBCHOU]ciosxyy{}||~RK~~~~}}~}}|~}~|~}}|~|{~{}||}{{||{{{|z{|z{z{{zzz{zzxzy{zxy{yyxxyyyxxyywwzwvywxvuxuwvvvwvuuuuwuuuttvtturutssussus1Crynljow  &/49=AFEGIGKHKLKPQRUV\]^acdeegiijmlnmqqrstvuyyz{{}~{fVIB>AENUakszzZ09==@CC--/,--,--.,,,+-,-+++-+,+*,+*+,)+*,)**+*(*)**)))(*(*(()'()'()'(''((&')%'''&''%(%'$'%&&%%&$%&&#%&$$&#$$$#$$#$###$!  %'//000010221131424333535354636576566757866678688786879869789897978897:88879888889786663402//.//.0.0001/01///0../.-/,.--.-.+--+,+,,***,)*)*))')()&(''&'%&&&#%$%#####""!!!!  garden-1.0.9/data/wavs/rect2.wav0000644000175000017500000010256212457263300013341 00000000000000RIFFjWAVEfmt DXdataF&+2;AFNTY_eksu|}vjaVNGCLS`o}}f/~ ypla^TID<4-# |une^WO@8'#/$]1Qi"          !',(#4u W4tYF; UGw3!dsYB( mQ7x[A#rU8tQ0gK5,+6EMF(o0e#Y\T jN8 u \ ? &  | _ A #  v ] :  e K *  m K * z[:a2 FP=Dh9 = w\B"sU6gG' oR3iD~mW@Y?<d&rxxaK lWzdQ7 w>}hp:Y6ixҲЅ1hfP) . . . . . . .. ... . ...-----. . .3.@.K.G.6..--C-,,, --j.}/01{221F/+&d!2&}oeTOB6,oY8}dfO\(fm"$%%%]% %$##("V! !"#L&(g+,,J*$G^ ۚSڊGيKؓMش_׬TՕ|zՇՠէ՚Sӕ ^ͯeG͜υߐ>=p/p6^*f 1M4 j{j !'@155666655{554j44424{456b78:::\96@2,%VB@W( n$w1^t$ MM,d:g߁3ׯח{[.։E$փ5`1כւѸ́x87U7h H"W 0r Z ] E&3-1i3%322Q22111p1k1b1V19100//-,++*N+,.158996/*%plEb%ֲ.՗c҉kқԛ$nʮřE.Ѧ !\/l3,Fl;*0fM7K>m#ixs٬pn׼,ؽzLpJ\ځظ+BέQ)- :{\)e*/{/v//////0//./|.-,+]+Q++r-/269::81y'M .Z4}+$%"!!!!!!!!*"F"F""!! l ~#',"146654]4 569=AE HGC:,!rͮ,ƻ\+Usd Ľnڻzӷkܸʝԝq`OMt+x ۯ+Ùi8R׷oxN(ųؖ >'---f--|,+2+*****v+-//1/3l4W4N2-'#ah! 4y7}\YPN!!_"h$'+w046Y61' /αx5{,6].êEI|ݙ֋rXQ%hjџ˴N`| #:JRRSUVxX ZZZXTN1G<>5-'#X"|-`2 A d o(/ϱCSğ!ło26aĨDC dHyc "  ^D%08>@?=*<:99:<@EJ>NPOI>-5[Ĉ@Zk|"<σ̉zˆZִEQ L?i]qb -Lՠ OѼ1TZOm+N cf ΆKr­ק E c#8*l----'..-,*l(%" $,6BNXU_a5`^^]k^`beilnmiEaTC0; |`'փ+04ƹ[ýٲЭٯ(V?*9?o>3=W<5<=$?kBFkKORRNEQ7 $a L1Uǣĺ 0R&vxx@dEkou(/D2D10L00133J5{7Q9:095/& f cG~gNLζq 䭵;c}Dњ'<-+**+X.28->CuGGB-7$o q,0P+DŬ9]BнϦʝLjFzSV7+B#@D.MZ,N4JZa:a+aabdfmiklljdr\QAE8-%I"h"|"p"7"!!  >#',-27;,>=?=6+ު4ħiǫLzܺ(:ǫ(ݯQ:TibSR>{$'///0247%9G:9.71)N% %IK:j*gR! -z59S  )/3i;EA*DEGZJN.S8WYXSI9d% T?ԿnеQX  u1s?ؙ5y_׾-#R70P?FH KlN5RU-X{XUNC4"5x}^SC YO$&%"R {9$(-7 CMUZ\_b*e6fd`XMd>-)/@ݰӎ0)d5$C#M2*:O89;z=>o?Q> ;M5-"T pݸvЪ~Ե?'04:?D\H_HC8'ΥǧPig[B~ؼ^jH \ER !lZJ6Lt\d#f$h^jRlmTm*kfl_UJ[?4 -}(&B$!q! (1;FP-WRXNSH 9$ cO*ͻF)θ弘âNebm heuI͂ɀ͉@!+AERZ\_a{b~b`P\fUL@*50*{!)%7DPX^ZVU K2;r&b߈Ň«ĺvĊmD"0%Sn u|Y*<`GK)MZLGS>80V ]?Ha4lTn Wb+6B?)'l$8 @\ϵѷ Pҿ-9>DAJ@S:e.XtRa^7Y[N w4EMD UzMa׀ 2G|XaceecD_WMA4(Q2e '90[:DdKTN8KWA1B7!a1m%!w Gf;y.! },; IoQPG7T#O NM]>)#rݵ< 6A J8CA*3u55,4/I(L{{na%064>*j_> vQ̶aϑ|y`1E Q&SLDdi[5(ž}ןi R)b;KUVe[ZHVL=)T Ӳ,ɖɒwHU qM ˩sݥY̒uj*+ "& /9EPX]U^]Z4ULA4&*rCErQ7cu%,=EFGmF[A7*.-XkܿW Aaq l M*15i6J641,%_iA(ސ٫J'ǧOQ&H7?=7#,HS֪S:5ϐ |ӎvT& '3h 7h;F0EnU]^^ \VN-D7k+h V&.6F:r0vW ֈũ¬T'  BgYXoĝBB:+34c41+"pL dte# $c! u܃AFH̗@1!hv*ӟY)=K~NI CZ;3"+@$ 2|Jxx7wO|'4@IMMLOF;;* 85@¢Sׂ-R0T(MFs%~wT {I_:ڹy @vY&.9 EO`W6[ZXS LuA[4%P 'ʔfT|/|-,=EF%?7"1,B)()b(N$X"a:5( W \#/H9/}!sڌЙ+ݝ K  kc}g] R7JW\!Y'SJ?:4(L%L-4*;$><3$o<$wܷ#lfR c JΟ§ɯܑm*/}-)$" 88 U&92>HONH6^Bj=4h(NM2 gR'O-.+b' u^ֽ׾͵k"=hj #EQ#&k)U)Z$/#êǔapbϿeƝH"O (*%wh@Md  &{u RF e$)d&8% f]d9ؙ}OBl*YQ\~ -:EQMO8K|?.g2ܛ/F (vܗgi$7B4F*A8,|y5. ,$-n231,@&jk,ŁŽϔ=#)/37>GEaH}FL>\/YPKʒ\6#EQS\˯3y'(t#a HC "Y"-8AFDY;-k^ iBF+BqW͚pRO*;~0 P<+M S V#90=FjI@{4$3Aܶ'C: e''D*$R}xŻ|-אݜns\%l؀Bw>S Y8JzTV4PLH>4+$!y"&+&022.;&+(kٰ)6EFL ئOY ߛ#$'"l=H/%2(>EiIFA>_1 -ޔ8 j:]  ^jUǐՌ JX  4m#k#+5?F^JIB9-gjZڣЏ .W7#6+6 %=DZˑ<%(yE-.Y 1AJMQMB`7,!~szr"*/1~.%R$C޲ޛKGQB.9>;b3+?%|DS"۶mUc I*4:5??;1S"%2W5z+qeԁʓZn$-W,"(70+6^ 8\ۜ Ȧ n/Pjxlysld\pTO MNRUWV!RhI<'-GF9E -:r"=/>dNY\e\hc_[lWRH0;*B'x 8(4=EJKF <.LZ  > e1>DA.7'*8%a ,6 *5_>,E[HHE/Am9.A! U 1SBNcW_ccY\L58\׬կQaʨч]ĺɩ̩ X`24BlwcVx<Мů2IG_+U=c-Mϰ4?Eֶ߳ u  L(+*}"J"Sͪ(;$MY]W|H5 !2 )mJ p%)(# #v3w x (4;9}/k"4J !+ 38:O6x,t 9Jz tǵ¬'ؓkT7x#F ZKPG :g߀ϡ”ط2 |b$(#J4%݄ kڴީZ5|8T!t $,8FR'[] YTOER=e5U/',P,/13s43=1-f+,U2:CyH@,Ѵ[҃fN@rD7ߦ⋔=BLƙ)h_=Z=q|xfQ<)h8{۪0ϤR ,/)Ծ7+ wÎ˰}͢ɪ^ĴB 7Qw M+0,{"u"*,'| nC%2>mGiKJFAg<5J-" àL^W[XgKc4%t[7 -9״՜S*!F%HwݢȔ͢ҀKUd >+.8CIICo7,#YX8 E%e*.V1 2410/-'l UOaٻy  vx@ٯݍ.Ȱ2 ɝɽ˄Ӕ)DYhm%eSC4)#g-7q??5%XZP/ H  { "01?JQSOF=51@03:$B)H@KIB5$vmL:—ST:>b/O`ZջODy'9Ԣ-L  G $$ 0xi`3]F'ΏL'ߞ@D ag ~](#7VBGEX>5d-%s Z)_R ![#B 8y3cta}ԓ=i ])~,)p$#`'5.363+sIvy]S$AƳ x.1.%vpE(juwVyη2S @)'Y3;AKKWes}omW@*O d I}P'13.+; >UAγ]ӕذQ8v>&(/N44i22231e-&t}U* rX-%.J9ER`ltAwtpk}b{UAu( q(İ>M׆.%޾Ďɥ̙'͂U U,5e7/* >oȰpϤΧ\˔ӲVWh_csU*Rzv s|k؜(٢- $08?KFMTkYQ^xaa]OUIC>4,)(+0&7>aHnVes~'vj]fP/D:E2D+ B'Em}rpW97wẻհ"Lg{'128<>KBC?8/)x'(+-~/.*!R=X뽳lY ٬ L_ԣͧnʋq۠  i#"$7$ pc,i!#!PK `"$"": @Ջطf|J1# ڏ PA؉΋%;3DdJIB7L-%s"$+5;^;3I$MًTsLx9|+Rѻ,qq3+.$%E & "bDn ߗ,?&>UgqqgWxI@>@yHDU&et~\|klR6n"|F 7 "kZ9BJLG@8/d&a%LP Y0cȵ󰿺2ΣQnn, u4*ü/ڣ~ Na 3FIRZ[GY|X[Y:[N\YY(Q CE/0\՗t r%xu0 2 &!()$oS ®YT\J[ߒz^f꜄GUˢ{$?mS\[\-^`Jaa ^VK>s1+)f#^ i%,04}:E>>:I4^*_ ^6q!#WYLµxVѤuy%F*! *)!-7Z>AQDGJEM1OQTVTwOMD'2*GR Ο>ݶ½x۰h(S arTA·hnP@ʱT ),ET[iqy`~Q{#qnboO&9[!E R zF/7Qa A<k (s>SbiqgVal[dVRQQShROH9>2'!Y 6с4Qħ^mEz&0!&*19@ FIJF =-<n>b =>  =KJ/ob, >AIsMlMXH>3'h ynݼFdcfhܲz:z} h.!>PWYYtVNB{0 轩0ۑ{P]'Ep®S# &0.u.'} \ c Qٮd 6s('6ALJOU[_Ta|ba^VW NC;668:P?,@;3' g )70G8VHbhhaT@:&VhĜyȓӵ/IFLO RR6PG: ,k nܾ|څ֧ތb-2(R<MWB[VYRI??2$-,Ҳ[HG,;!d+z,0'~=sDVINٯ~ܻe]qޜHпTKz)+9DHU_+b^WNBp5& "swԏШrɬ4ˈY9v C l@5ͱ4W? (WC^Vqaj}p)sMq#jT^M8 .Rll"/40'@ {,e:EoLPfRRP_MHA39q.!B ُڌpو~βȪ<ɅDy,D8\WHKRH>/҃lĭŸ\ͽn_)\ x& { u;%(3*f)n%9Yo5D%RL"R<P$\__XI0YbܦtKÞ6߾ gUX#Om+ 0ӺӎjR8N_Oge^*YUTSM6D]7F)7%+A024-8}< @G@9,x=o$bJ wJ̿0#V8O2\a\SR#Ge;y/#T   *#.V;HT%\I[O:;# ;ˀ΍ՓMٽn%;M$81-%=['1:@A=D7._#&m%2B8j3F%b QvRǑE{Yߘ+2D.iZЌdEK-@)OVWV4SQME=w6-/%N1 J T3ڦn+pt 8-?,? Q*]3c@ed`VE/[[[ήWˑ. N01<@n;.e", Qctڥrĺ7/kӦ20z1Gv^q}}pq_H(.;Tѱg8EF˾6  rsvݕbƨ.oq0d MUSEB'oӳA$0K651.,+,19uClLXQ TSQMG'?3%J7iңC"˄X0@IJE!:)Y mcfpކC0 )16:<90&$ {c]tyհVV@9{*:4L774-)8)WSǦͨ/vuI#)'e+ mci3>%:JPW ^e__r[:R9DL3}# $?+08@F?F< +C؝zkMH!# S(A˪;#OCI,u=AK:. 7Zex޲۬i"1;@2<,InZ5jN r̈́?$L'\AS\[BWM?0.q \eBݠDTwq2) 2DqRXS2G20Zὲ}FM^-U / n7 ?أ:Xn˒]Nh6  u"0>JnTYZrYVQ&JE?;1e JM۟ӥ?=ϖn!.6i7.4p,^ lCv[g"&  lN$u-4!:>@=5) O{]pF&'T4 oG TC*ԼM~ACwtoV )<1=47T8Z6."eA 0w+1M.!, P󴄴$`bWe8-T7:6,n"~#!-%[&%  *6gԩƮ־Ţӧe(08EAIOQL(@A,hֿ̳ʾ ٭k:V߃M}  X`/  Ly'164FT ^`ZQ&F[:.-#Py ݦf,m \.<>FG-C8W(%j&ռ[]S}z$,+$p ]i'fA+Ysk,uuqfVD3%K-Z#)c0=7a:D5'ܠn"ĽP6(6s'd̬ݙ "67DHPHlAH4$B/_׾d*:sI'SUwMK=)+íʅ=*%188/ u A\A΍d;򠙯5Ǭ3_CPVnUK:!'m~E̟˞m 5(w.)*s-5/ÛJ%% @8ݵD 8*@#2=@=6<+`Oxy]чèu˺6I]: }Z A!B-"mŗuɗкۛ3Vt]l(-|+ &Id z Ah VCydY61#\%!EyN+   v"kb. ,̑Z#&U+/2>2_+N ;iӮJ^G7YP g ;~a's 4-Z ;0o ,_WvL "m>DrxCX VM&/9IA:GJ!JE<0W ӵ3 §̚݌Vs'.)Zx>6 bǾad/La *03.L%B (0s m BR]S ZQH-#*&%_  3Bɒ(A  ) !*5D@HLKE</& #C:ΖQ:- $ 2=Y_յΆn0)#L" 3?&Cg=W/:_;gk0 A  q;݁(Fn" i x`|FeΧ&A +"#q)1v9E?SB+B='5v) AX٫y۵P$2Q95(w.ƴ'^ޗ3\'^N l$(~$(q fu",{ _IӸK=T>E kۼ1Ȏxydz0g / $*/4(;@C?B;1r$A1ߜ&Џ͍O6e.ٖDή QEOZx"9>Gee@  /9 ??9p. U$$e6I.?!cGš̼" (18l>y@f=4&| :?*ڕXٚ  :#ӨǁQ,Ȝ͏&w="٭R{sP~x#T.33-z ?rfo k83܇r h EjH"O)>-:-(z N Ub?׊B|52"%Q( (# B4ָϸ'^BzۼHvr[ n' ~ *V/0w,!Sz}x){6߲Q'l00)O0 9|cZr1 {Q/;AS>5f*H \ _#&&!1OXaפ߇%E u+6:6#-"<z"&0eu2'/63P0'  :Z8&n I'TJ &F44~1 *Q#*,70.( ,&  Z7 fI!Z\î]{/ O'h,( D ,h8ȶj~? C=(2p9~7u1#' o%#֋ٖ A5bӰ0F^kn\! $?&'O\`Ix)/1X.:%sjinwN C!"e18:_#o>I! Rh76z1[(.,&!SOҨΔRyw>{ *4O7S3D)|/, f2'  ^4mtOz k? GFA^=$}q(m$Pl d - GXMr,  ҜиڛMK X").0U.o& fx-J" ^ ngWz\E+z ? .<q?!L" LeoFo gYF JX'R#(5U7. r ,e0 <\M, Ԅ:ق` (QO"$"2@0߇*Y 1% +#e2&W,c,&t@ \m ">_\ZK]|A 4 #qݦޥSCrub2- IC Uio 2U !"GppE+Y9#Y M$+lBM=4/$rCAltB!).w.+'$Y"n f-!"kڞП#>r Z1@Hۊ)?#:* /1017,"@pq   t6۹9$=l9w\(@| ~  j-t5>X{ q0~KA~g%R>""?.qx 03^,z/ {G 1]ܢ&υԻ7]9!! aW F! mu޴U\e)R#+"&]A $hX"y##"~Fq<Y HZ@RbSvV h8+hsCw O*9R6 1 D&sT$3 "$"6" 0ggWpS;!ڻ֋K#6 J v!#a"}hV0T  zs!ޜt#"Ot1e Z%!X"u"d!^Y ~Q~t  wOm & /(=L/wh0LnGz596a " [ MaWHZ g!m#N  AT=bm'Fk  ; 9иu|Z , %{X; 1R&au hnއ $ %f#hD%a*,,)") n- f`Lb/eod! > WS^vf~ Y&EoLF+ O 7y S]U9Fn%t*BH. UE"&W'$"  3'<;^ uc{ >!k߰]:>!#+$!4_^y6 ;y8q;_c  3 xK# P/{ /nh0cxmX _ 0(z{=d|M[^|Y] KJ-u4'|5e R $ #xsq]y !& q7_   J G[ygiujzA5y S-W #b$ A4hw ^aKwh <+pu+ݜFbs m%M,( W>/ ]vcg*c4q )ur: X3$# 2"^=|>2Q=   OQ^hH&$abp(R  z m .dsw B :O?  Bghf` "~!v =hl316cg d;@ߍs |" >?(0 "^E u+ 6k)=mh d?,|V$?xu  ?BS@B}k Iq}A  + ~vv> f[prsP~O6,j| &b ` 'N] - I(JSnav]"<Uos q&\MUp I  C84 ^| N )^9KD&KS~AM V2 {8Jr0 I 0 {0671F tzaJ mxJ H YoXV G %v 6QGcbY2<*D42x [> xTYlVx"U,3vVx= ^&X TxIE_@ K,p>ZStw w H a ld `7\ W jHS>6 $Q-     1/;fTZK}[E+Hx9 zaMz. o.%pdEj?T"`dZ( , Z0ZECW 6(x &j r d|[xWx  B"],+N $ ( 70y! g'2 Z;zWxl =X19}8{7*N  i89hPAnz;OZ* | : Mv]G04"8wpJ> A  !{$$RJqfEWA & vip - f >w';Efc{ ,C~  P ]# &*  C{.w^k Tv/s V(Z@ I<8y.upN'!%emF  "X_ DJ q( * " p9 X#<g$YN 8 FC;Q m P Gr  UB,]  Y )hvC F .K: _ ru  DK^ G!_ 6?_Y UvOt_gLHH .U) y %h0OW@k\=$yJSS bY'V7PJKG K$zHBk , * $-=G3OG%f. CBsLK r  ]sT( .+a5CA0D y(o + ^ 06 bYVR:TeAztrn I k p o@lil5o= kc AG'W5 mP2FW~Ta@T3 a_=[Vw*I*esT_V7 M  8 x kw)2GcD^tIW/ ` v j+:KJx!%11 :}dLjR ) 7b $  !Y(I" ?."2Y! Uv + 1 nSVM= t N/RSFd-Gpuu;*qH( m  ]-B"D-SM {xJ2  v  p m5, t /83^WVV &Pz1 # Je{0_}I?Qd I |"V#yn#R<>?nf &  Ae,PNTx#j|pHaRj  ` =JcPPiB@ ,C + ~&LV<("0@ Vs| yciAQ5\e},y _ o \ +Mugy)9M32 KDz TS_Opf2Q6HUL9Gik=*5k{2;-'a_?tjH,y- 5 ;6[&I!& ZM6g8=fntExfTDd)!w(]xB&mv:O~=uF%GU1ibw2%UFe)sq:Avt+LTXJ .+*4-h! {^L MVE=4}fgAv|yQXcc9'D)J$ \tDm /$tuy]kP Ca@\ZN@? /Dds _c6&z`a}\$vJo.qBxT>.dJ.b}N' ^;mlOg\w0_(:[^t?wAZM6y8yyE#%"\;}(fCN  4[L9Gkee7{g<SSr=78# (f0 ]u{M~J\O$a6up6u+$"8" eKWSAT{)gRx SW G"=96YjN.jg:Fo)N2D{qP=9- !"'Md7-cP.,NJJBR>zp(JpW-g?Y-Nvor1oY\. ?SQg) 4smhTAwC93\mGi$fbCR-MBvOn>2! O([!~(:/tv$-i1<zC5BBD5^eRRRYFyw V!U6;G\hNPngNZRJjRn!,4%1-s-]4b37l06zHl|"`6Ag3';>JWp!QdepX ~i{g&5Jw1^~S&v<,Uu FT$Kd1!<;. #-+Hg|yhR4  #-(% *,-   garden-1.0.9/data/wavs/mgun.wav0000644000175000017500000003631012457263300013265 00000000000000RIFF<WAVEfmt DXdata<*B?1xF,N?^ ~Y1@H,x3{LU] N73 w < )e P  APAG]1(i|vtF'>k r N X`y ] :r}~SChMTLW&wH A=JH;?  KsAz!!n ^%^(rw( f>3\ 9!b,g64<>>93-(&A*yp0۹Fv1G߼ګ7q,[.sN|a 1'ID $ k,oI6{  *QRIE-[1%~!:..^ {>v' l n2 " `_9a8Z{,Xyun B$,2783+H"Eik 9Քڂvj`8Y{(c&  & | X   q  in",%SSn&D[pi8| @  !zi F|h >S~M # | VN FeK8T'o } #@-&5;=9\1'  _ԇndۆާeW4,U}Pv ~  9 {) +  ( k|- N xGAAw}^*6w3_ " + 9vV  k <  n 4:H?cf P0A =nEq $ SO@> h p &'!'+,(!<~4 !g~+]:޿Rg;;SIW' c v Z  J\Xrb_g e'+a*Uw b*89}O   A~ YBn   <N" l0S fFn)\.{F]m q  O /! d dB#ߤ7A;]g.t  / W Op N& M;:- y zi;e P W KJg& 3J&Z,_G ~ Z/[rx  f mD 3 g]2 }bXc dk-} f0 7B h3 dX - h R|+i4, 7 J/ h#*TU0#1. 7 _  b=V\rt4 CE/Ty &|Dp9n@Z)D b B " 13gcqK [8[bPV =C\h/GWHbDdA/L[  >~vw r 2 :qUo`Z  Q 9 5 T"+gf kzJ cp YMS4 }{F$$(5`= G_ S>.Rf 8  >w  Xr.$g W =^Zt LZRd "a(f''Dk  R V5_4 5^R H JY!h/0R $ g { .0A9q]x3 <= cG |IF  " E>1W`Q bJ.A x E;8p$.pPC"] j ]pXZ R ]z J:L??nn\"@m6mj` +('q2|  0:U K:j o&;i)< } ~A ntDdD&?k_hd  ~&{`-Pvm9F @ w \ 8<>    0 t2)`n>n8 1 _  j N ^ ) !YZ"IvX6vH_h+ ';c` P 4 r  V Ee7" m14fhtam7v V1Q<U%FlNb)/YO7aLTQ h 0 "n^ )xGS>jT BZ8 3#Nxk )!$c'((f(+'$!V cΉ ѲQdu1ڇ/Lz <& %(+G1/153@+$u?I | /6YxqW`5V=I=&I. heFb : o1kR 'Q=YJMB.e4f2Xk V m H  5EWRkZW[)?LXhH_  Otmz 6[fZW|_R 4/t 82  % "$[\:E O~.]/$p < #J(V ,Wi MM^$  J + l  FFI]Q_g="-Z4|%R^x]S ]/'+=[T] pVAo = * ;d #8RYI,D0 S_jCy!z8 J m 0BQ\9Rl/d JR9'&aSܠ FMkm{Q k  t!!$%&& &$" >!  lWAS&U3e0U NsY vm"i%% $FY 7_8c 2kx[(t^HbpA <f= , U=dU)zf.O4~Nc[}$-[>Mv # Ohb d /_F4&(ZFB6zEG{-CRT;4Nu 4  u J ' I 6k>+\.k_Tv{YZd0#LXx"  skb9^U=oswI>I]Opi[O2 <5~ v {;qs,9L)`GWq}>]LC<F>&^lYTWzK() ut#M ~S "   Y M V=0Oh! 7 M{7V18 a_mk]-0?"G 3W^0CI TG)}A8gG3vbH2TD   G 2(!4#L7GP]@@yAM)\ *^1/k n9 %;]:] sQ8da9IZ*S%5U33 Su<`Pp2lAS.VGG 7 sm+}& 5fw]/ u TrC3 A= !A'(k" BL'jX< - , ^ / > Tk  (  ;w2;ah1V:W>U AJ#(Q%Q[6@a N V~QIe041;ќے-ޓtm/K 3\: "%l(*,b-,'+<)5'%!AT kٞԓӕӱȷNɻ{SכU{&k* 9t'/;@CBsD8MXe2mj0`SH@9G1H'x݉QΕ2޵aؠyP"#C>ؓXPK$69:6/^2>Ohb nsnf\O#KOQN:E9k+S t~MЛPRi i1PӃ!/jك|-a+ 4 O!h"D###"" ]$3 - VE!9(x݆]m7[xBK$kt"m%.>HJE<50/.U-)$Fv 1xWԱMɦ*RÊċɫwq9$ٙ+- } }r(2F9:a815322333251/7.,e+)'0%f"Q7 Xy2“-Ⱥȯʏd׊ڥP0R@ bR6 n&++.'G  O _&*+$O#q+d0-/n( yK˽#7ID J[hMόO 5 E"'*q-.d/////!/.c,V*'$!` Y .V+(\6Yߩאӓ_ I  X#%U'1('R%X#k"(p./(.] { ]E=0Wj `Z.DYG\R6a[Ti aX1&4/2`1,&!E NP-OAa0-31&r'I!""" fIpk5 fIhp{4o{yk_G[q:-E~$E&|!_!? oN & 1IK(PzLet2S*l~MQ.>S{UgU߮v$E473+B imBb , $$K"W6  D ܪg$d R 4 B\ eq f &yf]ߵj3? g/ ds B . K kovg={3=%8[8^R}pB[hNh[K  > / 5V fUH"_RLP__,j7xu8 i'  )%F){,.P0 11,0.#,#)%H!_A eR3%]ֹ ^)Ds}Kt[$$!@ b`- [ JDe O^ K cY+sFE /%8}ݥ3#M3Z. l P0uQC l  )f s&*-i.-*&!R& Jݝ',1M.%x~ !:~!$&$!   ]ky l)L#u2"d6.C 1";&7Z  B ( `2|d YjK#@9܃ԩۊ; + $5'4)*-*(&#pG&  -`{YvP'(_pbG%>H"ucL Qt v܍ӭбfl ~ !V""A"h!>_W`w,BLm{nccw,h _iH|F&Fu.Q#+gR ve`~;  @ +G ; 2IsxT5 dQ !  nA< * q^kXtv SL` *7Gk 5 lUOBmeu   k;fn\g04W-e0 FxCg} l #+D tcq3 m'9j QE\9MaI W<FW inkl# ? ZZ`|{TCB*Y, d 6 w  M 5 AZw[, Q?DfgS/ l0,rM]M!ne Z < r oi'^H.8~t,WHqlXE"kL o  ] $ J J ,Y0Z\OH[ulj: 'lx;$^d'SR>[ =IzHmh {pvfuC e_qcG5q=<YF?L`\~0St?}lft* -R, t+v_|motJ\ -{-zQG+\g w6r,_u (O$`BuBt)-C\l|b-%8R\o!lhK- y]G0 6Z8\v~^>w]E1 'HJ%eebv-"fvdL|o& 4OagS&"rJX8 :3Cba5?Yz  ex< C  d O 1 R -*FiFMjm-k4Be 2O TE/CH cp{a=7J=%H  4 0 ! 7Wev {lw 2l$ e,S) 2 j/"!1N2  6%v53 >3PԵfwpfOT8+{QOK@ P 2SNB<QmS(N'_%, $ E9=o<1*ګY Q(h94d]ꩭ+*txBf wn $o$*2]fA+91 U>  <8=0k"~ 6JoS ' ZbE#! "Y }d>* OWQs*\NhCYȨ%Dx-Ӕ 2 n Jk P8DJ +(I\b : b6v } l$ I t*|f* efu$I4$ 8 1 8?>|Eg. E ; 8 ,` <@ B   P '  +:]'?=poeHtBm   {w3l!$JZ,  0!aPl mA ?@+O,O BbIAl & r %7 /kvi0X+N# W Fj9D x:$a=3|\=\).4XQYii G[g HT  \D C, khU 9gr*;\;},y-`5O Պ% d * uvO Q}jdܾq;4'>H=ADf^ [ g +C%w$Y]"A#l'$ [>Daj6`ͷoJݡ q(@:6$ H Ri Z k  <WR]s+M]۝g { e!am5tW9Pj>T&G3*M[{k% _AZn:ߎg<  X 2) ]  J 7 S" Z=*r+  ]  a :Aee;ew|#JY  ;v$  J b n3* SfU`L y t ") ,o 0 >{oHCwDG}[`If  | >(3?,7 <i1vvm) f*D=. jqj2  <9XgM5)aI+t5| R  S+9 8 V  C +e+(UiV+iLD}L4-ptP0vGSFזAIZP6rGM+Ur݅gEGTK Pjo I=*`?$X# BalDdy%nǁ h Y=In/ O _ _C fL tz  b w;w4e<51 P [Pk4.G-3B; k_ ]wC~N3EfeG}V!d'}.$G^eX6! M   W[ %  F86GLCP Qp _( & C  <Xnc #| rY  a5  a` ?F: h5e~7 Q}?RI }i:\,!2_DH  s1W} %><%|U =  m w m}u,3\o0v4f )# v 1Xe RJK r]yp>5>M=,~@J=RW>@"]3a0^GE1hlӖQDQHzB,f9:!P&Jm~-7 [4f* =h3(1 {{>gf8 c,>!+< RcF63:s '#q .w JtX32,5яez D  6$j{OQ<w4i 8=a[ $F o d <  L^ } V^ "Bp,  y"p, G # (>% _   % J Y$B_Y`  xN{MQKe8aOK= rq ; l  Y 9Kdh\)usyR <p?y*R_9 6jeX \G i+_  v5! ($`  /T"|d&߆w:Yu)W>fA.,8~Qhb EQT  aq oR8 xBiPq ep77U2:f| EF~C/ Gz 4%Je:+   Q l lY}k[!xyޜRYwBrT/}q=_ \1 R6<L $1y*(Vh t# $b R ; UK"p  t23yfke'ӵeq[BH e f  (yMJ"')VxI3 (k' j  ' . 2-E s  j ] E * 5Rfaa oiQD Q ff >+A# ^ k p.kK$ LW PamH-P5L $*6 ?U K  r% i# v / . L *Y 2jG4Jo"h >yA q?>z izuT3$4KS  # ` C o fl  ?1UYI w̏i;$VtvK 䝼G7&[A8RIV=j S (" h ' Xa w B v p<KgU`8L, #` k4Lh C Nv M[k+@yg  X 8-(  i e 86TT y- D ]c>)MN\~68FN?Vv ( ' y <*(a=o +-2m4Pyf + 8U) Ia 0$cT"> h E 29lekg&6Md-?Hw~ Cx1n5P'9CNb۫$` 7gmhnP&\ | ]${7X ! %$yP ;!WvO01" d w(C / I Qy /BM=$s4%F GoY0 ?uPXz3Tj!dgHk1J0Ikol ;'S pI~ R  "&:MVx`/o26/bMݨx0_e[c1_ :87 ))HI )4(b-^,kFy\ #A sT#+cP6_znU 1 I A )C 2J^aI9lA/fP +vGo   LԦ :tN۰]}: A{-C[~i# Y y r P8 : &!Q JdeD# i/  4,/\^  pxmC zQ1n5w x YxnzT#ݻg:{4  =  $ yK3عRLsyɹ5~3B8q_lMm- ,B2~)o?p UB%5^-4+[^ dHkIh5^ !j)?BP^+ `?|V*)``m^7N b5x% W #v_gCtc*8 6{xVպe>pX<V@I/#zDT  0  L9P&  i KIa}3%KAf} 4 ?_| ,wj%0l.TJA*[N}jto[ J &P ` ;/%5R-ࠩOwF7 q TE)x#jcb4B< V@ c)WH7'% H 0(I!z<-8\  ' 4  (*  z  O )x%v~ q<; ?F? f  C 8 pL٥}9CڎE7FESaF:o   1 T-gZ^ ]|T. [#0 7Q{$/-&1 + %|}SVF^v| p "8({0C xCp ?!T W4'h'B/Aa >%BK&)Q,07A(1K Kz&u7(m%Q[J )-4 ZP"W k% ,[! {/ ^`C3^d& Dxo#)w*,  Rlߊz5HZ;   m0F( ! KJ;0o^=2pP>3CPD:}]Xw%s}   4(n{PQo\<g qq m0 C n J " Rz{ b )#H d 1o  D W$ D  0'9ljO{ EJGcp}E29<_95Y UȯA)[@qoހ!IDf|{y t g IG< `3/Q2 ! C>| N4TS:Z{, [  o '%0l0}+"L  #LR+:8&Y9U ~Pk$Xd:T].e (+e ikZ|Wd0(^5hRsF'M|KVkh8? |  1'< rEk\?[=dӎ  a ?[n  W46X2CeS8s/  <6vIr 4CB R a qT3l|4O*x(9xk+4+*9eJ*,_01I  ? B?![K !=OLAu\i) x )\~W R  1d@g eSmx v EZ{ yuDK7 )w, Y ?3r`K#w 6kXSNJw#q_#K4x!"G`9A<2m [], ( Pf? t!ږo:emi*ɣ$ - .~ Y=p'c b1g}  oCmvH8k 5q6* t) / oL:>COS;315I>^0?{v4QM 4 g*a}j\M uJxV?>$ SW!   JobAl_5'Kp?5 U   /G   X v  E+' ! wC)= J$<+ q_0S z(}f2Tuh(xOoC1& 4K 1i  4A dM K#M X *  ^M i% - \' ME 0 4   ^   (z opBt[c)>53m*Bs)\=k;ڡg@cRp?6:/m7F8!8 T AI!B u m ! T\ KPbqAhۨb#KY_(m}" ~\*3OxI0+Y#<9:Jy,  @ UOmfnd/{ak.~k"(N6N= g_io_qex a  HG- =z f * P&eCp /f/RzQ-Dl؟u 4 d  j W U !x  K'Td y~kZF*i1 -Zڿ?o\N[rw![- ؿpfح![ 'S}o-p{)  t$_RV V {ap_tz  -Q{ wBRS W9Q6-  - #\ =m   DH qU,dCZRu me"A0g=?u9{v }bo+S <E  a  0  ,f  G Crl \wLX<`2/ WX6>`gxdkg0&OvJUT,Y PxV r)zb{Uj3 !Cngdo4Y+CI    5pI t   p ) _$V:[q 9 $w+` s ( O  ' w% G@' {l*#{ f B &R)W92 \{(m9 z1(|f/+a;QQaIF ݞ%q[~5_hijq<fWX{a +>gM"G>'l `K/ i[cQ#9CwN "Fm k)3v  ` Z 9 d 1_y"?~7^x)~{6@={b^Xk,L/23HM  X| gHI  i pq NxoRq[naXTG&I|>628oOfvp{ A RWn"z! `-hW:5<5  A TsS,O74?^e5{D^P|y E| tQ (<fx y v :IwEb ) BH!uHȼ.rCKb i L:)M/pj-dL>/e,t /   - b}*vHD  x$B   R <Y y wB umW9/-WL^!bv .("AO^,ܐ)(Mh  9vnI)MG& ;HI Ly q30VGxEDcGc[A^ +l?~t%b,e>=_[<[[ S  [#3  4 o[aW * z \ 9 z g [& jnVewHBh_ xjzL.]*:j( <V "1   S O  *} Pm yg7@f *Bx,52LF7bI[z0J}< } SLppkft=?ZSPTE:C4UE!࿤}5&h"o    )cP  ,J!1P% B N PE  9Y IY- %"|#v3 Na? c-`  .n 8 ) ?1 qy - ~ Z zTd?_Ve ] =c_|(FCKć Q(f|k-a  7 CrpkQ?c !itvr{!v"DV[(K|>[M5e:m!RW{Wr P< '`CL5R9Dgd l ^ @/ p FciYQnwM V@D6o^-_H  R  b b) h #  }  a .  -Y M GN9AUn` Vk@d3i{c\׶- 8 u(l k/mVl;E*[ {R*6x#xf WEwfq 0 jRC NfVaUr  ( ; |MB o- j>$n = = zSw`E1"2 Y ;" ) /u p"=!"t $ p5J JU _fd+b {w Wu\2NPG7+OgGynDݯz_:[3ai#6;( I3 |:]7pq} .BgsERmuD5sFwA6CC?:\=cY Zs ~ , \_d I(imbD5r>p]+`},w mTaz7G_U u \)b0ug  #uS bu   _, } ZWgTz^S Uf0kbRw^4ch2X_w|2%ynblrYrCJ)|D pe:-3q' EgdC[ Y.!8Xe~x6 k.eP L Z6 \ # b]w y6(.FN <uZg8 $ ^ W 8'u } g? G! S P lb>uM=!,EdfZRrGSdOt0l4m+W ZR /V tr,rRG0 xaJDzG jkhYnN .Wmc2|W %r]Ua  Js~jV(8fp(C nm:la+5|Y > g%zXi 1 9; Z%q Y% + CG(n3 :3 @r &x$+ {A|j@: Kܗo74&Q+:2] 9>}Wt qwGP'?hO$ v'PWd*"."(G\YlasS-2#XAi}UY?Y|  {(je,^ Qr D - ) m "X  *# &))O Dp0T6[dJ101@z)YKZoaYu-#Z\`( &#_ 0k pA5'@ S N pFD$' f?"B  iFbo5KsFsUD\<Lb1<H VM*IoGR'oQ8 (  v9< 7[ n _  KK" { C333 %/&cY+Q*'*_o{L $&k6UN(%$cAf y3O@3Vk?%\X 4GhC7Zu^j$)H$q\{*G@bHfr>QBNCb 3$Hm`/=9xk\v&s| [ '  o ! b  @; %   8 ywwJ&HZT#6([Zr=a<G8fzlev5oH,*n<iCN`W\RoBlcCxd4H 0 /FIsv,Yr@p@wcGB\> FCBxvdf~eF:;U_FXF/Pg86{lS>jr8 S :  T a2  9  $.ppX{#%r;n0m4IV:yLk=$Pp2 #Evjl:\;@ J N  f 8"}w 93=w8$CfjDwf{jn%bA)d{{KCE7-s$ `'` !h; fg[ M  w BM" xh'@lQ m J*p/{Hw(6<~82BLxGE,O{#L& hH"K:4j8f-U+=B:e:JJbXu j ^ jCPe7~a 70 \%Tp>6ps;9/:gCj ? #G3k(g1cYznZQ=I ' vHV 14 >HM jC\p"O^WN[%wu'i*[+Q0TZjx =u@ #XR =o> a \x S 00VU PN>si9,ER3$IUM?%W|%8B)ccT `L Cx$6b"QnGBMUs,Aw[kjx&p i)SS  ~iYB14NLA`^Gx a  r\ MvBM^v>rpf4 Y> > @ K-$ -{3 '5t6C jB-u}n]'6X6F MSt N\yR =/G *CyQv]fN#< R ( : zyqz=G 6wmFlw~3j'`t\b([+^ n n)(^nQ",%@_mtt   )  l   %o*R YI!v2p fQe_?~ U gSb!uU&~A 8e: OQy {VPyS1J? 3DxTe`p7%v=gPmzEO|q YZW& X;Wr)!][3oL "?NOO # "RKgAF@ aK* RyaO g 3}DQ&Ot]n}8b>a{0eK:/JFlAfBK 4zl$. W= %&2,;T(}#`R%!`vu .=11H^>P*|5sJ3o\OZD?0B}oS lh /[$h&5\7*>>}$Z,w-  ^8fCw\_ L? DNUcn* AF6Nq FTqY4-~YAYP]VnL *~8`vh 2@*l&J64ta3KIQ~c<[[Wm7s7*/ Ly2ZRC+P0>#fXr/bB"!1N`h"7 Mf g5 sA  ) b._t0v9}  $\EVpIfH#DMbmD/awo[7I>,5c7L6OSwb# 2^cXL_),s" o IF\=]]0q+ ~aqFX+@ _\Y|6u~l8 Ntk@](:(^6s*NRX2Yi fBm  Vi\ + m+guOd;.U1X[M<|nN]e Mv1V= ! d^ #se* br SjW\/qYo5bxcATMDIM@uxmGA`(#eEWx|.r,vqRcG03_a1iUO6- an2H9{^s Cq[o) 2W0]xoM. _) eW1*]yl3k> CTn\;='nPS1f?AwHcf)*j;7] =4#,8s`NMn&!:6NH4kT%vHkc* r #r`]hA?/TBHD6&!`C|uzH8/6K vnC4(x-FY"{B..iHhn.o3$w2HYh{k p3FA ^8m ?,zw\!#'g>-P/h:m8Q=Ck{v]&'5+43^mrs qd Tqm#NpoHiFYt]{0"2x!0+O+~I}JS [bF@5/Sv-eB.B;wrJ}*#h=#6!j='LOKl\ ^mKu`?f?a[S g{{1(y;KT@UCvW{"GT=$~PipGU]BIr&XzJXk_#T'H*RB{vU!Q n*^ 44w(K\{UX{Y 5 _0:]0ja!n[ 72*+WDR_A"k)(Ku6`/IN}9j.]4|~5l amOGhrk; :_]Pjz 1dE{Gb3+ -L!"7IFoM/H371`eN%YE \FJ=EA!'hN`b_/`'aH1U%}~ry~]QPy^hWB-5k:O}c\\p' 1ER AS&-XwYGM >`k<P5"2Bb)\@,-5Vo[ KPWsznm_^%&P{`5p.5_>,.-,fRS{c!7KP{ \C C;GKKI^/~OJ^)9sZDP8.tXd0Qvf6t 0rjVoi'%& !=.,fQ=MSiyx|t`<:5$)%*AM~T<C7r]T AKeigum|u@( U,s  ( "#!X + $,1  05  5#-  garden-1.0.9/data/wavs/extra.wav0000644000175000017500000015077412457263300013455 00000000000000RIFFWAVEfmt DXdataxBh ^7Z2y S*ro$Ms-V }4]][^]^]_^____``_`acaacbbccbghfhhihhjhwxxxxzw{yzy}{z||{|~|~|~~~~{y{zz{xzxxyustturssrrrsprqoqpoonononnlnkmkmkjlkjijkhiiggjhZZXYXXXXWXUTRTRPSQPQPPQOOQOMNNOLMLNKLMJLJIJJLHJIHGHHFGGEGE78887776675623/20010//./-/-.-,-+,,+*+++)))*'*)''(&(&&&%%$%&                        !! "!""#!"%"$%$$&%&%''%'''(*')(*))+*),+,./10103022313A?B@ACACACCCDDCDEEEDGGFFHHFHHGKIHJJJKJLJLNLLMPRPSRRRRTRTVT`cbbacdbedecefdegfeghfhhjgiiijkjjllilmllnnlomrsrtssuuttuuvv~~}~~opppnonnommnlnggihffggfegdefddddbcdbbaba_b_`a^`^_^^^^\]][\ONPNMNNKMNKMKKHGEEGFDFDECEDADBBBBCA@B?B?A>>A=>=>><><:=;<:;..,.,-,+++++(+&%%%$"$####!#!!!"!!                   ,)+*,*-,,-,-/-/..//.0011012222324155355457;:;;<=<<>===?>?>KKLLMLMNNMOMPNQMQOQQRPQRRSRTRTSUSWTUVVUVXW\[]]]^]_^`__`_a_lmonnnoonppoqqrqrqsrrstrttvtvtvvuwxuxxwyy}}}~}~}~||||}{y|{zyzyxzxyxxvvwxuwtvsvttsssstpseefeeedddbdbcbbba\[[\Z[]YZYYZXZYVYVXVVWVTVSWSUURSTSRQSQPQPFEDCDBDBCCABB?B?A@<9::::79898777667664463344433130311100/00$"$#"!$ !!"     $&%%&$''&')(()'*))*65667778799899:::9;:<:;=<===?=>@@?B?GFIGFGJHGHJIJIKILJXXWVXZWZXZZYZZ[Z[\\^[^]^]^^_`^`````ababfhhhijgikjkjlkjmmkmvx{xyzzz{{z|z}{}}}}}~}}|||y{|{xzzxzxzxxxssqprpoppnopmomnmllmlmjkkljikhjiihhhgieh\Z[ZZZZYX[VXYWWXVWUROOONOOMPMLNMLLMLJKKKJIKIHJIHGHGHFGGFFE:989:79876775657455./...,,.,+,,++,)*+)*)(()((&''%'%'$&%#$                    "! # """#"$"$&$$%%'$(&&(''()'+()),1/102122212343444555?AABBCBBAEBECDFEDEGFFHFGGIHHHJJIJJJJLJSQQSQURSSTVTUUTTVVVXWabcdceecfeeefgfghfighhgijijjkjkjllknjrsuttttuuswuvvxvvxxyx}}~|~|srqqrpopppnpnomnnlnllegeeeccedbcccabba`a_`b`_^__^]^^\]]\\\RPQONNPNONLMMMNKKMILLCECEADCBBAAAAA>B?>@??=>?<=<=<=<;:<<9/./-0,..--,+++,+,))+*'"#"""!!"! !                     !+),,*,,,--,--././0/2/010313133326363<;;=====>>=>??@@@A>C?BLNMMMLNONOPOQPQPPRPQSQRUSSRTTTVSUVV\]]^^_]`_^```_ba`bbbbcdnomnnopnppqqqqqsrsqstrtutttvtvwvuyw~~z{{{yz{xy{yxxvwwxwvuvvtvusutrsttqqsheifegedgddeddbccbbabbaaZXZYYWWXYWVWUWUWUSVSTUSSSSRRQSRQPPPGCEFEDCDDCCCBBB@B@@@@@?98796877666455635441331130110/0//0.$$$$$"$"""!"!!         N~ _,k: wIT%b1 $**229@>?<>>==<<<=:<;;9;9;79999877785+-,*,****()))'('&(''&%%'$$&##%#""#"!"!!!! !                          ! " #""""%.-/0/01/1112212334153453746767687889:8b_ba`dbbaccceddeedffffffhhhihhhijjkjillkllknlmnnnpmpoppppprqqrrrttrstutuvtuwvvwwwwxywzxzzx{z{{{|||{~}}}~}~{xxzyvzwxvvwvuvuuuusturssqrrrqprpqopponomac`aa_a`_^`_^^]^]\]\\\[Z[[[ZZYZXXYWYWVVWWVVTVVUTSTSSRTRQRQQPQPPPPNPMONNMMNLLKNJKKKIJJIIIIGGJFGIEEGDFEDECCDDBBCABCA@B?A@>??@>=>>===;;              *)())*+*+++,+-,-/,.-/-//-101/20214123524434475567687678889:::::9;;<<<=?=@???@A@AB@BBBCCCCBECEEFFDGFEHGGHGHIHIIIJKJLJLJMLLY[[[]\\]^^\__]__^`_aa`a`acbcadcddcfcedehfffgfghjh~~}}}~}|}{}zz|{y{zyyxyxyxvwwwvuvtvuttssPOPNONNNNMMMNLLLJKLJJJJJHIJHGHGGFHEGEEDFDDDEADDCBAC211311/11.1.///.--.-.+,,-*+*))+()*)(&(('%''%($&$'$##$"$!#!""!!! !      $$"$$$%%$&%&&''''&*'()*(+*+*+,*,-,---,.././/00/01012122UUUWVVWWXVXXZYYXX[YZ\Z\\]\[]]]__]___]b``_c`acacadbedcededefggfehfihigijiiliklilllmllnlonnmpnoprpppqsqrsrsssutuutuuvwvv~~~}}}}}}{|}{{{{zyzyghhifghefgdfefdeddebce`bbbb`a`_b^a^`]^^_\^\\\\\\Z[YZZ\YYXWYYXVWVWUWSUVUTSURTSSRRQRPRQPOPPMPNPMOMMMMKMMJLKKHKIIIHIGHHG'%%%&#$$%#"$ #!" !!    !""!""#!$####%$$%'$&'%'((&(()(*()*+*,*,+-+.,--0-.//.0011/0131223243645445667576887979:97:<99;<;=<<@>>>=-/...,-*-,*+++****##$$"#$ "# "!  !   ! #&'''&*'((*()*+)*,++99:<<;<<<=>==@?@>@A@B@AACBAECBDDEBFEEEFFFGHGGIGJNONPNPOROQRPQQSQTTRbbbcbdcedddffffffghghhhiihkijkjllklkllnmlnpnnopoouvwwxwwxxxxzyx{yz|{~}}|}~}|{|{z{{{zyyyyxxywyvxhhhhfgggdggdefdceccd]^\[][[Z[YZYZXZXXXWWWWWVUWUTTVRTSTSSSRRRQPQPQOPONB??@A??>>>?=?;=<=;=::6444423331233021/0/00/-../--.,-,,,*,**)+)))*(((&&                   ')*)*)*+++*,,+,.--/-/-0/.11/01113132234443655467<???@>B@AABABBAQQPSQRRQTRTRUUTVTUVVVWVWXWWYXW[YX\YZ\[[\[][]]]_ddgedgegfgeihghijhikjlwwyzyy{yz|{z{}|{|~|~~~{y{yzyxxyxwvyvxuvutuutnmmllmkljkkkikhjihiggjgfhdffgeeeddcecacbbabaaaTSRQSPPQRPOQOMOPNMNMMLMGDEEDDEDBCCBDBABA@B?A>A>?@>=>>=<=<<;<:;:::9:98+,**)*)+)('(()&&(&%&%%%    ! " "!"!"###$*+-,*-.,./....//00/02122@??A@AAAAAACCBCCCDEDCEFEEFEGHFHGIGJIHJKIKKJLSQUSSVTUUUUVVVWWXWXXXYW[Xffggiighjiiikjiklkknlknmmmnnoonpoqpqprqqsrst{z{{|||}|}~|~~}~|~||~z}z}{{zx{zxzwywxwxvwuvwtuvustttrsspefeddccdbcacac`a`a_`a___^_VUWVVUSVSUTTRRTRQRQPRQQOQOOONONLOLMNKMKLKJKJ>>===<<<:<:;:8;8:8797885860.-./-+.,,*-)+,)*+))*()&*'(''%&%&%%%$#%###$    ! !#,-...0//.1.112/24134324443745765686798789:ABACBAECCCDEDEFDGFEGGGHHHGHTUVWTWWWXVXWXZYZYZ[ZZ[\Z]\]\^]]]_]`_^``_`biiikjkilklklmlmnmmnonopnpqp}|~}~~~wvwxvuvuututturrstrrqqqqropphggfgfeffdfddccdccabbc`a```a`_^__]^]^\]][\QOOOOOMMMNLMKMJLKKKJJJIHIIHHA?>@>=@=<>=<=;;;;:;:::9999987866866655465'(('(&%(%&$&$&$"$$#""""!!"!         !!! !$!"$#"%#$$%%&$&&'''.100102023143244455458477669DEDCDFDGEHFFGGGHHHHIJIKIKJJLKLKNLLNMNOONOWVXXXYZYYZZZ\[Z\]\\]]_]^_]`_klllmknlnnnnnpnppoqpqqqqrqtsssusttvuuuvux}zxwzvyvxvuuvutvtusstrrsqsrqqpqpppoopmnonlb`b_a_a_]`]^^_\^\\\[\]ZZ[YZ[QRQPPOPPNNONMNLNMKMLMJKJLHKJHIHHIHGGFHDGE:8989:6886775575446254233212**))'(('('''%'&%&%"%$$###!"#!! ! !!!                !  "!""!"###$$$#%&%%&131434335365557657876987:8:;9:;;:<;=;=<==?GGFEHGGIGHIIIIJKIKJLJLLMLNNKXY\Y\\Y]\[^]\]^^^^`_`]b_ba`bbbbaebdcdcedfdmomnnqonqqpqprprrsrrtqtutusvstrrqrpqroqpnoopmmomlmmmkljjdcbb`c`bb``a__`_]^^]^\]\]\\Z\[[ZY[XXYWXXYUJKJJJIIIJFIHHGGHEEFFDEDEDCD;:<:;9:99:89796688665645554432522212111/01"##"#""! !!                    ! !!"#"!$"$$$#&$&%%&'''&(')'(*)))*+,+*-,+536465776678787:99:8:;:;;;<HGIIIHLHKILJKNKMLMMLNNOMOOPOPPPRRPRSQTRSTUS]\\\]]]^^^`^a_```a`b_daadcbqppqqqrrqrtststusvuwuvvwxvwxywyx{xz{zy{|||~}}}}~|tvtsurursrrspqrpqoqonopmnollnkmjmikllijkhii]\[\[\[ZZ[YXZXXYWVXWTVWUVUMLMMLKKKKIILJHIIIGGIGGGEFGDFEDDDDEBECAABCA4454431422210120/1/.0./..-%#%%$$#$$!""#!" " !!                 #$#"$$$#%&%'&%&(&)((')))),6769778998:9::9=:<;<<;=>>;?>>@>?@@?B?B@BBCCJJKKKKLNLMLNMOMOPNOQORPOSQ_`]_`_a`baaaccbccbcedceeefefggfghhhhjhjiikjtrqtsssuutvvuuvvwxuxyyvzxy~}~}}}~{||}{{zzommlnkmlljkkhkhjhkgjiihhjgjiihjigjihiigjjiihjijihjgiiijihjgjhjiiihhijhihiiihiiiihhijihiiihhjjhiijiiihiiiikhijhjgiiihjihjigijhijiihjihjhjgjhiijgkigijhijihiihjiiihjiihhijhjhhjhjjhiiiiigiijhijhiiihiiijgiijiijhiijgjhjgjhjihihhkgkgiiiiiiiijiihijhijihihiijhijhijgjhijhhiihikhijhiiijhiihiiiiihjiiiihijihijihjiihiiihijhiijigiijiiiihiijihijhjhijhjihjhhjiiijhijhiiiiijiihjhjhjhhkhhjihjhjhijihiihjhhhikgiikhhjjhiihijiihjgiiijhiijhiihjhiiiihiiihjhihgffeOPPLNLLKIJGHGFEDEBBB@@?>>=;<99988554442101//   A@BCDFEEGIIIJKMLMOPOQQQSUTUWVWX[Z[\[^^_a_badxwyz|z}~|uvsrsqrpnplmkmijjgggefccc`ab_^^^[\ZYYXWXVSTTR./,*,*+('''$$$##!!  !""##$'%((&)+),,-.-10042436568899;;=<>?RSTTVWVXXY[Z]]]]`^babdbfd~}}|{yzxzwSQQPPMOLMLJJIIFFEFECBC@A.,+)))('&$%$#"!!         /-0112153647799;:;=;????edfhgjikjlmmomppqrstswvwxwzz{|{}~wwvstssrppnonmkkkiihgeeROQPNNLLKLIIHIEGEDCBBB@>?><=;<:9976744423100/-  ?ACBDDEEGHHHJKJLMONNPQSRSTTWVWV[X[[]\]___aaccvxyyz{{~}}~wtvsrrrpqnnnllkjijgheeeddcaa`^_^\[\ZZXYWVUUST/,.++*()'&'$&#"# !    !##$&%&((')+*,.-/-1002336475989:;;<>=>RTSUVXVYYX\[]\^^^a_bcdd}}|{|yyxySQQPPMMNJMJIIGGHFDECBBA*)&%&#""    "#$%%((*++../12436789:<=>?A@DD_acdefihjklmmqqqtvvvxyz~~}{xzvwttrqpnolljjggedd`a_^^]ZZYWWTTSQPPO      UTWX[Z[[___abddgghjilnnmrqqsuvxwy{||}wvuspqpplkljigffdab``^]C?A>=;;:88763320//,,+*)&'%%!#! "!!$&%&ACBDFGHHJKLMNNQSSTTWWX[}~{|yyvvuurr>=:::886532000-.,*+((&%     )))+---0213466699:<<>?@@CDDFEHJHLKMOPQQRTUVVWY[ rtwuwxz{{~t t r q r o n o l l j h h h e f c d a ` ` ^ ] ] Z Y Y W W W T R R Q Q O O M L J K I H F F E C             SQUTWVXY[Z\^__baaeeeghgkjnlnpqqqutvvwxz|||~~} | z { x w x u s t t q p n o l l l i i h g Q O M N K J J H H H F E C C A @ A = = > : ; 9 8 8 6 5 3 3 3 0 1 . . - , + ) ) & ' % & " # "    ()++-..11144467999=;=> nqqrstvtyxx{{|}~` ` ^ ] ] [ Z Z Y W W T U S T Q Q P M O K 6 4 3 2 1 1 / 0 , - - * ( ) ( & & $ # " ! !                       !!"$$%''( ?>BACCEEEIGIJKLNNPPQR  Q N M L L L J I G H F E D D A B @ ? ? = < ' & & $ % ! #                               #!##%&&))(,*-/./0133 FKIKKMMOPORRTUTVWWX[Z ~ } { | z { x K H I G E E E C C C @ @ ? ? = < ; : 9 9 8 % $ " " "                                 !""%$%'&*(*,,,,0/1033FHHJJLLKONPQRQUTUUWYX~~|RNOMLLLJGJFHEECDAAA>-),*')'%%%"$!        "!!#%$&&(9;=@?ABDCEDHGGJJKuuwyxy{z~}|~ba``]_\]ZYXYWVWUSSSR@>?><<<999976453231/1..-+,**((&'%%$# " ! "!#$%%''')),+,.-./02[Y\]\^^_`abacdefhfhhkkllmmonpqrsruutwwyyy{{}|~}~{|zzzxvvwutrsspqn_`\_[[[ZXZVWUUUTSRPPQNNMMJKJJHFHEFDCC@CA@>>=<=;::8         436586898:<;<=>?@AAABEDEEHGGJHLJKLOMOPORQSSUTVVWXYgikikkmlnooqpqststwu|}||{yxxwwwtttrrqqpnonlllkijghffe@@==<=<:8:8676444412"#"!          " ###$$343587789:9;><>=>A@fefehggijjklnmmpnqprrrtutwvxxwyz{{||~xywwuuutssrqqpnnnmn`]]^[[ZZ[XWWVUUUSSSRQOPONMLLLKIJHGHGFEDDCBB@@A?=?>#"!$#'%%'(('+*++,--./.010243445578799:;9;<>=?>@?BBNPOPSPTRVSUVVWYWYZZ{}||~ebcda`b`_]^]\][[Z[NMJLIKHIHFGEGDEDACAB@@>>@=<<;<:8:88675462413110/0.        ('()*+*,,---/01.22133436658697:9;;<<=>=?>?AACABECEFPRQSQTTUUVVVYXYX[Yxzx|y|~}|~jjighfhdeededbaba_UWSTRTRPPPPQNNMMMLKKIKHIGIEFGDEDCACBAA?@?>>=<=;:;:8  !#!#$#%$&&&'(')*))++,.,,//:8;:;;;<>=>=@>@@@[]]^^a_a`b`dbcdeeeffghhgjjijkllllonnoppqqrssrusvuuvxxwuvuturtsqrpqoqmomolmmkkjkhjhggghdgedddbbcc``b^_^_CEACB@AB@@>?=?<=;=2231000/0./.,,-+*,)*)*((&('$&$$$%!""!"!     (&'))(*)+*,*-,,...0.02/2040533636675787:79:;::=<;><<<;<:;;::978976666635343422202000/0.-.-,--,++*+)* garden-1.0.9/data/wavs/fire.wav0000644000175000017500000000266212457263300013247 00000000000000RIFFWAVEfmt DXdata}pB{H"f@^s7Rr]A ]i<H|}rxn\X$pV9G+jD cH.aQp8Q; vm2{FE3L_QO/V,7/ <>{[-1~ZQx) sY5# B q > .yn #V/>   "n as* ?[n3 "/{ FAV 9 tb$6R"OhU=6#0$garden-1.0.9/data/wavs/scatter.wav0000644000175000017500000001046212457263300013764 00000000000000RIFF*WAVEfmt DXdata   7i:2u: /]@3w#V 1I:,<>& \t6| o(!$')+T-e./B/F/,//...<.-,+1*(&$! a3L378 % d]] {MK=;TSw9+%ĸ޸?׻& ?űƞ˲=ϡԷ؏}"~:ӯ{$LP<<רT o&XrJؾ<^)_¸Y_yPnKO U!G )$T(*- .B/0Z36/8m997B52/- ,*)'$ v o e VO-\&I>1 08 sg] :!-""v$%n'''&&|%c%%%%L&''g'%#U!&/ UBVi gGm"ڰZrC13$8/Ͽ<(+TV7i7߾-aq`Μ͍̑ˁɚ ƚajaq$վr[bnmƦü̼͍ϭH8Խյ jyL! {yM2; mW& \  7 }8qd @8e "$#$$%&'('''z'&S$ 7Z,:sX P B_AD|z{9ث]!V͙Sm}VKxsė_ÓĩćWį7œPđŁ~l6^_ʧP˥tyד(!efٙ!ΐ̚gNNMĖ=+Ƚɉʉ̋βϩЩTҸv6.<5>ܜݡg R_yzyo z  /] b ~ - l; O 1 yS)gm]zFTW\$zuQ 5xd X `, !"#%'(t)*,-G*G%##{" Z6|k < * QGBM4 L޹o֯͡fǍ|"# ϾžaœYŹ 8vϜ*p54LWUy1,D ~lBa g[-PcYgd?QGOğ[Pn@,k߷˷󶽷LعxTdi5t7ׯ"r ~V<ò%Wb ɄEϢׇBt~ޭ{MzE1o^E-Ih K\O # (Q+P)$#%%2#!!! x?(!6""t###@#"" !7  ? B inPZ[  D$ \X:5`g  H 8k   J1!#'&(*+ ,,.G//~01(10<0/.-,a,s,D,+,*(d&_%+$" ,Orf 4 QJ ANngcKh1md0HL #|ujxۇژYڥצ%sӭ ͂Lz]+:Ud'ļZڿ1oTKCܶnskخ֯Ųb:$B?9BPihds{ q,՞՟CCשؖ܆8<\dj5 K ~>IOlNH m{ާcsBofVoK(e޾ߚ hHT,4 l`M<߯އ^ۖyחO']lύ΂Ψ:Ҵփل+ۑ0ޕ*8,cSߐPr-<7y _3v0` `Y`k.CkTB<]PsmO}pV&^P@^5RoQ.v 8 g ` .{soH0WiHX8c CD% v 7@b^9v7}gR } 2~:&Ubl 4qPGlWc Anwa_*pZE;Z+/,'d#lk0 q]n^DM3`x*K`:jcvg*Wr=',o;L`F]T,0E!KxHj{j}crH~@ PxlX5oZEc0fCY%p2JV\XD-$9_soNZ"@M' Ur@ ab 4EcKwa ,9EcfF$ {pdO/}W/0tIp7eAve#4D[}*Ksj )7CVfssu0Q  dIogarden-1.0.9/data/wavs/blop.wav0000644000175000017500000003027212457263300013254 00000000000000RIFF0WAVEfmt DXdata0*=PbulU3 o4v\LHO\sDBt*tX'7MQ!OWVk>}0?`%lL~~AJSR`S(&i9?+5_^;Q0$.Sz/$0l[Q?1@*3:;:2+*1BWs7zwmY?A'X93F`kUOx:l6S /   0XSaoZ #FDy@ c _~@ ;1r0E^7f'eT_ T S ch 9'"! !!""###$$z%%w&&u''o((^txP>LC,zcp(sߋ߲߉!cfvkkgea`^\VUQMLGEC>873/*)%#~xu s p m g e`\XUPMI@=983/('" !!"" ## $$%%%~&&z''s((k֐bБ.L8ߏ*`4J6:4/-)& |yvrlid_\XQMJGB57/-'$     xtolea[UQLGC>83-( "!!""##$$ %%&&&y''t(%. 5ɶ ّ|.wU߰݋ߝz6 zxsnjb_[OMEB=71-&  }xslhc\WOJC ? : 3 . &! |vqid]WQJC?72 *!!#""##$$%% &&'''z(: LgZ[տfS/F߂0rEsWJRE?;4-' ytkg`YSLG940%  |skg ` X R I B=6-&! yphbXMH?: 2!!+""$##$$%% &&'''w( ¾6p@LԬE/ݛ`XGhQ$* }rok_YRLD<5.&}ule\UMF<7/&  { u n e ]WLD<5+$ vne\SKD :!!3""(##!$$%%&&'''B#eVa]RA ׷< 3ް}ZV l@IRA1,) wmf\OF@6.% |ukbZQH?5- %    yqh`TLA:- ~vldZOE :!!1""(##$$%% &&'{'' QBO!P߳*^u5TllG0AzfrteTID=0& zqf_UJ@7.% vke]QG : 2 (   xpeZPE=/'uk_VL A!!5""%##$$ %%&&&s'%GD͛ۄ/0ےl:O-d|7XHo`QH@7, zpcWMD:,# zoe Z M C 7 ,zlcXOD7(wj_RE :!!/""###$$ %%%w&&m'0$˼ ۘ3{߷xR:{c$"p>*RaN,}yk\K@5*!tg]SF;0"x l _ P D 6,!vg[L@3%zhUI< 1!!&""## $$$x%%i&&&!_@M@Ӻ]#Ħz=qݧ1FD-|)J k-4.x. =PM3oa\WOC3 }rgZL>/!   l [ L @2( whZK?2&sdWJ; -!!""##${$$n%%`&&%Eufy)(fVcpީt1xwA}nhp8+lg!|oV>+ |o^N=.   ~ m ` Q@2$pbS=*zl_SE:) !! """p##`$$R%%D&&$\9Ը&ǹ+A@ݴ)_|[eF߳߬7 v\PPW\^ZJ 9  y ] I2 wdRD2!weTC3! t c!!S""@##.$$%% &%"er &ipͻ}+î<@g6YNWE8sm JSWK5,D8 >!@R[dl{2ap OA{13\#M^ D 8 1 1 //*#xaF-o[H7(vaK 5!! "" ###n$$Z%%z$z!z 2ߦXSվÇǿ[/la/|Ho5.5/ `LYzA4Ib P_M](j Fx   | R ~Bm8|`K=7411-(qY@ %!! "|""`##H$$0%2%# i ?FԌΞɌX*wVí@O5:F="z)pe: $| %GbqvmS,H[0L{#Q}!dY%   B o 6a $rLRNbA& t E!""#J$""###!Ev k4y&gcav\‚UsźUh2FU:ހY7dYa-btm $?jzN.h OpoBZ7Z%o`K] 0 Yxu&?w }' iw H ^)D )Y*1 v0":',0f1,u'$`!al$w+ /3h7_5.+(#q|6bX` &w12>p GD@muz֮3vWCLs3dM/E @ Zd| ) mgg/ 5V sk\`6d[S>K.[ {2 ws"F%T!i] M ]x *#',h0.(#.!uF#*] r=  > y#2{eg$= &zmh zk< r e"O#b c"]| , Jb $ Q$[).21U,$ E"6*045=2+%Z!-a FE A2`P4^0 ǭneV7ݢ3sНL5;"ċ˫AHܡݳGTf(* 5I| D5 3oV7kW% .w m R$!$ $aF _ 8%} X 7hqP"]%)./21,%L!*2772*# ` Z (St_%(ULY޸\zşÔ>YreY=y+ŦƊ֪I ۝A .kh /V XB:-qZBgS k  i"'V'!+/ , Ta qB;e#%'*S.0=0+${~(18Q:56.$n G `  _ݞN.Z\TrkJ ʢ6şihς#cy۹Nlqd d?zg I L1Uu BUa/w0Ay~Acoc[ (s#  &(& _KDt:vs ojO;Q1U#*+04640*# #$,~488?4,o#:3 E aNP۪[ߚk'@v˵2?<̬’g!`Ё{M Qmio5  !M t tVC j3߯y5$Y + """:` is$S&C$TXJ3 f | :;&.59960' M/#R'.;4P64/R( bj I ԄYuL#9&dl/s0Щ0ŷVN˷Jxg*Je"9#( / # C   NrzCCKW7)j83S ( "! i BQOe 2*% y & e X ?`%-2X674D0*j%! V#&) ,,j+\(#'S5>PK Nr  ID= 7. { %=-O l H e jM9 2 F dCPse?o): /< E W t E$!-C~{\[DB$8b} _ 1j;,QO&d/5Rek?Em" NXm HL +2~G gA%X B  ^ UDmjI_1}S$c BV_ l y C  -w \$\*=9oNB B-E E \ E z MFvn05m# U C G *HrR2`5yS lN[> jLacM*$y "apj>e@<. f s 8?o>wps r1  % ynpn~jN #|.uc`He h ''ye_&vi m eK*\] h8]L]gO4j* !| OZ  ; %sby7G]= ,XLf "ARuFFO "X l&#xR  f?S YYdtA KX|4 q+S^- re.Wf [j?v ]4 tj /w,f5pH*c 9C1|@il {/qGRoQ? Fber$J"4p2 wgs/YEFMR 5 +p5@mY  i^^U> Pk &oh5u^7 N iW<C*U @n+!5Si@e 8_6 8S, ZqE:oq|fV^X\agr *nW>T\  #J9/d`.C26zH R \F0?m (-fkflRJ! 1 v q 8 L = by}%<Wtp~ Cmt=Cuj-3&e 3qP&p}W = y\_%-0UbYi![iW)]sS1 tJ"ypnt|garden-1.0.9/data/wavs/lwbeam.wav0000644000175000017500000020767012457263300013577 00000000000000RIFFWAVEfmt DXdata !"%'(+.144:;@AEJKOTW\_chnqv|/ '/32QF#&IOFwB`Z  |z0x; ?@q&IkWzrlz3]/VQ:v3t ZvX) _u0;.,fu?-\72 Q@,1p M  ] D 80 F w * 5&`+ O7/}E/ 2|~EDt < c y ,ZiTAi|u" U,BFU[ (Iyg{V^X~j1Zp~3;#PR4uglDF3# ZF= b@ X 9Xf~ r2Kyn6YIO`bey; 9 " R 8fOw1\"~b HD[cdd Fum \pC,}F`kMDsl'.wWp sZ?L?B}NW.h%y[Bzm}gf+&JENivn>M<F//VV>+ <  ,   PA2c"  ^@@dkD=4?$1C:jl3VZpG-9=]- 6U%h!uSLQ6=4*hQ= &5X; KUVxvR { $ nh 7 uJ 0 nuzq} + Q{!Q'my0Pc Mdkc> "T[:.vm^uW|:X[ o tcA QDI_ yGY";KVG 5  T\G t!KUhukb<tBz>{;`u-|{]A>QoT^,g,MM #teW&$F_HK1!9#S{`AaHKp;Gd g 6 D aLg m  { N 2'Vg (AC0# X[|=cJ-D&$hpA~#0KL-Q*7Ku[n9RY_ KZ3PI=biArHon|T(F ,Z@{qLe3 ?^Z n v OH[;{u~\L,c^e"{P/g_A($"p|\z2z Ru6pvSgteI2=.sZ' FwZL {|[^X5t ^  mFF Cl '9 * QA|9 P mrrDHz~&$=r&tE/&B- ~ M1}_HO+a; R 5p>v(qF ;U=3/\]$ N56 VR -mYUi Ak(eP3Rb!.M:5Nj)XP\VJB')V:4Ol:2Ia?.VV/KFT0T`GjP ;1|sj(E~};LG 05pu>[1&yR0k,,qWJ1^{J<fV&# m`{ J @ d pm-3Ask x\`7s9_@DAQF  <:b-Rt7*t:t.dD  +uQX&m!'E:B<p yM4q&t8l@&Q'm df'DUET,ViBbsVwAnleQKAv nbK,Ia"<TgxA5wtJ|53Jc"@GhAg(0J8f '} 6,Ey7 0 SPMjMm$H;9dBrMh^-4w+&8nQwI/f}fWr p;H$Dn6 0s>$!#CAXu}Hr&GLM  R 2yF=/^%XQC?EJ3 I C $LtiW>'59y h. Ab?d`DNJ,~ & w mhrCpW0-CATHd^#  E, >?.-c@RI 9O SBn] > !D%%M~!;FS;Uo 3 |  yq|aEi?Mrj60'?Q#Q l oZ0/v1oyNk!NHK/, [U3y4Fgpq-E M `+8=  F/0laQk~C' x  NxSh?Q(-QXJ4H?& 2 u@Xm[4\'w}g6s8CEEfL[cY1*r6EV7 b V $ 0!}m4O!0? = y+Kj~^ t  & 9MF   2KgT@;1nx q kl _ n|v:( &@e5i+xCX.I6q79I0)zPMTd6ek , lVVTl^ fpOxS8zLGB]<VPOaK2AIV6mBbq0IhL  w_{}*66Ju  fWZO$MNO)Y7YGf 3}  vSE;SW & 8 x F 0_Tri-c*`aK?rE7r0<x9 ^ Y G # ^e>'EMNsz27 /1*9>{ +L |m,g\!V/>j* g$ @ >wF8UH|Q#=)]Ur%Z}[|4bnbGF'=/dbI.a Gyn20D;|Jf[w(Z?!R#dR*;mw^5, j_[j%CfvG0u t B B+VvuLn#sNI@8b'hwC9|y O ^ul`hHb'[`V"*=fML4^MaRRkg4.TE#|:Yc25Z-mY n-.q-Z5q J >&r-4hc%[P{vh]wzv~JF}A"ywXH]j z u > g Zt3_};7rUnzX Q   Mo9cb3v_M" z)7`+ E mE@Q"6 B} 01 zL&YuS 7 l&  WQU1-l: a? A     S  6]hK8M'(M-_jYBfG.ll] v(CCRpcu"T3f299VDc1o 'H . $ ;> 2 * U skj:Tj= x=A Znth=RtFqcJZ D k X~j[5\|"5+jAe'waP(R6 fRzsx$ D Y,x 8 ]=  3  M  eA ;(}} Qi ' 3Fgk.ahs& 5n<R3&aYSK"4B~d> /s4M!OV9|?[Zz* "e"bu#9QH* a # p{Rs6 dF2l Y 6 | < KFoo3tW1geDT=o fN/#x<o>8;K/  o1W#Cc|L+}+gy: HeCJXB:X8]^H F ' b V ' j+ drBVZ_#  x W  5   *rX gEK1OFRl`N?kCl1VEQGclY!~H2D^EyI,! '*#.i\<RR> qLy R _(I  wm  W 8 ~ 8 U b\;  ^G^RbyU >  H wfLRQN eWGkCta{?I@{;#@fE>U]":]s>gUe T\  A   ~   Z ^  4YC f 8 LR9Gl791NvZs7 6e/  &  Cu<([k`G !}:u$lahH'YqBN h@8N&%d+y{P,M <BSS 8 y 3 tK'~ <O[ [yT[p8Pl*Mx Xd bCU ,q_C_1?p:^Bhy0:/ {]].s  & t N{XXm~EL 59J;N6TZVP-GC'=/(!zAu=O[~][UN] m v 4^l 3 6 l  [EP_C/+[>/_L&m[pen^7KhFGN>FVJ@u{BTHZjp@k}D3\A}\ovn | 0UR X'c;  yB| ] N ,y:g&4&D6687$&je|XcxxLb` BBtf{IG[.%25s2  7 [ \ /! d R YX :nY u:2Z | +0h  >h6o%e0Yb a,6[yay2nQARFbbODmxH?::W/ec hH7[=&v9s4m 4,k LZ,I`U> 5 :  q < 2 3 <  q ^m #I]sMFu4kK}`}%6K'C,&~yAK`zhODN4;jc1^s3-V%7/?t  _  H*d j z$Q z 7 [ c[4 6e i @s 3  , Fa`2RRr)*.^0:y@su{nPX*;mau -72 MO-SycpsN6si_7:>T'r/eHJ a 9%K : d dV>AR2 \  . ; < '  1+RlZ~=p-L lk\LD{Y0cW={\DjF$# 1!n/ lU=vVmuk Ug+ r  H | s < [ oZ mF;J  @ aL0[Lz @ wF ZG P@ */AW9g8]jKV ro(JxI N IFL\~t0/ 3 : ) t < A}gFe9 S $ .<62[R _ 2SVB/G[1 ,.a 0 fOE1 9TY:=`s<;%:RI32KjvWKk0zQ  j %  G y [DG V  }?EGG_T@h u 1 }  W uiNC/vS$7pAvg-So+g8p }Yx u  _+";y WJ|o/  b gu9GP X Eyn p  G h  'wZ37 my gA@ ) Apr>LO4_0"@"hKI^ n!o3UfuLqvyw9jr ^ { ` R ;e @.v#rFRiO+# M Q-FEg 2 m F!/'\gq'e;DoJq%yo5%h29dJ`p*@!M8Trr< s G ! -D<X45a  8{ ! #k}DBj? u 0 WIK6X:XI&0.+K=ZYm^slDtfIr{zo_XjTkt^|WuV) f=U9<1+', 4 1 PD3?T> j*=X?)GGR _ . ) Y2P 4 +H# X8n9o EcD1{~:~%Gr+H*5v\M[#x Q vf? 0 ~  J A [G_AM%{C5 y @b4~a IM R  0tLhJ0? Flz8q^&2DPF'rhm+b: ~PIDbwlWGFiP"L~ s$gWL2  s ]|&?4_ w[V [&pNhl{u L - | u \h^0VL/t % ]u\6A v%+{DOwtIcIo"@v:no{+phpI$+  H L o |B<-RH 7)W I&ZOR % ^Ak)}Eq +Hxvv+7%w,?WTq88,!QK:cvt]feE)H>^#:elC7w !4T  & #)03mn{xVw@_6R Et $  AkxS#L duq`K:w%{3;(z=icA(lk)N1k0Pf{S%y"k3B\EOhRa 0 5N9 5 ",lt'% "cp?  Z V`hT (1SBwa% + ) co  -r,>}Z j?`TAy p~9)n}$ Y?lK75b|>p:%t 8s,9[YH:'(DBa? %7#  Vl}=2 Tys6.,3t^!j   " ^3^52]@vU#>LDy'H.AiD w "s . 4 k [ B e & ( L Bf  w FZ3E e s  ' * `f!VwlxQ 0Yb!6[4< f J cnnHdq&'.z7?dLiNc3/'XuquV6.gX=-blx]f`z)#<#]'~fd;13If,pY<=G5`[ 8nb;{Lh fv=Wk&-3BM^ %U\  '  $ h @  ] ^ u _ f1RY`6< Hw_Ef j14~ ?lG`"kn. u8F7o)aJVKvnu0I\|1CiK)CxXIl 6p1 tr B}|rN c*M0\/0z_N c'$]j.,Xn]gQ)m" 3=cP+ d)}Oekj{}"^Aq<d&K\oq>)]$a*Q5W_X#Y2  p ? Sv0p T0m \ N   ` !G j {0i0=iI!8dt K U  n  ;~ n)G+,SPK27uD)+9@S 2)9Ve mrC_GoR.tLk+t}t*B)I>aF5yZ>YptOCF ZAa;b1NC+6 N | `lT iAuwRN T : b C 1 #xzv{EkkM']!vL~G7H _  <  (~F45NV\5k#&,XNCIi/dgiwN4O*&)W<HX$ *&r?v[+a-L=i5 XN!ht?d<zs! v am">oSl]#<8- M ~?7*yRGcO+$|Mfyj5gI0zPa+Z w  $k)9 v`8#MCP-Tj  # T  4 |~uvDgA (Afx3 u  N>FPc bM%rKiou?-$P@{VI \U !a[_ N  J#>E9h}5PrNlAoX*\VTn) },}J;Gk\thei |B- M"9J 1:i;2NGv:Bd"5iFq VOC5 W!RCP b Q 2tfmG  f n v$\w<1>] : 3)fVM1AT-g}MO/Q bi6J15p]e/\  Mk93Y3;}_ ,89oQq~A((x):9NK$}dJYQ iMNjTV2{1 0IP = ^< "l@v.agM~Uh!Y| ,} *B{f .?x6 7)Es:G&>_sL[7 F    _wOt"Hh5jln7FR66w "# BJ$p>E1)g:06m O.dt<'\\ L{v.tPJPg6nN_Z'4f.l3]%1)21p"_RD'`Sm z'w|\\7 {kE[K~Nt{11[,* b M I lqS|j:I]cK5S ? Z   M M2^- lcZm Giha0^G 9V(tv&}dZ<8C\K?t8\)kwwO oX5#5!=~3cjJECW%v\<6YE?$!)eFu/l;$ b?T TKe\fV < `A@V `"/CfD@cc  ;G:UW_.MJpE& `u 2 %  * IwlwI xrb(p2p^Gjh=yB1@j=^>i/?Y2j ,!zaZc|hMbB+x2Bg,B t$.K~m`UcM@Dwpd1XT # hHwWc ;R`?YOC}-A4o a {6T^C{1h 8j5_'c[aA1oQ o g 9 N 7_ ;  CO&rfig[GD,T22kZsJG.]lM5zwzPs}>Q/-KVG4  C[#w  i{87K Q/w=wQ9]zs.;-*{nt :W%Ke@cbnBAIT$\*NxP>`QKQ@tcy2lG5$2X7 P : o W %fIKy/ C{ "9sx}<:bZ j R E | S`REp wi[v|;BJQ#?B=&tPtbGsadA8Ze>S"gz9f)&y3Tr,J+2" B;rByR.e%~a15BS>~0y/VJI$E4Yo4p3Z FdtAR;7z[~& [ Q GpsjJ9d9/<" ` 9 | r4ExR3 ) / ~XBZ^yNAV  % D U ` f g q \</M,D8P ZAjH> WH}+U_\e!= qr6^YV4jnJQQBwc]/1A c}*ykm(qOd!OF=3>Tn}_] SV:@~"I~t~ao\^"m'r*(clID"\>qKjH"!X`%1Cau e V ,  syml8/Mce mA  5 8p  DaRF+]vCNJDM: _ Hd,;t^ Y {2uq*n F\{C2ezK8pO[rTV67vgL!1C o84n7I @rS?*g t:\<9Z45+2n~b`=d#j% ;EiZ6BTf|{Y9^CwJ)%*?~*rm?   b  %  |s@t 90'A q ))DnO%jA-{ = k  5 *]=  4 & * _ t(J#!ts2a}*sk2H#pX=eg[;=U*E Q k zVwqt30N/E,7%"- ~ <y"m #5 .=ZyZ>A\ut~B31[WVyM&_:C:MB8BPA .MyRX+P pa!qwXIE* % ^ > : k '!(Vx6^hCM6CT7*]y:Ojg}F5$tTl<j ]RBU T*}[}~d.N#BQAj,E !BmBWCs/ [ ; S " W   { j &6xGAh| @ ' -| h A $yE} [q(6. ;b; x! ;  Q 6 , l c  f  [6tTBXU;,G5Z~DYGGPqZr<D+d$  - /  @k3<{W2wnf(*%(`CCi|Pa5 " 4fX1Ylz/pK@KlsEz%4s&jZ<;Xo5*>nt82  U  Q s_AQb]^Ih|$"o B * -   A (ls/.~0  % N P P Z j } } M 21v__AE-U<uqC Ud.Ah!A>MRa2i' w #j ^(IQ84Xr#mo/\-%/= )GqmcaQbb5rW)8n/~-G+' Y0bUU~sp7Q  *  p l TW(KE!trh Vk yL  7` -Y"L*8C3IoEL _ S  / R ub&qF>+1fDDfC-fG|i'_s.5r]m7&@(S0_u;81 [ <7W^}hh!nV5SzxA yNSglJt^6wX Iw_7#"|=gW4& ~0M q\`$ qi^{3j8K_s n ' f[7oFA_TP]SXum  { )0 gC%Ke[EdJ7yN'F{weucnwgq>1`\+uRX|Ye?s|F3 ,{_ov=*nm, a!9 ^D^)A&WD,W$o[ c,OL%2Rgq 9rI[ob85c,6>QtyMvj6z^Y!U+ `@wYi R M3({V   %  < ( ; l q H~;2H8,i<--=7 ^ 4 [TX&X~V92"3y6ZdO_0@]?"K|cSm<ZDAC &:}b:*<es{Z:l]gjlE(JKx ]^[n*6xWIqpCAPjw~y4(M> _40wROUZ"cR P30 0hx+07/INvo$7nf 92} *  *  1N- &Tv}jkp> &2q f=8&RDMPU?aTT5i&q>-c9e O@2 )3CYf eta@A ^' Nza(`e  rq_vUl cS~ C ](9[  eC'y[{r|  3Jy TBRrxv4<4~<+:5:^z&sFdX>$l;VT}I#y?|u,  / gO@0`c)^ : rl h (o kyb`~y! w & G  l(nm@#AW ;^WM69|<9:k-a=us_ 0% O7RS #oytpZ `T$mb}CG7O^7X|igO`:z `zV> \sJD@p3:3RY~CZi&{Qw^\u!%&v; KYSk Fu&U> ,rtbQo:f g>DI O 6  b  >yPRl~<#F   8 G Q  _Ts odb`1Z ,.^Gi4P<l[v5 }_}=)w0)@9wY!`n^HdZ(HcuMxw|(|atPZf .}]%(\342l>A'C}S+m]?5 Ud /s)6  %pPXR"G&(t8Zx1 #31tM)@H) E r 2 ZF* X I z g  $ / gYhzGIVSR  @ \ o z[wi3TerI2?55"gB5TU_YNpgSD q yi'T  3y+vWjo82J/5+Tj 4IHV6 Z5zC&!QI{`0k  `5E;8P(2)TrD+P24&8q&nA-0si+f9a4 f > v 1 U Iv]j % m ? )d?BD6Z(?mY>H"yNN i 6jp&8ndU6MZXAWxO!*UT]$[.E92.xs t{D%1S[=7 kLG`O 4Y 7m+I!kzks@//*_aAv~\9"-$RVu`-4lf;6J$&% d6@i e +DK M&u qG^ o< 7  7 ` e BhTe%u D R 4$I'H, P  !1 TxT^([n{f2 JhvE`fl#lnQayKOphYGk $K%H@?=E.c%88@"*NqC, \ L QzB0[OHq k k ? r ` V m7Rn_ F & > %*3u Z  w  ^FpmBrJT 0lz.h|=!%&"xT#DOQAu0_S'e BnYh7p cR-l 'E))|^P5Hx-kq[ eUKe^n|O~xl2C%STDO]:Ms)dmJk ;^wp 4 , bmYo  ]( R^ ] 6 Z  ^ 8  C O7}   7| ] L f voVM@1"c)b-rH>|v:[LL60nSr`nh5{KJ*DA1:x{3@KNArD`X<%k}8 XSddu(E~Xa =1`lkYI|JN|Q1 Y{jT@$'RVMv>MkSrr@}lG+@`bn&3ToDD3:2y86B!R? :RQ? j L : M m f Zs [Na5  ~3EIA} =L{?3%L-0cp+ F }.K=~Sr%)N>ijOS#e<*;7S0N^=Bp 5*a$!E'n %GwmE\$e&o8w[q).mrvoMb.mmO='Sdp=Vr D B EmK w N n0r8 ? ^^ N.u\+Kz?rg:JQ=:#=8W97S:C9rE>U O iQu+@_(v=B e4pm/l<XK4/\/(=#''ax]H+S|ZcNcvQ)Y"[ie4ymVIjI}!gT|C}(vHzo bk&Y L< L!?S_1.:> p " k xT}+ " 4 ".<^KZA!OI#^.4b8YTZu yl$7tu0L?4o8S6-kn3F)]nm.~<>I (a|qE{B[4D$U Z>U;w  E |  =d3Kb0f>[<{ yQ))Mj%aqdXS",??.V2P7 R^O|'L|b?.4-SkI'=Ul,W#wk P  | I X DbJK ) cYwSW=d,(5qkA_"/6LB8siW&5x 6 ko.  x,Kdn x i*HIp[*SM{',E(HjoNa[YP@t]Oy %6;a)CYUDC|4y%+> Q  + -   ' q kf O+%7.C%o(Kuat4 JZ pAQE"w@T0[(3\6 H%KF*? 9>,z}m$p3q LH.k* ]lm~T?3 7 ~!' K T Ww#pg";L<?u<@d}xabzi8pZiQU&Cfc{[DDen2[ T::CQ){3bPY| 'g9c`<8 2 ,#g u u a o !  | / .A.v3\bM'QGCI4LcJfj{f K``[J7Y`oSH!Dx|D1XV3gC-DKK^U _ _ & : i ! eD +  1 `j /$N!yKB:@0lri,HK@5 )T.8U*:]Jd=Jf {,`xvRefk1 5D60O 7 v w . \ j/ G  ) KT4 - O x c RC0-]}#=Tw?uziO,%4!4rLQiM?|0/H2PB<z^dTMBO6B>c&?O[b {/L'b>M{:;qm % v!_Z v   D6>jkIjqvzDkJZ{Pof9A( ~!6Z{ 8e/@tH/{ryv Ce_L;z"bK ,Yl3V>4Ryy1r=cyP 5sPoE~ m > 2 e`+R;M V Q  |Js_Mrq''@W O$5@~hV2E;G1f^| *,h1i8=i0#[LA#T;X1+d@GEi-& CbWE` })?E EC@FU^m:M0AF) "Vm.b m j6Wa^oW_F` ~ +3)SD!23)7p93i`r v>u|IlH)R"W{=d105-rvWoe}8:}JNkDR  rN/wF$) b \ DkKym`!"l9ZMeJq59<XW?le c`Q:<89d= n6_5Z0RIJ=!R /0xH7vr8ZCn234vi +cA yu62ITV`6 Iw1M lvtS` {^(NYy5:@3>n[)\U`{\e4V79f<_)6&BBIBU=~p8i9aIa/`m|bU >CA~ R2kz'zPDIJK ~.!AHwY%fIO9Q|(k=L%;SV%j Ia)ueihHIeszzP9 Sen6C8:XChn}V`^`fCVO"a?U{{xeg,82qj 0aUnW@.|(+W0D=0oXt'] pB ,5Fxl~VN5qH@oJR>u=O n,C't{8 IGn&dE~d5#]zXax<Z.q1eL_ hHIXR/=]Q"l#YxHD+hr05,Z~hgNffXVM_h[zQz?d(Ffvu]#Y*dXS]OJM] 3-9(l$%zgV OOU^ ?n5TK9DrQd3N0\kG9~n/|>7|MNm;=uGi^QmZ/n&5u**G#t@No%7Bnaxdx.@q!{_&.%\>YBvZnq><} Oi5nJXl(5)lL3BUt Jt&5} p6\%  lM > %$aCNZ.7g#+3eLa 35Pj5[.#b^$-xB<U!\nA(djfCyt(N9>s&{6|1siHh'Y$^{i;%4$p?C0jdSY="uJbX5TH n- L$w9|9DR8m[IGi_xev15<>tJ2z3UR7 h`]ky2=yS FvN%t8#0GLB )C^bGDYFo9VU|E~h<8g :hjxAsG9I ( .:L g#  !Ch]z^x-,s0%lE.fLe8=w[:9eK!^e{\K&wMlGC*CQO,`:$Y+1MhB t9hVUOo `,!?2eY <\JH[Jy|IXjaG VU"lI  t Q 2'cEjx' P7nk4f},DqkvF i zVUo^J^T1:rtGZ]Xd~'t .I?S3oN z<7aJ, &^ .EtO'3Fejv'W  pyHqx>b#-fZ>E(wsx~hL8+,;WxS>5{"nby=$+S?hRFT[GS> 0$7w.R|pyZ&~\hB.@\  AXPa%g6_\[f>H[*\MFs g1 ,T!!TP\}z,?/EWy|1$IX:[O .!.h6f(U]f^8-qb2ryxdh2zlCEaIPQLJlKF`N6[\gW`;}`1 Dt^Ns\wq6)MkN F\+d5  p R  |-L@ b ~^:k(Fi  i}p&lL"b)&/P '>is7kI(>m,\"cTos]3byu gDo G&#VLl^0+\ SH3{KX=|"2Z "C}4]lY_:>J.Eq!v"tj^K@~yq|aw#C5f6% QyARL/5e dpSXv :Mmp+i' T J4|2rrXjN" "#"1}PkVX.R''fQrJe/.Mm/|mU[?Yrj}j?Y;Bp{v[VxNt>0_ :(U[)f a_7B_pv 'Og8i|Q`<Q6z- &9#< '_4`v)onf x ij' Ik$Ut;;V=?5rc "xf,(1DM*)evx0T4jXPq{w~z=Ptf=>" DW'ps822zw,.:b- n8.B 7 _?[0|Hp,W+Y=CBVH0FuesLElVo5bJi`Yp[.2eh*mODP'7J8 :{7@3C6qB^9x/:_W=(RtRrA5"{L$ Tz|H o&JU]sEX~~TO|;1\8Ya]Z `hX0AEuXAz`# PKZQk}`u\p]Q(wy{K8(i&t}z+!Yr`ijqF?5MhWA>7c)miML7` .AepO@p9HlX2pP= r{+)vW qQOA sqi5*r`E7:TnFJl_q#|+xtXw.>Nk 5qq4pR$/zD>r@Xa{/\ja!s?V][n4gJKTAS%.nPOn{DU2xP:XwZ38[4,e}KC#>_C {KW}O zUNYvm:8^~|44 7nm5-Q!'qd%l ~RNP'  $U G4v $:x2n(=\zvX#=:9x~}.^iuslnA"&y&'+/h\)Ks'k9jTQ wJ~7F)w)h4jK[iz.5q&A[q{u:0--x{!de}j6 ,W~d@ "Mso e4ogbzk>C8k 7|"$"e2 U2B3Wrfo#7`K-X`H{o!D#*tQoP5A&\r|Vk+E/~[ujp"Vi_G3(/P,>Weglz>L }i m1b 90FcTvQ+l 5Uvtq|TYuk1GSDx_l!A2/![C Q2"2-J8~ a'z]5?2,> eLeb,G hm;eiwV5]8zJBZR"% v`B~IQTVJzp+4-w~-l8se> z^qi6qkH0+B6<h}'5`MR.VX6{ )fan_3$"| !Z<~# Fw$S!aeI(DP9nR%1Ce ;= 2jS  )@f=lSu>tp%x&UVsjv8 Gescc ]pu0_bFBC|.Z~mj'" ~Ug'H !xQY1 V1/"[_Fr1BRpH@ nVG' \U+ysC>dm <2{{SO.|Shfg7H"y_Kq! MV&??(!]PM:ZTGJ>;)M-{-7+_*)v:mK~vj=!G/7 XgI1t oXNT8  o%z !Y.Jd{/b~ (lF 0,.bd Ko|2}y }2?By);`*^zH()KeSLl QvL~  3,.%Ok[{r[IR\gr<PwPzU]2UuG18_+zsFK)fEz+^b]D4>3$a*d&f^ 5Pf-LfvdqMx}s r ,HVen]2 =33?CCEDF0T " soYu Ga-!/mQmvIrHG^$Pn#'V3YfwE:Dm s='X4|a0<~g[ r# XZmz-7M vh:*CJ- Sg_np1O k_])C=$FH(\Yq98gTDQ7/(s7;;m H96fA<d_V<k\{WGX&kjG S92/B I4W? e/X;9f:~Q4Q6O 8KrigSmo3A#yXX+ ;VUE-qGKSG4$L[387= (%J B{P +]/WrAg%eY I7s%\W9B m^rDX4;p9e;!B 1 xH$\XV]4r$o!03 li@53 oHKigML6@;Lb 3UM *j^Y d=p|o*mEBiz~=hK * old`(qw w ]c7Urw)H "$%6HC6% sgkZ3)#)4>>K|V69l~HzFKB{*_Nr/<z'i2~q[LE?my%aAHmj0A~3| $|*,cM Y[gk<*GU\mh9ry<1 %L~v}!>^7uTqqXDr+Pl" ^"Gm|jjJy6FI sRasv{meiyx>0cz#e /;8FD"`s\[##wNs%]*AU`dm|>Aw<Da%2N 0ijnD_5v8# .F`%gmA WX!#&&,9!/vrZlcIO)I rmz.^c\PRq_ASH I 4g#xWgqG8Ip[31T~ xC0#r)h]k/U$y; e4gG'<0x|!%}M&?D Ayb4z2V K>~qO8/5OqptioQ07ju7N}KMEl!# x>:}8NsB pyL' Jx"6E[v tbOH"(2u, m :. i" R$>j Itx<|hT AfoYIDGWg~LrZT"QhrI OrtT6v`6aHl\&$N>>v{'{~aL4{XR:1 brY^ryKH|I44Oe3_|2p*Cfk1k7$M1x62Qp KneMS]5Boswlb[\USM>IXo8opQ1=|>E;.$#>_pI("'+%:-5AeWyaFv Qqu6gu~}5CZDn(QZ$I"*& 4Y!EZeh_V"iLA)9BA?R^_,n!T{hYN_?~q[YgU3gNzM4a 2RowX0W2\G1+Ds m0W$d@dhUI9,1=7@kR]ku"D.:B6I 9RYbid^chmu~sdXG8+ |zQ]Dwb=gHApS/  N?h 'l>YpwNM0g225/+1RmC6O^ebYWZ`isyxo`G+U%63Uf^r([  nXE5-( .$+HUfZ"LcqsopwxcQ6kT02IW]mqrylj_NXz 6Ssl_RKKKMMJA5"EIa-8Mam %Z`SP: YF8((=[w/dy`VUQ@ }hUb~ (Lr)<DHD9(d2j8Di0[wobJKifI.+@XpwM&|TZnjezK$6Ut'`zcXXY]hol`K5~jdm&Nlyl]UOKJG@7*oA#)A[eedc[]eu7DIOXboqjnf]ahbUL=."")2EOCFPE2(1Q'#2$8_z}nb\YVWVRJ>5$ 4BPZ^cnz_<&|o`QATeddq*+1:>I^npqn\-#7A=84+&).5>I0tM*+AZw"7&GYdjg^RB7,,*+*( #+146888<AADB {y{y| (4@IIKGD?850! %.5-.?O3+*)7>DHE@7+'!   (2:CKQSUWVUQQMNL-  "&.78+   "!  )2"          garden-1.0.9/data/wavs/whoosh.wav0000644000175000017500000010327412457263300013632 00000000000000RIFFWAVEfmt DXdataA`ho"z}aIU=9%ZM/5CP6yBob>O> O;G 9 FWs\x -3;*dlX?$}$ Wz0 Z 'a7 B s5hej( %'7QG`O.]0d7?J!EX JF06\ p"q=}=(. McIܸhl Er   t6U~< ^ =  ~ A# d a> o vvN' oaG *u*o*`J-*'<]S'EC ?>@">=6 J ?! ,S:Y>yR(RWMh cC+FG  $ =dBHWf PM X N  SJ/ Y  r#v\@?]NE7y2 ZYc%!.RGq p`~\ZoxBwU rE  PJWG+?ys&OZ^C| "-mt^fg%_Mba:vZ.y|/xO.SjS JZ 38 OAW VgQ$  a le 7P$|ep) RXzp5zy;LLErn (W" 3t$QKw b \G- ET0,{k / , V P+ >8wY-kCj.aEU tHqb A8"}g 8 + K { v# u~!]!S l)G8x/:uF$[X@P[/ >V C   =Bg`uS<Z'' / R|A_ MR I ZGYRb0 + QK3> \Q"#'"!(GF P؏.=L}_~V7SZE{ ;lVBi h7N$ ~*` xki' 2 V 0xar/1H mq,|:; Rt}B 3X  8MZ+_ [] 1r 0ߋ%Fkr nw&$\vZN  O7 w-<}T-W p o v 1 % - w%^NM&6m6ny#*dU6 V p  F5S ( 9 2&s2xxF; ]&?D ! K 4  H h:\  -Jy^V[`!!4  .PdS #' ' 3o(e (?a^5L[)Wcjg Dfx UJ1K:ih<pDVXgcQf*.L%. H<{r :&e( = DE/g`=k ue_ jZM~ܨTSq 8 .\/#n*[,;alq,Zk91}nDh z(iwr",<?`w 6"3 P 2 `Ag>)` GoHK.TO iV  Hݠ`j2 ! o.C sRG =2p Ow= a] 7TOL  ]a[ s | xEY<4B= uZf1a y5 5U 'Ei bZzkF60 0znm8 ^ y o! G5S?S< g8 Qu6k-(*$w.t @!N%wn0r ? /SmETda0n-t1vV YT\O@Y}!h!EoHl $!2X*+e)uJ]Pv^ L k&$q vX^[+SJ~ MlZ]q2t.M9S(8];2e*Pژ+*+  k%!wi*r o B v - jGynqil (V ( 7 F[5  { "U "'$|HXC4fZX]=S D p 7ݱXH "P{  /d L1< \=f187MR +g:1'< za 2Dg Q ]m&>} ~g3}~n 'Dx> Y[fJT%s H 2y4{m Q H_Agif`Jr/ i4I_Vo Y K k|! @#R6 ; _8 ;=/ ]|\R* $fmm`ExZ;BNoz Q%"h0;m  ^ 4%E!T OP`@qQTZF oXSj Jq&C\ f^ZX+^Mg }\N 5NDr<PYm ^ ,Ppn z`ܱ8r~ [a-=߬1et ' o@F$K [ H k  B   *n_ 37%:3Hxs*z &5L  } p!-F{(\ i  6A>""4WVC Pp16G3P8@5G 9rm cgs [ p C &   &  /| O62z c eA3-MkxuW7yY ' 4&z`G r }fo YMu"&#!rTtD8!  !$"p v KTNIN|.j)mz0`3eH&6*HT 6 D {! rbWUhrK1: eY JR6YA y eNu[* }|KF/e b j :@*v "% ; )~` .Mc  _& C`o2T{%&#H}3T 7J>NhoCR ,p_l00 kP c$ )sr\;l: 3X! +w vO)lIlMx" >F'eV wV X!I^H C ;  W0p'g46eBTlY5,+ a & Z_ D -L<Y*%8"  YIL EnDm ~[ ri7]n fc< cN{ J G;' E `")  $ W~e}B *: 0.4 ,E0I?Z (_ NjVB2834=$ 0 kQ= G Hx J(  Rb }s.}U=>PxivEU 0b f l<6k !  Emz1m )N (`AR~Eߜ'=_P"#]!u)?@>  zSS+z/ q F&  lDDnV5"_:|i) Bf] 4 F"&! IPLy]6 M> G% JhDXc`u +E [0 :/]g 8_HYw 37{ X8V=EL*W S % B. d v ,554~C3qAV&BUH@ s}+-5lF 4  l %wM"2} 0 h[:Dm2 Mr%)QXb 2z!I NWC3 _igeol ^ ? 4&D +Tf o & v b| w,p> x9 m ,P !_c`5W ) u"&1a 3 I R %  |*cJ D*rf7ei V J hi7{ b<&]AFK(2pxalG%A c %d+l:Sq2f 2   0N!p9 <0xp n p|LD?u HT!!d qX$Dp8-n )(@C ߏ( drE[ > ;2 <)` u(d8cE{ uUev 9d**I q _+5}b+f W& u| rX  Ra=<, fg# ix  Kl+g:Er&-kn Yw9< SdKh?2O   j GC `twFe#qSf E 't, 7s ` M._CF7E, X6tZ)2#"F%k.gL^ G'( ]V o0?/,[݋ݬW/(~arg{~ = V >SeX )[, ti6<N #M <>Oa 'OX}l y4d %@ r!"!}& 15#V #8 *~56f,CT_ (081% JQhs] B7K yn f7x'wq~ 7j ,y;_w iig /D:mz_jCj] %,%sk(0 Zyq4o":4B7 @7SRyoU/JOw 37h# U<%,  a={6KT _VbDVd v`X A5(PO Ha y aE $"%+%:0 lR^ p R#"u# ($Q;G:>cQ$ ,K ^0&kjJ 6 HTYO6tfh  i4~Zxc9QdM3)N D7 ? f*Sc Ms  Rd Mi Y o Un>{@\h% P ]:BeK r S D]E1JJ *sgaz v imEuLy l3 dzp| $w"4 !qdJ 0 C;1sV &vI b\r:2-Y2' h|' `~qR:'QbXH<( &= mMTMvg AH :f 5T1L >{$"hjVLb  $QM   /!` x^ V[5bqht' =}! &NGa h\]x '62 g:z4p #wd& d, Y0a[QS/N ; +I&PX7cJD3O\<4 Ug &9v4AuvPS a%MtU= y.4 >kM aQUGG(%; Bw#i" DuD{- r z8 }EFl "(S" & %op3L $,Xx R'I Y s e v ` Gs-i,R>9 I a }]A 0Z  ?t& d1.CVF>2 0HZ] 22 m ! X @r`| j&@m0ZIu),G C ?~]xfi7 _! y^zzbI{ Ju< gN  !=; ,0y t4)mGIrs/ TrgF;I a$5 x D BXtl R T '  8 *-N{&{D`=Z9nS TH?$` >#3EWmgR9r5ryos/IFy9Y o1! y K[w _ rUS:*X  ' H d rT< M X C4F~>GVbG 31 H$l {ANdo8 3<! nd<-bWl2uy v xc v*q_ ;f@i[*2,/++:< B Z3$L$XX B*sa :l!.es1.{lUb%/zG  k  N ^T1v-]6T 4J<us,pS^}s'MxvG 4 u ZJ#<'zPPYL H  B~sr:x om:D 9 k ;v (%5>7I_'/# 9(f k aUP< |8oIq 2 Y  Wi5 = iM>F  c -'@{(.*& LS +X tQ N- nFQ)"8B _ yH]SpB~R I  ?Vt J ^ \IA`])Z ;r & Sf! D  m4Cs' 0= < J}W[b`34zaUE MEnA\o1 j M  TyAqA `u? Gemla h Vi)x L] N#s&#.<v/g8OE:DXP9\>Z VP{ s$GnD U|9gkg?h )UP w;UUHG~< ~ LD^c] g 7#B e yM#V+f&3AJjD%DMA * - !PnU j n2nj S49MhD`[ o 45j!=_4/! wybn_'KG oO:|<!3tgqSmw){ J N/+o^sC%j  2 l*=SkvEW~\H  {  )VaVq:5 Z lej5kMCWw - i!  H9W3|4] i?5)  ;C"4z z  :SK_(i ns  [ o02?"f.Z6 s(43 R   ( ylcsn\$ Y fY| 17  I/O@j_8la~oi$7GB:{ d +[ r-; K rx   +OJS o j (N=lb0O>"*,Ed6(5)\ d= _ wPXWX \ ? _ q (E R6| %zqWu?6DON2w9e" 1  U { p P 4 s X J%5yd!= w a "x4BGou WH\qioD"u2;LPHu#l$ D  IkU`#r[}VeK"CwNhb-`5B%C  ^ye!4fL5   r :@h/WT$:SU WNz?)AB/f$NNDY 8`T9T{*  5 \z-^ 7=5s *"B2-lW 2wQB}g t B &{r 6l q,B >0J#6t$mTgbB{@dy"1*D  ? " i ~ {k  k s,!J{N&y2zP1;K/@!G6wv{]}IdC&G6 +B3'\dmq ig}%# xq ^q\@kEelcq~[/ u wn   "if3H2'll5[ 7 >: b]vy51hc aoxK)). 0 gh h>,+y  X^jW E-U*Xx'7g4M0@.x j .  W~%Bb4B_E/zv9("k URbF$"edWDV N  ' medPa2 | \Q - B D C h'%6+;}1Y!2gNlVq/ 5 N n,p:@gBvd T2$?S(AbJ8 \ 1#L8O: &_@7 Y(vdYb&s]`BR/BL4JJ(DsAPU.O~mHn _Z/]x(B4{8NmXE?g \^b!qI"^9BvuD?kn T ; q '>SK@$W{ Z scfE3dc THoSunS * n\?^l Y#A    (|p+ob>)p$)( "]e/}s[82=bG:Z!we"D?)"BIq+   + gH< $:<HlPL`m35?Y/_~@UR PE#oJ r _:&e:}N4O.Wp05Hidy&J993 r}E}`)uko]wYWGqS* | ?5 aRG}/H hf}dLCi]o' PieRH[@gid"M3RxR`yky 0!6om29} 5I_,-.J k]>) $ (  m 0jr_:*.uFxor(PeJt[!-%^C9VO?A;N$ + Q } s 8 Q 26?qc,6,/]|3^J~eW ^ @ ]$]0!m8D*S 7W < ]2h  ; :ng+1 *Elbdgmcv-@h+?IAfxR :-jGY"F?s|;=.`pp`agD+0c n p z^Cq t5oD1 kVud% <suZ=R'? "ExS(xgCjyPG\Y Z 1 U d  \%<Q=Ij o N,a  #|sSxIgTYIA.?x7N).o+U cDwJv#,#~( BJ V % i   y q(@KG>;yQpa/[BlUa+Pm)E"u9aZA{*~Hf^~B8 H ,3pf(47|VdZ#O-*!Db3@}]E  I14@  lT,`#a#S:L+=5\ q u #M|X@9cl4KO@N5ZEJG F3T)x}m4*C' 6q9H tH`[H895F9HN#-r w F _zzB $  IsoP\ 3 @FAx984uOv'/U0ctpw+dkx#!K* QFlk ZY-$L0_A_f'b\Qgmr&,3_ <~6yfQ(TRJ :ceg@}9!!T/mt*[ Vk :?h Y#py)eVJS   &H{Z; S!? 7[s@X0Q7 ' "SJKZzq Z  p 3 %kx9 uy9z`riw&s~Ff bcyi  %m1"  8 x"op;UmSq|qB ~_F?2T drn ;;<gFH%uF!ttkJn\=>pA[`Rk  O  Ta;3NXXph8l =E/423O`p[h.VB%.$6vCHhs%l)g'* O%v|Zv/9Z3A)N#dP+[,"*I0Q9 Py1GV|r<%|NVv1yRlra G " !9&9'VQ| K;&\|  Q 1Gtzb- 29wdXZ>{}m; . W E MOoOfc*.q1a5In 6 L Q y*9(d/Pp.B8v#ib&8H!xD9@]R\>|UE5\)(8~J+st)mbUyhNB m&w;%aL3KCETq]XAq m  b B  > No}p<l)d&y@9Ux*\u^mh\ _ltH6Dl7 iw*yqJJM9jaPIei!HCyLa<+_S:Y O|+NCfp7i qn.be`  h .kFx!,c%$*-K= q 9 \  #QzkO aId(Q45q_'gcE3w/OWvAY~>^jdu @#n9!=t>3H]2!xK"iZS #jPT,[nMGn7tW~uQ`#[u * z Z*k+V?~a:)Gs ^ f d uZC2Q2OXSWBvb&u16.N~h_@"#b'h0@YY9`%=.t-uL\)  n _  4"c+HHKw@xcu "d255fuM=d54G!ZW#N{"h0QTs?nO/n&ttT14,|&{mj/Ng ` W k XNFHzihRU#6o//pC  + `x9uW6zm~t0U+] (.bw ] r'BLS\-X`;s~ 'Qv FUNjFCN_~\VtjULP#;1Srj1   r9/ 7|U bLyQPjF  =g!(`\7EQAg{Gp   x Z/p9s?&eN@=%={%nf$)2AP,|u)Y rmPQ4 $\ jr)\D^SMlJLEk [2)Ty`~hEk|Vc Y b j icY;M-#{ Pu]i9]TrB/7}Oed~d,kIcxYCD?{|\I4"`\/*y=lH] +U<C-c% BVH7@nR0'C*sEok}QO<,||`WTV 1\3&Or_$#Yg`l@>M&@ |&'h#txM H\$6m$;_ p#_^t6puY-:RK" +kDiUA 3 # SdRwTmuHR>[di.B3zb;?@m>3 -   o 0 |,`eZVmNleJ;`\>rqw`jlKe_JzA 8C -DPvkV/ 92OGQb&Vh`r+ uN *E}="(]e)7 p}:AWugm5t;~CuDFGz]fP|UoF3Gzl/g*iJ)!=rJ#PiN~\Pv3a&8u0    |\ Sq THBX--dw%zq|bc[N)Tjc~u'04cp;]k>uBL/x,_*t3M5uku"kB|38}6,)M[ly$Y(U!(q[)[<c8\9}VOzXv {C%(LovmS_yK pP2E;2I%,7,a!Wft[p: Z E $ 'Jw#G_51XX@]z Q  : H hbP\lUbqg/07Z^mm,RP`C  %30]|TWw,tQ~ek XI0 UAJUU.)~.@W?U#Vis#][lmsh g:Hg  n eb40g}U>t'\eX&`291Z&Ds]QsUbo)p5Ah<=b\c-"C}== 7k(co!TV0JA}V'RqW/nHAPDffRTfp?'l V_>Lpy\O4D[(:5 Rqs0'q@  et|]!@'PS++q`>j$9@1K~] 7I1Z(IiL 2Hku%ezd81aZaJZ2q4`mj\^3DX]\{Qk\yQo1^Zrnxum_]cw"P#x0m3CH3[ue] i/ "Q_\,XXPjK +c"BD>H4 7\dx(O,aD\kV]\3 mfvhO*=gK1wSGed.m<\ 5KJ!h<4Rgt{{}sE Gxb6u$v$ci )?MG5# &5BKJ9 8KTM:'#;X{N"8EJI<(!-AUciifYK9th`UMA9,$ *=X{ $.9DNRRL>2  garden-1.0.9/data/wavs/worms.wav0000644000175000017500000013035412457263300013471 00000000000000RIFFWAVEfmt DXdataELT\emy(8?P_iy +3HTh}wrn\WE?uX<oO.+ }}mnm_]^NOM?>=/.- opqa``_QP  .0..?>>NNNO^^^^mmom~|~    ,-+-<<<utvuefdefUUUTGDFFE6556%%'%%Tr O l9f3b          & ( % ) ' 7 7 6 7 7 6 H F H G E X V W W V g e h g g u x v w u w  ]C,[2g O'g||}|||klmklm\]\\\[MMMMLM<>;==<-,---.  tN'kFtL $ 3 2 2 B A B C B A S P S R Q R b a c a a b c r r q r q r          !  !  !  / 1 / 0 0 0 0 ? @ @ ? A @ ? P P O P N P _ ` ` _ _ kw prrpqqrb`abbb`QQRQSQPCAAABBB2030323!!"#!""ustststddcdcedcSUTRUURDDYY         ,*,++*,+;;;:;;:LILKJJJLY[[[Z\ZZkkijjjliz{y|y{yz k; u!v yywywywzhhihihihiXZYYXYXYIIHJHJIHH9::89:989**)(+'*(g_gqx"+#-$ .''%&&'&&&576656566FGEEFFGEUWUWTWTUVgdfeffffftuvvvtwutt # V '] >? }~|~~}}}}}nlnnmolnm_]]^]_]\^]PLONMNMNN>>>Lr .a .,./.Lf@ M' !!"" # " 0111121012A@ABAA@A@BPQROQPQPQQaa`bb``b_apqproqrppqA  Yk! !! !#[(c"mX           -,-+.,+-,--m _OABSvtuvututuuteedfdeeeeecVUUUVUTUUVTEGCFEFEEEEE66545575465%&%%%&&%$&%&M*d           **))**+*)*+99;99::::9:IJJIIJJJIJIIYZZYZZXZYZXjjjihjijhjijyzyyyxy{xzy Cy /eP%kghXWWXXVWYWWWXHHGGIHGGGHGI79778888869')(''(()'(()  ~u\B (&)'688796878786IGFGGIGFFGHGWXWWXVXVWWWWghggfghehfgfxvvxvwwvvwww :;:9:;::;)*+*,)*+***+ $%.%  TUTdfcedddfceedduututtttuusvZ Zz3,+    VK bbbcacarrrqqrsqrqrrrx> `XB O ?d `_``_aooooqnppooooo~~~~( Hv! ""2Z3 LGLO]\]^\]^]]\^\^\mmmmmnlnllolmm~}|}}|~||~|}}}u G3544%#$%#$%%$#$$%# LJKKJLZ\Z[Y[[Z\Z\[[ZZjlkjkkjljikjkk{zz{zz{z{zz|zzzUFFHFGFEGFEGEGE777585677685767''&&&'&&'(&&&(% f'*()':898:7:7:888999HHIHIGIIHHIIHHHYYWYYWXYXXYXXXXhhhghihgihhhhihxxwyvzxwyvzvxxw5 &x8YXYYXXYZXYWJGJHJHIHGJGJHJH9988899889:9989*')*()*(*)())*)) mQ0 X'%'&'%'%''&&%'&6765676667576567EFFGEFEFGGEFFFGVUWUUVVWTWUVWUWUef4 nfefv8f e|y{{z{{zz{|yz|{zjklkkjjliklkjli\[Z\[[[Z[\Z\[[[\KKLJLKKLJMJKJLJK<<;;:<<:<;=;:;<*++-*,f-Rw j +t$#%##%$$$#%$$$$$3443444354245424DBDDDBDiB uA}|}}}~}|~}|~}}}}nmlnmlnmnmmnnmlm^]]Pf~ U                 e'~ 1LwG/'-VOJ-߿߿߯߯߯߮߰߰߮߯߮߰߮߯߮߰߮߰߯ߞߠߟߟߠߟߟߞߡߞߟߞߟߠߟߟߎߐߐߐߏߏߎߐߑߐߎߐmO%r+Q*pI1 F{ 5 ,w.[%4@NK7( `!y <Fr" ߡ(m:}jr<"3y,@T xB:4Q'!"###############$$$ $$$$$$$ $$ $$ $$ $$$$$$$$$$$$$$$#J" 6MD.X c `MHT-xN۹۷۹۹۹۹۷۸۹ۺ۸۹۸ۺ۷۹۸۹۩۪ۨ۩ۨۨ۩۩۪ۨ۩۪ۨ۩۩ۧ۩۩ۨۇL_5V 3r #w$v$w$v$x$w$w$v$v$x$v$w$w$w$u$x$v$$$$$q\HB.x U / @Bkd !"'$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$#"!R [$,# o F r*X.yqTk.ߒ޴$$$$$$$$$$$$$$$$$" 6.[ 8T& XmS;-"9ڼڼڼںږt]GE>JU_z!{iS. h#F p !#f$%&&&&HrޭBQ"dGJ HKt "$#&$&1&3&3&2&4&2&3&2&4&1&3&2&4&2&3&2&2&4&2&2&D&A&C&A&C&C&B&C&C&A&C&C&C&B&B&C&C&B&B&R&S&R&R&T&Q&R&S&E%#! Fi znfXNSX\awٌٍٍٍٍَََََََََُُُُِ~}~~~~~}~~}ـ}~~~mnonwܬ(n=E z#&&&&&&&&&&&&&&&&&&&&&&|yd_YUQLGA>74 dDz \"#%C&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&$#l"!u RK2M  Y VANzSGaMY:!#$Hz۪O''''''''''"' '!' ' '!'!''%" ef ) D alIJaE<05Kmؿؿؿؿؿردذرذذذخزذخذذررذذدذذؠؠؠآؠ؟ؠؠآؠ+.X=z%Ny q'o'~''''''~''''''~''~'''''''''''''''''''''''''''&"UVA 3C ݍaQRPQQQPQRPQQRQQPQPQS@Fy @u*^@,g])b6&.A22 !# """"#! "#! !!!""؀_<;6Fcގ߼5<s7]3ji b Y#X  !L" ##I$$ןۓQOz2`|% Xzo3~!#% (>(>(=(?(>(>(<(O(M(M(M(N(M(M(O(L(N(O(L(N(L(O(L(N(N(N(M(](_(^(](](](^(](^(\(](_(\(_(\(^(](^(\(^('%#!a7x- M`5bYׂ׃׃ׄ׃׃ׂׄ׃ׂׂׄurtrsstsssssrsstqttsscdbdeadeݪP\i 9B"r&((((((((((((((((((((((((Q!y"{'+X p8L{ ~!N"##x$%%&&&0'p''''''''`''&T&%f%$9$#""N! R5}1:  Ks/S{U^"k>dE8*wcB0  $ECOKZZUS@?,  p <xcjkIjyy ,Ԣ۲H?cw mj#T&{)#,$,$,$,$,$,&,#,&,$,#,%,%,$,%,#,$,$,$,$,5,4,3,5,3,4,4,5,5,3,5,4,4,2,4,4,4,3,5,5,3,5,3,D,C,D,D,C,E,D,+(&)#3 71 h@(Bw߫ӭӭӭӬӭӬӬӬӭӭӬӛӜӝӜӞӛӝӝӜӞӛӞӝӛӞӜӛӞӛӜӞӜӝӌӌӍӎӋӍ݅X) o4 :"/(r,s,,,,,,,,,,,,,,,,,,,,,,,,,,,,n,g$nWs!}Y z    a m J (IXXgXX9*z;m _  $ 5 8 * ~`#H k/S[=!$X{ MOQ$,,,,,,,,,,,,,,,,,,,,,,,,,,+ '*#$ xfMIA;Vn+ۄ=v%ݜ"P ^ Eo!$'@-C-A-B-@-C-A-A-A-C-A-A-B-A-A-@-C-A-A-R-P-R-R-P-R-Q-Q-S-Q-Q-Q-R-R-P-Q-Q-R-P-R-Q-Q-.(!] z+ut݄מҞҟҟҟҟҞҟҟҞҠҏҎҐҍҐҏҐҎҎҏҏҐҎҎҏҎҏҐҏң3Eh_ds'g'znK<-.=Ln :k)wfr0a<-qo]I9'd1?<| I y  7 W u x g H  Y + ]000//2000/1.10/010 ! !!! xbk;r "  q!4&I*-------------------.--.-.-.-.-.-.-.-.--.-............,(%O!w  #>X.xب` V%t%*=.A.N.O.O.N.P.N.O.N.N.O.O.N.O.O.O.O.N.N.P.N.O.N.O.P.^.`._.].v 5 " a  ? a ~ o N B U  I  :PRTEYN@3$')>PUX J ]L.  >Ml Mjg5rQ?;:8DA.............................*&!,820 +*%1! #  <\pv[;h % k5mF0j-iK.04DYOEYIIYhκθθθκθθιθθθθιιηκηκηΟ?߾};{K")]/W1X1V1X1X1W1W1W1X1W1W1V1X1W1X1W1W1h1g1h1g1h1g1g1f1g1i1h1e1g1g1g1i1g1g1f1i1g1g1g1g1h1v1w1v1y1v1w1w1w1w1w1x1v1v1,'n! H aQxyx{ywzyxyyzyyxyyzyxzhhjikiigkhjhkhjhijjjjiiijYX[ή܀S ^&/111111111111111111111111111111111111mB9 * e ):pc[]te\ؒW(?r&ЧFθΩΙθ(χГBҼӹ2؎VpN   Agi @!["j#g$S%#&&'0''(}((( ) )(((^('''22222222222222222222222222-B&HNݵͻͻͻͼͺͼͺͻͻͻ͹ͼͻ͹ͼͻ"Dט)y)z>>!2'-U2V2U2T2V2U2V2T2V2U2U2T2U2V2T2V2T2T2V2d2f2d2d2e2f2d2d2e2d2f2d2f2e2e2d2e2d2f2d2e2d2d2f2d2e2v2s2u2u2u2t2+^!9 !э͋͊͌͊͌͌͋͌͋{|{|||{}z{}z|{{||{{||{z|{llluݜ5|u%} D |"F%'h*,=/w12222222222222222222222222222222220.,)&W$!c0#k G{/x%wI ݸ۾=ԏц8-,---,,-+-+-+--,,,--+L͉5Pm X#+22222222222222233333333333333333333333333333333333333333/*)\"m Bc̾̽̿I_sF%/C3B3B3C3C3D3C3B3C3B3C3C3C3R3S3R3T3R3R3R3R3R3T3R3S3R3S3T3R3S3S3R3R3R3S3S3R3S3S3R3b3&f 7YO_72M̟̝̞̝̞̍̎̍̎̍̎̎̎̎̎̌̎̏̍̎̎̎̎̍̎̎̎̍̎̍̍͜~~}}}}~~~~8ҖlRJCFMdk zT I#&)*p-033333333333333333333333333333333333333333333333333333333333+"/g?=??>@>?>?=?>?>>??>>?@>.0./0..//-0../////.././.-0- ̚X#X p!Z)03333333333333333333333333333333334444444444444444444442&p\LGVr޽,nP #){/14140404140404140404041404/4042404041404A4@4?4A4A4?4@4A4A4A4?4A4@4@4@4A4?4B4?4A4@4B4?4@4A4A4O4Q4P4O40+&~!+3 |*a<)4Q؍α˰˯ˠˡ˟˟ˡˠˠˠ˟ˡˠ˞ˡˠ˟ˠˠˡˠˠ˞ˡ˟ˠˠˡ˟ːːˑˑːˏːˑːːːˑːˑˏːːˑːˑːːˑˏːːː˂ˁˀˀˁ˫͓׋kaJ & 0444444444444444444444444444444444444444444444444444444442X*!TMUR6;QQOQPQQRPQRQORPQQPRPQQ@BB@BA?CA?BAAA@AB@@A@AB@B@A11211/215Dcst U%%14444444444444444444444444444444444444444444444 2w;A״estU e$*155555555555555 55555 555-5/5.5-5.5.5-5/5-505-5/5.5.5-5/5.5.5.5/5-5.5.5.5.5.5.5>5>5=5?5>5>5=5>5=5@5=5=5>5>5?5>5=5"-"a Tu.ʱʳʲʱʴʱʴʱʳʳʲʳʱʳʲʲʱʴʱʳʲʳʱʲʳʲʱʣʤʡʢʢʣʢʣʡʤʢʢʣʡʤʡʤʢʣʢʣʣʡʤʡʤʣʓ4\ (w1m5n5n5m5m5m5n5n5m5l5n5n5m5n5o5{55|5~5|5~5}55|5~5}5}5~5|55}5|5~5|5~5}5|55|5}5}555555555555555555;0"? `stscdccbcbcccdbcecbddbbcceaddccSSSSTTTRSTRTSSSTRTB l'[05555555555555555555555555555555555555555555555555555552* # % 8K^7ܪ=#$##$%"%##$$$##$#$#Yauyt [.!+ 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 66666666666666666666666666666,6*6-6"3)` o 4ާսɴɵɶɳɴɵɶɴɵɴɶɴɶɵɴɴɴɶɵ >.L6[6\6[6[6[6[6[6\6Z6\6\6[6Z6\6\6[6[6\6[6[6Z6[6[6\6[6[6Z6\6j6l6j6k6l6l6j6l6k6j6l6j6k6l6j6l6k6k6k6k6k6j6k6=͖ɕɓɕɆɄɇɅɄɅɆɄɅɇɄɅɆɄɅɆɄɇɅɆɄɅɆɄɅɅɆuuvuvtwtuvvuuuuvtvuuvvtwvϯBo,U^!H*366666666666666666666666666666666666666666666666666666G1{)!66666666666/$`7666666566676556766575656&&'%''&%'%'%'&'%'%'&&%'&&'&''Ϡ)9=6$R-K66666666666666666666666666666666666666666666 7 7 7 77 7 77 7 77 7 7 7 7 7 7r3%' yK(7*7)7)79797979787979797:79797979797978797:78797:787:7979797:79797I7I7I7I7H7I7H7I7J7G7I7I7J7H7J7I7H7I7J74). H+ΦȨȦȧȨȧȨȧȩȧȧȨȦȧȨȧȧȧȧȨȧȧȨȨȧȧȗȗȘȘȘȖȘȘȖȘȘȖșȗȘȘȗȖșȗȖșȖșȗȗȘȘȤ}XC.x" ȉȇȇȇȇa˧VJ '1y7x77777777777777777777777777777777777777777777777777776-%:` (zu)XYWZXWYXXWYWXWZXXWYWXHHJFIHIHHIHIGHHHHIHGIGIHHGJHI87:7:8979989Ȭӝn> -77777777777777777777777777777777777777777777777777777777.          X Ny)38 88888888888888888888888888888888888'8'8'8'8'8'8%8(8&8(8'8&8(8'8%8'8(84+k""F %88586,#G 7ǹǺǺǹǺǺǹǺǹǻǺǹǺǺǹǸǺǺǺǺǹǺǸǺǺǹǺǺǹǩǫǩǩǫǩǩǪǪǩǪǪǻ͖ՄrmNI5" [#*D2W8W8V8f8f8f8f8e8g8g8g8f8g8f8e8g8e8f8h8e8g8e8h8f8f8f8e8g8f8g8f8e8v8v8v8v8u8w8v8v8t8w8v8v8w8u8w8v8v8u8w8v8v8x8u8v8v8w8v8u8w885 *e[Dث{zy{y{zy{y{y{{zz{yljjjjkjkjkjkilikkikkjjiljiljj[[ZZ[Z[8888888888888888888888888888888888888888888881&!l:<:;9:;;;::;:<9<:<9=;*+++,++**-+),*,*++,+*++,++*+,Ǐ_SD!)28888888փ}{icQ.)$+28888888888888888888888899999999999999999999999996/(M" >n``ҾƇ͎Oٶ 9b g*B449D9D9D9C9E9D9D9D9C9D9D9D9D9D9D9E9E9D9C9C9F9D9E9D9C9C9E9D9D9T9T9S9U9U9T9T9S9T9S9S9V9T9S9U9S9U9T9T9R9U97/S& ƜƞƛƝƜƜƝƜƛƝƛƜƞƜƛƝƜƝƝƝƛƝƜƜƝƜƜƜƜƌƌƍƍƌƌƎƌƊƍƌƛǾ>a q E+5u9s9t9t9s9s9s99999999999999999999999999999999999999999999994* !I 9WݫԿlm]]]]\]\];j K }ӻ]]\]]]\]]MNLMMNMLMLMNMLMNMLNMMMMMNNMMN<>=<>>hԬn0f 1$j).3w899999999999999999999999999999999999999998P4n.)%A l999999999999993w*/!Ql     ŮzWSP.,( ::::::::::::::::::":":":#:!:#:!:":":":!:#:!:!:#:":":":!:":":6+!5 >jԳſžſžžžŽſžžžŽſžſžžžžŽŀ#ތO :d^(H19R:R:Q:R:Q:R:Q:R:Q:R:P:R:Bv j 6$<)/.37a:b:`:a:b:b:a:`:b:b:a:b:a:`:b:a:b:a:`:a:a:c:`:a:b:`:a:r:p:p:r:q:q:r:q:q:q:r:p:X7$3.I*%-!{ -g*l{W_҈9ǁ~ŀ~ŀ~~ŀŀ~~ŀ~ŀpoonponpnoqmϜC&;@;?;@;?;?;@;9752/-x*'$!t; d+M;P;O;P;M;P;O;N;O;O;P;N;O;O;P;3+$ NGԋlơġġġĢġġĢĠĢğģĠĠġġĢĠġĢĠĢĢġġġĠĢġġĒđĒĐĒđĒĒĐēđĒđđđeφ5b1o;n;p;m;p;n;;~;;;};~;;;~;;;};;;~;;~;~;;~;~;~;~;;~;};;;};;;v1_')f@7Q߇spsrrqpsprsqqqsrqrqabbacb`c`bbb`cabb`bbbabacbbbabĘCm5gN(08;;;;;;;;;;;;;;; [! #&)-/2^570:;;;;;;;;;;;;;;;;;;;;;;;:86141/s,)&#tK!L DMlRJQx{ظ|avϛsǼ"!##g` Cןܑ<<<><=<=<<<<<><<<=<<<<Un D%u,r3P:\=Z=Z=Z=Y=j=k=i=k=j=i=k=i=j=j=j=i=j=k=i=k=h=k=i=l=h=j=j=j=k=i=j=j=k=j=j=j=y=z=z={=x=;O5.("M†††ˆ†††‡…††‡‡…ˆ‡wuxuvwwuwwwuvwvxvuªWܼ6I~$~.F8===============================================890q' R CWWWVHGEGHEHFHFGHGGGO % KU i 4+ W b=================;14e,$ Mކ6:ԨۊgVD(>)>'>)>'>(>)>)>(>'>)>'>(>(>(>*>'>'>(>)>)>'>)>(>'>(>)>(>8>8>7>9>7>7>:>64,!H :n'O#޼ X%p.6X>X>Y>W>X>W>X>W>W>Y>V>Y>W>X>X>V>X>h>f>g>"xcM:$! x E hh2M[G&0 !^!!!!2  G\f~ jDfOCmu; 9|AQtcTSuB/^ tc`l|>|ty[X[XYYZXZYYZYYXY[Ym9(%5? $3,3:>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>392,d% (9:99;998::)))+))*)+*))+(**(+**))*(ϫڑulAR&0:>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>:w1M( Gm h M&rY@Y2y]ACUx> P2oK1oG;R Y>z   .**o -{Kiyyh; {.S%w-P q {l^SE?E?G?E?D?E?E?E?E?F?D?F?E?E?E?G?T?V?q:2+J#m @ݧiZǬTå#зSs0v?u?u?u?v?t?u?u?u?u?v?t?u?t?u?v?s?u?w?t?u?t?v?t?v?u?u?u?u?????>3(t^IU!l~{|z}z{||{{z{{}z|lkmjmjmlkkklkkkljlkmjmkjlljmjlϐ:[-Y$o-K6??????????????????????zyvupollWV3" G  c z(gX= n q V ( z n"eK2s9|p3Mo/Pbn\YxR\G0  S&-5<@@@@@@@@@@@@@@@@@@@@@@cB=l XPW$l; ZSo : W C  c 2 _   P a  E e g Lq#'{_UY }OCV'y;{^LMK]m I8[)#ѾоξоϾоϾϾξооξоξооξооۿXОX$s-5'/7??ABA?AAAAA@ABA@A@AAA@AAA@A?A@AAA@A@AAA@AAA@AAAPAQAOAPARAOAQAOAQAPAQAPAPAPAQAPAQA?81**#N Sx̟DOE)4?oAqApAoApAqApAqAoAqApApApAqApAoApAqApAqAoApApAqApApAoAqAoAAAAAAA~AAA~AAAAAA?L6,"Sޛ`W~qqorppppqoppqpprpp_ n @ S # &  |OR8_C;^0$&GJ\> .L}jvF31Nk kG#p Jy21A.z: i AAAAAAAAAAAAAAAAAAAA<3* "2Wor۬˔AA?AA@A@A@B@A@B@@B?B?AB@@@AAA@AA@ABAAA?@p+ԙ'QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA<1d% ;;'@@AB?AA@BA@@BAA@@@BA?B?@B@@AA?AAB?B@AABB@A@@B>Tkd:%z/8AAAAAAAAAAAAAAAAAAAAAAAAA4Hx ^Brutc0>9p\YYeq-JWesqnjZ S MkWWhI;m  b % w K#Gw2d,n{]^2uBABAA?A@AABA@AAA@BA@B@oYSn( 1d9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA@d919*|" B@B@@@B@AA@ABAAAA@@B@AAA@B@A@A@B@BX ߡu)o%'1- R#k80<i   s C ` AAAAAAAAAAAAAAAAAAAA? 7.%  jA@A@@B@B?AABA@A@A@B@@A@@BA@AA@@@BA?AB?C@AȵsA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6*4pWo;D@@A@@@AB?B@AAAAA@A@BA?B?@BAA?B@AAB@@B@@A@AA@Bǡљۢ O!*Q4y=AAAAAAAAAAAAAAAAAAAAAAAA9+]`@@?aNONkU" &@Q[kw~kI '  ?  .+9wY{   r % w <m8Z}8hA'[Lob"@A?B@@BA?A@ABA?AB?ABA/Wo>' ('1s9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA@D91J*"0d @AAA@@BAA@B@B@B@@AAA@BA?B@AB@@A@Bz]RTei\> +6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA@5+!I LC^gAB@AAB@A?B?B?@AA@BAB?B@A H % d t F  w  Y { vY;cE7),>qTFywxw7tC@lL:'}iI'CBO ,,AAAAAAAAAAAAAAAAAAAA=]5,$]|kG<`A?BA@@AA@B?AA@@ABAA@@AA?AAABAA?AB@@A@BA?ACq˾,ڜ&TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA;/# WАA?A@AA@AAAAB@A@@@@AAA@BAA@A@BA?@BA@B?BA@@@AAAF_̔3 NW&02:AAAAAAAAAAAAAAAAAAAAAAAAV,L "1Bq o, {C>Hd"~=H3q~{h (  D u t 5  x  h  W)^T' }x(yZ: ?A@BA@@AA@A@A@@AAA@@ ȓьڅQ!*2;AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA>6k/'` j A@B?B@@ABA@@AA@AA@A@AAA@B?AA?AAAA' ]!,F8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=3)\5 ^\B@A@A?BA@AA@AA@AA@@AB@AA P ? p  ?  q  D V H @5]C6;pRUxj+{]=-->M{ZX';ihE1n 8fsp^o0:}* X z AAAAAAAAAAAAAAAAAAAAs@7;/s& l-6@AAA@AAA@A@AAB?B@AAAA@@@AB@@B@AA@B@@AA@A@%e.٬;uAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA>C3'Horʍ@B@AAA@?@B@BA@AA@A@AA@AA@AB@A?B@@AB?A@BA@BA@˗ՑߦE%.82AAAAAAAAAAAAAAAAAAAAAAAA!uSC53De1@H$>i7r0k(2LK 8 T  B r b 1  3 ( I f9 {AW^p#fvH zzI@AB@A@B?AA@BA@A@B?B@$̦Ճ|ebZ4 5%-5=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR:2+#Y cBA@AAA@AA?B@@AAAAA@AAB?@B@@B@AAA@˃V:F)5@AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA!A5+! wagAȭAA@A?B@AA?B@AA@AAA@AA@@ 1 o P  r  5 6 * ^cGmE9M!G:~K- @}M zhe\MZv1LWCq i 6  C u AAAAAAAAAAAAAAAAAAAA=4,K#_f{2;A?BA@@A@A@ABA@A@A@@@B@@@BAA@B@@BA@@AB@A@BRğӌcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8>2'^c߹ԥϾAA?BA?AB?B?B@@AA@@BA?BA@A@@B?BAA@@B?AB?B?@A@; &@HMG$N.7@AAAAAAAAAAAAAAAAAAAAAAAA)z=AD3q z&ljgds &21/ X % ? ki86WeeeF[l  c  k >oHi!T<}c%z}RT5A@A@@AB@@AA@AB?@AB@AA &_wp )19AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR@8f1)!?c A@@AAAAB@AB@A@B@BA@A@AB?B@B?AAAAA?<ҳބH b$00;AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9/%><AB?B@A@AAA@A@A@AA@@A@AB@,8e3DDC#6hjN C  <]$6[z9y/p3X% Xfcm*Q!tR.d0k e z    b  P AAAAAAAAAAAAAAAAAAAA@7.& sw(ս́AA@@A@BAA@@AAA@@@AAA?ABA@A@B?AAA@AB@@AA@@zfߊY%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~5)W[d %AB@B?AAAAA@BA@A@B?AB@AA@@BA@AAA?BA@A@BA@@B@@qfnv|T "+4(>AAAAAAAAAAAAAAAAAAAAAAAA6 { M ~ ! "  : .q6gO8w4gZ|o ra@A@B?B@B@?B@B@@B?B@AL5/9Rlt@!)F2:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA%?7;0( 1e B@B@B@AAA?C@@AAB@A?B?A@B?B@@AAA@A@ԌaB\&2,=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8.$xAAA@@BA?AA@@A@B@A@BA@AAA)$dc47H* @  8 \~As[~b&H 8G4@,Y%~ZI({Y$_NJ w  a  _ -=MAAAAAAAAAAAAAAAAAAAAAAv8/&h?$ 1މA@@B@AA@@ABAA@A@@BA@A?AA@@BA@BA@A@ABA@B@A iϢPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU?3'LvQAA?A@B?A@B@A@A@AA@@@B@AAAA@A@BA@AB?A?BA@BA@@:ԃ v%/49AAAA`A@A2AA@@@@t@c@C@"@@????v?T?6?uE'$WuS2.~NZjvzjYK9) ,Ti!>3wRh1TkaQGHRg&d>IuX#)Vs3)+;[PvR2=mGK?Ci)dPu>e \v%IGEFS"Lwl ngT} i^AP`bk?5"HN|9r$pWik\R~D:oۥH' O -5 ) N 1p^`}'$ v nup;K =n  R? d0AW2WIFQGk2 e R M  X=8yRD'ZL{#:Z)h`k au3o!4&C+50h4*7g8p8&7\40,(%Y#^!c#1!%),:/w00/-*'$W!`")! : G TkkIT*_=0>e 4:B@4_m.T:;+TߧlMe5ARfD%Q$$ B ^gCakc!Fno[A,1Fz.+ZpG l1]dI% n j d RwZa % } Yyj%| Q0:<7x0*()*+=)-'o&&&i%g!m cuBB :  ^[xRgyPm0 FN _ eeV0r{ \ m ^:U , Av <6K9|`voG4Q$}?;q/bs.80s-/0,('((&#!!!kDu#+1/'"%j)X)&"! p *PY8 c  n_hXui- Gn?!x LkbXݰߐEQ(* Rv  G^f m$. }  M5WR*Qb-} Y8]^kD>[J}dhrfp}.,=6jB0*8hzq [I " _ {MCG o O"e-66h2-K+,/20-,, ,*j'##A#D&$!G!"" >M2 $D S_t C {.2Mz\]TQ/ l ' oBG  3Au/069 iqPf`r]B2FM1*.UbNZFY3oߞG'IބLi!/q6h" !@{HZs fӻB+g}҄o[J˼̢p8 ɈɚY˛΃5EQ=v aUi2Hmf{.l0% MbX$%N"} # k*q=]U$0%\($c  b Y)Bt+8G[ ` U ,  > f B@^', V%X#t091%Dw V!16.@<=5-++,.v.+)'%"N  !p/,30($C%K'z'd%" 0 S,dBB ' HS_m5qRHLdSi_[ N,6{O X߁lt{E%/os n f4Aj!\Gq { G }M @g8s AkNKa)A| ~zq/$r * l Y g@ Nk P $1 4 G $<#G C: #+@353=/+,/0/?-+++(*O'"!D$&U"Z H-e 4  .NwjB)  /xY24$y s F SdI5R,  +<80++$+0*+3,w+($! h! !;!!*..)3$"?%''B&r# 8$kYiH T 4 w)`h(2r2A\ri*-"2[SCK޵mcs.6LM>k# ' E  { !6v 0^2X{3U\=;V8\LXe d^ ]D| & ST D X 0fuv  N%05Y2,3**,,+)',%!B!#T%$"HIV $USfq 9& "Q#=JhM).L Y  IgD[bv[ ! lQ {>+`R|Az?x qZ(a,Z s/PsFBr6p$ cvߧ߷'~v f9s{53: dX;"4rk6Nw:_ߺ تef)gҧ >sMкΕ͘<̇ʛɹʭˉ`P3!ۼ)% =PS-?* !Plq=0!$". !Hkh4,a."7'D&"{yM*+ km>i3 C L N > "}-$( ?  +~r&A UJ %*5~;80+)p)C)*+*(U%" Mhi q")L-a-*&$$$p$"!Z"! FO"0 + , v9 VvI3&3TOxSJA?|zl9- (jޥL CD MlqZA Zl]A-v~cSlN.Ay' p)u0e[u /[wme +d# o ;Z  m TG -d {=W!.66/)S()+S,(+)'$"!y"##_mwx;Qu b816 8L<'VIyB-[z N"  ob3.a = 2)gf$26F#0UN.Bsv'8]K#6#hSI/:w!`wP5[n>Ji:K`6P!v!  I  RI4y9EeL^79>-]|Rc: QGB tBBP g K!/ w Tn>k C   x"%065+0P)%'i+.~.,h*(''N'%"j!!""!j ^j&\wTA| 2Ja__ B> pr<*VB-|8e[+N: #2  T \[6~B^BR.M$A'efV}VL#(pu_+uiUHce%=S{eE6w be.LX_)@\܊tݿ؇ջԀנ`ׄsӱ,"G̥͑ϡҍ<{_׸ڬ6[!7I ]^GYc"!jD2 J!7" "Z{&W-f,$%F#j< ?e>Om4[y  ){A=YWwstD.-O> b43{ '%a.672*%$&P((a(&# p\qVY6{"V)-g-)%! !!#!|MI3R {  ocR`v@ N@<>6na_c ;L31Q M5zxeW" D!r|C K I {O12bm1>N*/B2.@6U?Lcl]CFWENpj[K93P,1qP YaD  h D ^ U 5 +wsFl cXFw'.0.*U'%%&W%#N!k!9""![A=v>/ <k}+ D d6g^R_aeV@)j'`%  vPI O7V>t-WLfj|dM 4b*b@O5 \`$ (0 CoNpuNZ0" ufNH^@ #;%# $ \c*2Ko@e Fr @`/EI D onxO*X(qi+7<5%p/673T+8$!n#%'r('%o"X#(+T+c($! j  , 0F>e _ z|ri9S1#>iouEtP=*\_!~fX5_Y#6@v"= [ i iwAEg:koavE^p%u|Z6 tY\/(Zq #"+3Kq&mJ&>!o27Nhxx%5Yr)_  _WW(E_)   8zX3JR")0"552-)&%$%'d'&"#]9rzn"l&7)8*A) 'R$!nL/0TxM  Xvuyq550,7TIb sIR.^nmJEuHt0(0{[ !" E \ 0Y3 vy2Z.fcF2Q4.BrE#w<W@P.;'+S wKy? 6 5Mz< E k O   iiVDvnz L%?/N313,k&s"!j!!  U\i>WG~* 7cv 6"gi Oq|^j,$@( 1 \Q+W9- ZlRDdt@GqgihERnoVoIs~Picx!R0- .$;A[OuQuT^5hd:QgdK+N}ׇ_ضG;rԓSm΄.$;у҄)Aܫܐ1;h4-J :L#j#}{`[ Kgdx v.*q_. ##!Z_^fHj  X  ObrL q#~,E2/O7>J d\`&0662,'"!*"$$$X"nWFs!&_*#+)&u# re_38 f  M BmC& MaZd)~;m-v.BuAq%Spvjy<o uFv6ZQZCl!{m[n4}vU!qH!CM(5_Qg =Ef z['/ _ +  `  ; E aJp@h)2 !Q`!?),/\1/,B(%t%&&''&C%#T,wS%$Z)s k R L P p ^bLl+x3KB]5hYB@ +' P4M]5EE NjpUOh 2?u_(7#)7mnK8zUKCsn 5Cl(u8jg r05T}|CN. ); 2{ *d# FW6L%>;T55Sؼ׈o [{H*_mP*gI!l!"hik YeoVcA+ z%eD#>"1#!Us`:2`#/] + ] {55"LXH^'! )Ce@)]b "v&;+/10-L*-&#>""#$R$q"T _?CD#s'm)(&"yck&rR8 - V)a{E*sAvEGb={`mZTM\j@tncEy KDR # : QbB .}ygUv*I}~XLw*Z{; Wh7e~$n  P- y 3c  * &  ; ^p $\' o:%# ),-,*>'$_#""!W AwI*7G>^ o <  L y1%O  ~" iH~.M"}A `J #` hRQKI]viKgJo3H>f)HY3+-2d`,v.k<~R5>KOKb^.\`ږג$/eۮ`ڲ?{жи4%ڕi6SqjHf> Gf# #xH {Ic9FJ>#_EM M"!AdsC|;odG<T[\ ( S wo}yk A"IUr2b hM-g+]i% 0t%UFR#,B3$52-'!A !"!uvxr#M')(T& #4SgI9 ^  p5oOV<'!0R-0(|Q(n+nzB>s{E~Z(>VG E E D6#JJ-8AQou1@J~o`~6[x{9 ^  U + ~  1c=0 A + '<,.-3+{'#b!| U m["$js 4  Y= % #'a ^*KC aW]& ` ~du[NS? zM,| 94-y^L`uX L{ _2>o13mC8,):@S;GQ^c<?mL:\V d|L\#wh܌hږ<٠~ڑ&]ۦײխ2CџQ$}& 79Vck\; J!L" \#AvKF'*=bR%ye*1!!l TmqA{e- " L s 5V$FYJn  8 5myH#,25_4H0*%P!V !" 8 Bj!$&y'&X$w!9/=/yL +  iT&y6^+]%g_H-x8KQ2N*C_?|.A%+rZE+3 (Yi C?`w:0 AxFy+n%s0?&?As $i uX uLq 1 m & 2aN r:$)k-e.,()%.#!!""3## "`8 T{b w J H d 'NmO  i0G +T$ $>h9:)h M > Tm.3 Ial+KX&]0Z7b@[)@AHXJ hciK]>zd1g)8G*]P{ [K6 -]PabMRy}% <$C " +)f9ETDd 7 V  O 7TyvdpGdy> : _vRRP* H(.0[452`.)#Lt <f:F!$%%$M"\N+t  q A B9]4!*Ch"z]l8=4^K1aUnqd }l4\?unrc `s&A$ KJ5gXP\c#_-mmRMd Bvx^ 2|y {  n@% L 2 ' s Pc%  y h tuPyQit XH"(')v*G)&# wC{;qb@x 7 h U t $ ua32 : T WeqF_sztJL K3 /h:@2&sN8?#!dUz~[ms;>#'K[Z"yEH Pm8$`@axb It c3tPB-0t1C=@}ۙۥbڇDaa1c(SK٧ݬ661xDtU:CQC  [,A  XDr$RD8c-Q:1ip UK  Q O `H H Obe@r)j  r hSOfczNb en) OZ"['E+[--+($ ? "#=#! zcWg*1;o S a3}2nek)~X=A8A" A)KVXsRupd?>I| @[dRO ? H\v, 6p Ro [|w~xW']9Dq#R( *<dJ\(O%!Jw5C> :c3 9@W0Ln&CW o N WB==EY)*dJ7 Q 8  .DxXnWK!)/$331-(B#,eL0'j8!"%"T!SZp B D~N$l;3u29v:x;+QFnH"Pwp+RX ` >]H 5GPEa3VqW0Wyk^E9U]'kI%u/)[  &R 9 !}~D 1 K c 5 I"Q[M@R"l+N ^>!'],a.J.r,~)&"' 10^ETx B"|G 5 T q I 5 < b  gZtn VXy  c %fz4'L 3 '5QF6 sIT~P$ oD 9~VaoB$Pt3JBwi(bd9U~*L]:iw.Ffv@UJ~SݫWwbݩ0׏ALֳ$ueRtK|u +~   {`w8+%_zD@A] #_oRU/Qj}Q9x]d  T 9>"/x1[53b d  `H-d2g  Q7oj& @#&)++).'# 1h3NO!"("{!* ZD!IN"o Z  j]3 q\TTdC&Z ylDtuu*EJ1l^a.x3PA;\ zB^a B pZ,ZkE`&R\n6GDRc@;T.In| vv.rpt "G >A% #< % K d-e.#& ;f) $'7)W)u(&$="wRgqbs6*X)^ * ) l +  , V V 0h}ww(9AZ FN  5m3  \5jZ!q}BCWN_A. f2QV} % ro~V0[!b@'7/e8 '_H[zK}0@]B#SWK=:Co&p5eEU9m+P=xdvG`vceAbV0p %Oatv:`{N@]\y"\ UVB{yS*  - Q w ZJf\a 98 M C{j 5=w"*%:'e(('&# }X,#;Xq\E!v! KbXNgS0HR A X T 4 lX"Wh@IZRX5E&`     z w O A 9  + G@e+VA * < #q&' (i'&2$*" :< EU / ` 6   g <   D 9 iLI` z3.|662 hx7 O^h^5 K <ur1Lz 7)8+%OYAyC&2B o,DA Xak6:C-:6v 1z3|S0Q~Ed{vݠ݌ݶޥAgtJ uiK_U߄v(.5n>7#E! f O?OW0U'S FUJuWURWt@TA2VF|P(  O  5f%jVK^Y&9I.A \I5uE\ D "&*+|,+)*'#P -cgk;DBP t!\! "L+s9 0 0 F < Id%4r~{;sJe#)t1]k| -qtQyN,M\ 6 Js WQwa34/ )m'1F ~JmF18f)j?mu 5?Ig Ue RtRu ] T / m [i:1m 'rz7!C#$M$#"f!o P,DXKRSTP5kM 3 w  T ` SY G;RO_=NT*y !5} Qqut+ b +SWYv qNJ1  =+bTq6$cI{W=Y*G8!jL:J/e` ?Z16Yp8TAjb"sK0w$sUnlxp(Be;NZBp+ ݓGv\sA_ۜ߱z]>lnS8P=S\ua P ( S #&_(4))(;&#!e\a^7sV > }+mg?(-/ | _ O  \ r1 HVO8-?P6~iQOcS8@4y@w=AMB,%[e7;H&|RXX 0>>, gq$Q}C"Fp8 !m#rdh03, $\KJRo\j$   T)   ]A _ U  S EE :3O}n>*Dw#?B\o Rj^ 3  m  7j|*J[ Ci;1I l u cQ-F+U  "- C?FV vb-8= I qU. )Wm[1AQ%=,E2hN(!^|OS de4!<\ިޛޔo%޲'ݑ qj&VPqsT8/yI90b LU6yIlzQ'e # jOr\A K O r  $ Fn6MA}t@m_|LZ|sibejt v9 S z%),..,*& #!GA ,  Dk A^ + @ # @1B9Bf5)RZm]TGn,X&|SK\yLIt gh8Mb2/}WC{gF) '=Y7  K6y3zC 5uo" w 6 3 f9[k/inB S( M}uy?hCf8 xai%1DqEA(*}c % 3 m Z=q8-TEp`&<"=W{JK2r|"aeRRb/ I{ g W  d  Q`O4wc?U` C \ Bqm~8DfC/:B%D 8  = s i ] gn_tK>690q4! alP " 6YkM(}- y@ubj+T\Ov PQXNs &, ti7(E!Xu~G/>C$.-^DM^|$tKcu&n_tqjQޡ_ݮݔݠݦ4t;+M_!Rht.csR1l 1p{Le r_D?V3 h 8 e |)up m  ` \ k+GoN/Uaf("lafw.v $T!:$D&'('&(%#  =9'd5:?l} a  c=" NhqjW@( &Mfrdj\~{~}vmWSgn'R&v),Cg5#r. y[S ) _"O[$U{uFb Y% @I4e/?`B1 + ! Y+r"/BJEu 3z\z&pZT TX~7@ )  vVkAUB)o4?dr$q#/ 3fj-hf qZp  CGl 3 WOyOYBOgAPfhO_VzL)k<~(\ ^psXFm\LY,7[q>nJ2W|:WN{W]qU>_Jb|AލT>]ޖ߭h^%uX5 *Rpdntz*Bwr )%8w1q U S r  zT ~4z 1I$(f'2<JwIm w;!8$&J'''&%# T  ;p' iY# p n"Q_/)e-U+'< ag0&jg uRB}Q|Eqkuw ek o uP8*K)V5$,CG-]JFSTTZw E1U&q X * f   M J W _0$6B-F{F?b \BP!x#Y$$_$#]" }5 q " " o*%eLWU-BJ':^<+J8\x_i ppZCt { ]4 b \1'GlmYANm i77JL!"*lY7?Ye(_t_g ]hkw"vuI Gp[ Ksr4"KgsB!.N5W qlߎo߄ߎX_]T^&f ` `qy$<M 8 7VS: k mWOVn  ^ H = -M!L7RsE  R7grw-yNhnI0q[K*bw ~Q/ed) G_"0%!'9((('^%=#  m W kMT$eo-i KR?B m)~!ruNi! O\/[6=JpQUm} ?eSboS  d70Y=KP*D\fcM#:[l7KK*O-R{=JEj{g   VeH ) X x V]Zt5bKV]<P J[.p!"0#O#"-" ]wlN  , t l+2,2F3Lvo;z- 7  k S DE>uhIfClf;pS?#'LQ{!|J UmD=={ENzMQ% Gj& Mo+VYlW N B 5PZ]/n9EK  k  qq}:'M8w  \-@%> V`~WkKS+R&MGm i3  "#$$#"k!s* GIEl Y Ls"C3V&vl+nkQb} 0@A?Em$u]Axv"pZE|!sv0|8# '\A B ~]hGvIQo\5K_!S'wpY:P Y'+c]*>[9pR  > ki(+#i2q'2p+ < T   V T<(O5'K  H  5c8HxD $`iC,*:Yq'}3<y Q@{ ?"p#$2$##!w XQy v0= n3/PwzY l  +hzz"q/!Td21o9!~!;9Zo/Ng CSG40cY(=%TQ  e j / o  i>E'/c;A Y   . u3A +Lk([Gkt'PU9 c6YhQAGTw  o v / F':gA-4KctzpX*S4}qw7}V{?8\py]: qElOS:4Xav.iN26Vc VXTEsLk:OtZ>$=~uC @3mcS\7 & M g e=8Y6Wl'}k    e i D*/04TFiz | { ~ @\dR5"nktBB9)gRt<{k[ o  $!6"""h"! exx3O#!=`Hv 8 r qJiD)(IwcO}-zn^/<1 +%xC*&Y]oKFtp>>pwtend1 J  g cI@4q=+8fA4e27ilOlGgIyId.k1(S_ ` E   O ` @ l  x &t={?#&[ t 6/jk'j"Hu;B  [de{.q oz@/=f)n=T&/yaP{>.'  N 8q(aFb0Q.nj_`jx <5i\o > Y  %KP1C s !F' IM8! Z % %],P$2Px,   5kpP,(zEFnKd?]CIHirT/De >PZ^^_gy'&j_ZWL04n0cTf-L)0 `)6e }.r-Y5GVN } 'z?<Gk&lc?.$!! l  C  u /CKQQLIGDJOaxGl|xCv$ab U,UC(*-pDzH`<~R]Z0C 9 z>r[SYrMUzR:34@Vt@ =C>cl]6=NAYxcl1U 1 ceVoCCLJ { , , b5!#9a((a /}&uIK4uZr o+lVV}AQ [2PJKr%n{>8k4|MQU)b%9OC"{5@.]$^s agH Q}` 8@~/'erJ%P-m*DYdV6'!*]Zd;&%Bo 9-[ v+1Rt  3 b h # n Y2hHV c O c W X l g!_`] E 9 s Rj%'jAydawif_Zzd3M~oeN:$ h + SxO+_!( X W  Y / C /IK|=d&j sdK$WS W}8k`}p |0(HrV^ pm[zx2 E ' S^/"^"9uWHHSnEB{lJwuhmf9J[TMeh]M#  d w 2 V 6 AAzoEK& k J=O3Rt)C># r S A C YoA$!/WKkl:gRVsG']g CG7V[Nn 4~ VgQ\6hC3Oz ~yP)F j3[)h5: .rOzo,9*z>pddh/fE B3dWFqvbS\Zl) vDOC+0mY  OkQzz66q / Q v ; r  f -  6 x O t  O \Uv|e4 ~ 0 y % XPZ8OtO2 %lU2LK2se!Ro.1g g`\whBJI$!;l! 3 Y ' [ ( P  zBLy#Df2w-6zuf%~3IRJ/ 0Bx6gdJ#*R"~ 3hVmAx5 L 6 z6<5vde1 %EsA-I^E g )-3b=vL&    ! 8 < & - ! 6| R5&T( G: s 2z.@HigO: m hat"QGXE.qx mtQ[v( +q@`oO#GYGb-gLrfW aJ\NX4*g4E`/ktR(SR3f ?zMoN4X8tX u[`E}A ?Feaew^y3AOToWM M ' { 2 n ? =jn< ]  " % ~ h p ? "  Y   h   | 6 dP oVh Y4~fH-37#ZwC Nvj?/ ~ # l S D 0  t 1 x  `J9`0g:it j55m hZc_^5s O86H[geE .>z,  8B8WY&`}/jH $a o#2+ 9fx"y7X^  3 7 B 3  M 9  s<A6O$3ob[ b l)VU(9K #  !lDu+\9_( M N  )/Y TCP9: {'. _x O u"`8t^VP3wO^HQ FRhbH!Ny$bybA)(OC09]W+PD iC9T#fI%Wa;jCq 6|3tO&N> )z)QhLG9 *  i $ X ' O o r L  P 7 ` 1  6  I 4  ~  U q | n M  f s K TIa;/S{S5X1#:F:+[}*(Q9> V ipU # MB zwm >  y a L /  s ( i tPJ4f0j<^T(#sl !c4( 1rO@??5 +pT~uv** JjS>RawG%"<`p_]E0Uc[@z@\5O9L} N_*    5 ]oa6S=%bK`( 1w 6 2W[4LY%6:.   FBZ#JS N j S  uFGqbs q5SFuR^qj:=qxK<}JCoh .U_\X70WaP'56O-w ))8 >cgEO*aqAK>qK, rB 2'w`,KXo\K e52rw d,c! ;z;2> 7 7 }  _ ) ^ ~ N  v  J c r eO\%  w d * x V  b r!}D$%If1 G zMzMtBmR,@od} h<=/Pw0    L c  P  c=RH!;.|hm<.J[2#2[$q/QagV>a 04VLz0H;|)#b<9IeMjAX~%vNv&y|3mu_fk'y4[iXR}h>w " < 1 q  Zwlvvw^} 6 ,O u?tc D .   ,R[F,Z\o9<. M Q 9 y*fX NuhehdR+NxwRm"sKt/Qd :?n Od wj4MOnBqe Qn.hg32( B"JQj <WO< Qwu S  ? g  ? ^ y p P ' q % v  M 3A@  R  7 A 6  D f Y +Nlq3a-mbZ[p?" k ={=y(LNH"' 4 4 Uo'eY X 7 I ; n 0 o)/h|[%69KZ P&dIZ FVo0 :XZJ0XQ *tu8Thwj=UxM,(>]~$}O1MQLY h7[x|pIt" [9H:!nu( 83#Z r M *4K X  3 i f`$ K"4)3:)m+JPC1-NB;x7O+t]&d4fh;07}3{1{csS|n /9(j359h~ .VQ'a7,-495,H+@9nyS5e9<@e=*[2GBrPAGgNb34_"d]4sx=L=LL * S z ) N s v J  = 1 lS ~ H . ] { | ` 0 = S F dF?R$[25x<DVN0^>a} F*\ v=HX$V Q  u t  @ K  y1QEv  \*W'vt6\8(8X M[ Lm%;i/MK~v@VT~mnmgW-O~l+KD},V!{\yhC0'(3GghG6n0/w(j>[Gof* )<D<I% +  UgQ+kF8r~  KS  h 8~,OP/S  ? b b*<Z0,[lbX&r@T3@DW _d V!t]F2r.'I:YJ@:V)y|>N{rK.gTK=+ | t[b2(Qs<fO/Py*HQO/mkZ&~bPLa,,To}8C[ 8G y   ; H D 0 a  e M 9 7Q mibE8  z 7 O T C @ ` T1qVMc<kA#4_'q5A>%G?X D94 H !dpHhd< W A T 8 YQ y*yG_aR8cLJhR3q!JfwxkX5T2kN?-K2B>aaNdP;^t`R'bR&8I#NtFn.JYP9G9+(nG84:=5 pM-~r-5p '(I-}k6t ' F H,5E*~H  / Gf*F e% }4su*OkqgV>11M. NKU%IjkM zFl= Q;:m b:"1WL;` lIFYSMX~RGs_{Z( vn wk$iK3oD]~.?X edx3f>#h<1jX-- tiA=LO! p     w Q ' SE3}.8  0 3 '  N ".-((:bLT6 VE>X]N0DXS>d}  74;} D ] M x  Re7VoF_eV>!{tLn>!?mX~O.e]1:s`q+| 1^nhN$7bw3{ o=w>J7_L%)Ab_Q,=G:&MbB 8xhZK5'KD3WeW7g Dg  B%X 5 > 3   mlx B l #dO%r9KAR dc=U$aE) XamUk8JglJqyy6X @&;N>D&AJ=!Y Z?av?ER[3j:eJ/c(an4CY hZ~P)KPw5} d.#gc @ 3 G L < | 0 * l  [h"c0?iD [   M .>=33Fn ]`<" *dMG^bU2w p5'VZHeg ) u ?3&Au  E  } ^tg[F, q,?G:qXOX|n'{yW :FF:$x25s-I[3VzMXZZNBp"]>v/d],CnVg[+y5fX{Hmz/+fB:bb5h)+g'Js3h     #; " ~  N 6>8m#ytw@Y%|]v3{']7~'g/Qvlm#b9s5>k yQmu~ S",^ tU3EmD b6}43}jx8[nZaW:OmafL3 Z2T_)q.Tg^&tR4W_gAVXFyi:)"sAr0Pn_5Mz2)eCS{G oEh@yu'qJ&"iLh&BS]GXd 9P0r & { Z {%lE'sJ[Mx >.e4 *V+X{_744EI -u<aZ- aZC d{5tuGtNa_^Ks aw0w %EO2Bhd!$'yPES(}gO4}Kf&p=P@d=+q\g d3yz.Ad}  p@f'y\Wd'm>y d!}!['\FViE##Z[]'v1`:Ud a K~Z   n I ; D t{6\-rC Wx&sN|9a-q=!Q}uFDf.B?U0}I}G&"DfIEXHhkX4QniM)HV%fYN!$u6g$s3Rs/+C: b W fo]@j)Z}J [ V p  (  `u>#=OBgwN>.j N]$\E~&rx.8xJb@^0v'l,Hm<-8p[Dno/5%H)J[y_$>Dwi#-Y;UhJ0uX1 yGKk.l-X-jTB73>Y HHEi O-:U, &Kt!?S[^TE+n-AwWXCNlqA_w[`?O4cS!88"w C7{X a;! (@]3~^ /JRSF+ m/r7$&y&h}rQJwH rmS8iSRhp0R?Y) a ~ e ;  m6H\{XO(~jUG7* c; k3IqXj|kY}p>Z R* }hR3p iLtD Q2D.pMD;Z~ Y^ Jp  Q^${M ulfehhkjhaUH3V#gG>R#sX$u K}DmY@(i; HVNL[Ra [v)y"@S^dihbUA#]9Mz;zI9PcP/iM9-" sGj&Of|0Yh61MdryyscR9U!,~B<, D Bt2U. 8\~ ).)#sT6HrqC:`{oW5}X/p]SS_vMF>-q!0-! ]$WEiP!Q"Q|~V-vN6,5Kk=v8Xp~}lT5~nZD.vO(k6~^LHNb#Nz'30,# {Y5_>  Hc"S|iAwX?(}jT?'ycG0~iWF:.# 0Ii1Nq!K}>9\]%(&dAsV98\+>NWXUJ:% wJnDu]E/ *?YqjG"8PFE-6oi4o*~O&og_SLC8,|[8tHrL"u[A+ *=O^o|~qbQ@,znp|%]7aeL0?p'h :\sv]AX#~J~`I2!  %3Ha}-BR^cd`UI8" wjakKW.[3ESVPF4 ~\7{\E859FXr!N4v5k qAi+X=c@$3Rx:WriP2|sy?i#..)yqhd\SLA9, jJ&`8iN6" +Hk;h!=UgsuqdU5/+(#%(0>O`vU$r])_<\+DXjy{odTJ:-,@Ueq{{vhWD-|Z:ycQ>- '7J^qraG1/t!IY7OYWG/ }LyZ?'s`K6!vY8xX<{~}hT?*!;W~1\~mZJ=628H_2d0:A<2 {P*dB$ '/#  &-47::85.%  5Qpyrlnt~8Unr^C,s^M<-! )6EUgvpcYJA75:BVm'HbyteSB4( !)1?M]r&Km  kS7n\K9'  2FZk|~qdWJC=72/-,**&#r\L8( 1GYkygU@,7Qkumia]WQOLGDA<73-'" zuqolliggegegipt ':Kdz;b1<IOWWXXTMG?7*    rfWN@8-% !(19=FIIHHA:3(  1Tw )G]qqgYJ>2# }vnf\VKC8.&}ywtwv||xog`ZRNINR]hx*:GU\eilkgaZSE;+!1=FR[bkrvy~xwpjb]XOG>81) %-4?LYew~qf[RG>72.(&!    (28<ADDDC>:2-&!   }}zwwwsttqtrtuwy|~$*.49@CHLNPSRQQQQPOMNKKJKHGDFCDA@><:;754210202459:<?BCDDFFDFBC??;861/*'%    '.3<BHKOQRRROOIIB?<852/-+(''$## !!  garden-1.0.9/data/gfx/0000755000175000017500000000000012457302476011471 500000000000000garden-1.0.9/data/gfx/large.bmp0000644000175000017500000015356012457263300013205 00000000000000BMp6( :  (((yyyeeeeeePPPPPaP]qPiPuP<yeYYPPPPPP(Heyee֡PqPqP}PPPeyyyyyy((yyyeeeePPPPP]PiPuPeyyyyyy(e(ޡyyeeeePPPaPqPPPeލҪҁyʁΉ֑ڙy<(ʍyyeyeePeaqq}<yeYYPPPPPP(PPyeeލPyyPyPPPPtttt%t tt/tttt9tttt?tt%ttGtt+tttMtttt1tt t8ttQtttt5t~t t6ttttWtttttt;tt} t6ttt[tttZttttttQtt?tt|t t6ttttattttYttttttttttOtCtz t4ttttettttYttttttttMttEttwt t3tttitttWt ttt ttJtItw t tWt tttkttttVttttttttttGttKttp tt tt tYttt tttottttVttttttFtOtmtt=tttt=ttttVttt tttsttttVttttttDttQttitt=ttt=ttttStttttwtt tVttttttttttCtUtftt=tttt=ttttttQttttttyttt tttt tKt ttt ttCtWt tCt =ttt =ttt#tt/ttttt t}t tt t t tLttttttttDtYttt@tt =t t =tttttttt%tttttt-tt8ttttt tttt ttttttJttttttttttCt[ttt?tt =t t =tttt ttt)ttt tt+ttt7tttt tttt tttttttttJttttttEtttt=tt=t t=tttt)ttt*ttt7tttt tttttttt t tttttttt tttt=tt;tt=tttt=ttttt'=ttt)ttt6ttttttt tttt tttt?ttt8tt==tttt==ttttt)=ttt)ttt7tttttttttttAtt7t tttt tt 5t t*ttt7tttttttttttttBttt4t tttt tt =t t5t t =t+ttt7tttttttt ttttttCt tt tt tt tt t7t t)ttt7ttttttttt ttttt tDt ttt t ttttt!tttttt9ttt(ttt8tttttttttttttt tEt tttttt t==ttt#ttt==ttt;tt(ttt7tttttttttt tFt tttttt t=ttt#ttt=ttut'ttt8tttt)tSt)tt tt tttGt  ttttttt t=tt%tt=ttut'ttt8tttctQt't=tQt=t'tt tt tttttHt  ttttttt t=t't=ttut'ttt8tttt`t=tOt%t=tOt=t%tt tt ttJt  ttttttt t=t't=ttut8tt8ttttctt=tt\tt =ttNt$t=tOt=t$ttt tt tt!t!tt  ttttttt t=t)t=ttutt6tt9t~tttt=tt^t =tXt=tMt$t=tOt=t$ttttt!ttttt!tttt!tt  ttttttt t=t)t=ttutt7tt8t~ttt =tZt=tUtt=ttLt#t=tOt=t#tttt#tttt$tttt$tt tttttt t=t+t=t t tEt  tt7tt9t|ttt=t=tWtt=t=ttRt =t =tKt#t=tOt=t#tttttt%tttttt'tt'tt tttttt t=t==t+t==t=tt=t ttEtt t=tt6tt9t{tttt=tt=ttTt=tt=tPt=tt=tJt$t=tQt=t$tttt'tttt)tt)tt ttt tt tt=tt+tt=ttt=t tEtt t=tt6tt9tzttt=t t=tRt=t t=tNt=t t=tHt&tSt&ttttt'ttttt+tt+tt tttttt/tttt=t ttA=tt t=tt6tt:tyttt=tt tt=tPt=tt tt=tLt=tt tt=tGtttt)ttt-t t-tt ttt tttt/ ttttt=t ttC=tt t=tt7tt:txttt=tt=tNt=tt=tJt=tt=tFtttt)ttt/t t/tt ttt tttt/ tttttt=tttC=ttt=ttt7tt:twttt=tt=tLt=tt=tHt=tt=tDtttt+ttt1t t1tt ttt tttt/ ttttttGtttt6tt;tvttt=tt=tLt=tt=tHt=tt=tCttttt+tttt2tt2tt ttt tttt/ ttttttSttt6tt;tttttt=tt=tJt=tt=tFt=tt=tAtttt+ttt4tttt4tt ttt tttt/ ttttttQttt6tt<tsttt=tt=tHt=tt=tDt=tt=t@tttt+ttt7t7t t ttt tttt/ tttttOt(t6tt<ttqttt=tt=tHt=tt=tDt=tt=t?tttt-tttqt t tttttt/ttttOt(t6tt=tptt~t=tt=tFt=tt=tBt=tt=t=tttt-tttst t ttt tt=tt+tt=tttOt(t6tt>ttott}t=tt=tDt=tt=t@t=tt=t<tttt-tttut t ttt t=t==t+t==t=ttQt't6tt?ttmtt}t=tt=tDt=tt=t@t=tt=t;tttt-tttut t ttt t=t+t=ttQt't6tt@ttktt|t=tt=tBt=tt=t>t=tt=t9ttttt tt-tt ttwt t ttt t=t)t=ttQt't6ttAthtt{t==t!t==tBt=t!t=t>t=t!t=t9tt=tt=ttt ttt-ttt ttyt t ttt t=t)t=ttSt&t6ttCtdttzt=t!t=t@t=t!t=t<t=t!t=t7tt=tt=ttt ttt-ttt ttyt t ttt t=t't=ttSt&t6t tFtattyt==t#t==t@t=t#t=t<t=t#t=t7tt=tt=ttt ttt-ttt tt{tt ttt t=t't=ttSt&t7t tIttt!ttttxt=t#t=t>t=t#t=t:t=t#t=t5tt=tt=ttt ttt-ttt ttOt t ttt t=tt%tt=ttSt&t7t!tOtttttttwt==t%t==t>t=t%t=t:t=t%t=t4tt=tt=tt) tLt tt t+t tt tAttttYttKttt ttt t=ttt#ttt=ttUt&t6t"ttMtttttttttvt==t%t==t>t=t%t=t:t=t%t=t4tt=tt=tt%t tHt tt t+t tt t.ttttttttHttGtt!t ttt t==ttt#ttt==ttUt&t6t$tLtttttttut==t't==t<t=t't=t8t=t't=t2tt=tt=tt!ttDt tt t+t tt t-ttttttttttttttItEt#t tttttt!ttttUt&t6t%tKtt tttt ttttt==t't==t<t=t't=t8t=t't=t2ttttttttBt tt t+t tt t-ttttttttttttJtCt$t tttt tt ttUt&t7t%tJtt tttt ttttt==t't==t<t=t't=t8t=t't=t2tttt!tt@t tt t)t tt t-ttt t tt ttttKtAt%t tttt tttt ttWt%t7t&ttHttt tttttt==t)t==t:t=t)t=t6t=t)t=t0tttt%tt>t tt t)t tt t,ttttt tttttttttKt?t'tttttt tttt t3tt=tWt&t6t(tGtt ttttut==t)t==t:t=t)t=t6t=t)t=t0ttt)t=t tt t't tt t,t tttttLt=t*tttttt==tttt==tt2tttt<tWt&8t)tFtt3tttut=t)t=t8t=t)t=t4t=t)t=t.ttt)t=t tt t't tt t,t tttttMt tt/tttt=tttt=tt2t tt t;tWt6tt5ttDtt5tttvt==t+t==t8t=t+t=t4t=t+t=t.ttt)ttt t tt%tt t t,ttttt tttttttttNtt ttjtt=t t=tt2t tt t:tWt6tt7tCtt7tttvt=t+t=t6t=t+t=t2t=t+t=t,ttt=t't=ttt ttt tt#tt tt t-ttt t tt ttttPttttttXttt =t t =tt3t tt t:tWt6tt8ttAtt9tttwt==t-t==t6t=t-t=t2t=t-t=t,t^ t^ttt=t't=tttt!ttt!ttt<ttttttttttttQttttttStttt =t t =tt4tt9tYt5tt:tt?tt;tttxt==t-t==t6t=t-t=t2t=t-t=t,t[t =t[tt=t%t=tt ttttttttt<ttttttttttttttRt tt tPt tt =ttt =t7t =tt =t:tYt5tt<t>t t=tt txt==t/t==t4t=t/t=t0t=t/t=t*tZtt=ttZtt =t#t =ttttttttt>ttttttttTt tttt tMttt =tttt =ttttt"tYt5tt=tt<t t?tt tyt==t/t==t4t=t/t=t0t=t/t=t*tXtt=ttXtt =t#t =tttttt tt tttQtttthttttLtttt =ttt =ttt tttt tt!tYt5tt?tt:t tAtt tzt==t/t==t4t=t/t=t0t=t/t=t*tWt=tWtt =t!t =tttttt tt ttt?ttttttttVttttttJttt =tttt =tt t tttt t t tYt5ttAtt8t tCttt{t=t1t=t4t==t1t==t0t=t1t=t)tWt=tWtt =t!t =ttt#t tttt tBttttttttttttttVttt!tttIttttt =ttt =ttt t tttt t t t9t6ttCtt6t tAttt{t==t1t==t2t=t1t=t.t=t1t=t(tVt =t =tVtt=t  t t=ttt#t tttttt tBttttttttttttEtptttt=tttt=tt t tttt t t!t =t9t =t7ttEtt4t t?ttt|t=t3t=t2t==t3t==t.t=t3t=t(tUt=tt=tUtt=tt tt=ttt$t tt tt tCttt t tt ttttDtttEtttttt=ttt=tttt tttt t!t =t9t =t7ttGt1t t=ttt}tt5tt2t=t5t=t.t==t5t==t(tTt=t t=tTtt=tttttt=ttt%tt tttCttttt tttttttttCtttttAtttttt=tttt=tttt =t tttt t =t"t =t9t =t7ttJtt/ttt9ttttttattttattOt7t1t=t7t=t,t==t7t==t&tUt=tttt=tUt t=tt=ttt&ttttDt tttttCttttt>t!ttttt==ttt==ttttt tttt t t =t9t =t7ttLt,tt7ttttttttttRttttttXttttGt7t/t7t,t=tt7tt=t&tTt=tt=tTt t=tttt=ttt'ttttEt tttttBtttt;tt"tt=tttttttttt=ttt tt ttt ttt9t6ttOt)ttt3ttttttttttttttMttttttttttPtttttttttttt?t;t+t;t)t;t%tTt=tt=tTt t=tt=ttt(ttttttFttttt tttttttttBtttt9t$tt=ttttttt=tttttttt ttttttttYt5ttRt&tt1ttttttt ttttttHttttt tttttJttttt ttttt:ttAtt'ttAtt%ttAtt#tt;t=tt=t;tt t=tt!tt=ttt*ttttIttt t tt ttttBtttt7t%tt=tttttttt=tttttt ttttttYt5ttUt"ttt-ttH0tbtttt ttttCttttt tttttFttttt ttttt7tEt%tEt#tEt!tt=t:t=tt=t:t=tt t=t%t=ttt+ttJttttttttttttBtt t t5t$tt=ttttttt=tt ttt=tt=t t=t t=tttttYt5ttYtttt)ttHtt0ttUtttttttttttt/tttttttttttt/tttttttttt(tGt#tGt!tGt tt=t9t=tt=t9t=tt t=t't=t tt*t!tIttttttttttttttAtt t!t2tt"tt =tttttt =ttttt=tt=t t=tt=tttttYt5tt]tttt%ttIt4tRtttttt tt tttttt+ttttt t tt t ttttt+ttttttt tt ttttttt%tIt!tIttIttt=t8t=tt=t8t=tt t=t)t=t tt)t!tJttttttttAtt t"t0t"ttt =ttt =ttt=tt=t t=tt=tttYtttttKt4tQttttt"tt"ttttt)ttttt"tt"ttttt)ttttt"tt"ttttt$t#t#t!t#t#tt#t#ttt=t8t=tt=t8t=tt t=t+t=t tt)t!t]ttttRttt t$t.t!ttt =tttt =ttt=tt=t t=tt=tttYt t tttMt6tOt ttt$tt$ttt t't ttt$tt$ttt t't ttt$tt$ttt t"t#t=t#tt#t=t#tt#t=t#ttt=t8t=tt=t8t=tt t=t+t=t tt)t!tJtttttttt=ttt t%t-t tt =ttt =ttt=t t=t t=t t=tttYt t!ttQt6tOt t'tt't t't t'tt't t't t'tt't t"t"t=t"tt"t=t"tt"t=t"ttt=t8t=tt=t8t=ttt=t-t=t tt)t!t=tttttttttttttttt tt t&t+tttt =tttt =ttt=t t=tt=t t=tttWttUt6tNt6tt6t%t6tt6t%t6tt6t!t!t=t!tt!t=t!tt!t=t!ttt=t9t=tt=t9t=ttt=t/t=t tt(t!t:ttttttttttttttttt.t t(t)ttt =ttt =ttt= t=tt= t=tttWtYt6tNt5tt5t%t5tt5t%t5tt5t!t!t=t!tt!t=t!tt!t=t!ttt:t=tt=t:ttt=t/t=t tt(t!t9ttttttt t tt ttttttttt-t t)t'ttt =tttt =ttt =tt =tttWtYt6tNt5tt5t%t5tt5t%t5tt5t!t!t=t!tt!t=t!tt!t=t!ttUt=tt=tUtt=t1t=t tt'tttt9ttttttttt tttttttttttttt,tt*t%tttt =ttt =ttt t tttWtYt6tOt3t t3t't3t t3t't3t t3t#t!t=t!t!t!t=t!tt!t=t!ttYt=tt=tYtt=t1t=t tt'tttttt9tttt ttttttttt*tt+t$tt!tt=tttt=tttttAttttWtYt6tOt1tt tt1t't1tt tt1t't1tt tt1t#t"t=t"t!t"t=t"tt"t=t"tt\t=tt=t\tt =t3t =ttt&tttttt9ttttt tttttttttt)tt-t"tt$tt=ttt=ttttt?ttttWtYt6tPt/tt/t)t/tt/t)t/tt/t%t"t"t#t"t"t!t"t"tt^t=tt=t^ttt =t3t =tttt&tttttt:ttttttt tttttttttttt(tt-t"tt'tt=tttt=tt"t tt=tt t!tUtLt6tQt,tttt,t*tt,tttt,tt*t,tttt,t'tEt%tEt#tEtt^t=tt=t^ttt=t5t=tttt%ttttttt<ttttt t tt ttttttt'ttt"tt)tt==ttt==tt%t tt;tt t"tUtL=t6tQt+tt+t)tt+tt+tt)t+tt+t(ttAtt'ttAtt%ttAttt_t=tt=t_tt t5t ttt$tttttttt<ttttttttttttttttt&t#ttt"tt,tttttt( tt9t t#tUtL=t6tPtt(tttt(tt(tt(tttt(tt)tt(tttt(tt*t?t+t?t't=t?t=tt`t=tt=t`ttt5tttt$tttttttt<tttttttttttttttttt t$t&ttt!tt.ttt<t7t5tUtL=t6tOtt'tt'tt&tt'tt'tt'tt'tt'tt*tt;tt+t=tt;tt=t&t==tt;tt==tt`t=tt=t`ttt5tttt#ttttt ttttt<tttttttttttttt t#t)tt tt0tttt>t5t7tStM=t6tt'tt&tt&tt$tt&tt&tt%tt&tt&tt(t==t9t==t*t=t9t=t&t=t9t=ttat=tttt=tattt7tttt"tttttt:ttttttttttttt"t+ttttt/ttt>t3t8tStM=t6ttt%tt%tttt%tt"tt%tttt%tt#tt%tttt%tt't==t9t==t*t=t9t=t&t=t9t=ttat=t t=tattt7tttt!tttttt9ttttttt tttttttt!t-tttt.tttt>3t9tStty=t6ttt$tt$t#t$tt"tt$t#t$tt#tt$t#t$tt't=t7t=t*t=t7t=t&t=t7t=ttbt=tt=tbttt7ttttttttt9ttttttttt ttttttttttt.tttt0ttt@t/=t:tStttu=t6ttt"tt#tt#tt#tt tt#t!t#tt!tt#t%t#tt&t=t7t=t*t=t7t=t&t=t7t=ttbt =t =tbttt7tttttttt9ttttttttttt ttttttttttttt0tttt}t/=t;tQtttq=t6ttt!tt"ttt#ttt"tttt"ttt!ttt"tttt"t%t"tt%t=t7t=t*t=t7t=t&t=t7t=ttct=tcttt7tttttttt9tt ttttttttt ttttt tttttttt1tttt}t/=t;tQtttn=t6ttt tt!tt!tt!tttt!tttt!tttt!tt#tt!tt%t==t9t==t*t=t9t=t&t=t9t=ttct=tcttt7tttttttt:tttttt ttttttttt3tttt|3t:tQttt%ttl=t6ttttt!tttt!tttt!tttt!tttt!tt!tt!tt$t==t9t==t*t=t9t=t%t=t9t=ttFtttt=ttttFttt7tttttttt<ttttttttttttt"ttt5tttt{t3t:tOttt)ttj=t6ttttt!tttt!tttt!t tttt t!tttt!tttt!tt#t=t9t=t(t=t9t=t$t=t9t=ttAttttt=tttttAttt7tttttt<ttttttttttttt#t7ttttzt5t9tOttt-tth=t6ttttt t tttt t tttt t tt t tttt t tt t tt"t==t;t==t(t=t;t=t$t=t;t=t t?ttt =ttt?ttt7tttt}tttttttttttttstttyt7t9tMtt1tg=t6ttttt!t tt t!tttt!tt tt!tttt!t tttt t!tt"t==t;t==t(t=t;t=t$t=t;t=t!t>tt ttt>ttt7tttt~tttttttttttttMt#t4ttyt7t9tMttt3tte=t6ttttt tt tt tttt t tt tttt t tt t tt!t=t=t=t(t==t=t==t$t=t=t=t!t=ttAtt=ttt7tttt tlt ttttt ttItt!tt3ttyt7t9tMt3 t tZt7td=t6ttttt t tt tttt t5t tttt tt tt tt t?t't?t$t?t!t=tt?tt=ttt5tttt t=ttittttttttttttttGtttt2ttyt7t:Mt3t tt tWtt9ttb=t6ttttt t5t tttt t5t tttt t tt ttttt!tttttttt!t t?t t!tttt5tttt t=tdttttttttEtttt1t txt7t>tC=t6t t t tUt=ta=t6ttttt t7t tttt t7t tttt t7t ttt tt=tt tt tt=tt tt tt=tt ttt=t t t=t t t=tttt5tttt t =t^t t tt tttt tt t tDtttt0t txt7t>tC=t6t t t tTt?t`=t6tttttt9tttttt9tttttt9tttt't =t't t't =t't t't =t'ttt=tt t=t tt=tttt5tttt t=t^t tttttttttt tCtttttt/t txt7t?tA=t8 t tTtAt_=t6ttttt t9t tttt t9t tttt t9t ttt)t =t)t t)t =t)tt)t =t)ttt=tt t;t tt=tttt3tttt t=t^t t t t t t ttBt tt t.t!twt7t>Et7t =tt =tStCt^=t6ttttt t9t tttt t9t tttt t9t ttt)t=t)tt)t=t)tt)t=t)ttt=tt t;t tt=tttt3tttt t=t_t$$tBt tttt t-t!twt7t=tEt6 t tRtEt]=t6tttttt;tttttt;tttttt;ttt t)t=t)tt)t=t)tt)t=t)ttt=tt t9t tt=tttt1tttt t=t_t$$tAtttttt,t"tvt7t=tEt/tt t t ttJtGt\=t6tttt t;t tttt t;t tttt t;t tt t)t=t)tt)t=t)tt)t=t)ttt=ttt7ttt=tttt1tttt t=t_t$$t@tt tt,t!tvt7t>tCt/ttt t t tttHtIt[=t6ttttt t;t tttt t;t tttt t;t tt t*t=t*tt*t=t*tt)t=t)ttt=ttt7ttt=tttt/tttt t=t^t t t t t t tt>tttt+t!tvt7t>tCt-tttt t t ttttEtKtZ=t6tttt t;t tttt t;t tttt ttt tt t)t=t)tt)t=t)tt)t=t)ttttt5tttttt/tttt t=t^t tttttttttt t=tttt*t!tvt7t?tAt-ttt t t tttDtKtZ=t6tttttttttttttttttt;tttttttttttttt t)t=t)tt)t=t)tt)t=t)tt8tt5tt8ttt-tttt t=t^t t tt tttt tt t t<tttt)t!tvt7t@t?t-ttt t t tttBtMt5t =t6ttttt tttt tttt ttt tttt ttt ttt tt t)t=t)tt)t=t)tt)t=t)tt8tt5tt8ttt+tttt t=t^tttttttt;tttt(t!tvt7tAt=t-ttt t t ttt@tOt3tt=t6t t t tt ttt ttt tttt tttt tttt tttt tt t)t=t)tt)t=t)tt)t=t)tt8tt7tt8ttt+tttt t=t_tttttttttttttt;tttttt(t twt5tBt=t,t t t t t t?tOt2t t=t6t =tt = ttttttttttttt ttttttttttttt t)t=t)tt)t=t)tt)t=t)tt7tt7tt7ttt)tttt tt=t`t ttttt tt;ttt't txt3tDt;t,t t==t t t t==t t=tQt1t t=t6t =tt = tt tttt tttt tttt tttt tttt tt t)t=t)tt)t=t)tt)t=t)tt7tt9tt7ttt'tttt t=tcttttttttttttt=tCt&t tyt#tFt9t,t t==t t t t==t t;tSt/tt=t6t =tt = tt tttt tttt tttt tttt tttt tt t)t=t)tt)t=t)tt)t=t)tt6tt9tt6ttt%tttt t=t =tcttttttttttttt<tEt&ttzt=t!t=tHt7t,t t=tt tt tt=t t:tSt/tt =t6t =tt = t"tttttt"tttt"tttttt"ttttt"tttttt"tt t)t=t)tt)t=t)tt)t=t)tt5tt;tt5tttt!ttttt t=tt=tcttttttttttttt:ttGtt$ttzt=t!t=tIt5t,tt=tttttt=tt8tUt.tt =t6t =tt = t&t tt t&t t&tttt&t t&t tt t&tt)t=t)tt)t=t)tt)t=t)tt5tt;tt5ttttttt t=ttcttttttttttttt8ttKtt"ttzt=t!t=tJt3t-t tt=tt==tt t==tt=ttt8tUt.tt =t6t =tt =tt,tt tt tt,tt tt,tt tt tt,tt tt,tt tt tt,ttt)t=t)tt)t=t)tt)t=t)tt5tt tt tt5ttttttt t=t tatttttt tttttttOt ttyt#tJt1t-ttttt=ttttt6tWt-tt=t6t =tt =t0t tt t0tt0t tt t0tt0tttt0tt)t =t)t t)t =t)tt)t =t)tt4tttttttttt4ttttttt t=t t`tt ttttttttt ttttt tttttttt ttxt3tJt/t-tt=tt5tWt-ttt6t =tt =t2tttt2tt2t tt t2tt2tttt2tt't =t't t't =t't t't =t'tt4ttt tt ttt4ttt=tttt=tttt t=t t`ttttttttttt tttttttttttt}t ttwt5tJtt+tt.ttt=ttt4tYt,ttt6t t ttttttttttttttttttttttttt t tt=tt tt tt=tt tt tt=tt tt3tttt t t tttt3ttt=t t=tttt t=t t`ttttttttt tttttttttt}t ttvt7tKt)t/tt=tt3tYt,ttt6tttttttttttttttttttttttttttttttttttt!tttttt%t3tt ttt3ttt = t =tttt t=t t`ttttttt tttttttt=t=t ttvt7tLtt%tt/ttt=ttt2tYt,ttt6tttttttttttttttttttttttttttttttttt?t't?t$t?t(t2tYt2ttt=t=tttt t=t tattttttttttttt:tttt:tttvt7tNt#t1tt=tt1t[t+ttt6ttttttttttttttttttttttttttttttttt=t=t=t(t==t=t==t$t=t=t=t(t2tYt2ttt=t=tttt t=t tctttttttttttttt!t9tt9tttvt7tOtttt1tt=tt0t[t+ttt6tttttttttttttttttttttttttttttttttt==t;t==t(t=t;t=t$t=t;t=t(t2tYt2ttt=t=tttt t=t tctttttttttttttttttt"t7t t7tttvt7tQtt3tt=tt0t[t+ttt6ttttttttttttttttttttttttttttttttt==t;t==t(t=t;t=t$t=t;t=t)t1tYt1ttt=t=tttt t=t tctttttttttttttttt"t6t t6tttvt7tTtt7tt!=tt t[ t ttt6tttttttttttttttttttttttttttttttttttt=t9t=t(t=t9t=t$t=t9t=t)t1tYt1ttt=t=tttt t=t tcttttt ttt tttttt"t5t t5tttvt7tWt t;tt!=tt ttt6tttttttttttttttttttttttttttttttttt==t9t==t*t=t9t=t%t=t9t=t*t0tYt0ttt=t=tttt t=t tatttttttttttttttttt!t3tt3tttvt7t[ t?t=tt#=tt=t ttt6t =tt =ttttttttttttttttttttttttt==t9t==t*t=t9t=t&t=t9t=t,t/tYt/ttt=t=tttt t=t t`tttttttttttttt t2tt2tttvt7tt=t t%=t t=t ttt6t =tt =t2tttt2tt2t tt t2tt2tttt2tt=t7t=t*t=t7t=t&t=t7t=t,t/tYt/ttt=t=tttt t=t t`tttttttttttt!t0tt0tttvt7ttt=tt%=tt=tt ttt6t =tt =t0t tt t0tt0t tt t0tt0tttt0tt=t7t=t*t=t7t=t&t=t7t=t-t.tYt.ttt=t=tt tt t==tt t`tttttttttttttttttttttt!t/tt/tttvt7ttt=tt%=tt=tt ttt6t =tt =tt,tt tt tt,tt tt,tt tt tt,tt tt,tt tt tt,ttt=t7t=t*t=t7t=t&t=t7t=t-t/tWt/tttt=t=ttt tt tt`ttttttt ttt tttttttt"t-tt-tttvt7tt t=tt'=tt=t t ttt6t =tt =t'tt tt tt't t'tttttt't t'tt tt tt'tt==t9t==t*t=t9t=t&t=t9t=t-t/tWt/ttttt=t=tttt tt tttatttttttttttttttt#t,tt,tttvt7tT tCtt3=tt ttt6t =tt = t$tttt$tttt$tttt$ttttt$tttt$ttt==t9t==t*t=t9t=t&t=t9t=t,t0tWt0tttt=t=ttt tt ttdtttttttttttttttt't*tt*tttvt7tSt tAtt+=tt  ttt6t =tt = tt#tttt#tttt#tttt#tttt#tttt#tttt;tt+t=tt;tt=t&t==tt;tt==t+t1tWt1tttt=t =t =t=ttt tt ttqtttttttt4t)tt)tttvt7tRt t@tt)=tt  ttt6t =tt = tt"tttt"tttt"tttt"tttt"tttt"ttt?t+t?t't=t?t=t*t2tWt2tttt=tt=t=tt=ttt tt ttttttHt'tt'tttwt5tRt t?tt)=tt  ttt6t =tt = tt!tttt!tttt!ttt ttt!tttt!tttt!ttttAtt'ttAtt%ttAtt)t3tWt3tttt=t tt=ttttt ttqtttttttt6t%t!t%t ttxt3tIt tt5tt)=tt  ttt6t =tt = tt!ttt ttt!tttt!tttt!tttt!tttt!tttEt%tEt#tEt't5tUt5tttt=t t t=tttt t ttptttttttttttttt5t$t#t$t!tty3tHtttt =tttt3tt)=tt  ttt6t =t  t t = tt!tttt!tttt!ttt!tttt!ttt ttt!ttt"t"t#t"t"t!t"t"t%ttttttSttttttttt=t t t=tttt t ttptttttttttttt6t!tt%tt!t#ttzt/=tHttttt1tt)=tt  ttt6t =tt =tt = tt!ttt!tttt!t9t!tttt!tttt!ttt"t=t"t!t"t=t"tt"t=t"t$tt==tt==ttStt==tt==ttttt=t t t=ttttt t ttpttt ttt tttt6ttt)ttt$ttzt/=tGtttttt0tt)=tt  ttt6t =tt= t=tt = tt!t9t!tttt!t9t!tttt!ttt!ttt!t=t!t!t!t=t!tt!t=t!t#ttt=tt=tttQttt=tt=tttttt=t t t=tttttt ttotttttttttttttt6t-t&t tzt/=tGtttttt0tt)=tt  ttt6t =tt=t t=tt = tt!t9t!tttt!t9t!tttt!t9t!ttt!t=t!tt!t=t!tt!t=t!t"ttt=tt=tttQttt=tt=tttttt=t t t=ttttt ttotttttttt ty3tEt tttt t/tt)=tt  ttt6t =tt=t t=tt = tt!t9t!tttt!t9t!tttt!t9t!ttt!t=t!tt!t=t!tt!t=t!t!tt =tt =ttOtt =tt =ttttt=t t t=tttt ttotttttt_tht txt3tDt tt t/tt)=tt  ttt6t =tt=t t=tt = tt!t7t!tttt!t7t!tttt!t7t!ttt!t=t!tt!t=t!tt!t=t!t!tt =tt =ttOtt =tt =ttttt=t t t=ttt)ttotttttttttttttt]ttttgtttwt5tCt t==tt==t t/tt'=tt  ttt6t =tt=t t=tt = tt"t5t"tttt"t5t"tttt"t5t"ttt"t=t"tt"t=t"tt"t=t"t tt=tt=ttMtt=tt=ttttt=t t t=tttt ttpttt ttt tttt]tthtttvt7tBt t==tt==t t/tt'=tt  ttt6t =tt=t t=tt = tt"ttt"tttt"ttt"tttt"ttt"ttt#t=t#tt#t=t#tt#t=t#t tt=tt tt=ttMtt=tt tt=ttttt=t t t=tttt=t ttptttttttttttt\t titttvt7tBt t==tt==t t/tt'=tt  ttt6t =tt=t t=tt = tt"tttttt"tttt"tttttt"tttt"tttttt"ttt#t#t!t#t#tt#t#t!tt=tt=ttMtt=tt=ttttt=t t t=ttttt=t ttptttttttttttttt[t tjtttvt7tBt t==tt==t t/tt)=tt ttt6t =tt=t t=tt = tt#tt tt#tttt#tt tt#tttt#tt tt#tttIt!tIttIt tt=tt=ttKtt=tt=ttttt=t t t=tttt=t ttqtttttttt[t tktvt7tBt t==tt==t t/ttt/=ttt t[ tttt6t =tt=t t=tt = tt#tt tt#tttt#tt tt#tttt#tt tt#tttGt#tGt!tGt!tt=tt=ttKtt=tt=ttttt=t t t=tttt =t ttttttmttt7tBt t==tt==t t/ttt=t%=t=ttt+t[t.ttt6t =tt=tt=tt =tt$tt tt$tttt$tt tt$tttt$tt tt$tttEt%tEt#tEt"t t=tt=t tKt t=tt=t tttt=t t t=tttt =t ttqttttttttYttt7tBt t==tt==t t/ttt=ttt#=ttt=ttt+t[t/ttt6t =tt=tt=tt =tt$t tt t$tttt$t tt t$tttt$t tt t$tt ttAtt'ttAtt%ttAtt#t t=t t t=t tKt t=t t t=t tttt==tt t tt==tttt =t ttpttttttttttttttWttt7tBt t==tt==t t/tt=ttt!=ttt=tt+t[t0tttt6ttt=tt=tttt%tt tt tt%tttt%tt tt tt%tttt%tt tt tt%tt#t;t+t;t)t;t$tt=ttt=ttt=ttItt=ttt=ttt=tttttttttt =t ttpttttttttttttVttt7tBt t==tt==t t/t tt=ttt!=ttt=tt t,tYt3ttt6tt t=t=t ttt&t tt t&tttt&t tt t&tttt&t tt t&tt%t7t/t7t,t=tt7tt=t"tt=tt =tt=ttCtt=tt =tt=tttttttt=t ttpttt ttt ttttUttt7tBt t==tt==t t0t tt=tt t=t tt=tt t-tYt4ttt5tt t=t ttt'tttttt'tttt'tttttt'tttt'tttttt'tt(t7t1t=t7t=t,t==t7t==t!tt=tt=t=tt=ttAtt=tt=t=tt=tttttttt=t ttottttttttttttttSttt7tBt t==tt==t t0tt=tt=tt=tt-tYt5tttt5tt t ttt(tt(tttt(tt(tttt(tt(tt(tt5tt2t=t5t=t.t==t5t==t!tt=tt==tt==tt=tt?tt=tt==tt==tt=tttttttt=t ttottttttRttt7tBt t==tt==t t0ttt=ttt=ttt=ttt.tWt8ttt4tttttottttottttott)t=t3t=t2t==t3t==t.t=t3t=t!ttt==tt==ttt?ttt==tt==ttttttttt=t ttottttttQttt7tBt t==tt==t t0ttt=tttt=tttt=ttt.tWt9ttt3tttttottttottttott)t==t1t==t2t=t1t=t.t=t1t=t!tt==tt==tt?tt==tt==tttttttt=t ttottttttttttttttPttt7tBt t==tt==t t1ttt==tt=tt==ttt0tUt;ttttt1ttt ttmtt ttmtt!ttmtt+t=t1t=t4t==t1t==t0t=t1t=t"tt==tt==tt?tt==tt==tttttttt=t ttpttt ttt ttttPt!tt7tBt tttt t5ttt=ttt4tUt=ttt0ttt"ttmtt"ttmtt#ttmtt,t==t/t==t4t=t/t=t0t=t/t=t"tt==tt==tt?tt==tt==tttttttt=tt ttpttttttttttttOt#tt7t%tt+tttt"t =t"tt3tSt?tttt.ttttt#ttmtt"ttmtt#ttmtt,t==t/t==t4t=t/t=t0t=t/t=t#ttt==tt==tttAttt==tt==ttt tttttttt=tttpttttttttttttttMtt%ttt7t$ttt+tttt' t't2tSt@tt tt+tt&tt4t4tt$tt4t4tt%tt4t4tt-t==t/t==t4t=t/t=t0t=t/t=t$tt=tt==tt==tt=t tCt t=tt==tt==tt=tt tttttttt=tttqttttttttLtt)ttt7t#t tt+tt ttWt3tQtCt t!tt)tOtt3tt3tt&tt3tt3tt'tt3tt3tt/t==t-t==t6t=t-t=t2t=t-t=t(t t=tt=t=tt=t tIt t=tt=t=tt=t t tttttttt=tttttttBt-tt7t"t tt-tt ttWt4tOtEt t#t&tPtt2tt2tt(tt2tt2tt)tt2tt2tt0t==t-t==t6t=t-t=t2t=t-t=t)t t=tt =tt=t tKt t=tt =tt=t t t ttttt tt=tttqtttttttt.tgtt7t"t tt-tt ttWt4tOtFttt&tt$tQt2tt2t)tt2tt2tt)t2tt2t0t=t+t=t6t=t+t=t2t=t+t=t)t t=t tt=tt t=t tKt t=t tt=tt t=t t t ttttt tt=tt tptttttttttttttt-tgtt7t"ttt/ttttUt6tMtItt(t!tQt2tt2t*tt2tt2tt*t2tt2t1t==t+t==t8t=t+t=t4t=t+t=t*t t=t t t=t tKt t=t t t=t ttt ttttt ttt=tt tptttttttttttt.tett7t#t =t t3t t =ttUt7tKtKtt,tttPt3tt3t)t3tt3t)t3tt3t0t=t)t=t8t=t)t=t4t=t)t=t*t t=tt=t tKt t=tt=t ttttttttttt=tt tpttt ttt tttt/tctt7t!tt?tttSt8tKtLttt.ttOt5tt5t't5tt5t't5tt5t0t==t)t==t:t=t)t=t6t=t)t=t,t t=tt=t tMt t=tt=t ttttttttt=tt totttttttttttttt/tatt7t!tttAttttSt9tItOt2tttOt6tt6t't6tt6t't6tt6t0t==t)t==t:t=t)t=t6t=t)t=t,t t=tt=t tMt t=tt=t ttttttt=tt totttttt0t_tt7t!tttCttttQt;tGtttNt8t8t%t8t8t%t8t8t0t==t't==t<t=t't=t8t=t't=t-t t=tt==t tMt t==tt=t tttt!t=tt totttttt0t_tt7t!tttCttttQt<tEttttNtst%tst%tst0t==t't==t<t=t't=t8t=t't=t.t t==ttt=t tOt t=ttt==t tttt!t =tt totttttttttttttt1t]tt7t!tttCttttOt>tCtttNtst%tst%tst0t==t't==t<t=t't=t8t=t't=t.t tttt=tt tOt tt=tttt tttt"t =tttpttt ttt tttt3t[tt7t!ttCtttMt@tAttttOt tUt t't tUt t't tUt t2t==t%t==t>t=t%t=t:t=t%t=t0tt=tt tt=ttQtt=tt tt=ttttt't=tttptttttttttttt4tYtt7t!tt==tCt==tttMtAt?tt tOt tttOttt t't tttOttt t't tttOttt t2t==t%t==t>t=t%t=t:t=t%t=t0tt=tt=ttQtt=tt=ttttt+t!ttptttttttttttttt5tWtt7t!tt==tCt==tttKtCt=ttt tQtttttKttttt)tttttKttttt)tttttKttttt3t=t#t=t>t=t#t=t:t=t#t=t1tt =tt =ttStt =tt =tttttQtttqtttttttt7tUtt7t!tt==tCt==tttItEtt9ttttRttttttItttttt+ttttt tIt ttttt+tttttttIttttttt5t==t#t==t@t=t#t=t<t=t#t=t2tt =tt =ttStt =tt =tttttStttttKtStt7t!tt==tCt==tttItGt7ttttUtttttEttttt/tttttEttttt/ttttEtttt7t=t!t=t@t=t!t=t<t=t!t=t3ttt=tt=tttUttt=tt=tttttt2 tttttttCtQtt7t!tt==tCt==tttGtItt3tttatttAtttCttttAttttDtttAtttDt==t!t==tBt=t!t=t>t=t!t=t4ttt=tt=tttUttt=tt=tttttt.t tttttttttttCtOtt5t"tt==tCt==tttEtLt1t ttt=tttFt tt=tt tGtttt=ttttEt=tt=tBt=tt=t>t=tt=t4tt==tt==ttUtt==tt==ttttt*ttttttttttDtMtt3t#tt==tCt==tttCtNtt-tttttt9ttttHt tt9tt tJtttt9ttttHt=tt=tDt=tt=t@t=tt=t4ttttttSttttttttt)ttttt ttt ttCttItt3t$tttt==tttttt==tttttAtQtt)ttttt3tttKtt t3t ttMttt3tttJt=tt=tDt=tt=t@t=tt=t3t9tQt9tttt'tt!ttttttttttttDtGt"tttt=tt==tt==tt=ttttt?tTtt%tttt t-t ttOtt t-t ttQtt-ttMt=tt=tFt=tt=tBt=tt=t4t9tQt9tttt%tt%ttttttttEtEt$t tttt==tt==tttt tt=tWttt t't tStt t't ttTtt'ttOt=tt=tHt=tt=tDt=tt=t4t;tOt;t ttt%t)tttttttFEt&t ttt==tt==ttt t!t;t[ttt tt tVttttYtt tt ttRt=tt=tHt=tt=tDt=tt=t4t;tOt;t ttt%t)ttttttttttt ttt==tt==tt t#tt7tt`tt&tt tt ttZtttt\tt tt ttUt=tt=tJt=tt=tFt=tt=t6tt%ttQtt%tt!t t t&t)tt ttt tt6?tQtt==tt==tt8t5tft,tttttttt_ttttttttat tttt tXt=tt=tLt=tt=tHt=tt=t7tttt!ttttQtttt!tttt!t t t't'ttttttttt7t?tQtt==tt==tt:tt1ttttttcttttttft tt t[t=tt=tLt=tt=tHt=tt=t8ttttttttttttStttttttttttt"t t t(t'ttttttttttt8tt;ttSttt==tt==ttt=t/tt tt thttttltttt`t=tt=tNt=tt=tJt=tt=t;tt tttt ttWtt tttt tt#t t t*t%ttttttt;t9tWtt==tt==tt@tt+ttttttot tt tuttgt=tt tt=tPt=tt tt=tLt=tt tt=tJttstt#t t t+t#tttttEtt5ttYttt==tt==tttCtt'ttttwtttt~ttmt=t t=tRt=t t=tNt=t t=tNt tyt t$t t t,t#tt tGtt1tt]t t==tt==t tGtt#ttttttttttntt=tt=ttTt=tt=tPt=tt=tSt tt t%t t t.t!tt tIt+tbtt tt ttLttt tt tt tqt=t=tWtt=t=ttRt =t =tTt tt t&ttt/t!ttt'ttgttttttQttt tt tt trt =tZt=tUtt=ttVtttt'ttt1t  t tt!tmtttXt tt tt tt tvtt=tt^t =tXt=tXtttt(ttt2tt tttt tttttttttttttytctt=tt\tt =ttYtttt)ttttt4ttttttttQttttt`t=t[tttt+tt7tttet_tttt#tCtttgarden-1.0.9/data/gfx/platform.bmp0000644000175000017500000016236012457263300013735 00000000000000BM6(  (((yyyeeeeeePPPPPaP]qPiPuP<yeYYPPPPPP(Heyee֡PqPqP}PPPeyyyyyy((yyyeeeePPPPP]PiPuPeyyyyyy(e(ޡyyeeeePPPaPqPPPeލҪҁyʁΉ֑ڙy<(ʍyyeyeePeaqq}<yeYYPPPPPP(PPyeeލPyyPyPPPPtt tt tt tt tt tt tt ttttttttt}t tt tt tt tt tt tt tt tt t|t tttttttttttttttttttht tt t t tt tt t t tt t t t{t t t ttttt tt ttttt tt ttttt tt ttttt tt ttt\t t tt t t t t tt t t tt t t t t tt t t t t ttst tt tt tt tt tt tt tt tt tt tt tt tt tt tt t[t tt tt tt t t tt tt tt t t tt tt t t tt tt tt t t tt tt tqt tt tt tt tt tt tYt t tt t t t t tt t t t ttt t t t t tt t t t t ttt tpt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tYt tt t t tt t t tt t t tt t t tt tot t t tt tt tt tt tt tt tt tt tt tt tt tt tt tYt tt tt tt tt tt tt tt tt tt tnt tt tt tt tt tt tt tt tt tt tt tt tt tt tt ttTt t tt t tt t tt t tt t tt t t t tt t tt t tt t tmt tt tt t tt tt tt t tt tt tt t tt tt tt t tt tt tt t tt tR tt tt t t tt tt tt tt t t tt tt tt tt t t tt ttt t t tt tt tt tt t t tt ttkt tt tt tt tt tt tt tt tt tt tt tPt t tt t tt t tt t tt t tt t tt tt t tt t tt t tjt tt tt tt tt tt tt tt tt tt tt tPt tt tt tt tt tt tt tt tt tt tit tt tt tt tt tt tt tt tt tt tt tPt tt tt tt tt tt tt tt tt t tt tit tt tt tt tt tt tt tt tt tt tt tQtt t tt t tttt t tt t tttt t tt t ttt t tt t ttttt tt t tthtt! ttt tt tt tt tt tt tt tt tt tt tSt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt t t tt tt tgt% tt tt tt tt tt tt tt t tt t tTt t t t t t t t t t t t t t t t t t t t t t t tftt t ttt tt tt tt tt tt tt tt tTt t t t t t t t tt tet tttt tt tt t tt tt tt t tt tt tt t tt tt tt tt tt tTt t t t t t t t t t t tt t t tt t tct t t tt tt tt tt tt tt ttt tt t t tt t t tt tTt tt tt t t tt tt t t tt tt tt tt tt tt tt tbt t t t t tt tt tt tt tt t t tt t t tt t t tt tRt t t t t t t t t t t tt t t tt t tat t t tt tt tt tt tt tt tt tt t t tt t t tt tRt tt tt t tt tt t tt tt tt tt tt tt tt tat t t tt tt tt t t t t tRt ttttt tttt tttt tt ttttt tttt tct t t tt tt tt tt tt tt tt t t tt t t tt tStttttttt ttttttet t t t t ttttt t ttt t ttt t ttt t ttt t>tt t t ttttttttttttttAtt t t ttt tt t*tt tt(t t t tttttttttt.tt tt tttt tt tt't tttt tt tttt t(t tttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt tt tt tt t%t tt tt tt t't t t,ttWt0t ttt ttt tt ttt ttt tt ttt ttt tt ttt ttt tt ttt tt tt tt tt t#t tt tt tt t&t% t)t tt tQt t-t tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt t"t tt tt tt t&t% t'tt tt ttNt tt+t% tt% tt% tt% tt tt tt tt tt t"t tt tt tt t%t' t%t t t tLt t*t% tt% tt% tt% tt tt tt tt tt t"t t t tt tt t&t' t#tt t t ttJt tt(t# tt# tt# tt# tt tt tt tt tt t"t t t tt tt t&t' t"t t t tHt t't t t tt t t tt t t tt t t tt t tt tt tt tt tt tt tt tt ttt tt t t tt tt tt tt tt ttt' t tt t t ttFt tt%t tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt t t tt tt tt tt tt tt tt' tt t t tFt t$t tt tt tt tt tt tt tt tt tt tt tt tt tt tt t tt tt tt tt tt tt tt tt tt t tt t t tt tt tt tt tt t tt tt t tt t t tEt t#t tt tt tt tt tt tt tt tt tt tt tt tt tt tt t t tt t t tt t t tt t t tt t t tt t t tt t t tt t t tt t t tt t t tt tt tttt tt tt tEt t"t tt tt tt tt tt tt tt tt tt tt tt tt tt tt t t t t t t t t t t t t t t t t t t t t tt tt tt tt tt tDt t!t t t t tt t t t tt t t t tt t t t tt t t t t t t t t t t t t t t t t t t t t t t t tt tt tt tt tDt t t tttt tt tttt tt tttt tt tttt tt tttt t t t t t t t t t t t t t t t t t t t t t t tt tt tt tCt tt t t tt t t tt t t tt t t tt t t t t t t t t t t t t t t t t t t t t t t t tt tt ttt tt tDt tt t t tt t t tt t t tt t t tt t t tt t t t t t t t t t t t tt t t t t t t tt tt tt tt tDt tt t t tt t t tt t t tt t t tt t t tt tt t t tt tt tt t t tt tt tt t t tt ttt t t tt tt tt t t tt tt tt t t tt tDt tt t t tt t t tt t t tt t t tt t t tt tt t t tt tt tt t t tt tt tt t t tt t t t t tt tt tt t t tt tt tt t t tt tEt tt t t tt t t tt t t tt t t tt t t tt tt t t tt tt tt t t tt tt tt t t tt tt t t tt tt tt t t tt tt tt t t tt tDt tt t t tt t t tt t t tt t t t tt t t t tt tt t t tt tt tt t t tt tt tt t t tt tt t t tt tt tt t t tt tt tt t t tt tDt tt t t tt t t tt t t ttttt ttttt tt t t tt t t tt t t tt t t tt t t tt tt t t tt tDt tt t t tt t t tt t t tt tt tt t t tt t t tt t t tt t t tt t t tt tt t t tt tEt tt t t tt t t tt t t tt tt tt t t tt t t tt t t tt t t tt t t tt tt t t tt tDt tt t t tt t t tt t t tt tt tt t t t t t t t t t t t t t t t t t t tt tt t t tt tDt tt t t tt t t tt t t tt tt t t tt tt tt t t tt tt tt t t tt tt tt t t tt tt tt t tt tt tt tt t tt tt tt t tt tDt tt tttt tt tttt tt tttt ttt ttt t t tt tttt tt t t tt tttt tt t t tt tttt tt t t tt tttt tt ttt tttt tt t t tt t t tt tt1t tt t t t tt t t t tt t t t tt t tt t t t tt t tt t t tt t tt t t tt t tt t t tt t tt tt t tt tt tt tt tt tt t0t tt tt tt tt tt tt tt tt tt tt tt tt tt t t tt tt tt tt tt tt tt tt t t tt tt tt tt tt tt tt tt tt tt t0t tt tt tt tt tt tt tt tt tt tt tt tt tt t t tt tt t t tt tt tttt tt t tt t t t tt.t t tt tt tt tt tt tt ttt tt tt tt tt tt t t tt tt tt tt tt tt tt tt t t tt tt tt tt tt t ttt tt tt tt tt tt tt ttt tt ttt tt tt tt tt tt tt tt tt tt tt tt t t tt tt tt tt tt tt tt tt t t tt tt tt tt tt' ttt tt tttt tt tttt t tt tttt tt ttt t t tt t t t t t tt t tt t tt tt tt ttt tt tt ttt tt tt tt tt tt tt tt tt' tt t t tttt t t tt t t tttt t t tt# tt! t t tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt' tt t t tt t t tt t t tt t t tt% tt" t t tt tt tt# tt tt tt# tt tt' t t t t tt t t tt t t tt t t tt% tt! t t tt tt tt# tt tt tt# tt tt' t t t t tt t t tt t t tt t t tt tt tt ttt tt tt t t tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt% tt t t tt t t tt t t tt t t tt ttt ttt ttt ttt t t ttt tt ttt tt ttt tt ttt ttt tt ttt tt ttt tt ttt ttt tt ttt tt% tt tt tt tt tt tt tt tt tt tt ttt t ttt t ttt tttt tttt tt ttttt tttt tttt tt ttttt tttt tt t tt tt tttt tt tt tt tttt tt ttt$t$t$t$t tt*t*t tt*tt tttt ttt t tt t tttt t tt t ttt t t ttt tt tt tt tt tttt t t ttt t t t tt t t t ttt t t ttt t t t t tt t t t t tt t t tt tt tt tt tt tt tt t t tt tt tt tt tt tt t@ttttKt t t tt ttt ttt tt ttt ttt t?t tt tt tt tJt t t tt t t tt t t t>t t t tt t t tt t tt t tIt t t ttE ttE t=t tt tt tt tt tt tt tt tt tt tIt t t ttE ttE t=t t t tt t t ttt t ttt t tttttt tttt ttE ttE ttt t tttt tt tt tt tt t t tt tt ttt t tttC ttC tt tt t t t t tt tt tt tt tt tt ttt tt tt tt t tt t ttt% ttA ttA t t tt tt ttt t t tt t tt tt tt tt tt tt t t t t ttt! ttt t tt t t t tt tt tt tt t t tt tt ttt tt tt tt tt t t tt t t t t t t t t tt tt tt tt tt t t tt ttt t t tt t t tt ttt tt tt tt tt tt tt tt tt tt tt t t tt t t tt tt tt t t tt t t t t tt t tt tt t t tt t tt tt t tt tt tt t tt tt t tt t tt tt tt tt tt tt t t tt t t tt tt tt t t tt t t t$t t t t tt t t t tt t t t tt t t tt t t t tt tt t t tt tt tt tt tt tt t t tt tt tt t t tt t t tt tt tt t t tt t t tt tt tt tt tt tt t ttt tt t tttt tt t t tt tt tt tttt tt tttt tt tt tt t t tt t t tt tt tt tt tt tt tt tt tt t t tt t t tt t t tt t t tt tt t t tt t t tt tt tt tt tt tt t t tt tt tt tt tt tt tt t t tt t t tttttt t t t t tt tt tt tt tt t t tt t t t{t tt tt tt tt tt tt tt tt tt tt tt tt ttt tttttt tt tt t tt tt tt tt t t ttt t ttt tt ttt t ttt tt tt tt tt t t tt t t tt tt tt tt t!t ttt) ttt tt ttt) ttt tt tt tt tt tt tt t t tt tt tt tt t#tt' tttt' ttt tt tt tt tt tt t!t t t t t t t tt t/tt# tt3tt# tt+t tt tt ttttt tt tt tttt tt tt tt tt tt tt tt ttt t2t t7t t-t tt tt tt t tt tt tt tt t t t tt tt tt tt t6t t=t t0t tt tt tt tt tt tt tt t t tt tt tt tt t:t tCt t3t tt t ttt tt tt tt tt t ttt t t tt tt tt tt t?t tKt t7t tt ttt tt tt tt tt tt ttt tt t t tt tt tt tt tAt tMt t8tt tt tttt tt tttt tt ttt tt tttt tt tt t tt tt tt tt tBt tMt t8t tt tt tt tt tt tt tt tt tt tt tt ttt tt tt tt tt tt tt t tt t ttt tt tt t tt tt t ttt tDt tOt t9t tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt t t tt t t tt ttGt tOt t9t tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt tt t t tt t t tttt tAt tQt t:t tt t tt tt tt t tt tt tt t tt ttt t tt tt tt t tt tt tt tt t t tt t t t t tBt tSt t;t tt tt tt tt t t t tt t t t t t tDtUt<t tt tt tt tt t tt ttt tt tt ttt t t t t t t t t tt tt tt tt t t t t t t t t tt tt tt tt t t t t t t t t tt tt tt tt t t t t t t t t tt tt tt ttt tttt tttt tttt tttt ttt tt tt t tttttttttttt  t[ t.t, t.t, t, t.t.t, t[ t.t, t.t, t, t.t.t, t  t[ t.t, t.t, t, t.t.t, t[ t.t, t.t, t, t.t.t, t  t[ t.t, t.t, t, t.t.t, t[ t.t, t.t, t, t.t.t, t  t[ t.t, t.t, t, t.t.t, t[ t.t, t.t, t, t.t.t, t  t[ t.t, t.)t t, t.t.t, t[ t.t, t.)t t, t.t.t, t  t[ t.t, t1t$ t t, t.t.t, t[ t.t, t1t$ t t, t.t.t, t  t[ t.t, t1t$ t t, t.t.t, t[ t.t, t1t$ t t, t.t.t, t  t[ t.t, t1t$ t t, t.t.t, t[ t.t, t1t$ t t, t.t.t, t  t[ t.t, t1t$ t t, t.t.t, t[ t.t, t1t$ t t, t.t.t, t  t[ t.t, t1t$ t t, t.t.t, t[ t.t, t1t$ t t, t.t.t, t  t[ t.t, t1t$ t t, t.t.t, t[ t.t, t1t$ t t, t.t.t, t  t[ t.t t1t$ t t, t.t.t, t[ t.t t1t t t, t.t.t, t  t[ t6t t t1t$ t t, t.t.t, t[ t?t t tt/ t t t, t.t.t, t  t[ t6t t t1t$ t t, t.t.t, t[ t?t t tt/ t t t, t.t.t, t  t[ t6t t t.t t t, t.t.t, t[ t?t t tt/ t t t, t.t.t, t  t[ t6t t t.t t t t, t.t.t, t[ t?t t tt/ t t t, t.t.t, t  t[ t6t t t.t t t t, t.t.t, t[ t?t t tt/ t t t, t.t.t t  t[ t6t t t.t t t t, t.t.t, t[ t?t t tt/ t t t, t.t1t t t  t[ t6t t t.t t t t, t.t.t, t t t t t t?t t tt/ t t t, t.t1t t t  t[ t6t t t.t t t t, t.t.t, t t t t t t t t t t?t t tt/ t t t, t.t1t t t  t[ t6t t t.t t t t, t.tt, t t t t t t t t t t?t t tt/ t t t, t.t1t t t  t[ t6t t t.t t t t, t.ttG t t t t t t t t t t<t tt/ t t t, t.t1t t t  t[ t6t t t.t t t t, t.ttG t t t t t t t t t t<t tt/ t t t, tt1t t t  t[ t6t t t.t t t t, t.ttG t t t t t t t t t t<t tt/ t t t, t tt1t t t  t[ t6t t t.t t t t, t.ttG t t t t t t t t t t<t tt/ t t t, t tt1t t t  t[ t6t t t.t t t t, t.ttG t t t t t t t t t t<t tt/ t t t, t ttt t t  t Gt t6t t t.t t t t, t.ttG t t t t t t t t t t<t tt/ t t t, t ttt2 t t  t tE t t6t t t1t t t t t, ttt t, t t t t t t t t t t<t tt/ t t t, t ttt2 t t  t tE t t6t t t1t t t t t> ttt tt, t t t t t t t t t t<t tt/ t t t> t ttt2 t t  t tE t t6t t t1t t t t t> ttt tt, t t t t t t<t tt/ t t t> t ttt2 t t  t tE t t6t t t1t t t t t> ttt tt, t t t t t t t t t t?t t tt/ t t t> t ttt2 t t  t tE t t6t t t1t t t t t> ttt tt t t t t t t t t?t t tt/ t t t> t ttt2 t t  t tE t t6t t t1t t t t t> ttt tt t t tt tt t?t t tt/ t t t> t ttt2 t t  t tE t t6t t t1t t t t t> ttt tt t t ttt t?t t tt/ t t t, t t ttt2 t t  t tE t t6t t t1t t t t t t ttt tt t t tGt t?t t tt/ t t t t t t t ttt t t t  t tE t t6t t t1t t t t t t tt ttt tt t t tGt t?t t tt/ t t t t t t t t ttt tt t t  t tE t t6t t t1t t t t t t tt ttt tt t t tGt t?t t tt/ t t t t t t t t ttt tt t t  t Gt t6t t t1t t t t t t tt ttt tt t t tGt t?t t tt/ t t t t t t t t ttt tt t t  t tEt t6t t t1t t t t t t tt ttt tt t t tGt t?t t tt/ t t t t t t t t ttt tt t t  t tEt t6t t t1t t t t t t tt ttt tt t t tGt t?t t tt/ t t t t t t t t ttt tt t t  t tEt t6t t t1t t t t t t tt ttt tt t t tGt t;t tt/ t t t t t t t t ttt tt t t  t tEt t6t t t1t t t t t t tt ttt tt t t tGt t;t tt/ t t t t t t t t ttt tt t t  t tEt t6t t t1t t t t tt ttt t t t tGt t;t tt/ t t t t t t t ttt t t t t  t tEt t6t t t@t t t t t tt ttt tt t tGt t;t tt/ tt t t t t t t ttt tt tt t  t tEt t6t t t@t t t t t tt ttt tt t tGt t;t tt/ tt t t t t t t ttt tt tt t  tE t6t t t@ t t t tt 2t tt tG t;t tt/ tt t t t .tt tt tt  t[t6t t t[t t tt5 t tt tt[t;t tt/ t t t t5 t tt tt tt  t[t6t t t[t t tt5 t tt tt[t;t tt/ t t t t5 t tt tt tt  t[t6t t t[t t tt5 t tt tt[t;t tt/ t t t t5 t t tt tt  t[t6t t t[t t tt5 t t tt tt[t;t tt/ t t t t5 t t tt tt  t[t6t t t[t t tt5 t t tt tt[t;t tt/ t t t t5 t t tt tt  t[t6t t t[t t tt5 t t tt tt[t?t t tt/ t t t t5 t t tt tt  t[t6t t t[t t tt# t t tt tt[t?t t tt/ t t t t# t t tt tt  t[t6t t t[t t tt# t t tt tt[t?t t tt/ t t t$ t# t t tt tt  t[t6t t t[t t tt# t t tt tt[t?t t tt/ t t t$ t# t t tt tt  t[t6t t t[t t tt# t t tt tt[t?t t tt/ t t t$ t# t t tt tt  t[t6t t t[t t tt# t t tt tt[t?t t tt/ t t t$ t# t t t tt  t[t6t t t[t t tt# t t tt tt[t?t t tt/ t t t$ t# t t2 tt  t[t6t t t[t t tt# t t tt tt[t?t t tt/ t t t$ t# t t2 tt  t[t6t t t[t t tt# t tt tt[t?t t t1t t t$ t# t t2 tt  t[t6t t t[t t t# t, tt tt[t?t t t[t t$ t# t t2 tt  t[t6t t t[t t$ t# t, tt tt[t<t t[t t$ t# t t2 tt  t[t6t t t[t t$ t# t, tt tt[t<t t[t t$ t# t t2 tt  t[t6t t t[t t$ t# t, t tt[t<t t[t t$ t# t t2 tt  t[t6t t t[t t$ t# tG tt[t<t t[t t$ t# t t2 tt  t[t6t t t[t t$ t# tG tt[t<t t[t t$ t# t t tt  t[t6t t t[t t$ t# tG tt[t<t t[t t$ t# t t t1t  t[t6t t t[t t$ t# tG tt[t<t t[t t$ t# t t t1t  t[t6t t t[t t$ t# tG tt[t<t t[t t$ t# t t t1t  t[t6t t t[t t$ t# tG tt[t<t t[t t$ t# t t t1t  t[t6t t t[t t$ t# t, tt[t?t t t[t t$ t# t t t1t  t[t6t t t[t &t# t, t.t[t?t t t[t &t# t t t1t  t[t6t t t[t[ t, t.t[t?t t t[t[ t t t1t  t[t6t t t[t[ t, t.t[t?t t t[t[ t t t1t  t[t6t t t[t[ t, t.t[t?t t t[t[ t t.t  t[t6t t t[t[ t, t.t[t?t t t[t[ t, t.t  t[t6t t t[t[ t, t.t[t?t t t[t[ t, t.t  t[t6t t t[t[ t, t.t[t?t t t[t[ t, t.t  t[t6t t t[t[ t, t.t[t?t t t[t[ t, t.t  t[t.t t[t[ t, t.t[t.t t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  t[t.t, t[t[ t, t.t[t.t, t[t[ t, t.t  ttttt=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t, t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t.t t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t[ t[ t[ t[ t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t =t t %t t t t t t t t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t t; t t t# t t t t t t t t t t t t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t t; t t t# t t t t t t t t t t t t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t t; t t t t# t t t t t t t t t t t t t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t t; t t t t t# t t t t t t t t t t t t t t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t t; t t t t t# t t t t t t t t t t t t t t, t.t-t- t[ t=t[ t6t t t.t, t, t.t.t, t[ t t; t t t t t# t t t t t t t t t t t t t t, t.t-t- t[ t=t[ t6t t t.t t, t.t.t, t[ t t; t t t t# t t t t t t t t t t/ t t t, t.t-t- t[ t=t[ t6t t t5t t t, t.t.t, t[ t t; t t t# t t t t t t t t t/ t t t, t.t-t- t[ t=t[ t6t t t5t t t, t.t.t, t[ t t; t t t# t t t t t t t t t/ t t t, t.t-t- t[ t=t[ t6t t t5t t t, t.t.t, t[ t t; t t t# t t t t t t t t t/ t t t, t.t-t- t[ t=t t t t6t t t5t t t, t.t.t, t[ t t; t t t# t t t t t t t t t/ t t t, t.t-t- t[ t=t t t t t t6t t t5t t t, t.t.t, t[ t t; t t t# t t t t t t t t t/ t t t, t.t-t- t[ t=t t t t t t6t t t5t t t, t.t.t, t[ t t; t t t; t t t t t t t t t #t t t t, t.t-t- t[ t=t t t t t t6t t t5t t t, t.t.t, t[ t t; t t t; t t t t t t t t t t! t t t t, t.t-t- t[ t=t t t t t t6t t t5t t t, t.t.t, t[ t t; t t t; t t t t t t t t t t! t t t t, t.t-t- t[ t=t t t t t t6t t t5t t t, t.t.t t[ t t; t t t; t t t t t t t t t t! t t t t, t.t-t- t[ t=t t t t t t6t t t5t t t, t.t1t t t[ t t; t t t; t t t t t t t t t t! t t t t, t.t-t- t[ t=t t t t t t6t t t5t t t, t.t1t t t[ t t; t t t; t t t t t t t t t t! t t t t, t.t-t- t[ t=t t t t t t6t t t5t t t t.t1t t t[ t t; t t t; t t t t t t t t t t! t t t t, t.t-t- t[ t=t t t t t t6t t t5t t t t t:t1t t t[ t t; t t t; t t t t t t t! t t t, t.t-t- t[ t=t t t t t t6t t t5t t t t t:t1t t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t t t t6t t t5t t t t t:t1t t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t tt tt t6t t t5t t t t:t1t t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t tt tt t6t t tEt t t t:t1t t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t tt tt t2t tEt t t t:t1t t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t t tt t2t( tEt t t t:t1t t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t tEt t2t( tEt t t t:t1 t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t tEt t2t( tEt t t t:t;t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t=t tEt t2t( tEt t t t:t;t t[ t t; t t t; t t[ t t! t t, t.t-t- t[ t= tE t2t( tEt t tEt!t[ t t; t t t; t t[ t t! t t, t[ t=t[t2t( t[t t tt# t t;t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t2t( t[t t tt# t t;t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t2t( t[t t tt# t t1t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t2t( t[t t tt# t t t1t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t2t t[t t tt# t t t1t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t6t t t[t t tt# t t t1t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t6t t t[t t tt# t t t1t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t6t t t[t t tt# t t t1t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t6t t t[t t tt# t t t1t[ t t; t t t; t t[ t t! t t[ t- t-t[ t=t[t6t t t[t t tt# t t t1t[ t t; t t t; t t t t t t t! t t t[ t- t-t[ t=t[t6t t t[t t tt# t t t1t[ t t; t t t; t t t t t t t t t t! t t t t[ t- t-t[ t=t[t6t t t[t t t# t t t1t[ t t; t t t; t t t t t t t t t t! t t t t[ t- t-t[ t=t[t6t t t[t t$ t# t t t1t[ t t; t t t; t t t t t t t t t t! t t t t[ t- t-t[ t=t[t6t t t[t t$ t# t t.t[ t t; t t t; t t t t t t t t t t! t t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t; t t t t t t t t t t! t t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t; t t t t t t t t t t! t t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t; t t t t t t t t t #t t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t# t t t t t t t t t/ t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t# t t t t t t t t t/ t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t# t t t t t t t t t/ t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t# t t t t t t t t t/ t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t# t t t t t t t t t/ t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t t# t t t t t t t t t t/ t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t t t# t t t t t t t t t t t t t t[ t- t-t[ t=t[t6t t t[t t$ t# t, t.t[ t t; t t t t t# t t t t t t t t t t t t t t[ t- t-t[ t=t[t6t t t[t &t# t, t.t[ t t; t t t t t# t t t t t t t t t t t t t t[ t- t-t[ t=t[t6t t t[t[ t, t.t[ t t; t t t t# t t t t t t t t t t t t t[ t- t-t[ t=t[t6t t t[t[ t, t.t[ t t; t t t# t t t t t t t t t t t t[ t- t-t[ t=t[t6t t t[t[ t, t.t[ t t; t t t# t t t t t t t t t t t t[ t- t-t[ t=t[t6t t t[t[ t, t.t[ t =t t %t t t t t t t t[ t- t-t[ t=t[t6t t t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t6t t t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t6t t t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=t[t.t, t[t[ t, t.t[ t[ t[ t[ t[ t[ t- t-t[ t=tttttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t[t[tt tt tt tt[tt tt tt tttt tt tt ttttt tt tt tttt[tt tt tt tt[t) t)t[tt tt tt tt[tt tt tt tttt tt tt ttttt tt tt tttt[tt tt tt tt[t&t t&t[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[t$tt tt$t[tt tt tt tt[tt tt tt tttt ttt ttt ttttt ttt ttt tttt[tt tt tt tt[t#t t#t[tt tt tt tt[tt tt tt ttt tt t t tt ttt tt t t tt ttt[tt tt tt tt[t!tt t tt!t[tt tt tt tt[tt tt tt ttt t t t t ttt t t t t ttt[tt tt tt tt[t t tt t t[tt tt tt tt[tt tt tt ttt tt tt tt tt ttt tt t t tt ttt[tt tt tt tt[tt tt tt tt[tt tt tt tt[tt tt tt ttt t tt tt t ttt tt tt ttt[tt tt tt tt[tt tt tt[tt tt tt tt[tt tt tt ttt t tt tt t ttt tt tt ttt[tt tt tt tt[tt tt tt[tt tt tt tt[tt tt tt ttt t tt tt t ttt tt tt ttt[tt tt tt tt[tt tt tt[tt tt tt tt[tt tt tt ttt t t t t ttt tt tt ttt[tt tt tt tt[tt tt tt[tt tt tt tt[tt tt tt tt t ttt ttt t t t tt tt t tt[tt tt tt tt[tt t t t tt[tt tt tt tt[tt tt tt tt t tt# tt t t t tt tt t tt[tt tt tt tt[tt ttt ttt tt[tt tt tt tt[tt tt tt tt t tt% tt t t t tt tt t tt[tt tt tt tt[tt tt tt tt[tt tt tt tt[tt tt tt tt t tt' tt t t t tt tt t tt[tt tt tt tt[tt tt tt tt[tt tt tt tt[tt tt tt tt t tt) tt t t t t tt t tt[tt tt tt tt[tt tt tt tt[tt tt tt tt[tt tt tt tt t tt+ tt t t t t;t t tt[tt tt tt tt[tt tt tt tt[ttt tt tt tt[ttt tt tt ttt t tt t tt t t t t=t t t]tt tt tt tFttt tt tt t0t,t tt tt ttt tt tt "t tt t t tt t t?t tt[ tt tt tt ttE ttt tt tt tt/ t)t tt tt tt[ t tt tt t tt tttt tt t t?t tt[ tt tt tt ttH tttt tt tt tt2 t&t tt tt tt[ t tt tt t tt tttt tt t tAt tt[ tt tt tt ttJ tttt tt tt tt5 tt$t tt t tt tt[ t tt t t tt t tt tt tt t tAt t]tt tt tt tEt ttt tt tt t-t t#t t tt txt t t (tt tt ttC tt[tt tt tt ttDt t tt tt tt tt,t t"t%t tt tt[t%t t%tt tt tt[tt[tt tt tt ttGtt t tt tt tt tt/tt t!t%t tt tt[t%t t%tt tt tt[tt[tt tt tt ttIt t tt tt tt tt1tt t t$t tt tt[t$t t$tt tt tt[tt[tt tt tt ttJt t tt tt tt tt3t tt#t tt tt[t#t t#tt tt tt[tt[tt tt tt ttKt t tt tt tt tt4t tt"t tt tt[t"t t"tt t!t tt[tt[tt tt tt ttLt t tt tt tt tt5t tt tt tt tt[t tt tt tt t!t tt[t]tt tt tt tDt t t tt tt tt t*t t t!t tt t}t 2t t#t 't1tt[ tt tt tt ttC ttt t tt tt tt tt) t t tt4 tt tt[ t[ t t#t t tt-tt tt[ tt tt tt ttE tt t tt tt tt tt, tt t tt4 tt tt[ t[ t t#t t t+t tt[ tt tt tt ttF tt ttt tt tt tt. t t tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttF tt ttt tt tt tt/ t t tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttG tt ttt tt tt tt0 tt tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttG tt ttt tt tt tt1 tt tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttG tt ttt tt tt tt2 tt tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttG tt ttt tt tt tt2 tt tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttG tt ttt tt tt tt3 tt tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttF tt ttt tt tt tt3 tt tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttF tt ttt tt tt tt3 tt tt4 tt tt[ t[ t t%t t t)t tt[ tt tt tt ttE tt t tt tt tt tt4 tt tt4 tt tt[ t[ t t#t t t+t tt[ tt tt tt ttC ttt t tt tt tt tt4 tt tt4 tt tt[ t[ t t#t t tt-tt t]tt tt tt tDt t t tt tt tt t!t tt t!t tt t!t At 2t t#t 't1tt[tt tt tt ttLt t tt tt tt tt tt tt tt tt tt tt tt tt t tt tt tt t!t tt[tt[tt tt tt ttKt t tt tt tt tt"t tt tt"t tt tt"t t"t"t t"tt t!t tt[tt[tt tt tt ttJt t tt tt tt tt#t tt tt#t tt tt#t t#t#t t#tt tt tt[tt[tt tt tt ttIt t tt tt tt tt$t tt tt$t tt tt$t t$t$t t$tt tt tt[tt[tt tt tt ttGtt t tt tt tt tt%t tt tt%t tt tt%t t%t%t t%tt tt tt[tt[tt tt tt ttDt t tt tt tt tt%t tt tt%t tt tt%t t%t%t t%tt tt tt[t]tt tt tt tEt ttt tt tt tt t tt tt t tt tt t t 7t t t (tt tt ttC tt[ tt tt tt ttJ tttt tt tt tt tt t tt tt tt t tt tt tt t t tt t tt t t tt t tt tt tt t tAt tt[ tt tt tt ttH tttt tt tt tt tt tt tt tt tt tt tt tt t tt tt t tt tttt tt t tAt tt[ tt tt tt ttE ttt tt tt tt tt tt tt tt tt tt tt tt t tt tt t tt tttt tt t t?t t]tt tt tt tFttt tt tt tt tt tt tt tt tt tt tt tt /t tt tt "t tt t t tt t t?t tt[tt tt tt tt[tt tt tt tttt tt tt tttt tt tt tttt tt tt ttttt tt tt ttt t tt t tt t t t t=t t tt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt t tt+ tt t t t t;t t tt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt t tt) tt t t t t tt t tt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt t tt' tt t t t tt tt t tt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt t tt% tt t t t tt tt t tt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt t tt# tt t t t tt tt t tt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt t ttt ttt t t t tt tt t tt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt t t t t ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt t tt tt t ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt t tt tt t ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt t tt tt t ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tt tt ttt tt t t tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt t t t t ttt t t t t ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt t t tt ttt tt t t tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tttt ttt ttt ttttt ttt ttt tttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tttt tt tt ttttt tt tt tttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt tttt tt tt ttttt tt tt tttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt[tt tt tt tt[tt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttt tt tt ttttttgarden-1.0.9/data/gfx/multi.bmp0000644000175000017500000002773412457263300013250 00000000000000BM/6(,]+  (((yyyeeeeeePPPPPaP]qPiPuP<yeYYPPPPPP(Heyee֡PqPqP}PPPeyyyyyy((yyyeeeePPPPP]PiPuPeyyyyyy(e(ޡyyeeeePPPaPqPPPeލҪҁyʁΉ֑ڙy<(ʍyyeyeePeaqq}<yeYYPPPPPP(PPyeeލPyyPyPPPP=,=,=,=,=,====t===tttt=== tttt===tttt===ttt===tttt===tttt===ttt===tttt===tttt========t===tttt==== tttt==t===tttt==tttttt===ttt==t tt===tttt==tttttttt===ttt==ttttt===tttt== tttttt=,=D==ttt==ttt=,=t=D=S=%=tttt==tttt=,=tt=D=S=t=%===t=,=ttt=D=S=tt=%==tt=,=tttt=D=S=ttt=%=t==t=,=tt=D=S=tttt=%=tt==,=tttt=D== ==tt=%=tttttt==t=,=ttt=D==tt tt= ==ttttt=%=tttt==tt===tt=D==tttt= ==ttt=%=ttt==ttt== ==tt=D==tttttt= ==ttt=%=tttt==tttttt=ttttt=ttttt==tt=D==tttttt= ==ttt=%=ttttt==ttttt=tttttt=tttttt==tt=D==tttt= ==ttt=%=ttt==tttt=tttttt=tttttt==t=D==t ttttt= ==ttt=%=tttttt==ttt=tttttt=tttttt==D==tttttt= ==tt=%=ttttt==tttt=ttt ttt=ttt ttt==t=D==tttt==%===ttt=tt tt=tt tt==tt=D==tt tt= ==t=%==tt=ttt=ttttt==ttt=D==tt tt=ttttt==tt=%=ttt==t=tttt=tt ==tttt=D==t t=tttttt==ttt=%=tttttt==ttt=t t==tt=D= =tttttt==tttt===tttttt==t=tt=tt==ttttt=D=ttttt= =tt tt=tttttt==tt==t==tttt==tt=t=t ==ttt=D=tttttt= =ttt t=tttttt==ttttt==tttttt==ttt==ttt===ttt=D=ttt= =tttt tt=tttt==ttt==tttt==tttttt==tttttt== ==ttt=D=tttttt= =tttttt=ttttt==ttt==tttt==ttttt==ttttt=ttttt=ttttt==ttt=D=tttttt= =tttt=tttttt==ttt==ttt==tttttt==tttt=tttttt=tttttt==ttt=D= t= =tttt=ttt==ttt==tttt==ttttt==ttt=tttttt=tttttt==tt=D=tttt= =tttttttt=tt==ttt==tt==tttttt==tttt=tttttt=tttttt==D=ttt= =tt=t==tt==ttt==t==ttt=ttt ttt=ttt ttt==t=D=tttttt= =tt tt===tttt===tt=tt tt=tt tt==tt=D=ttt= =tt tt= ==t==tt==t==t=ttt=ttttt==ttt=D=tttt= =t t=ttttt==tt====tt=tttt=tt ==tttt=D= =tttttt= =ttt!=t== t=ttt=t t==tt=D=ttttt= =tt tt=tttttt= =t=tttt=t=t=tttt==tttt=tt=t t==ttttt=D=ttttt= =tttt=tttttt= =tt=tt=ttt ttt=tttttt=ttt== t=t=t==tttttt=D=tttttt= =tttt tt=tttttt= = t=ttt tt=ttttt=tttt=tttt==tttttt===tttt=D=ttttt= =tttt tt=tttt= =tttt=tttttt=tttttt=tttt=tt t==ttt== ==tttt=D=tttttt= =tttt=ttttt= = t=tttt=ttt=ttt=tttt==tttt=t=t==tttt=D=tt= =t ttttt=tttttt= =tttttt=tttt=tttt=tttt=tt t==ttt=tt=tt==tttt=D=ttt= =tttttt=ttt= = t=tttt=t=ttt=tttt==ttt%ttt=tttttt=tttttt==tt=D=tttt= =tttttt=tt= =tttt=tttt=tt=tttttt=tt t==tt$t=tttttt=tttttt==D=ttt= =tttttt=t= =ttt=tt=t=ttt=tttt= =ttt ttt=ttt ttt==t=D=ttt= =tt tt= =tttttt==tt='==t=ttt ttt=ttt ttt==tt=D=tttt= =t t= = =ttt=t=====tt=ttt=ttt==ttt=D= =t= =tt!=t==ttt=tttt=tt ==tttt=D=ttttt= =tt tt=tt= =t=ttt=t=t=tt==tttt=ttt=t t==tt=D=tttttt= =tttt=tttttt= =tt=tttt=tt =tttttt=ttt ttt==ttt=tt=tt==ttttttt=D=ttt= =tttttt=tttttt= =ttt=tt=ttt=tttt=tt t==tttttt=t=t==tttt=D=tttttt =tttt tt=tttttt= =tt$tt=ttttttt=ttttttt=tttt=ttt t==ttt===tttt=D=ttt= =ttt t=tttttt= =ttt=tttt=tttt=ttt=tt t==tttt== ==tttt=D=tt=t=t ttttt=ttttt= =tt=tttt=ttt=tttt=tt tt==ttt=t=t ==tttt=D=tt tt=t&t=tttttttt=tttttt= =ttt=tttt=tttt=ttt=tt t==tttt=tt=tt ==tttt=D=ttt =ttt=tt=ttt= =tt tt=tttt=t=ttt=ttt ttt==t=tt=tt==tt=D=tttttt=tttt=ttt ttt=tt= =ttt=tttt=tt=tttt=ttt tt= =tttt=tttt==D=ttt=ttt=tttttt=t= =tttt=tt=t=ttt===ttt tt=tt tt=tt tt==t=D=tttt=tt=t t= =t===t= ==tt tt=tt tt=tt tt==tt=D=t= =t!=tttt=ttt== t=ttt=ttttt==ttt=D=ttt= =tt tt=t=t=ttttt=tt=t=ttt=tttt= ttt ttt==tttt=tttt=tt ==tttt=D=tttt =tttt=tt=tt=tttt=ttt=tt =tttttt=ttttt= tttttt==ttt=ttt=t t==tt=D=tttt=t=tttttt=tt=ttt= t=tt tt=ttt=tttt=tttttt= ttt t==tttt=tt=t t==ttttt=D=tt t=tt=tttttt=tttt=tttttt=tttt=tt =ttt ttt=tttt=tttttt= ttt==ttt=t=t==tttttt=D=tttt=tttt=ttt t=tt tt=ttttt= t=ttt tt=ttttt= t=tttt= tttttt==tttttt==tttt=D= t =ttttt=t ttttt=tttt=tttt=tttt=tttttt=tttt=tttt=tttttt= ttt tt==ttt==tttt=D=tt6tt=tttt=tttttttt=ttttt=ttt=ttt=tttt=ttt= t=tttttt= ttt ttt==tt==tttt=D=tttt =ttttt=tttttt=tttttt=tt tt=tttttt=tttt=tttt=tttt=ttttt= ttt tt==t==tttt=D=ttt=tttt=ttt ttt=ttt=t=ttt=tttt=ttt=ttt=tttt= tttttt=.=tt=D=tt tt=t t=ttt ttt=tt=tt=tt=tttt=tt=tt=tttt=t=.=D=ttttt=t=tttt=t=t=t=tt=t=t=t==garden-1.0.9/data/gfx/splash.bmp0000644000175000017500000341006612457263300013405 00000000000000BM66( BBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkR{{RJ{{JkkBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJZcssssssscRBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkssssssssssskRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZksssssccZckssssscBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJkkkssskRBZZBRRBRRBRRBRRBRRBccRkssskJccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJccksskRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRRssskBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJksskJkkBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRJssksskBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsskJkkBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRBRRJ{{sssRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRkssRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZZsskRkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsscBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRkcksscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJJJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkssJ{{BRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZZsskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBRZRZkZZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRsskBRRBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRkcsssRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZkZc{cc{cZsZRcRJZJJRJJRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRJJRJRZRRkRZsZc{cZsZRkRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR{{sscBRRBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZkssZsRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZc{cZkZJZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRcRZsZc{cZkZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRssZBRRBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZcssZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBZkZc{cZkZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZc{cRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZssZBRRBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZcsscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRR{{{kkkBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZZsZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cZkZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRssZBRRBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZcssZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cccŜBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cZkZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRZRRkRZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{ccscZsZRcRJZJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZsZZsZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZkZZcRJZJBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR{{sscBRRBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZkssZ{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::::::::::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::::::::::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ń:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cRkRBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRkRZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZRcRBJBBBBBBBBBBBBBBBBBBBBBBBBBBJBZsZZsZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBckc{{RcRBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZZsskBRRBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRkckssRkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkscέ{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JJJRRR::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBsssZZZ:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֵBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJc{cRcRBBBBBBBBBBBBBBBBBBBBBBBBJJJZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZRcRBBBBBBBBBBBBBBBBBBBBBBBBBJBZsZZsZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRŽŽs{sJZJBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRZJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkssJksBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZZsskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRss朥ZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRέkkk::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJŭsssBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޽JJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRkkksssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZsZZkZBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJRJBBBBBBBBBBBBBBBBBBBBBBJBZsZZkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJssνkskJRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBs{skscBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsscBRRBRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRkcksscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZ攜ZcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBέZZZ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssŵccc::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sss޽JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccccccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkέkkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZZsZBBBBBBBBBBBBBBBBBBBBBBJBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRcRBBBBBBBBBBBBBBBBBBBBBJRJc{cRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckZνJZJBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBJRBŭcscBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZZsssJ{{BRRBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZZsssZkcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{kskRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJΌBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBŔBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::֭:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ŽZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBεJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΜZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRcRc{cJRJBBBBBBBBBBBBBBBBBBJRJcscc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBBBBBBBRcRZsZBJBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBs{sŭRZJBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBk{kŜJRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsskJccBRRBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZRcZR{ksscRcRRcRckZZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkscZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{RcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRΥBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJέJJJBBBBBBBBBBBBBBBBBBBBBBBBBBB:::֔:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJRRRJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZkkksssssssskskRRRBBBBBBBBBBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{css{{{{kkc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{ck{kk{kc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBBBBBBBBBBZsZZkZRRRRRRBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBJZJckckskZkZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRB{{ŵJRJBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBεckZBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBJJJkkk{{{cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJcc޵sBRRBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZRcZR{sksskRkZkskŜZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRksc޽ckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{kRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRΥRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBΌ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΜ:::BBBBBBBBBBBBBBBBBBBBBBBB:::֔:::BBBBBBBBBBBBBBBBBB::::::BBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ֽJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZ{{{{{{RRRJJJBBBBBBBBBBBBBBBBBBBBBJJJZZZkkkRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRccckkkRRRBBBBBBJJJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{css{{c{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cssc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBBBBZkZZZZBBBBBBBBBBBBBRBBRBBRBRcR{{JRBBRBBRBBRBBRBBRBBRBBRBBRBZkZŽεJJJBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBRcRֽ{{BRBBRBBRBBRBBRBBRBBRBBBBBBBRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZcքBRRBRRJZZRcZRcZRcZRcZRcZRcZRcZRcZZksssZ{kckZŽֵZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{kRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJތBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֽJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ŌccccccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֽcccZZZ{{{RRR:::BBBBBBBBBBBBBBBBBBBBB:::֭:::BBBBBBBBBBBBBBB:::RRR{{{JJJ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֵsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJcccֽsssRRRBBBBBBBBBBBBBBBRRR{{{RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJcccνcccRRRZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{ckkŽֵ{{c{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{ck{kc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRcRBBBBBBBBBBBBBBB{{ŽRRRBBBBBBBBBBRBBRBJRBνkskBRBBRBBRBBRBBRBBRBBRBBRBkskŵέBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBckZŔBRBBRBBRBBRBBRBBRBBRBBBBBBBν{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBJkskkJs{JZZRcZRcZRcZRcZRcZRkcZkssskZ{RcR֌RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcRcRRcRRcRRcRBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJB{{JRJBJBBJBBJBBJBBJBBJBBJBBJBBJBBBBBBBBBBBBB:::֌:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkkΥJJJ:::BBBBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRέRRR:::::::::::::::kkkZZZ:::BBBBBBBBBBBBBBBBBBBBB:::kkk:::BBBBBB:::BBBŵRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{֭BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֥JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRεcccJJJBBBJJJZZZ޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssֽssk{kc{ck{kk{kk{kc{cc{cc{cc{cc{cc{cZsZRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBJJJcccֵcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽kkc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBZZZέ{{{BBBBBBBBBBRBBRBRcRŽֵBRBBRBBRBBRBBRBBRBBRBBRBZkZŵckcJRBBRBZcZŭsssBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBkscŜBRBBRBBRBBRBBRBBRBBRBBBBJJJΥBBBBBBBBBBBBBBBBBBBBBBBBRs{ޔskcccccksssskZskRcRZcR޽RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRތRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRﵽ{{{{kskRcRRcRRcRRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cބc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZZkZRZRJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::Δ::::::BBBBBBBBBBBBBBB:::RRRΜ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ΜBBB:::BBBBBBBBBBBBBBB:::JJJΥBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֵZZZ:::BBBsssνJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֜BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkŭkkksssΌJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZεk{kc{cc{cc{cZsZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssֵ{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{֭sssRcRcscc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBB{{{޽JJJBBBBBBBRBBRBRZJŽֵBRBBRBBRBBRBBRBBRBBRBBRBJRB{{kscJRBBRBBRBBRBBRBJZJťRRRBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBkskťBRBBRBBRBBRBBRBBRBBRBBBBJJJΥBBBBBBBBBBBBBBBBBBBBBZss֭ssssssssssscRcZRcRRcRs{kkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZތRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR愌{RcRRcRRcRRcRckZRcRRcRRcRRcRRcRJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJތJZJJZJJZJJZJJZJJZJJZJJZJJZJRZRRcRZsZc{cZsZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkk֔::::::BBBBBBBBBBBBBBBBBBBBB::::::sssΜBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRΥBBB:::BBBBBBBBBBBBBBBBBBBBB::::::cccťJJJ:::BBBBBBBBBBBBBBBBBBBBBBBB:::ֽŭZZZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJńBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{Ž֥RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccνŽŵc{cc{cRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssνkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵{{{BBBBJBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRcRBBBBBBΥcccBBBBBBBRBBRBBRBνkskBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBs{skskJZJBRBBRBBRBBRBBRBBRBJRB{ֽBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBckZŜBRBBRBBRBBRBBRBBRBBRBBBBBBBν{{{BBBBBBBBBBBBBBBBJJcsssֽkssssssskcZscRcRRcRRcRRcRքRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRޥZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{k{kRcRRcRRcRRcRRcRRcRRcR{{{RcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRRRBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֵBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֵJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֵsss:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRΔJJJBBBBBBBBBBBBBBBBBBBBBJJJŵޭZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZΜk{kRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{νssscccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޽JJJBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBRRRέsssBBBBBBBRBBRBBRBRcR{{JRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJZJBRBBRBBRBBRBBRBJRBRZJckc{sέcccBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBZcRŔBRBBRBBRBBRBBRBBRBBRBBBBBBBRRRBBBBBBBBBBBBBBBBJJksssZֵBBBRskccccZZ{sRcRRcRRcRRcRRcRRcRRcR֔RcRRcRRcRRcRRcRRcRRcRRcRRcRŜkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRk{kRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZ{{RcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sss:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::νֽkkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk֥BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss֜JJJBBBBBBBBBBBBBBBBBBJJJ{{{ֵcccRRRkkk޵cccBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֽ֭sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssŵ{{{kskckcRZRJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJJJccc޽JJJBBBBBBBBBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cRZRRRRֵ{{{BBBBBBBRBBRBBRBBRBJZJckckskZcZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBRcRZcZckcksks{s{{ֽBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBRZJŔBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBkkk{{{cccBBBBBBBBBBBBBBBBRRksssRBBBֵBBBJJJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֥RcRRcRRcRRcRRcRRcRRcRRcRֽkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccc֭:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJֵ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֽRRR:::JJJֽccc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޽ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֭JJJBBBBBBBBBBBBBBBBBBcccέsssJJJBBBBBBBBBJJJ޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRť{{{cccckck{kRRRccc޵sssBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRkR{{Υssk{kc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c{{޽JJJBBBBBBBBBBJBZsZc{cc{cc{cc{cc{cc{cc{cc{cZsZZZZֵBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBckZs{sťRRRBBBBBBBRBBRBBRBBRBBRBBRBBRBJZJֽBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZcksssR{BBBBBB֥BBBJJJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֭RcRRcRRcRRcRRcRRcRRcRckZ֔RcRRcRRcRRcRRcRckZk{kkskZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{kRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccccccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֭ZsZBJBBBBBBBBBBBBBBBBBBBBBB:::{{{sss:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccc΄:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֵkkk::::::BBB::::::cccֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޵JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJޭJJJBBBBBBBBBBBBBBBJJJΥcccJJJBBBBBBBBBBBBBBBJJJ{{{޽sssJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkֽkkkRRRBBBRcRc{cBBBBBBRRRsss޽JJJBBBBBBBBBBBBBBBBBBJJJZkZc{ck{kΜsssZZZJRJBJBBJBJRJRRRZZZZcZZZZJRJBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBJRJs{s޵{{{BBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cZZZֵBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBŭcccBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBֽ{{BRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJccksskJksBBBBBBBBBΔBBBJJJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֭RcRRcRRcRRcRRcRRcRRcRֽŽ޽ŽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJs{sޥJZJJZJJZJJRJJRJBJBBBBBBBBBBBBBBBBBBB:::sss{{ZsZZsZBJBBBBBBBBBBBBBBBBBBB:::JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{{{ccc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֵccc:::BBBBBBBBBBBBBBB:::ZZZΌ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֥BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{{{{RRRBBBBBBBBBBBBBBBBBBBBBJJJޭRRRBBBBBBBBBBBBBBBkkkΥZZZJJJBBBBBBBBBBBBBBBBBBBBBJJJ޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBJJJΔRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޽ZZZJJJBBBBBBRcRc{cBBBBBBBBBZZZŌRRRBBBBBBBBBBBBBBBRcRc{cZkZRZRsss޽{{{ssssss{{{sssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkֵ{{{BBBBBBBBBBBBBBBBJBc{cc{cc{cc{cc{cc{cc{cc{cc{cZcZֵBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcRŽJJJBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBֽ{{BRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBJckksskJckBBBBBBBBBBBBΌBBBJJJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{֥RcRRcRRcRRcRRcRRcRckc޵ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{kRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{ckkc{cc{cc{cc{cc{ccscZkZRcRJRJBBBBBBBBBBBBBJBZsZZsZBJBBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֵZZZ:::BBBBBBBBBBBBBBBBBBBBB:::ZZZֽJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZcccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޽ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZŭJJJBBBBBBBBBBBBBBBsss޵RRRBBBBBBBBBBBBJJJΥZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRńJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽ZZZBBBBBBBBBBBBRcRc{cBBBBBBBBBBBBs{sΔZZZBBBBBBBBBBBBZkZc{cRcRBBBZZZŵŽcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss֭sssBBBBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cc{cZkZֵ{{{BBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJŽsssRRRBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBֽBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBJckksskJZcBBBBBBBBBBBBJJJ{{{BBBJJJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{s֜RcRRcRRcRRcRRcRRcR朥RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŽZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c޵c{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJ֔:::BBBJJJZsZZkZBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֽZZZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkk{{{:::BBBBBBBBBBBBBBBBBBBBBRRRŭkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRֽkkkJJJBBBBBBJJJ޵RRRBBBBBBBBBBBBRRR֭cccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRńJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJ֭kkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{ŜcccBBBBBBBBBBBBBBBRcRc{cBBBBBBBBBBJBc{c{{ΜZZZBBBBBBBBBRcRc{cJRJBBBBBBkkkεRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssέsssBBBBBBBBBBBBBBBBBBJZJc{cc{cc{cc{cc{cc{cc{cc{cZkZ֭{{{BBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{ν{{s{skskckcZcZRZJBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBRcRŌBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBJkkksskJZZBBBBBBBBBBBBBBBJJJ{{{BBBBBBJJBJJBJJBJJBJJBJJBJJBJJBJJBJJBJJBJJBJJBckc֌JJBJJBJJBJJBJJBJJJRcRJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cޜZsZc{cc{cc{cc{cc{cc{cc{cZsZJJJBBBBBBBBBJRJc{cRcRBBBBBBBBBBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{{{֥:::BBBBBBBBBBBBBBBBBBBBBRRR޽JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֜BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ֵkkkRRR޵RRRBBBBBBBBBBBBcccńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZńJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJΥcccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֭kkkJJJBBBBBBBBBBBBBBBRcRc{cBBBBBBBBBJRJc{cs{s֥cccBBBBBBJZJc{cRZRBBBBBBRRRŵΥkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss֭{{BBBBBBBBBBBBBBBBBBBJBc{cc{cc{cc{cc{cc{cc{cc{cZsZέsssBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkZŭ{{kscZcRJZJBRBBRBBRBBRBBRBJRBJRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBJRBΥJRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBJckksskBZZBBBBBBBBBBBBBBBBBBRRRΜBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRkkkBBBBBBBBBBBBBBBccc挔BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c֔ZsZc{cc{cc{cc{cc{cZsZ{{֌:::BBBBBBBBBBBBRcRc{cBJBBBBBBBBBBBBBZZZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sss:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::֜:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵BBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{ŽZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJε޵RRRBBBBBBBBBBBBsss޵ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJńJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJťkkkRRRBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRZZZRRRBBBBBBBBBBBBBBBBBBRRRΜZZZBBBBBBBBBBBBBBBBBBRcRc{cBBBBBBBBBJRJc{ck{k֥cccBBBBBBZsZZkZBBBBBBBBBZZZέ{{{sssssssss{{{޵{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޵ZkZBBBBBBBBBBBBBBBBJBc{cc{cc{cc{cc{cc{cc{cc{cc{c{{ΥcccBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{έJZJBRBBRBBRBBRBBRBBRBJRBcscs{sBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBJZJεkskBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBJccksskBRZBBBBBBBBBBBBBBBBBBBBBRRRֽkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRRRRBBBBBBBBBBBBBBB{{{Όssk{kss歵BRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{sBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c֥c{cZsZc{cZsZZsZֵBBBBBBBBBBBBBBBBBBBBBZsZZkZBBBBBBBBBJJJ֔:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::֥:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sss޽JJJBBBBBBBBBBBBBBBBBBBBBBBBJJJccc{{{{{{kkkRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֭BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkksssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJŽ޵RRRBBBBBBBBBBBBkkk޵ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJńJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJέsssRRRBBBBBBBBBBBBBBBBBBRRRkkkZZZBBBBBBBBBBBBBBBZZZΔZZZBBBBBBBBBBBBBBBBBBRcRc{cBBBBBBBBBJZJc{cc{c{{֭cccBBBRZRZsZBJBBBBBBBBBBccc޵{{{ZZZBBBBBBBBBBBBJJJRRRcccsssŌRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBsssťBJBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cŜRRRBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZJֵJZJBRBBRBBRBBRBJRBckcŭBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBZkZŜJZBBRBBRBBRBBRBBRBBBBBBBBBBBBBJZcksskBRZBBBBBBBBBBBBBBBBBBBBBBBBJJJεZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkBBBBBBBBBBBBBBBBBB{{{{{BRBBRBBRBBRBBRBBRBBRBckZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cΔ{{ckc:::BBBBBBBBBBBBBBBBBBJZJc{cJJJBBBBBBJJJccc::::::BBB:::::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sss:::BBBBBBBBB::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޽JJJ:::BBBBBBBBBBBBBBBBBBBBBBBBJJJJJJRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJέcccccc޵RRRBBBBBBBBBBBBkkk޽sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJńJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{έ{{{RRRBBBBBBBBBBBBZZZ{{{ֵ{{{JJJBBBBBBBBBBBBRRR֭cccBBBBBBBBBBBBBBBBBBRcRc{cBBBBBBBBBJZJc{ck{kޭkkkBBBZsZRcRBBBBBBBBBBBBccc޵sssBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkŔZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBsssֽsssBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{c޽JJJBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBcscŭZcRBRBBRBZkZťsssBBBBBBBBBBBBBBBBBBBRBBRBJZJ{{εssBRBBRBBRBBRBBRBBBBBBBBBBJZZksskJZZBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJεZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֜BBBBBBBBBBBBBBBBBBcccޜBRBBRBBRBBRBBRBBRBBRBBRBJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJŽckcRcJk{kZcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c{{ZsZJRJBBBBBBBBBBBBBBBBBBBBBZsZRkRBBBBBBJJJ΄RRRBBBZZZ{{{sssBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ŌRRRBBBRRRssssssJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sss:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::޵BBBBBBBBBBBBBBBBBBBBBBBBBBBRRRkkkkkkRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֭JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ťZZZBBBBBBBBBBBBkkk޵RRRBBBBBBBBBBBBZZZ֥RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBsssֵZZZBBBJJJZZZΔRRRBBBBBBBBBBBBRRR޽ZZZBBBBBBBBBBBBBBBRcRc{cBBBBBBBBBJZJc{css޵kkkJJJc{cJRJBBBBBBBBBBBBZZZ޽RZRBJBBJBBJBBJBBJBBJBBJBBJBJRBsssΜckcBJBBJBBJBBJBBJBBJBBJBBJBBJBs{sֵkkkBJBBJBBJBJRBc{cc{cc{cc{cc{cc{cc{cc{c{{ֵ{{{BBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{ŵֽJJJBBBBBBBBBBBBBBBBRBckZťBRBBRBBRBBRBBRBBBBBBBBRRksskJZcBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJεZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkksssBBBBBBBBBBBBBBBBBBBBBkscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJ省JZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cssZsZc{cZsZJJJBBBBBBBBBBBBBBBBBBRcRcscBBBBBBJJJνZZZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::νkkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::֭BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRR֥:::BBBBBBBBBBBBBBBBBBBBBJJJŽZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֔BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޽RRRBBBBBBBBBBBBBBBBBBZZZ޵RRRBBBBBBBBBBBBJJJŔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkֵkkkkkkŌRRRBBBBBBBBBBBBJJJ{{{ֵ{{{RRRBBBBBBBBBBBBRcRc{cBBBBBBBBBRZRss޵kkkRZRc{cBBBBBBBBBBBBBBBJJJsssΥkskJZJBRBBRBBRBBRBBRBBRBBRBBRBkskΜckcBRBBRBBRBBRBBRBBRBBRBBRBBRBs{sֵkskBRBBRBJZBc{cc{cc{cc{cc{cc{cc{ckkΥcccBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBŵŭZZZBBBBBBBBBBBBBBB{{έRZJBRBBRBBRBBRBBBBBJJksskJccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBεcccBBBBBBBBBBBBBBBBBBBBBBBBcccJJJBBBBBBBBBBBBBBBBBBBBBRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŽŽֵk{kZsZc{cc{cc{cZsZBBBBBBBBBBBBBBBBBBBJBc{cJZJBBBJJJֽJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֽRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ń:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ΄:::BBBBBBBBBBBBBBBBBBBBBRRR޽JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽JJJBBBBBBBBBBBBBBBBBBBBBBBBccc޵RRRBBBBBBBBBBBBJJJ{{{޽JJJBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZ{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZŵ޵sssJJJBBBBBBBBBBBBBBBccc֭sssRRRBBBBBBBBBRcRc{cBBBBBBBBBckc޵sssRcRZsZBBBBBBBBBBBBBBBBBBccc޽kskJRBBRBBRBBRBBRBBRBBRBJZBs{sŜckcBRBBRBBRBBRBBRBBRBBRBBRBBRBs{sֵs{kJRBJZBc{cc{cc{cc{cc{cc{ckk޽JJJBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJŵBBBBBBBBBBBBBBBBBBRcRΥJRBBRBBRBBRBBRBBJJcsssJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֽsssBBBBBBBBBBBBBBBBBBccc֜BBBBBBBBBBBBBBBBBBBBBBBBJJJZcRBRBBRBBRBBRBBRBZcRBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZkZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵BBB:::kkkΌcscZsZc{cc{cc{cc{cc{cRcRBBBBBBBBBBBBBBBBBBZsZRkRBBBBBBkkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::΄:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{{{ֽsss:::BBBBBBBBBBBBBBB::::::BBB:::JJJֽZZZBBBBBBBBBBBBBBBBBBBBBBBBJJJŭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֜BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRŔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޵RRRBBBBBBBBBBBBBBBRRR޵JJJBBBBBBBBBBBBBBBBBBJJJZZZ޽sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޽ZZZBBBBBBBBBBBBBBBBBBRRRέsssRRRBBBBBBRcRc{cBBBBBBZZZ޵sssRcRZsZBBBBBBBBBBBBBBBBBBJJJ{{{ֵkskJZBBRBBRBBRBBRBBRBckcŔZkZBRBBRBBRBBRBBRBBRBBRBBRBBRBkskֵs{sRcJc{cc{cc{cc{cc{ckkέsssBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJŵJJJBBBBBBBBBBBBBBBBBBBRBJZJֽBRBBRBBRBBRBBRBcsssR{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŌBBBBBBBBBBBBsssZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBckcBRBBRBBRBJZJŽ浽BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBބBBBBBBBBBRRRŔc{cZsZc{cc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBBBBBBBRcRZsZBBBBBBccc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{{{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkkֽsss:::BBBBBBBBB:::ZRZ::::::JJJŌ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{cccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssΜJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޵RRRBBBBBBBBBBBBBBBJJJsssֵJJJBBBBBBBBBBBBJJJccc޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֽ޽cccBBBBBBBBBBBBBBBBBBBBBBBBcccέsssRRRBBBRcRc{cBBBZZZ޵sssZkZZsZBBBBBBBBBBBBBBBBBBBBBcccֵkskJZJBRBBRBBRBZkZ{޽RcRBRBBRBBRBBRBBRBBRBBRBBRBBRBkscֽkkc{cc{cc{cssֽRRRBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBs{sŽckcBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBJRBssέZcZBRBBRBBRBBRBZsssRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBε{{{sssΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֔cscs{s愌BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkBBBBBBBBBBBBBBBkkk{{{sssRRRBBBRZRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBBBBRZRc{cBBB:::έ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::εBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֽBBB::::::ZJZsBBBRRRέJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֜BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJޭRRRBBBBBBBBBBBBBBBBBBJJJֵRRRJJJJJJJJJsss޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssֽ{{{ZZZZZZsssֵcccJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{έcccckck{kkkk޵sssZkZZsZBBBBBBBBBBBBBBBBBBBBBBBBkkkֽ{{sckcZcZksc֭s{sJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckcŭ{{Žs{sBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckZŽcscJRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBcscŽνBRBBRBBRBBRBRsssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֵBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBBBBJRJc{cJJJ:::εŌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ŭŽJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŜRRRJBJ{k{{k{{ֵZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ΄BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZޭRRRBBBBBBBBBBBBBBBBBBBBBRRRť޵ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRŭZZZJJJBBBBBBJJJZZZ{{{ν{{{ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֽ޵sssZkZZsZBBBBBBBBBBBBBBBBBBBBBBBBJJJsssŭֵZkZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcZνŭJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJssŵkscJRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBckcťRZJBRBBRBBRBRskssscBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkks{sBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBJRJc{cJRJ:::ńBBB:::::::::BBBJJJ:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ŌJJJ:::::::::BBBJJJ:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::νֵccc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֜BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB΄BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJޭRRRBBBBBBBBBBBBBBBBBBBBBBBBRRR֥RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZcccRRRBBBBBBBBBBBBBBBBBBJJJZZZ{{{ZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޵sssZkZZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{εkskBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZJŭkkJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcZckcJRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBk{kεssBRBBRBBRBJcRksskBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccccccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ބBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB歭ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cBBBBBBBBBBBBJJJc{cJRJ:::ZZZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZֵkkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkޭJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֜JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRޭRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRֽΔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRZZZRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ{{{ֽŽ޵sssZkZZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ{{{ֽckcJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRB{{ŭZcZc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZkZZkZJZJBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBJRBεZcZBRBBRBJZJksskBZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֽcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssscccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBﵵRRRBBBBBBBBBJJJRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRބBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBJJJc{cJRJ:::ֽRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cccֽccc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{{{ŵεZZZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJޭJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{εZZZJJJZZZ޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssŭ{{ss޵sssZkZZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRs{sεs{sZcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBsskֽνRcRJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBZcRֽBRBBRBcsssRskBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŵέRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZޜBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB便BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZޜc{cZsZRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZc{cc{cc{cc{cc{cc{cc{cc{cRcRBBBBBBBBBJJJc{cJRJ:::ZZZֽRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBֽccc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJRRRBBB::::::::::::ZZZťRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֭BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk֭ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBkkk֥JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZcZֽkkkJRJBJBBBBJJBZZZ֭ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJccc{{ε{{k{kc{cc{css޵sssZkZZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBRZJkskֽkskJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkZŭ{{ssk{kνs{sJZJBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBε{{RsssZBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccνJJJBBBBBB{{{ε{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ޔJRJRcRcscZsZJZJBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBJJJc{cJRJBBB:::ΜJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{{{ťRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::{s{νBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc΄BBBBBBBJBBRBBRBBRBBRBBRBBRBBRBRZJΥRZRJRBBJBBBBBBBBBBBBBBBBBRBBRBJRJksk֥JZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJRZJkskŽRcRJZJBRBBRBBRBBRBJRJZcR{{sRZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRcRckc{{ŵ{{kskc{cc{cc{cc{ck{k޵s{sZkZZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBJRBZcZsskŽkskRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBs{s{{ckcJZJc{cJcJJZJkskkkJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBŵsscBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssŽRRRBBBBBBBBBBBBBBBJJJťsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB攔BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssޜBBBBBBBJBRkRc{cRcRBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBJJJc{cJRJBBB::::::BBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cZc{k{{k{νZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޵RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBJRJ{{ŽŜRZRBJBBBBBBBBBBBBBBBBBRBJRJksk֜JZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJRZRkkc{{{{sZcZJZJJRBBRBBRBBRBBRBBRBBRBJRBRZRZcZZcZRZJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRcRckcs{s{{ckcRcRRcRc{cc{cc{cc{ck{k޵kskZkZZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBJRBZkZs{ss{sZkZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJksk{{kscJZJBRBJZJc{cJcJBRBBRBRZJksk{{k{kc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBkscν֜kJZJBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJcccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRccckkkZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccޥBBBBBBBBBBBBJZJc{cZkZBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssk{k{{k{s{c{JBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss֜BBBBBBBJBBRBBRBBRBBRBBRBBRBBRBJRBRZRŜRZRBBBBBBBBBBBBBBBJRJs{sΔJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJJZJJZJJZJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJZJcsck{kRZJJRBBRBRcRc{cc{cc{cc{ck{k֭kskZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBJRBRcRZkZZkZRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBJRBνΥcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJޥBBBBBBBBBBBBBBBJRJc{cRcRBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssk{k{{k{{k{ksZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֜BBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBJRBckcŜZZZBBBBBBBBBJJJΌJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{ck{k֭kskZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBkscŽŽŵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޜBBBBBBBBBBBBBBBBBBRZRc{cJRJBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֽZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ΔBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ{{έkkk{{{{{JRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{ck{k֥ckcZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBνBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBތBBBBBBBBBBBBBBBBBBBBBZkZZsZBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBksssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJŌBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJŽ޽s{sJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{ck{kΜckZZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJεZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZBBBBBBBBBBBBBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBkssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkksssBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJRJ{{ֽ޵ckZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{ck{kŌZcZZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRŽֽsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkޭBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRcRBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:B{k{sssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJRJkskŭ{{RZRRZR֥JZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{c޽{{RZJZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRνεRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޭJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRZsZBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJRZRֵZcZJRJJRBJRBJZJ{{ŌJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cssťkkcJRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZsνεBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJc{cBJBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJRJZcZνs{sJRJJRBBRBBRBBRBJRBJZJkskZcZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{c{{s{sRcRBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJkZssskνŽ{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cZcsssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJRJZZZsssRZRJRJBRBBRBBRBBRBBRBBRBBRBJRJZcRs{sZcZJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{css{{kkcRcRBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBcsskBRBBRBZcR{{RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssssssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJRJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkZBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBR{ssssJskBRBBRBBRBBRBBRBJZJRcRRZJJRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJsssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBksscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBRsskJcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBJZJkssZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssssssssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBZsskJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBJZJkssZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssssssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBZsskJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBJZJkssRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBJZBJkcR{{RskJcZZsskJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRRJRJBJJBJBBBB:B:::::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssssssssssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBRJcksssskssRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssk{k{kZkcRcRJRJBJJBJBBBB:B::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bsssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBJksksssssssskJcZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssssssskscskZkZRZRJRJBJJBJBBBB:B::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BsssssssssssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBRkRZ{ZBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcJc{cJZJBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBRssssskckkssskJcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:B{k{ssssssssssssssssssssskcRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssssssssssssssssssscZc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBRcRc{cJZBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRc{cJZBBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBRZksskRJccJccJccJkkZksscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJssssssssssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBJZJc{cJcJBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkRZsZBRBBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBZsskJkkJccJccJccJccJccJccRsssR{sBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJZssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cZcsssssssssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssssssssssssssssssJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBBRBZsZRkRBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBZsZRkRBRBBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBkssJsJccJccJccJccJccJccJccJcccsscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJccksssskBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssssssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cZkRBRBBRBBRBBRBBRBRkRZsZJZBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRc{cJZJBRBBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBJcksscJZcJccJccJccJccJccJccJccJccJsssskBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR{{kssscJ{{BRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJssssssssssssssssssssssskBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZksssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBRcJc{cc{cc{cc{cc{cc{cc{cc{cZkZBRBBRBBRBBRBBRBJZBZ{ZRkRBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBZsZZkZBRBBRBBRBBRBBRBJZBc{cc{cc{cc{cc{cc{cc{cc{cc{cJRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBR{sscJZcJccJccJccJccJccJccJccJccJcckssJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJkkssskJ{{BRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cZcssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBJcJc{cc{cc{cc{cc{cc{cc{cc{cZsZBRBBRBBRBBRBBRBBRBRkRc{cJcJBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkRc{cJZJBRBBRBBRBBRBBRBJZJc{cc{cc{cc{cc{cc{cc{cc{ccsZBRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBR{sscJZcJccJccJccJccJccJccJccJccJccsssJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRksskBccBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bksssssssssssssssssssssss{c{B:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBJZJc{cc{cc{cc{cc{cc{cc{cc{cZsZJRBBRBBRBBRBBRBBRBJRBZsZZsZJZJBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cRcRBRBBRBBRBBRBBRBBRBRcJc{cc{cc{cc{cc{cc{cc{cc{cZsZBRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBJcksskJZcJccJccJccJccJccJccJccJccRs{sskBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsskJccBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBJRBZ{Zc{cc{cc{cc{cc{cc{cc{cc{cJZJBRBBRBBRBBRBBRBBRBJZBZsZZsZJRJBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRkRc{cRkRBRBBRBBRBBRBBRBBRBBRBZkRc{cc{cc{cc{cc{cc{cc{cc{cRkRBRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBkssR{JccJccJccJccJccJccJccJcccssZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJccsssJ{{BRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssssssssssssssssssssssscZc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRJRssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cBRBBRBBRBBRBZsZc{cc{cc{cc{cc{cc{cc{cc{cRkRBRBBRBBRBBRBBRBBRBBRBJZBZsZc{cRcRBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZsZc{cRkRJRBBRBBRBBRBBRBBRBBRBJZBZsZc{cc{cc{cc{cc{cc{cc{cc{cRcRBRBBRBBRBJZJc{cJRJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBZsskRssJccJccJccJccJccJccZsssRskBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsscBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssssssss{k{B:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cJRBBRBBRBBRBRkRc{cc{cc{cc{cc{cc{cc{cc{ccscJZJBRBBRBBRBBRBBRBBRBBRBBRBRZRZsZZsZRcRJRJBJBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBJZJRcRZsZc{cZsZJcJBRBBRBBRBBRBBRBBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cJZJBRBBRBBRBJZJc{cJJJBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBJRksskZJkkJccJccJssZssscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkssJkkBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssssssssssssssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cJZBBRBBRBBRBJcJc{cc{cc{cc{cc{cc{cc{cc{cc{cRkRBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBRZRZsZc{cc{cc{cZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZcscc{cc{cZ{ZZsZRcJBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBZsZc{cc{cc{cc{cc{cc{cc{cc{cZsZJRBBRBBRBBRBRZRc{cBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBJkskssskkksssskJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZZJckJs{R{RRZsskBRRBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssssssssssssssskBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssssssscZc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcJc{cJZJBRBBRBBRBJRBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cRcJBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBJBJRJRZRRcRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRcRJcJJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cRkRBRBBRBBRBBRBRcRc{cBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBJccksssssssscJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJckJs{RZZcckkssssssssssscBRRBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJssssssssssssssssssssssssskB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJcJc{cJcJBRBBRBBRBBRBRkRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJcJBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBZkRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJZJBRBBRBBRBBRBZkZZsZBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJJZksssscR{{BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJkkR{ZZckssssssssssssssssssssssZBRRBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcsssssssssssssssssssssssss{k{B:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBc{cRkRBRBBRBBRBBRBJZBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRcJBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBRBBRBBRBBRBBRBZsZRcRBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBJZJJkcJkZJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZcRsZckkssssssssssssssssssskkccZZZcssZBRRBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:B{k{sssssssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZsZZsZBRBBRBBRBBRBBRBRkRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkRJZJBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJcJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJBRBBRBBRBBRBJZJc{cJZJBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJckRZkksssssssssssssskccZZR{JksJckBRZBJJBBBBBBBBBBBBBBBBBBBBBBBBRssZBRRBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJsssssssssssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRc{cJZBBRBBRBBRBBRBJRBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZ{ZZkZJcJBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJRcRZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRcRBRBBRBBRBBRBBRBRkRZsZBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{ZksssssssssssskcZZR{JksBRZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRsscBRRBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssssssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBc{cRkRBRBBRBBRBBRBBRBJZJc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZZsZZkZZkZZkZZkZZkZZkZZkZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJRBBRBBRBBRBBRBJRBZsZZkZBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRZksssssssssskcZR{JckBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZZsskBRRBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BkssssssssssssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ksssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBZkJ{csŌ朔sBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkZZsZJRBBRBBRBBRBBRBBRBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJBRBBRBBRBBRBBRBRcJc{cJRJBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJksZkssssssssskZRJkkBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkssJssBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJkZksskZkJBJ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBJZBksRk{֌ޔJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJc{cRkRBRBBRBBRBBRBBRBBRBRkRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZ{ZJZJBRBBRBBRBBRBBRBJRBZsZZsZBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZRcsssssssskcZJkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsscBRRBRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssssssssssssssssssssssssskB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BZJZ{k{ssssss{k{RJRB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBJJBkkZkޔs{ZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkZZ{ZJZJBRBBRBBRBBRBBRBBRBRkRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJBRBBRBBRBBRBBRBBRBRkRc{cJcJBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJccZkssssssskcRJccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZZsssJ{{BRRBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BkZkksssssssssssssssssssssssss{k{B:BBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssss{k{B:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BJJJscsssssssssssskZJZB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkRcsŌΌńBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZsZZsZJRBBRBBRBBRBBRBBRBBRBRcJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZsZ{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZsZ{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJBRBBRBBRBBRBBRBBRBJZJc{cZkZBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJkkZkssssssskZJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsskJkkBRRBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJZJZ{k{sssssssssssssssssssssss{c{:::BBBBBBBBBBBBBBBBBBBBBBBB:::kZksssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJcZcksssssssssssssssscZcBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBJZBksRk{֔ńk{Rc:sJ){Z1ZcJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRc{cRkRBRBBRBBRBBRBBRBBRBBRBJZJZsZc{cc{cc{cc{cZsB)!1JZ{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsB)!1JZ{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRkRJRBBRBBRBBRBBRBBRBBRBJZBZsZZsZJZBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJckZksssssskcR{BJRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRksskJccBRRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJkZkksssssssssssssssssssskZk:::BBBBBBBBBBBBBBB:::::B::BJBRcRckZkkscZc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBRJR{k{sssssssssssssssssssssscsJBJ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBRcJsZsޔ֌ŵsZkBsJ1sJ)sJ)sJ)sJ)sJ)sJ)ŵssBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkRc{cRcRBRBBRBBRBBRBBRBBRBBRBJRBRcRZsZZ{c:ŵ)Jc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZ{c:!)Jc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJBRBBRBBRBBRBBRBBRBBRBJRBZsZc{cJcJBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZcZksssssskZJs{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJkkksskRBRRBRRBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJZJZ{c{sssssssssssssssssscRc:::BBBBBB:::B:JcRssZscscsckZ{ZJcZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BJBJscsssssssssssssssssssssssssss{k{RJRB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJc{Ό΄kRkBsJ)k:)k:)k:)k:)k:)sJ)sJ)sJ)sJ)sJ)sBޔJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBZsZc{cRcRBRBBRBBRBBRBBRBBRBBRBBRBBsc!!!:Z{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRs)!!:Z{cc{cc{cc{cc{cc{cc{cZsZRcJBRBBRBBRBBRBBRBBRBBRBBRBJZBZsZc{cRcJBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJRckkcRBRZBBBBBBBBBBBBBBBBBBBBBBBBBJJRksssssskZJkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJsskssscRBZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJkZkksssssssssssssssZJZ:::::BcR{scscscscscscscscsZBBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBcRcksssssssssssssssssssssssssssssskcRcBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccRk{֔ޔν{c{J{Z:sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)sJ)sJ)sJ)sJ)sJ)ޔs{ZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBZsZc{cRkRBRBBRBBRBBRBBRBBRB:{k!):RR{R{R{J:Ž!1Z{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cR{!)BRR{R{R{J:Ž!1Z{cc{cZsZZkRRcRJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZsZc{cRcRBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRsksssssssZBBBBBBBBBBBBBBBJs{csssssskZJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZZksssskBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBRJRscssssssssssssskB:JsZscscscscscscscscscscscJBR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BRJR{k{sssssssssssssssssssssssssssssssssssskZkJBJ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJssZsޔ֌ŵsZsJ{R1sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)sJ)sJ)sJ)sJ)cńBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRkRc{cZsZJZJBRBBRBBRBBkR!!1BscBscBscBscBkcBkkBskBskB{s)1RcJRcJRcJRcJRcJRcJRcJRcJRcJRcJRcJRcJRcJRcJJsc!!:J{kJ{kJ{kJ{kJ{kJ{kJ{kJ{kBs)Ž1JZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRcJcsZZsZJcJBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsssssssssscBJJJZcZkssssskZJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJZksssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJkZkkssssssssRJZsZscscscscscscscscscscscscscB:J:::BBBBBBBBBBBBBBBBBB:::B:BJBJkZksssssssssssssssssssssssssssssssssssssssss{k{JJJB:B:::BBBBBBBBBBBBBBBBBBBBBZZJ{{csŌńkRkBsJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)sJ)sJ)sJ){Z1ZcJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcJZsZcscRkRJZBBRB)!:{BscBscBscBsc:kc:ZZ:ZZ:ZZ:ZZ:ZZ:ZZ):{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)Ž!:{BscBscBscBscBscBscBscBscBscBscBsc):{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZsZc{cZsZJZJBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZssskZJsJk{RcsssksssssscRBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRZksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BJBJRJRscsssssscscRsscscscscscscscscscscscscscsckZ::BBBBBBBBBB::::::BBBZRZksssssssssssssssssssssssssssssssssssssssssssssZRZ111BBBBBBJJBk{֔ޔε{csJ{J1k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)sJ)sJ)sJ)ŵ{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZBZkRc{cZsZJs1BscBscBscBscBsc:kc:ZZ:ZZ:ZZ:ZZ:ZZ:ZZ:cc!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:sc1BscBscBscBscBscBscBscBscBscBscBscBscBsc)!BRBBRBBRBBRBBRBBRBBRBJRBJcJZkZc{cZsZRcRJRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRksscJZcJRcJRcJRcJRcJRcRsssssskZBZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJcZckZRcscscscscscscscscscscscscscscscscJBR::::::B:BRJRscsssssssssssssssssssssssssssssssssssssssssssssssscsB:B:::BBBBBBBBBkkZΌsZcBsB)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)sJ)sJ)sJޔJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJRkR:Ž)J{kB{kBscBscBscBscBkc:cc:cc:cc:cc:cc:cc:cc:{sBkZJZBJZBJZBJZBJZBJZBJZBJZBJZBJZBJZB1)BscBscBscBscBscBscBscBscBscBscBscBscBscBsc:sBscJZBJZBJZJJcJRcRZkZZsZc{cZsZRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsskJZcJRcJRcJRcJRcJRcJRcJRccsssZJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::RJZscscscscscscscscscscscscscscscsccRsB:BkZkksssssssssssssssssssssssssssssssssssssssssssssskRJR:::BBBBBBBBBBBBBBBkńk{RZ:kB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)sJ)sJ)ޔs{ZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!JR{R{R{R{R{R{R{R{R{R{R{R{R{R{R{1Bc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c!JR{R{R{R{R{R{R{R{R{R{R{R{R{R{R{1Bc{cc{cc{cc{cc{cZsZRkRJcJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkssRsJRcJRcJRcJRcJRcJRcJRcJRcJcssssBJRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRsscscscscscscscscscscscscscscscscsZZJZssssssssssssssssssssssssssssssssssssssssssssssscZcB:B:::BBBBBBBBBBBBBBBBBBsJ1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)sJ)cBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBsc!BscB{kJ{kJkJkJsJsJkJ{kJ{kJ{kJ{kJ{kJ{kJ{kJk:)RkRRkRRkRRkRRkRRkRRkRRkRRkRRkRJk!JsJsJsJsJsJsJsJsJsJsJsJsJsJsJsJsB)RkRRkRRcRJcJJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssJRcJRcJRcJRcJRcJRcJRcJRcJRcJRccssJs{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kR{scscscscscscscscscscscscscscscscscZRcsssssssssssssssssssssssssssssssssssssssssssss{k{BBB:::BBBBBBBBBBBBBBBBBBBBBBBB֔k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:){Z1ZcJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:{!BscBscBscBscBscBscBsc:kc:ZZ:ZZ:ZZ:ZZ:ZZ:ZZ:ZZ:kc:{!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:s!BscBscBscBscBscBscBscBscBscBscBscBscBscBscBscBsc:s!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRsskJRcJRcJRcJRcJRcJRcJRcJRcJRcJRccssR{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kR{scscscscscscscscscscscscscscscscscZRcssssssssssssssssssssssssssssssssssssssssssskRJR::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBńk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)k:)ŵskBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB1)BscBscBscBscBscBscBsc:kc:ZZ1RR!11!11!11!11)11)::)B:ssssss)1))1))1))1))1))1))1))1))1))1)!JBssss!cc)::)::)::):1):1):1):11RJBscBscBscBscBscBscBscBsc:{k!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssJZcJRcJRcJRcJRcJRcJRcJRcJRcJRccssJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZJcscscscscscscscscscscscscscscscscsZB:BRJRkZkkssssssssssssssssssssssssssssssssssssssskZkB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJkk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)k:)kBޔJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:{!BscBscBscBscBscBscBsc:kc:ZZ)JJ!!!!!!!!!!!!!!!!!!!!!!!!!!!)B:BscBscBscBscBscBscBscBsc:s!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcssRJRcJRcJRcJRcJRcJRcJRcJRcJcskskBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJscscscscscscscscscscscscscscscscZJk:::::::::B:BJBJRJRscsksssssssssssssssssssssssssssssssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{c{Rk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)kB)֔s{ZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:sc!BscBscBscBscBscBscBsc:kc:ZZ)JJBBBcccsssRRR)B:BscBscBscBscBscBscBscBsc1!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRsskJZkJRcJRcJRcJRcJRcJRcJRccsscBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sZscscscscscscscscscscscscscscscJBJBBBBBBBBBBBBBBB::::::B:BJBJZJZscssssssssssssssssssssssssssssssZRZB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsZ:k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)k:)ZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!:sBscBscBscBscBscBsc:kc:ZZ)JJBBB::::::::::::::::::::::::111:::RRR)B:BscBscBscBscBscBscBscBsc)1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJksscJcsJRcJRcJRcJRcJZkZsssJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBRscscscscscscscscscscscscscsccRs:::BBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJZRZ{k{sssssssssssssssssssssssscsB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŌkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:){J1RcJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB))ŽBscBscBscBscBscBsc:kc:ZZ)JJRRRccckkkcccRRRccccccccccccccccccccc111ssscccccc)B:BscBscBscBscBscBscBsc:{kBscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRs{ssskcZRZksssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BZRZkcRccRsscscscscscscscscscscscsckZ::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJcRc{k{ssssssssssssssssskRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֌k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)k:)ŵ{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:{k:BscBscBscBscBsc:kc:ZZ)JJ))))))ccccccccccccccccccJJJZZZ)B:BscBscBscBscBscBscBsc)!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBR{ksssssssssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBcZcssssZRZcRsscscscscscscscscscsckZ{::B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBJJJkZkksssssssssssscZcB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBŵsk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)k:)kBޔJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)!:sBscBscBscBsc:kc:ZZ)JJsssBBBccccccccccccZZZ!!!111)B:BscBscBscBscBscBsc1:sBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZccsssssskRs{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJscssssssssB:BJBRsZscscscscscscsZRJc::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBRJRkZkkssssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkRck:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)kB)ޔkkZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBkZ!!:BscBscBsc:kc:ZZ)JJJJJJJJccccccZZZ!!!!!!)B:BscBscBscBsc:sc))BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJccRZZZJksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJ{c{ssssssssZRZ::::::B:BJBRRJccRscRsZJcRJZRJZscsJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJRJRscsskRJR::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkJk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)ZBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:{s)1:sc:kc:ZZ)JJ)))JJJRRR!!!kkk)B:BscBsc:s1!)BZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BRJR{k{sssssssss{k{:::BBBBBBBBBBBB:::::::::JBJssskB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{sJ1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ){R1JJJBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:sc!!!!!!ccc{{!!)BZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BZRZksssssssssssBBB:::BBBBBBBBBBBBBBBBBBBBBJBJssss{k{B:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֔k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)ν{kBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBcJ)JJJ!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!{{{!:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBcRcsssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBsssssscsB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJޔBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBsc1!BBBsss)1BZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJkckssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJkk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)ޔkkRBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBZJBcZ:cc1::BBB111RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRsss)B:BscBcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJscsssssssssssssssssBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{c{Rk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)cBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111BBBBBBccccccccccccccccccccccccccccccccc!!!sss1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BRJR{k{sssssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ksssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsZ:k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ){Z:JJJBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111BBBBBBccccccccccccccccccccccccccccccccc!!!sss1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BZJZkssssssssssssssssss{c{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{c{ssssssskB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)ν{kBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111BBBBBBccccccccccccccccccccccccccccccccc!!!sss1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBcRckssssssssssssssssssssBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kckssssssss{k{B:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޜ֔k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJޔBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)))!!!111111111111111111!!!))))))))))))))))))))))))))))))))))))111111111111111111!!!:B:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJkZkssssssssssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcsssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBŵ{k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sR)ޔk{ZBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!:B1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bscssssssssssssssssssssssss{c{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZJZsssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkRck:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)cBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!111111111111111111!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!111111111111111))):B1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBksJk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ){Z:RcJBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!111ccccccccccccccccccJJJ111cccccccccccccccZZZ:B1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{J1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)ν{kBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!111ccccccccccccccccccJJJ111cccccccccccccccZZZ:B1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssssssssssssssssssssss{c{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssssssskB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJޔJRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!111ccccccccccccccccccJJJ111cccccccccccccccZZZ:B1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJssssssssssssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sR)ޔk{ZBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!RRRcccccccccccccccJJJ:::ccccccccccccccc::::B1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bsssssssssssssskck:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJkk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)cBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!111ZZZccccccccc!!!JJJ:::cccccccccJJJ!!!:B:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJsssssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZZk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ){Z:RcJBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:::))):::cccccc!!!JJJ:::cccRRR))))1)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBscBk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ)sJ)ν{kBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111BBB!!!JJJ!!!JJJ111111)))kkk1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssssssskBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sJ){JޔJRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111:::111ssscccccccccccccccccccccccckkksss!!!ZZZ1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZksssssssssssssssskB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBν{k{RR:k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)sR)ޔksZBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111sss)))BBB1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcsssssssssssssssss{c{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZΌŭsZkBsJ1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)sJ)cBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111ZZZ:::BBBBBBBBBBBBBBBBBBBBB)))!!!{{{1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:)1)!!!!!!!!!::1BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRB:B1!!!!!!!!!)1):J:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BkssssssssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{ޜνk{RZ:kB)k:)k:)k:)k:)k:)k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)Z:RcJBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111sss:::!!!挌!!!RRR1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B1!!!!)!BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRB!)!!!!:B:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZﭥޥ֜Μ{{sskkcscZkZJZJBJBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssssssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccRޔ{BBBBBBBBBccRcsŌ֌ŵsZkJsJ1k:)k:)k:)sB)sJ)sJ)sJ)sJ)sJ)ν{kBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111ccc{{{{{{{{{{{{{{{{{{sss!!!挌BBB{{{{{{{{{{{{{{{{{{{{{{{{1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB))))))JJJ!!!BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRB!!!JJJ))))1)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssﭥޥ֜Ŕ{{sskkc{cZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BkssssssssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBskkZBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkZk{֔ńkRkBsJ)sJ)sJ){JޔJRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB111ccckkkkkkkkkkkkkkkkkkkkk:::1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJ:!!!)))sssJJJ!!!BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRB!RRRkkk!!!!)!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŔ步ޥΜŔ{{skkkcscZkRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZJZssssssssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssssssssssssssskBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJ֔JJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJ{{csŌޔν{ksZBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBB:::111111111111111:B::B::B::B:11)!!!:B::B::B::B::B::B::B::B::B::B:BJ:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJ:!!!JJJJJJ!!!BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBZZZBBB!!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ歽ssRRZZkkss{{Ό֔業ﭵﭥ楜֜Ŕ{{sskkk{cZkZZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bksssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBk{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBkkZk{֔{BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBJ:1B11:11:11:11:11:11:11:1:B:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!RRRJJJ!!BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBZZZJJJ!)!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZcZRRBkBBkBBkBBkBBkBBkBBsBJJJJJJRRZZcckkss{{ńΌ֔ޜ掠步ޥΜŔ{{ZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssssssssssssssssssssscsB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bsssssssssssssssssssssk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJŌŌRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJ{csŌRcJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!)!RRRRRR!!BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBZZZJJJ))!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssBsBBkBBkBBkBBkBBkBBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZRcZkcsk{sŌ֔ޜ業ﭵ{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bksssssssssssssssss{k{ZRZJBJB:B::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{ZkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBJZJk{Zk{ZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)1)JJJRRR!!BBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBZZZBBB1:1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŌBkBBkBBkBBkBBkBBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRRZZcckkss{{ńΌ֔ޜ業ΜRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssssssss{k{ZRZJBJB:B::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJB{֔ZZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B1:::RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBZZZ111:J:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJB楽kkBkBBkBBkBBkBBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bsssssssssss{k{cRcJBJB:B::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkZsBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!!!!RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc!!!!!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRRBkBBkBBkBBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{{skRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cZcsssssss{k{cRcJBJBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsޜccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)1)sssZZZBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccckkk)1)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssBsBBkBBkBBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BsssskcZcJBJBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZRޔ{JJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:JJJZZZBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBcccBBB:J:BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŌBkBBkBBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJﭽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkkkZkJJJBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRJRsssssssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!)))ZZZBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc!!!!!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBޥkkBkBBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJΌcscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111BBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJΌJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB1:1kkkZZZBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBcccccc1:1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRRBsBJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJkk{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZksssssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc籠cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJ:!:::RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc111!!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkJ{JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRR֜RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΌRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)1){{{RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBcccsss1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJޜZkRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssssssssssssssssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJ:BBBRRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc:::!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBޥ{sJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{{ssRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZJZssssssssssssssssJJJBBBBBBBBBBBBBBBBBBBBBBBBJJB{֔ZZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)1)RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc{{{1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRccJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBccRޜsBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJ:BBBRRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc:::!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ楽RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJksssssssssssssJBJBBBBBBBBBBBBBBBBBBskkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)1)RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc{{{1:)BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֔JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJńc{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJkssssssssssssJBJBBBBBBBBBBBBZZJ֔JJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJ:BBBRRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc:::!!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJޥ{{JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJkcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBksssssssssssJBJBBBBBBBBBk{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB11)RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc{{{1:1BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcscccJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRJ֥RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{k{ssssssssssJBJBBBRRJŌŌRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!:::RRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBccc111!!!BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRssRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ֔ZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{k{sssssssssBBB{{ckBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB1:1sssRRRBBBBBBBBBBBBBBBBBBBBBBBBBJBBJBBJBBJBBJBBJBBBBccckkk1:1BJBBJBBJBBJBBJBBJBBJBBJBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcR֔RJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJss{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::scssssssss{֔ZZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!!!)))RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccc!!!!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRZcRޥ{{JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZRŔRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:cccRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cccRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRcscccJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ楽RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZksssޔccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB)1)!!!RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRssRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJkkRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcsssŽ{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJJJRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cccBBB!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRޔRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJccRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsss:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB1:1{{{RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccckkk111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRޥ{JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJޥRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB!)!)))RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccc!!!!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRcsZkcJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ֔ZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRs{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJ:ZZZRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZRRRBBBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBJJBRcRRcRRcRRcRRcRRcRRcRssRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJss{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:sssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZcccJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRޜRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRRΜRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::1::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRޥJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJޜRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRR!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZkcJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{{kkRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRR!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRskZRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRR!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRޜJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJﭽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֥JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRRssRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZﵽkkJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJcZ{{ޜΔcscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRskZRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRRkkΌﭽZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRޜRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZZ{{ޜΜ{{csZkk֜ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBss{c{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֜ńJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRJkcń楽歌skRcRRcRRcRRcRRcRRcRss楽{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZﭽkkJJJJJJJJJJJJJJJJJJJJJJJJZRss֔֜{cscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ﭽޥskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BkssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkkZRJJJJJJJJJJJJJJJJcc楽ﭔssZkRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkR֜k{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJsssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRޜRJJJJJJJRRskΔޥk{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZŔcsZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{JJJ!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֜ńcZ{{ޜﵔŔssZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRc{cΜZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{{{{ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ111!!!)))111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::))):::ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZﭽޥkkRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkkޥ﵄{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRR!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkkΔ{{ZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{s歽{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRR!!!))))))))))))))))))))))))))))))))))))sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR歌kkRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRﵽޥkkRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJsssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ)))JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJsssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZΜc{cRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRRJJJ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZ))){{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZŔZkZRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB:B:{{{RRRJJJ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{RRR:::kkkkkkkkkkkkkkkkkkkkkkkkkkkkkk!!!{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRk{c֜ZkRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{RRRsssRRR!!!{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRsk楽{{RcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bkssssssssssssssscs:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{cccJJJJJJJJJJJJJJJJJJJJJJJJsssRRRJJJJJJJJJJJJJJJJJJJJJJJJJJJ{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ﭽssRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZsssRRR!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR֜kkJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{c{sssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZsssRRR!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZŔRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZcccccccccccccccccc:::sssRRRJJJcccccccccccccccRRR!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcscΔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcsssssssssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZJJJRRRsssssskkkccckkk{{{RRRsss!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkkޥBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BkssssssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZJJJRRRBBB))):::cccJJJsss!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJ{sBB:BBJskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkk楽BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZJJJJJJsss!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJsk:!):RkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssssssssssssssJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZJJJcccccc!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRkc1!1RcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssssssssssssssssRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{RRRJJJ{{{{{{{{{ZZZJJJJJJkkk!!!{{{{{{{{{{{{!!!sssJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRB!!J{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111BBBZZZZZZZZZZZZ:::JJJ{{{{{{{{{ZZZJJJJJJ{{{!!!{{{{{{{{{{{{!!!ZZZZZZZZZZZZ:::JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRB!1BB{J{sJ{sJ{sB:1!BRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssssssssssssssssssssB:BBBBBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111BBBkkkkkkkkkJJJ)))JJJJJJ111!!!BBBJJJJJJBBBkkkkkkkkkkkkJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRB)BJskJskJskJskJskJskJskJskJskJskJskB!BRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJssssssssssssssssssssscs:::BBBBBBBBBBBBJJB֔{k{{cccRJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!ZZZJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRkZ!:JskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk1!JskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssssssssssssZRZ:::BBBBBBBBBBBBsޔŌ{sckkZRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB))))))kkkJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR:1JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk1)RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZsssssssssssssssssssJBJBBBBBBBBBBBBRRJΌΔskssZZZRJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!!!!!!!))))))))))))JJJsss)))kkk111sss)))))))))))))))!!!!!!JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!!JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk)J{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BsssssssssssssssssssB:BBBBBBBBBBBBB{Zk:)k:)kB){R1kB{RcsńޔޔŌ{k{{ckkRRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZkkk)))kkk::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJ{s:JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJ{)RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kcksssssssssssssssss{k{:::BBBBBBBBBRRJޔkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)Z:sJZkε{ΌΌskssZZZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ:::)))kkkkkk::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR:!JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk1RkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssssscZc:::BBBBBBBBB{Rk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kB){R:kJRcŭsńޔ֔{k{{cccRRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ)))kkkBBB::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR))JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssssssssssssssssJJJBBBBBBBBBZZJޔkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sJ1ZBsRZkν{֌ޜ֔scccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ)))kkk111::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR))JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk!1RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssBBBBBBBBBBBBsJk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kB){R:kJZcŵsńޔZZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ)))kkk)))::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!1JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk!)RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BssssssssssssssskB:BBBBBBBccR֌k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sJ1cB{RckޔޔRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ{{{)))kkk!!!::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!1JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk))RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cZcsssssssssssssskck:::BBBBBBŌkJk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kBΌJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ)))kkk111::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!1JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk))RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssRJR:::BBBkkR΄k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB1{B1sB1sB1sB1sB1sB1sB1sB1sB1sB1sB1sB1sB)sB1sB1sB1sB)sB)sB1sB)sB)k:)s:)sB)s:)k:)k:!k:)k:)k:){RBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ)))kkkBBB::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!1JskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJskJsk))RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{c{sssssssssssssJBJBBBBBBΌcBk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)RJZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRJk:)k:)k:)Z{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ111)))kkkccc::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!1JskJskJskJskJskJkcBccBccBccBccBccBccBccBccBccBccJskJskJskJskJskJsk))RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssB:BBBBssZνk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)ZRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRk:)k:)kB)kkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZZZZ)))kkk::::::BBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!1JskJskJskJskJskBcZ::::::::::::::::::::JskJskJskJskJskJsk))RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bksssssssssss{c{:::BBB֔ZBk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)s:)ZRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRk:)k:)kB)ŵ{{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!!!!!!!!!!!!!!!!111BBB)))kkk!!!JJJBBB!!!!!!!!!!!!!!!!!!!!!JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!1JskJskJskJskJskBcZ::::1JR1JR1JR1JR1JR)JJ::::JskJskJskJskJskJsk))RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcsssssssssssZRZ:::{{cε{k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB1ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZs:)k:)sJ1ńkkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB))))))kkkJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRJRJJRJJcRJcRJcRJZRJZJJZJJZJJZJJZJBJB111JZJJZJJZJJZJJZJJZJJkZBkcJkcJcZJRJJZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssJBJBBBޔZ:k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:){B:ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZsB1k:){J1֌ZZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))!!!RRRJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ)))!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJZRZ{k{cZcB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssB:Bcŵsk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)J:ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ{J:k:)Z:ޔRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))BBBkkkkkkkkkJJJBBBBBBcccssskkkkkkkkkkkkJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ)))!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBJBJkZkksssskRJR::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJsssssssss{k{B:B{R:k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)RBZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZJBk:)kBΌJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))JJJ{{{{{{{{{ZZZJJJ:::ccc!!!{{{{{{{{{{{{!!!JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ111cccccccccccccccccccccZZZ)))cccccccccccccccccccccccc!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BJBJZRZ{k{ssssssssss{c{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssscZccsk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)RJZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRJk:){RBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))JJJ{{{{{{{{{ZZZJJJ111RRR!!!{{{{{{{{{{{{!!!JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJcccZZZRRR!!!ZZZZZZZZZZZZZZZZZZ!!!ZZZZZZJJJ!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJkZkkssssssssssssssscZcB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZJZssssssssRJR{J1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)ZRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZJk:)Z{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))JJJ{{{{{{{{{ZZZJJJBBBJJJ!!!{{{{{{{{{{{{!!!JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJcccccc{{{JJJ!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::JBJZJZ{k{sssssssssssssssssssskRJR::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bssssssssskk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)s:)ZRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRk:)kkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))JJJ{{{{{{{{{ZZZJJJ:::sss!!!{{{{{{{{{{{{!!!JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJccckkkJJJJJJ:::BBBJJJJJJsssJJJ!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBB::::::B:BJBJkZkksssssssssssssssssssssssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssJ1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB1ZRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRsB)ŵ{{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))JJJ{{{{{{{{{ZZZJJJRRR)))BBBBBBsss!!!{{{{{{{{{{{{!!!JJBJZJRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJcccJJJccckkkkkkkkkkkkkkkkkkkkkkkkkkkkkkZZZZZZJJJ!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBB::::::BBBRJRscsssssssssssssssssssssssssssssssskZkB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssck:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:){B1ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ{J1ńkkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))JJJ{{{{{{{{{ZZZJJJRRRssscccRRRBBBBBBJJJZZZsssRRRsss!!!{{{{{{{{{{{{!!!!!!)))1:1BJBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJcccJJJ!ccckkkkkkkkkkkkkkkkkkkkkkkkkkkkkkZZZ!!!ZZZJJJ!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBB111JJJkssssssssssssssssssssssssssssssssssskRJR::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssss{sB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:){J:ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZR:֌ZZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))JJJ{{{{{{{{{ZZZZZZZZZZZZZZZZZZZZZ111sssRRRBBBZZZZZZZZZZZZZZZJJJ!!!{{{{{{{{{{{{!!!)1)BJ:RZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJccc:::!!!ccckkkkkkkkkkkkkkkkkkkkkkkkkkkkkkRRRRRRJJJ!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBB:::ZRZsssssssssssssssssssssssssssssssssssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssŽck:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)JBZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZcJޔRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!JJJ{{{{{{{{{ZZZsssRRR!!!{{{{{{{{{{{{!!!ccccccZZZRRRJJJ:::!!!!!!:B:RZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ:::RRRkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk)))!!!{{{!!!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssssssssssssssssssssssskZkB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bkss{sB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)RJZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZsZΌJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))JJJ{{{{{{{{{ZZZsssRRR!!!{{{{{{{{{{{{!!!ZZZ111!!!JRBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZR)))!!!!!!RRRkkkccc111!!!RRRkkkccc:::!!!!!!111RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBB:::BBBkssssssssssssssssssssssssssssssssssssskZJZ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssνZk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)ZJZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZcBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!!!!JJJ{{{{{{{{{kkkJJJJJJJJJJJJJJJJJJJJJJJJ!!!sssRRRJJJJJJJJJJJJJJJJJJJJJJJJRRR{{{{{{{{{{{{!!!{{{::::B:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ)1)!!!ZZZkkkkkkkkkkkk111!!!ZZZkkkkkkkkkkkk:::::1RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{c{ssssssssssssssssssssssssssssssssssssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsޔkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)s:)ZRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZs{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!:::JJJJJJ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{RRRsssRRR!!!{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{!!!kkk!!!:B:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZR!)!JJJkkkkkkkkkkkkkkkccc!!!!!!ZZZZZZZZZZZZZZZZZZJJJkkkkkkkkkkkkkkkccc!!!:B:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssssssssssssssssssssssssssssssskZkB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::::BkZc֜Zk:)k:)k:)k:)k:)k:)k:)k:)k:)sB1ZRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZέ{kBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!JJJRRRJJJ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{RRR))))))))))))))))))))))))))))))!!!{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{!!!)))BJBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZR!!!ccckkkkkkkkkkkkkkkkkk:::)))ccckkkkkkkkkkkkkkkkkk:::BB:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssssssssssssssssssssssssskZJZB:B:::BBBBBBBBBBBBBBB:::ZRRޥ֔sk{BBk:)k:)k:)k:)k:)k:)sB1ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZcZֽ{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:RR1ks1s{1ks:ZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111BBBRRRJJJ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZ))){{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{!!!!!!!)!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJ)))kkkkkkkkkkkkkkkkkkkkkJJJ!!!!!!kkkkkkkkkkkkkkkkkkkkkJJJ1:1RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssssssssssssssssssssss{k{JBJ:::BBBBBBccRsޜΔkck:)k:)k:)k:){J:ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZcZΔkkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BJ1!!):RRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!)))RRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ)))JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJkkkBJBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJJB111kkkkkkkkkkkkkkkkkkkkkRRR!!!ZZZZZZZZZZZZZZZJJJ)))kkkkkkkkkkkkkkkkkkkkkRRR)1)RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBkssssssssssssssssssssssssssssssssssssssss{{{ޜŜ{ΜֽR:k:)JBZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRcRޔccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1ks!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cccRRR:::BBB!!!::::::111)))111RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRB)))kkkkkkkkkkkkkkkkkkkkkJJJ)))kkkkkkkkkkkkkkkkkkkkkRRR11)RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{c{ssssssssssssssssssssssssssssssssssssŽŽ{cscscscsc֥ŵ{scZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZRZJRB{J:sB1sB1sB)k:)Z:ޔRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1ks!)1k{1cs1k{1{))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssRRR:::ZZZ:::BBB111BBB))!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJ)))kkkkkkkkkkkkkkkkkkkkkJJJ!!!kkkkkkkkkkkkkkkkkkkkkJJJ1:1RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssssssssssssssssssssssssŜ諒scscscscscscscscscscޥֵkZZZZZZZZZZZZZZZZZZZZZZZZRRJRB{J:sB1sB1sB)k:)k:)k:)k:!k:)k:)k:)k:)cBΌJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BJ!1{:RZ:RZ:RZ:RZ:RZ:RZ:RZ1cs!1{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{{{{ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZkkkccc:::BBB:::))))))!!!ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZBBB!)!RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRkkkkkkkkkkkkkkkkkkkkk:::JJJkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk::::B:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssssssssssssssŜŽZRcscscscscscscscscscscscscscscޥεkZZZZRRJJB{J:sB1sB1s:)k:)k:)k:)k:!k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)1{:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:Zc!:JRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkkJJJ!!!BBBBBBBBBBBBBBB111111)1)RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR!)!ZZZkkkkkkkkkkkkkkkkkk)))ZZZkkkkkkkkkkkkkkkkkk)))ZZZkkkkkkkkkkkkkkkkkk111BJBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsckk{{csZRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssssssΜŽsssZJcscscscscscscscscscscscscscscscsc掠csB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)Z{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ1k{)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!:::))))))BBBBBBBBBBBBBBB:::RRRBB:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR1:1JJJkkkkkkkkkkkkkkkkkk!!!kkkkkkkkkkkkkkkkkkkkk:::JJJkkkkkkkkkkkkkkkkkk!!!RZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRc{csk{{ŔޥﭵŔRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBksssssssssssssssssssΜŵssssssZJcscscscscscscscscscscscscscscscscscJBJkcsB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1ks1s:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ!!:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZJJJ:::BBBBBBBBBBBBBBBBBB)))!!!{{{111!!!RZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBJB111kkkkkkkkkkkkkkkRRR111cccccccccccccccccccccJJJ111kkkkkkkkkkkkkkkRRR)))RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkRc{css{{Δޥﭽc{cRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{k{ssssssssssssss{֜ޥssk{k{scskZkZRZRJRJBJRJZscscscscscscscscscscscscscscscscscJBRBBBBBBk朥ZkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kB)ŵs{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BB1s{))1{:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB):RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ1s1ksBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1ks))1:JJBBBBBBBBBBBBBBBBBB:::!!!kkkRRR)))BBBBBBBBBBBBBBBBBBBBB:::!!!::::B:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ!!!!!kkkkkkkkkkkkkkk:::ccckkkkkkkkkkkk::::B:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZk{css{ΜޥﭜޜΔssńΜRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssss{֜֜{kcZJBJJBJJBJBBBB:B::::::::::::::::::BBBJBRscscscscscscscscscscscscscscscscscJBJBBBBBBBBBJJBsޔ{RkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)ńkkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:ZZ!!:ckBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ)BBBBBBBBBBBBBBBBBBBBBBBBBBB:JR!!1k{BBBBBBBBBBBBBBBBBB:::ZZZBBB!!!:::BBBBBBBBBBBBBBBBBBBBBBBB111!!!kkk111)1)RZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR111JJJkkkkkkkkkkkk!!!JJJkkkkkkkkkkkk!!!RZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZkkssΜ極樂ޜΌ{sskcZRRJJJJJJJJJJJJJޜkkRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssk{k{s{ΔΌkJJB:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:JscscscscscscscscscscscscscscscscscB:BBBBBBBBBBBBBBBBJJBsޔsRk:)k:)k:)k:)k:)k:)k:)k:){J1֌ccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BJ!!1s1s!!:JJBBBBBBBBBBBBBBBBBBBBBBBBBBB!!:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ!!BBBBBBBBBBBBBBBBBBBBBBBBBBB!!1{1s):ZZBBBBBBBBBBBBBBBBBB111:::{{{kkk)))!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111BBBZZZ!!!)1)RZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRB)))kkkkkkkkkBBB!!!)))ZZZZZZZZZZZZZZZZZZ!!!kkkkkkkkkJJJ111RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZkk{s֜歵楜ޜΌ{{ssccZRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJcc֜RcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBBBBBBBRRJkΌŌkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::BsZscscscscscscscscscscscscscscsccRs:::BBBBBBBBBBBBBBBBBBBBBJJJ{֌kJk:)k:)k:)k:)k:)Z:ޔRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1!:RZ:RZ:RZ:RZ))BBBBBBBBBBBBBBBBBBBBBBBBBBB!!:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ!!BBBBBBBBBBBBBBBBBBBBBBBB1ks!:RZ:RZ:RZ:RZ))BBBBBBBBBBBBBBBBBBBBB:::!!!:::kkkccc111))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!BBBsssRRR!!!:::RZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR)))BBBkkkZZZ!!!BB:111))):::kkkZZZ!!!JRBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZkk{sŔ֜歵楔֔Ō{{skccRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ֔kkJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJs֔ŌcJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBZscscscscscscscscscscscscscscscB:JBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJ{ΌcBk:)k:)cBΌJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!1cs:RZ:RZ:RZ:RZ:Zc!BBBBBBBBBBBBBBBBBBBBBBBBBBB!!:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ!!BBBBBBBBBBBBBBBBBBBBBBBB)1{:RZ:RZ:RZ:RZ:RZ!BBBBBBBBBBBBBBBBBBBBBBBB:::111!!!111JJJcccsss{{{{{{sssZZZJJJ111!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))!!!:::RRRkkksss{{{{{{kkkZZZBBB))))1)JRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRB:::!!!1:1JRB111JRJ:::!!!111RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZŔ֥楔֔ń{{kkcZRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJcZޥJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccRsޔ{{cJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::BkR{scscscscscscscscscscscscscZJk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJńcBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!:Zk:RZ:RZ:RZ:RZ:RZ!BBBBBBBBBBBBBBBBBBBBBBBBBBB!!:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ!!BBBBBBBBBBBBBBBBBBBBBBBB)1s:RZ:RZ:RZ:RZ:RZ!:BBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111!!!!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))!!!!!!111JRBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBJ:)1)RZJJRBZZZZZZZZZZZZZZZRRRRcRBJB)))RZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ﭥ朔֔ń{skkcZRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ֔skBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccRsޜ掠{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::BkZscscscscscscscscscscsckR{ZRcscsBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccRŌ{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)):RZ:RZ:RZ:RZ1{)BBBBBBBBBBBBBBBBBBBBBBBBBBB!!:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ:RZ!!BBBBBBBBBBBBBBBBBBBBBBBB1):RZ:RZ:RZ:RZ1cs!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111!!!!!!!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))!!!!!!))!111BJBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJZJ:B:BJBRcRRcRJRBRcRRcRJZJ:B:BJBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRss{{kkZZRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkR{掠ssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BJBRkZ{scscscscscscscscscZJkZJZsssZRZB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkRΌkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Zc1{:RZ:RZ1s!1ckBBBBBBBBBBBBBBBBBBBBBBBBBBB!!:JZ1JR1BR)BJ)BJ):J!:B):J)BJ)BJ)BJ1JR1JR:RZ!!BBBBBBBBBBBBBBBBBBBBBBBB:JJ!):RZ:RZ1cs!1{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::111111111111111::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::111:B:BJ:BJBJJBJRJRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJ1:11:11:11:11:11:11:11:11:11:1RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkcﵽޜRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJΌkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkZ{{ssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{k{scRcRJZkZ{scscscscsZZRkB:BBBBsssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkZΌcBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:RZ)RZ!BJ!!!!!!!!!!!!!!!!!!!!!!!!!!!!!)JJ1Zc:RZBBBBBBBBBBBBBBBBBBBBBBBBBBB1s{!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsc歽ZZJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZ{札{kkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BkssskkZkB:BJBJJBJB:J::B:::BBB:::{k{sssssskZkB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1ks!!1s{BBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))!!!!!!)))))))))!!!!!!!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBB:Zc!!1{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZޥccJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJńssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBB{{ZޜsccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBkssssskZk:::BBBBBBBBBBBBBBBBBB:::JBJssssssskRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZ{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!111RRRsss{{{kkkJJJ)))!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:BB:BJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRΜkkJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJRRBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBJJB{{cޔsccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJkssssssRJRBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssssssssscsB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBk֔kkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111JJJsss111!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRssJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJJJBc֔sZZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJssssssssssZRZ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsŌZZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!ssskkkZZZcccsssRRR!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRńJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJﭽJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBRZJ{Ό֔kRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssk:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssssssssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!!!!kkk111!!!JJJZZZ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRssΔRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cRZJkΌΌkRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJsssssssssssscZcB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֔kJk:)cBΌsJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111sss111!!!cccBBB!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkkޜRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBsBﭽJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{csk{ޔŌkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssskRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJ攄Z:k:)k:)k:)k:)sJޔ凜kBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!BBB!!!111RRRkkkssskkkcccBBBZZZ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRc{cﭽZRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cskޜŌ{ZcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZksssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssscsB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkZΌsJ1k:)k:)k:)k:)k:)k:)kB)Z朄cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccc111JJJsssssssssssssssssssssccc!!!{{{))))))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZޥcZJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBsB楽RZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBB{kŌcJJBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssssssZJZ::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcν{sB)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)cޔssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{cccJJJsssssssssssssssssssssssssssccc!!!111:::!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkR֜kcJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBccRsޜΌsc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BscssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssss{k{BBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBskkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sJ1kΌccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111RRRcccccccccccc))))))kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkJJJRRRcccccccccccc!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŔssJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBޜRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBk{Όsc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{k{sssssssssssssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{ssssssssssssssssscZcB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:){R:ŵ{ZZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111BBBZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ!!!!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBZZŔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkZ{Ōsc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:B{k{ssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssskJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBΌ凜kJk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)Z:ń{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ111)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ŌJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkB֔ZkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZ{札{kkZBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBkssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kssssssssssssssssssskckB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZJޔ朄Z:k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kJ֌sJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::::::::::::::)))ccccccccccccccccccccccccccccccccccccccc:::!!!:::::::::::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRsk֔RRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkBZZΜBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZ朵s{cBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJkssssssssssssssscZc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssssskRJR::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkR֌{J1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kB){RޔkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))))))))!!!ZZZZZZZZZZZZZZZZZZcccZZZZZZZZZZZZZZZZZZ111!!!)))))))))111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkcﭽޜRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkBBkBΔcscBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJB{{cޔsccRBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJsssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bksssssssssssssssssssss{c{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{cνsB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kB)Zޜ{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111JJJZZZZZZZZZZZZZZZcccZZZZZZZZZZZZZZZZZZ))))))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZ歽ZZJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkBBkBRRޥBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBc֔sZZRBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sJ1k֔kkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!:::ZZZZZZZZZZZZZZZcccZZZZZZZZZZZZZZZRRR!!!!!!)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZޥccJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkBBkBBkBŌkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBcŌ֔kRRJBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{Zk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:){J1sŌZZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111JJJ!!!cccssskkkZZZZZZcccZZZZZZcccssssss111!!!)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRΔkkJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkBBkBBkBJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJkΌΌkRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cRcssssssssssssssssssscZc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJBŌsJk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)Z:ν{{RRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!)))kkkkkkZZZZZZcccZZZZZZcccsssBBBRRR)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRssJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkBBkBBkBBsBk{kBJBBBBBBBBBBBBBRRJkΌΌkRRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRJޔ朄cBk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)cBΌsJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ccc!!!RRRZZZZZZcccZZZZZZZZZ111111)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRńRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBkBBkBBsBssﭽŔkks֔ŌcJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssssssssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZJZsssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccRޔ{R1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sJޔ凜kBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZ!!!111:::111)))111)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRssΔRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBBkBBsBkkﭽﭔŔ֜cJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bscssssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZńsJ1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kB)Z朄cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111sss111!!!RRR)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkkޜRRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ{JBkBcc楽{{BJBBBBBBBJRJkkŔ{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssssssssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZJZssssssssssssssssssssk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkskB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sB)cޔssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111JJJ!!!111)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRc{cﭽZRJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJccޜJJJBBBBBBBBBBBBBBBBBBBBBBJBk{kssZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRssssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BkssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{ck:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)sJ1kΌccRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZBBB!!!JJJ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZޥcZJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJccޜJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{Rk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:){R:ŵ{ZZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZBBB!!!JJJ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkR֜kcJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJcZ֔RZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZksssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:Bksssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssZkBk:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)Z:ń{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZBBB!!!JJJ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŔssJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZZΔΜRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scsssssssssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcZ:k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kJ֌sJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZZZBBB!!!JJJ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZRΌ֜kkJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssssssssssssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBs{J1k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:){RޔkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111{{{ZZZBBB!!!JJJ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ΌJJJJJJJJJJJJJJJJJJJJJJJJJJRRńޥskRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ksssssssssssssssssssssB:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssssssskZk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌsB)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)k:)kB)Zޜ{{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111BBBZZZBBB!!!JJJZZZ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRsk֔RRJJJJJJJJJJJJJJJJJJRR{ssRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssssssssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:BksssssssssssssssssskB:BBBBBBBBBBBBBBBBBBBBBBJJBJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJ֔ν{sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1sJ1{R1k֔s{cJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!RRRZZZBBB!!!JJJccc!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkcﭽRRJJJJJJJJJJJJRJ{sﭽ{{RcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJc{cBJBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssssssssssssssssssssscRc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBscsssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZs{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1Z:ZΌ{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ZZZZZZBBB!!!JJJkkk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZ歽ZZJJJJJJJJssﭽ﵄{ZcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRZsZBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssssssssssssssssssJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JBJscsssssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRksZc{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{Rν{Ō{kRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!RRRZZZBBB!!!JJJkkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZޥccJJkk楽ZkRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRcRBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssssssskRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBkZkssssssssssssss{k{:::BBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{cR{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1kJsΔkZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!JJJZZZBBB!!!JJJRRR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRΔZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJc{cJRJBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssssssssssssssssssscsB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBkZksssssssssssssB:BBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRssJ{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1cBkޔޔsckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!)))sssZZZBBB!!!JJJ111!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRcsZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZZkZBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssssssssssssssskRJR:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBcZcsssssssssssJJJBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{朄cB{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1Z:ZΌ{k{ZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!BBB!!!!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŔcscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cJRJBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RJRsssssssssssssssscsB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BcRcssssssssskZk:::BBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŌޔZ:{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1Rν{{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!BBB!!!!!!111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRssk{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJc{cRcRBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZRZssssssssssssssZJZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BZRZksssssskB:BBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR֔΄{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1sJŭsΌkZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111)))!!!)))BBB)))!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBB:1)1)1)RZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cRkRBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kZkssssssssssss{k{BBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BZRZksssssJBJBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkRs{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1cBkޔޔsckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR1:1kcRc111RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZkZc{cRcRBBBBBBBBBBBBBBBBBBBBBBBBJJJc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::scssssssssssssZRZ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BZJZksssZRZ:::BBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRksZc{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1Z:ZΌ{k{ZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR))){{RJR1:1RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJZJZkZc{cZsZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::{k{sssssssss{k{BBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::B:BRJRks{k{:::BBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{cZ{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1Rν{{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ111{{{JBJ::1RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZc{cc{cc{cZkZJZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZc{cc{cc{cc{cc{cc{cc{cc{cRcRBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ksssssssscRc::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::RJR{k{BBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRksJ{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1sJŭsΌkZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBJBRJR{{{{B:B:B:RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJZJJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssssss{k{JBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::1)1BBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{cB{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1cBkޔޔsckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR::1{c{{{{{{:1:BJBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssssscZcB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRޔZ:{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1Z:ZΌ{k{ZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBRZRZkZZsZZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZZkZRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR))){{{{{{{111BJBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBBBJRJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssskJBJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRΌ΄{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1{R1Rν{{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZkZZsZRZRJRJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJRJRcRZsZRcRBJBBBBBBBBBBBBBBBBBBBBBBJRJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJ1)){{{{{{{{)))JRBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBBBBJRJc{cJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJssskZkB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkRŵ{{R1{R1{R1{R1{R1{R1{R1{R1{R1sJŭsΌkZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZZkZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZRZRBBBBBBBBBBBBBBBBBBJJJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJBB:JBJ{{{{{{{{s)))BJBJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBRZRc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJskJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRksZk{R1{R1{R1{R1{R1cBkޔޔsckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZsZJZJBBBBBBBBBBBBBBBBBBBJBJRJRcRRcRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRkRRcRRZRJRJBBBBBBBBBBBBBBBBBBBBBRkRRkRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))kZksssssssssk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJJJBBBBBBBBBBBBBBBRkRZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkckB:B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{cZ{R1Z:ZΌ札{ksZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBZsZJRJBBBBBBBBBBBBBBBRZRZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{ccscRkRJRJBBBBBBBBBBBBBBBRcRZkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kssssssssssk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRcRBBBBBBBBBBBBBBBBBBZsZRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRk{cRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJRJBBBBBBBBBBBBJZJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBJBBBBBBBBBBBBBRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!ssssssssssss{c{!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRsΌkZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRJZJBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJRJBBBBBBBBBBBBZkZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::1:ssssssssssssssZs!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJJJBBBBBBBBBBBBBBBBBBRcRZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRޔsckRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBZkZBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJRJBBBBBBBBBBJBZkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))cJcsssssssssssssskRk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBBBBBBBBBBBBBZsZRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRsksZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRkRJRJBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJJJBBBBBBBBBRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kssssssssssssssscJc!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{ccscJRJBBBBBBBBBBBBBBBBBBBBBRZRc{cJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZBBBBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cZsZJRJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRcRZsZc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBJRJRkRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!sssssssssssssssssRBR)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJJJBBBBBBBBBBBBBBBBBBBBBBJBZsZRkRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBBBBZsZc{cc{cc{cc{cc{ccscJZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRkRc{cc{cc{cc{cc{cc{cRcRBBBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::1)1ssssssssssssssssssJ:J)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBRkRcscBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRJZJBBBBBBJRJc{cc{cc{cc{cc{cZsZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{ccscBBBBBBBBBZkZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111RJRsssssssssssssssssssB1B)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRc{cRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRkRJRJBBBBBBRkRc{cc{cc{cc{cc{cRZRBBBBBBBBBBBBBBBBJBRZRZkZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZkZJZJBBBBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cJRJBBBBBBRcRJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB))){c{ssssssssssssssssssss:1:111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZRcJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJcJc{cZsZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZJJJBBBBBBZsZc{cc{cc{cc{cZsZBBBBBBBBBBBBBBBJZJZsZJZJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRcRZsZJJJBBBBBBBBBBBBJRJc{cc{cc{cc{cc{cRcRBBBBBBRZRJZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!ssssssssssssssssssssss1)1111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZZkZRcRJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZsZZsZJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBJRJc{cc{cc{cc{cc{cRZRBBBBBBBBBBBBRcRRkRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZsZJJJBBBBBBBBBBBBZsZc{cc{cc{cc{cZsZBBBBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)!)sssssssssssssssssssssss)!)111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJZJRcJRcJJcJJZJJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJcJZsZZsZJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBJRJc{cc{cc{cc{cc{cJRJBBBBBBBBBJRJRkRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBZsZBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cBBBBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111JBJssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRkRc{cZsZJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cJJJBBBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBBBBRZRc{cc{cc{cc{cc{cBJBBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))sZsssssssssssssssssssssssssk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJZsZc{cZkZJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBJRJRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZBBBBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!ssssssssssssssssssssssssssk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJRkRZ{ZZsZRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBRkRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRJRJBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!sssssssssssssssssssssssssss{c{!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJRcRZsZc{cZ{ZRkRJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJRZRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111B1Bssssssssssssssssssssssssssss{c{!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRZRRcRRkRRkRRkRRkRRkRRkRRkRRkRRkRZsZZsZc{cc{cZsZRkRJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))kRkssssssssssssssssssssssssssssskZk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZ{ZZsZZkZRcRJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)ksssssssssssssssssssssssssssssscRc!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBRBJZBJZBJZBJZBJZBJZBJZBJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!ssssssssssssssssssssssssssssssssZJZ)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::1)1sssssssssssssssssssssssssssssssssRBR)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))ZJZssssssssssssssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB))){c{ssssssssssssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!sssssssssssssssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))sssssssssssssssssssssssssssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111RBRsssssssssssssssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))sZssssssssssssssssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!ssssssssssssssssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)!)sssssssssssssssssssssssssssssssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBBBBBBBBBBZZZkkkkkkZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkksssssssssssssssssssssssssssssssssk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBBBBBBBZZZcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkνΥsssssssssssssssssssssssssssssss{c{)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJccccccJJJJJJBBBZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBBBBRRRŽkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ潭{ssssssssssssssssssssssssssssskZk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRccckkkcccZZZJJJBBBRZJRcRRcRRcRRcRRcRRcRRcRZkZckcZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckckskckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssJJJZkZBJBBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRRZRBBBsssŵZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޭsssssssssssssssssssssssssssscRc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZssssssZZZRZRRcRRcRRcRRcRRcRZcRs{sckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR{ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֵckcJJJBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBRZRZcZŭsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZュsssssssssssssssssssssssssssZJZ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::111111)))))))))!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZsssŵs{sckcRcRRcRRcRckZ{{{ŭ{{ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{sν{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRZRs{kkskRZJRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֽRRRBBBRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBBBBBBBJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRZZZJJJBBBBBBJRJRcRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBZkZεBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkŵŔssssssssssssssssssssssssssJBJ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::111111))))))))))!)!!!!!!!!!)!)1)1:1:J:JZJZcRcsZs{c{:1:)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRkkkŭs{skkcksc{޽ckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRֽckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֔RZJRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽JJJRZRc{cc{cc{cc{cc{cBJBBBBBBBZsZBBBBBBBBBBBBJJJccc{{{cccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJssscccBBBJZJRZRBBBBBBRZRc{cc{cc{cc{cc{cJJJBBBεcccBBBBBBBBBBBBBBBBBBBBBJJJŵŔsssssssssssssssssssssssssB1B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::111111))))))))))!)!!!!!!!!!)!)1)1:1:J:JZJZcRcsZs{c{kssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssֽΥs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcΥs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZέ{{ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZ޽RZJRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޵sssRcRc{cc{cc{cc{cc{cBJBBBBBBBZkZBJBBBBBBBBBBccccccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssŵcccRZRJZJBBBBBBRZRc{cc{cc{cc{cc{cJJJsssŽŜBBBBBBBBBBBBBBBBBBBBBssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!!!!!!!!!!)!)1)1:1:J:JZJZcRcsZs{c{kssssssssssssssssssssss1)1111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBRcRRcRJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBksk{{{ckcBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkk{{{{{{kkkRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ{{{֭{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskֵRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskŽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZ֜ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZŽ޵RZJRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֜ZcZc{cc{cc{cc{cc{cBJBBBBBBBRZRJZJBBBBBBJJJŔRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֵcscBJBBBBBBBRZRc{cc{cc{cc{cc{cZcZŭεBBBBBBBBBBBBBBBBBBBBB{{{ֽ{{{kkksssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111)!)kssssssssssssssssssssssssssssssssssZs)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJֽŽkscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ{{ŭ{{JRJBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJεRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssŵZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{ŵ޵ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{s޽RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcνŽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRތRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR֥RZJRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޵kskcscc{cc{cc{cc{cBJBBBBBBBBJBZkZBBBBBBRRRޭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssŜs{sBBBBBBBBBRZRc{cc{cc{cc{cc{c{{ν{{{BBBBBBBBBJJJ{{{ΜBBBBBBBBBBBBBBBBBBBBBJJJֽsssBBBBBBBBBBBB{ssssssssssssssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!kssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJέcscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{sŵ{JRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkֽZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssεkkkcccsss޽ckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{޽RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRŽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskŽ{{RcRRcRs{s{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{sRZJRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽{{cscc{cc{cc{cc{cJRJBBBBBBBBBRcRRZRBBBRRR޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{֭sssBBBBBBBBBRcRc{cc{cc{cc{ckkνcccBBBBBBBBBBBBBBBBBBRRRεkkkBBBBBBBBBBBBBBBBBBBBBBBBcccֽ{{{BBBBBBBBBBBBBBBBBBBBBνΔssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!{c{ssssssssssssssssssssssssssssssssssZJZ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkkΜJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZRŭkskBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRֽsssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccέ{{{ZZZBBBBBBBBBZZZ{{{ŔckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR޵RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZֽZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZ޽RZJRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRŌcscc{cc{cc{cc{cJZJBBBBBBBBBBBBZkZJZJZZZ޵sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{޵{{{BBBBBBBBBZkZc{cc{cc{cc{cֽcccBBBBBBBBBBBBBBBBBBBBBBBBBBBsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJcccBBBBBBBBBBBBBBBBBBBBBRRRsssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!kRksssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ֽZcZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcZֽBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֥BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֵRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRΥsssRRRBBBBBBBBBBBBBBBRRRkkkŔkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRֵRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcֽZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֌RZRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{Δcscc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBZkZs{sޭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkֵ{{{BBBBBBBJBZsZc{cc{cc{cc{cťsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkk{{{ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJcccsssΔsssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)ZJZsssssssssssssssssssssssssssssssssssB:B111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֽŽRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckcŔBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZŽֽRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccέkkkRRRBBBBBBBBBBBBBBBBBBBBBJJJsskΜkskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRέ{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcŽŵ{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBބBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc֜ckcc{cc{cc{cc{cc{cJRJBBBBBBBBBBBBJJJ{{{֥kskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{s֭sssBBBBBBRkRc{cc{cc{cc{ckkֽBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRkkk{{{{sssssssssssssssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))J:Jsssssssssssssssssssssssssssssssssssc!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssֽŽ֥BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcRŭ{{kskŌBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֭JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRֽ{{{sss޽RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֵsssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRsskΥsskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRΥs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZŽŽ{ZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{s{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR޽RZJRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBތBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֜ZcZc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBJJJ{{{֭kkkJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJJRJ{{{ΜcccBBBJRJc{cc{cc{cc{cc{cssΥcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{sssssssssssssssssssk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1111)1ssssssssssssssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֔JRBBRBBRBRZJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJŌBRBBRBBRBBRBRcRֽs{s:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJֵRRRJJJBBBJJJZZZ޽JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRŌZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJZcRsssΥs{kRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZΥs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRν{{ZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֭RZJRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJssscccBBBBBBBBBBBBBBBBBBBBBccc֥RRRZsZc{cc{cc{cc{cc{cZsZBJBBBBBBBJJJ޵sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޽RRRJRJZsZc{cc{cc{cc{cc{c{{ŜJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssssssssssssssssss{c{)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111)!)sssssssssssssssssssssssssssssssssssskZk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BRBBRBBRBBRBBRBBRBkskŽBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBֽs{sBRBBRBBRBBRBBRBBRBJZJֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֵ{{{JJJBBBBBBBBBBBBBBBRRR֭cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޵sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRZcRs{s֥s{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZ֭{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{sŭckcRcRRcRRcRRcRRcRckZckZckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֌ZcRRcRRcRZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZ֔RZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޜBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJεZZZBBBBBBBBBBBBJJJ֥RRRRcRc{cc{cc{cc{cc{cc{ccscRcRBBBJJJŔZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkֵZkZc{cc{cc{cc{cc{cc{cc{c{{޽BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ֔{ssssssssssssssssssskRk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!kssssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssscccBJBBRBBRBBRBBRBBRBBRBBRBJZJk{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckcֽkskBRBBRBBRBBRBBRBBRBBRBBRBJZJΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{޵RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֵsssJJJBBBBBBBBBBBBBBBBBBBBBRRRΔRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssޭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRZcRs{s֭s{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZ޽ZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZŵŽŵckcRcRRcRRcRRcRRcRRcRRcRRcRRcRs{s޽ŽckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkscքRZJRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssŭ{{{JJJBBBBBBccc֥RRRBBBZkZc{cc{cc{cc{cc{cc{cc{cc{ccsc޵{{ckcRkRRkRRkRRkRRkRRkRRkRRkRRkRk{kť{{c{cc{cc{cc{cc{cc{cc{cRZRֵBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBε{ssssssssssssssssssssscRc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!kssssssssssssssssssssssssssssssssssssRBR1)1BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc:::BJBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJs{k{{RcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBֽckcBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZJֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޭJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{֭sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޵cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֥ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRckZ֭{{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZέRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{νŽ{{RcRRcRRcRRcRRcRRcRRcRRcR޵ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{k{sRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRֽ{{{sss֥RRRBBBBBBZsZc{cc{cc{cc{cc{cc{cc{ck{kΥssc{cc{cc{cc{cc{cc{cc{cc{ck{kֵk{kc{cc{cc{cc{cc{cc{cRcRBBBֵBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŭ{{{kkkRRRBBBBBBBBBBBB:::)))ssssssssssssssssssssssssZJZ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!sZsssssssssssssssssssssssssssssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsss:::BBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJŽkskBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcRkkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֥BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֥ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRs{s֭{{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZ޽{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkscRcRRcRRcRRcRRcRRcRZcR޵ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{ss{kRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBތBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccŽ֥RRRBBBBBBBJBZsZc{cc{cc{cc{cc{cc{ck{kŜssc{cc{cc{cc{cc{cc{ck{kť{{c{cc{cc{cc{cc{cc{cRcRBBBJJJ޽BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ΄RRRBBBBBBBBBBBBBBBBBBBBBkkkRRR)))cJcsssssssssssssssssssssssJ:J111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!cRcsssssssssssssssssssssssssssssssssssss:1:111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk֜:::BBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckcΌBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBs{sΌ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRΔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkΔRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֭cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRssk֭{{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRֽ{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskΜRcRRcRRcRRcRRcRRcRs{sŽZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{skskRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBބBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccν֥RRRBBBBBBBBBBBBRkRc{cc{cc{cc{cc{ck{k޽{{k{kc{cc{cc{ck{k֭c{cc{cc{cc{cc{ccscJZJBBBBBBJJJťZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ޜBBBBBBBBBBBBBBBBBBBBBkkk!!!kssssssssssssssssssssssB1B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))RBRsssssssssssssssssssssssssssssssssssss{c{!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBs{sRZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB֜:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޵cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֥RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZޭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRs{s֭{{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRֽ{ZcRRcRRcRRcRRcRRcRRcRRcRRcRckc{{{{ZcZRcRRcRRcRRcRRcRRcRŽZkZRcRRcRRcRRcRRcR{s{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckc{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ckcRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֽcccJJJJJJ{{{֥ckcBBBBBBBBBBBBBBBJRJZkZc{cc{cc{ck{kŭssss{{ֵssc{cc{cc{cZsZRcRBJBBBBBBBBBBJJJֵJJJBBBBBBBBBBBBJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBքBBBBBBBBBBBBsssRRR:1:ssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{޽BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB֥:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޵RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֥RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRs{s֭{{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRֽZcZRcRRcRRcRRcRRcRZkZckcRcRRcRRcRRcRRcRŽֽ{{s{ss{s{{Ž{sRcRRcRRcRRcRRcRZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ckZRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֵBBBBBBBBBBBBBBBccc֥ZcZZsZBJBBBBBBBBBBBBBBBBBJBJZJRkRkskֵֽ{{ZsZZkZRcRJRJBBBBBBBBBBBBBBBBBBZcZŵ{{{ssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֭kkk)))sZssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111)))sssssssssssssssssssssssssssssssssssssscRc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{ZcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB֜:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֥RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcR{{֭{{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRֽckZRcRRcRRcRckcεRcRRcRRcRRcRRcRŽεZcRRcRRcRRcRRcRRcRRcRZcR{{ΌRcRRcRRcRRcRRcRބ{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ckZRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ֵsssBBBBBBBBBBBBBBBBBBBBBZZZ֥RRRJRJZsZRZRBBBBBBBBBBBBBBBBBBBBBRRRֵkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBRkRc{cνŵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccckkk!!!sssssssssssssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)!)sssssssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{֔:::BBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBkskΔBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcZΌ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZΔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZΜRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޵sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRZcZ֥s{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ŭkscRcRkskťZcZRcRRcRRcRRcRεkscRcRRcRRcRRcRRcRRcRRcRRcRkskΔRcRRcRRcRRcRRcRs{kckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ckZRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֵkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ֥RRRBBBBBBRcRZsZRZRJJJBBBBBBBBBBBBRRRεέkkkBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRZsZJZJRRRεBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssZZZ1)1RBRssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!kssssssssssssssssssssssssssssssssssssssJ:J1)1BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZccc:::BBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJs{sBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޵sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRZkZΥsskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ŵťZkZRcRRcRRcRRcRkskŜZcRRcRRcRRcRRcRRcRRcRRcRRcR֜RcRRcRRcRRcRRcRZkZ޵ZcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkֵkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc֥RRRBBBBBBBBBBJBJZJZkZZsZZsZZkZRkRckcΥ{{ֽk{kZkZRkRRkRRkRRkRRkRZkZZsZZsZRkRJRJBBBBBBJJJέJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssBBBBBB!!!ksssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!{c{ssssssssssssssssssssssssssssssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ:::BJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBֽckcBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֭kkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޵cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRZcZΜkskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{sνֽRcRRcRRcRRcRRcRRcRŽνRcRRcRRcRRcRRcRRcRRcRRcRΔRcRRcRRcRRcRRcRRcRޭRcRRcRRcRRcRRcRRcRRcRRcRs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޵BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss֥JJJBBBBBBBBBBBBBBBBBBBBBBJBJJJJRJZcZ޽ZcZZZZkskνsssZZZJRJJRJJRJJRJJRJJRJJRJJJJBJBBBBBBBBBBBBBBBBJJJεZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkcccBBBBBBBBB:::1)1sssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!kRksssssssssssssssssssssssssssssssssssssss1)1111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZBJBBRBBRBBRBBRBBRBBRBBRBBRB{{νŽBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBk{kֽZkZBRBBRBBRBBRBBRBBRBBRBBRBJRJń:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc֭kkkJJJBBBBBBBBBBBBBBBBBBBBBRRRŔRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRޭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRZcRŔkkcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskŭ{sRcRRcRRcRRcRRcRRcR{{sεRcRRcRRcRRcRRcRRcR{{ΌRcRRcRRcRRcRRcRRcR{{ޭRcRRcRRcRRcRRcRRcRs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{kscRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ޔBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֜BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֥JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޵kkkBBBBBBJJJccc{{{kkkRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJťJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssBBBBBBBBBBBBBBBBBB)))cRcsssssssssssssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))RBRssssssssssssssssssssssssssssssssssssssssZs!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkskBRBBRBBRBBRBBRBBRBJZJs{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBֵZcZBRBBRBBRBBRBBRBBRBJZJ֭JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֭kkkJJJBBBBBBBBBBBBBBBRRR֭cccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{֜ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRs{s޽ZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZεRcRRcRRcRRcRRcRRcRRcRZcRŽεZcRRcRRcRRcRksk{{RcRRcRRcRRcRRcRRcRRcRŽޭZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{kscRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk֥JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRޭcccBBBBBBBBBBBBRRRcccccccccZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŭsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBB:::!!!sssssssssssssssssc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))B:Bssssssssssssssssssssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkքBRBBRBBRBBRBZkZքBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkZֵckcBJBBRBBRBBRBZcZֽckc:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֭sssJJJBBBBBBJJJZZZֵsssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccńRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRksk֭{{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŵŵZkZRcRRcRRcRRcRRcRRcRRcRRcRkskνs{sksc{ZkZRcRRcRRcRRcRRcRRcRRcR{sŌ{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{kscRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ֜JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRޭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBJBJJJJJJνs{sJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJZcZ޽sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111B1BsssssssssssssssssZs)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1111)1ssssssssssssssssssssssssssssssssssssssssZJZ)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֵs{skskֵJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{Žckcckcֽs{sBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkֵkkkkkk޵RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRΥcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRZcR{{ŵkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{sνs{sckcs{kνZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŽΜRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{skscRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΜBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss֜JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRޭcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRZkZcscc{cc{cc{cc{cŵssss{{{{c{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c{{ŽcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!{c{ssssssssssssssskRk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)!)sssssssssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֵRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJB{{ֽ{{BRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkνֵRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ{{{kkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRckc{sskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR{{ZcZRcRRcRRcRZcR{{sŽ{sZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRνckZRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRs{skskRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRZsZc{cZsZRcRJZJJRJJJJBJBBJBs{sŭJRJBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBJJJJRJJZJRcRZsZc{cZsZRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssscRc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!kssssssssssssssssssssssssssssssssssssssssJ:J111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ΥJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJB{{sŽֽs{sBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkֵRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRZcRksckskckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZs{ss{sckcRcRRcRRcRRcRRcRRcRRcRZkZ{{{{ZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRεkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskk{kRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss֭RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΔJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޵sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRZsZZsZRcRBJBBBBBBBBBBBBBBBBBBBBBBcccťBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRcRZsZZsZJZJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))RBRssssssssssssssRBR111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!{c{ssssssssssssssssssssssssssssssssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ccc{{BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcZεkskBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZέsssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRckcckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRŜZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckck{kRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΥRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΌJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBZkZZsZRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJνBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cZkZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!ksssssssssssssJ:J111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!sZssssssssssssssssssssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJΥRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRB{{ťRZRBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB΄BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssֽcccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŽ{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR歭kskŽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZkskRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkތBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΥRRRBBBBBBBBBBBBBBBBBBBBBJJJΌJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZsZZsZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJJZJ{{{{RkRRcRRcRRcRRcRRcRRcRRcRRcRRcRJZJ:B:BRBRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJZJJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZsZZsZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1111)1sssssssssssss:1::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)ZJZssssssssssssssssssssssssssssssssssssssssskZk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJֵcscBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJεs{sBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{ŭ{{{RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcνZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZs{kRcRRcRs{kRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZRZRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJťRRRBBBBBBBBBBBBBBBRRRńJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޽RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZsZRkRBBBBBBBBBBBBBBBBBBBBBBBBBJBRZRZsZc{cc{cc{cc{css{{k{kc{cc{cc{cc{cc{cc{cc{cc{cZsZJZJ1:1:::cZcJJJ)1):J:RkRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZRZRBJBBBBBBBBBBBBBBBBBBBBBBBBBZkZZsZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kRkssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))J:Jssssssssssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBRcRέs{sBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZJ{{JRJBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB΄BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRR{{{ZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskŽkskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRksc֌RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccťcccBBBBBBBBBccc޽sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{ńRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZsZRcRBBBBBBBBBBBBBBBBBBBBBBJBZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBJB)1)RJRsscs:::111BRBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cRkRBJBBBBBBBBBBBBBBBBBBBBBBRkRZsZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssssssssssssssssssssRBR)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::::::::BBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBńBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJRRRJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskk{kRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZŵZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssֵ޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk޽JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRkRBBBBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJcJ1:11:1scs{ZRZ)1):B:JcJc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZRcRBBBBBBBBBBBBBBBBBBBBBZkZZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111B:Bsssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111)!)ssssssssssssssssssssssssssssssssssssssssssk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssscccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{޵ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޽{{{JJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRZsZBBBBBBBBBBBBBBBBBBBJBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBJB)1)RJRskJBJ)1)BJBZkZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBJBBBBBBBBBBBBBBBBBBBZsZRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!{c{ssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!kssssssssssssssssssssssssssssssssssssssssssB1B111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֥RZJRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޭBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssŭ֥RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZsZBJBBBBBBBBBBBBBBBBJRJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJcJ1:1111kckkck:::1:1JZJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJRJBBBBBBBBBBBBBBBJJJc{cBJBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)!)ssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!kssssssssssssssssssssssssssssssssssssssssss{c{!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޽kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkscRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRksk{{RZRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkksssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZֵZZZJJJJJJ{{{ΌJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRŜZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZRcRBBBBBBBBBBBBBBBJRJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBJB)1)JJJs{ZRZ)1):B:RkRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJJJBBBBBBBBBBBBBBBRcRZkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))ZJZsssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!sZssssssssssssssssssssssssssssssssssssssssssssZs!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ޵ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRֵRZRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssֽkkkJJJBBBBBBBBBJJJsss޵kkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkťkkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZsZBJBBBBBBBBBBBBBBJBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJcJ1:1111kZk{k{JBJ111BRBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBBBBBJBc{cJJJBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ksssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!cRcssssssssssssssssssssssssssssssssssssssskZkJ:J)!)!!!)))111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֭BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRŔRcRRZRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{ŽJJJBBBBBBBBBBBBBBBBBBJJJcccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{kkkRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZRkRBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cc{cZsZBRB)1)JBJk{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{cRc1)1)1)BJBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBZkZRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB1111)1sssskkZkcJcRBR!!!111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))RBRssssssssssssssssssssssssssssssssssskkRkB:B)!)!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRZRRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkk{{{sssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRZZZZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJRJBBBBBBBBBBBBRZRc{cc{cc{cc{cc{cc{cc{cJcJ1:1111kZks{sssssssssssssssssssssssssssssssssssssskJ:J!!!111JcJc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJZJBBBBBBBBBBBBJRJZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksZsB1B)!1B1JR:cZJscJsZBkJ:Z)!1!!!))):::BBBBBBBBBBBBBBBBBB111B1BsssssssssssssssssssssssssssssssskkRkB1B!!!!!!)))111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkscZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJc{cBBBBBBBBBBBBBBBZsZc{cc{cc{cc{cZsZBRB)1)JBJs{sssssssssssssssssssssssssssssssssssssssssssssZs:1:)))BRBZsZc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBBJBc{cJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!B1JkR{Z{Z{Z{Z{Z{Z{Z{Z{ZRBk!!)))):::BBBBBBBBB111)))ssssssssssssssssssssssssssssskcRc:1:!!!)!))))111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJkkkZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{s{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRZkZBBBBBBBBBBBBRcRc{cc{cc{cRcR:B:111kZk{{sssssssssssssssssssssssssssssssssssssssssssssssscRc1111:1JcJZsZc{cc{cc{cc{cc{cRZRBBBBBBBBBBBBZsZRZRBBBBBBBBBBBBBBBBBBBBBBBBBBB))))!1kR{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZRBk!!:::BBB111!!!sssssssssssssssssssssssssskcJc:1:!!!)!)))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZRcRBBBBBBBBBBBBZsZZsZBRB)1)JBJk{sssssssss{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{sssssssss{sRJR)1):J:RkRc{cc{cc{cZsZBBBBBBBBBBBBZkZRkRBBBBBBBBBBBBBBBBBBBBBBBB!!)B1R{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZkR!!)111!!!kssssssssssssssssssssss{c{ZJZ1)1!!!)!)))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRZRBBBBBBBBBBJB:B:111cZc{{sssssss{{{{sssssss{scs:::111BRBZsZc{cJRJBBBBBBBBBRcRZkZBBBBBBBBBBBBBBBBBBBBB!!)R:c{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z!)kRksssssssssssssssssss{c{ZJZ1)1!!!)!)1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRZR:::)))!!!B:Bk{ssssss{{{{ssssssssssssssssssssssssssss{{{{ssssss{{cRc111:B:BRBBBBBBBBBBRcRZsZBBBBBBBBBBBBBBBBBB))1:1B{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZsR)!)sssssssssssssss{c{RBR)))!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRkR!!!!!!ZJZs{ssssss{{ssssssssssssssssssssssssssssssssss{{ssssss{sJBJ!!!))):::RZRZsZBBBBBBBBBBBBBBB:::!!){Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZcJ{J:JsssssssssssZsRBR)))!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZ:::!!!cJcs{sssss{{{ssssssssssssssssssssssssssssssssssss{{{sssss{skRk1)1)))BZB:::BBBBBBBBBBBB!!)cJ{{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z:1BkssssssZsJBJ)!)!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJ:::))))!)scssssss{{ssssssssssssssssssssssssssssssssssssssss{{sssss{sssZRZ!!!)))111BBB:::)!){Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZkRB1BskZkJ:J)!)!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBBJB:B::::ksssss{{ssssssssssssssssssssssssssssssssssssssss{{sssss{ss{s{c{:1:!!!!!!ZBs{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z!)!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cRkR1:1BBB{ssss{{ssssssssssssssssssssssssssssssssssssssssss{{ssss{ss{ssss)!1sZ{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZJ:Z111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cRcR)1)RJR{ssss{ssssssssssssssssssssssssssssssssssssssssssss{ssss{ss{ssss)!1{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZcJs)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cJZJ)1)cRcssss{ssssssssssssssssssssssssssssssssssssssssssss{ssss{ss{sssk1):{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZkR)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cZsZ:B:!!!kZks{{ssssssssssssssssssssssssssssssssssssssssssss{{sss{ss{sssk:1B{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkR:::))))!){c{{ssssssssssssssssssssssssssssssssssssssssssss{{sss{ss{ssscB1J{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZsZ!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBB:::)))BBBkssssssssssssssssssssssssssssssssssssssssssss{{sss{ss{ssss1):{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZsR!!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJRcR!!!J:Jsssssssssssssssssssssssssssssssssssssssssss{{sss{ss{ssss)!1{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZcJ{)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBB111!!ZJZsssssssssssssssssssssssssssssssssssssssss{{sss{ss{{c{ZJZ:1:!!!!!{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZB1R111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBB:::)))!!!kRksssssssssssssssssssssssssssssssssssssss{{sssskRkJ:J1)1)1))))))):::BBB))1RBk{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z!!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBB:::)))))){c{sssssssssssssssssssssssssssssssssssss{{ssskcRcBBB)1)))))))111JZJZsZBBBBBBBBBBBB:::)!1{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZcJ{!!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBB:::!!!:1:ksssssssssssssssssssssssssssssssssss{{sskscsRJR111)1):B:BZBRkRc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBB)!)cJ{{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z)!1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBB111!!!J:Jssssssssssssssssssssssssssssssssss{kZJZ1)1!!!)!):B:JcJZsZc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBB:::)!1{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZZJs)!1!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!ZJZsssssssssssssssssssssssssssskkRkB:B)!)!!!:B:1:1:::BBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBB1)1B1J{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZsR)!1sssZs:):!!!111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))!!!kRkssssssssssssssssssssss{c{ZJZ1)1!!!!!!)))111:::BJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBBBB)))J:Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZsZ)!1{c{sssskRBR!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::))))!){c{ssssssssssssssskkRkB:B)!)!!!)))111:::BBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBBBBBBB!!)B1J{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZkR)!1{c{sssssssssZs1)1!!!111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)!):1:ksssssssss{c{ZJZ1)1!!!)!))))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBBBBBBBBBB))1)!)kR{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{Z{ZR:c!{c{ssssssssssskRBR!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!J:JssskkRkB:B)!)!!!)))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!1)::)BkR{Z{Z{Z{Z{Z{Z{Z{Z{ZRBk!!))))111:1:sssssssssssssssZs1)1!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111!!!)!)!!!)!))))111:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBBBBBBB:::!!!{c{s{c{B1B1!1:1JR:cZBkcJsRBkB1R)!1!!!))):::BBBBBB)!)kZkssssssssssssssskRBR!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBBBBBBB)))cJcsssssk1)1))1))1111:::BBBBBBBBBBBBBBB:::!!!sssssssssssssssssskZk1)1!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBBBB111:1:ssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssskJBJ!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBBBBB:::!!!sssssss{c{)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZkssssssssssssssssssssskZk1)1!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBB:::!!!cssssssssZs)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssssssssssskJ:J!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBBBBB)!)cRcsssssssscRc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssskRk))))!)111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBBBBB111B1BsssssssssRBR111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksssssssssssssssssssssssssskJ:J!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBBBBB:::)!)ssssssssssB:B111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssssssssssssssssskRk)!)!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBB:::!!!kssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:sssssssssssssssssssssssssssssskJ:J!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBBBBB)!)kRksssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksssssssssssssssssssssssssssssssscRc)!))!)111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZBBB111B:Bssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!sssssssssssssssssssssssssssssssssscB:B!!!))):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZ:::)!)sssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:sssssssssssssssssssssssssssssssssssscRc)!))!)111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBJJJc{cBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZRZsZ!!!ksssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksssssssssssssssssssssssssssssssssssss{c{B:B!!!)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBJBc{cBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cBJBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBRZR1:1kRksssssssssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssssssssssssssssssssssssssss:1:111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBBBc{cJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJc{cBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBB:B:JJJsssssssssssssssZs)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBBBZsZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJBBB:::1)1sssssssssssssskRk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksssssssssssssssssssssssssssssssssssssssJ:J111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJBJBBJBBJBBJBBJBBJBBJBBJBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBBBRkRRcRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRkRRcRBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJ:::!!!sssssssssssssssZJZ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssssssssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBJZJZcZRZRJZJJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBBBJRJZsZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJRJBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cJRJ!!!kZk{ssssssssssssssJ:J111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:sssssssssssssssssssssssssssssssssssssssJ:J111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBs{sk{kJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBRZR{JZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJk{kZkZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBZkZRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRZkZBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{c1:1J:Js{ssssssssssssss:1::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZkssssssssssssssssssssssssssssssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBńJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJֵs{sJZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJŽZcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBJJJc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBJRJZsZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZsZJJJBBBBBBBBBBBBBBBZsZc{cc{cc{cc{cc{cc{cRcR)))ss{ssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!sssssssssssssssssssssssssssssssssssssssB:B111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBΥJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ֜RZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRZZZZZZRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRksks{sckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRZJRZJRZRRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBkskνBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBBJBc{cc{cc{cc{cc{cc{cc{cZsZBBBBBBBBBBBBBBBBBBRcRZsZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZsZRZRBBBBBBBBBBBBBBBBBBZsZc{cc{cc{cc{cc{cZsZ)1)kss{ssssssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssssssssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBέJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcZkkcZcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZR޵ZcZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBRRRcccsssssscccJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR{{ZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŽ{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRZJRZJksks{sZcZRZJRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBJRBέRZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBBBBZsZc{cc{cc{cc{cc{cc{cc{cJRJBBBBBBBBBBBBBBBBBBRkRZsZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZsZRcRBBBBBBBBBBBBBBBBBBJRJc{cc{cc{cc{cc{cc{c1:1{c{sss{ssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZkssssssssssssssssssssssssssssssssssssssB1B111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBΥBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJ{{ŽZcZBRBBRBBRBBRBBRBBRBBRBJRBJRJ{{{RZRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBkkc޽kskJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBRRRcccŽkkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR{sŵckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckcs{sRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJRZJs{sŵckcRZRRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBZcZεk{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBBBBBBBBBBBBRcRc{cZkZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJZkZc{cRZRBBBBBBBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cBRBRJR{sss{ssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssssssssssssssssssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZkZ{{BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJεJZJBRBBRBBRBBRBBRBZcZŜJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBs{s޽s{sJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBZZZ{{{ε{{{cccBBBBBBBBBBBBBBBBBBBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkscνZkZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRZJkskεckcRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBckcֽBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRZRBBBBBBBBBJZJc{cc{cc{cc{cc{cc{cc{cc{cBJBBBBBBBBBBBBBBBBBBBBBBJJJZkZc{cZsZRcRRZRJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJJZJRcRRcRZsZc{cZkZBJBBBBBBBBBBBBBBBBBBBBBBJRJc{cc{cc{cc{cc{cRcR:::{sss{sssssssssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssssssssssssssss:1:111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBֵBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{ŭs{sJRBBRBBRBs{s޽ckcJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ{{޽s{sJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBJJJkkkŵ{{{kkkZZZkkkssskkkBBBBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{εRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRքRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŽRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRZRεZcZRcRRcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBcscŌBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZRcRBBBBBBBBBBJBc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJZJRkRZkZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZsZZkZRcRJZJBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZc{cc{cc{cc{cZsZ)1){{sss{sssssssssssss{c{)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksssssssssssssssssssssssssssssssssssssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRckcBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJֽ΄JRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ޵kkkJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRRRkkkŵkkkBBBBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRťRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskޭRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZkskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJZcR޽ckcZcRRcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBkscŔBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRZkZBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cc{cc{cc{cRkRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{c1:1{k{ssss{ssssssssssssskZk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB΄BRBBRBBRBBRBBRBBRBBRBBRBBRBRcR֜JRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ޵ZcZJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcRsssֵJJJBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRŽ{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRZcZťkkkZcRRcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBckcŔBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZBBBBBBBBBBBBJJJc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZc{cc{cc{cc{cc{cBJBZRZ{sss{{ssssssssssssscRc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:sssssssssssssssssssssssssssssssssssss{c{)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRB֔BRBBRBBRBBRBBRBBRBBRBBRBRZRν֭JRJBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ֭RZRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRs{sŽΜcccBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRŽkskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRRcRεs{s{{ΥckcZcRRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBZkZֽŽBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBc{cJJJBBBBBBBBBBBBRkRc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZJRJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZc{cc{cc{cc{cc{cJcJ:::{ssss{{sssssssssssssRBR111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksssssssssssssssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{֥BRBBRBBRBBRBBRBBRBBRBJRJťZkZBRBBRBJRJ޵RZRBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ֥RZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZJkskֽ{{{sss{{{֭sssBBBRZJRcRRcRRcRRcRRcRRcRRcRRcRRcR{ŵs{kZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZJťZcZRZJRZRRZJRZRŜccZRcRRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBZcRֽBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRcRBBBBBBBBBBBBBJBZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZRcRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRcRZsZc{cc{cc{cc{cc{cc{cZsZ)1){{ssss{ssssssssssssssB:B111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!sssssssssssssssssssssssssssssssssssss{c{!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZR֭BJBBRBBRBBRBBRBBRBBRBŔJRJBRBBRBBRBBRBBRBksk޵ZcZBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJޭRcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBckcεkkkRRRJJJBBBJJJZZZ{{{޽BBBRZJRcRRcRRcRRcRRcRRcRRcRRcRkskέkskZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZR{{ŔRZJRZJRcRRcRRcRRZRRZJ޽ZcZRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBRcRֽ{sBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZBBBBBBBBBBBBBBBJRJc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZ1:1k{ssss{{ssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:sssssssssssssssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBBRBBRBBRBRZJRZJBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJֵBJBBRBBRBBRBBRBBRBZcRŌBRBBRBBRBBRBBRBBRBBRBBRBksk޽ckcJRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ޽kskJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRέ{{{ZZZBBBBBBBBBBBBBBBBBBRRR{{{޽RRRRZJRcRRcRRcRRcRRcRRcRRcRZcRֽ{{ss{ss{s{{ckcRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR޽RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŔRZJRZRRcRRcRRcRRcRRcRRZRRZR֭ckcRcRRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBRZJŽεk{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZJZJBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c:J:cRc{sssss{{ssssssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZkssssssssssssssssssssssssssssssssssssscs)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBBRBRZRŽε{{BRBBRBBRBBRBBRBBRBBRBckcֽBJBBRBBRBBRBBRBBRBńBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBksk޽kskJRBBRBBRBBRBBRBBRBBRBBRBBRBJRJΜRZRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBkkcέsssRRRBBBBBBBBBBBBBBBBBBBBBBBBRRRŔZZZRZJRcRRcRRcRRcRRcRRcRRcRs{kŵŽŽZcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRŽޭRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{ΔRZJRZRRcRRcRRcRRcRRcRRcRRcRRcRRZR޽{{ZcZRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBJZJεk{kBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRZsZBBBBBBBBBBBBBBBBBBRcRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJcJ:::{sssss{{sssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!sssssssssssssssssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RZRεckcBRBBRBBRBBRBBRBֽBJBBRBBRBBRBBRBJRBŌBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{{޽kskBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ޵{{{JRJBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBRRJ{{{֭sssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkŜcccRZJRcRRcRRcRRcRRcRRcRRcRνRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR֜RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR{{RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRΜRZJRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRΜckZRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBRZJŽνssBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZsZRcRBBBBBBBBBBBBBBBBBBRZRc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZkZ)1){{ssssss{sssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:sssssssssssssssssssssssssssssssssssssZs)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::JJJΔJZJBRBBRBkskֽBJBBRBBRBBRBBRBckcΜBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB޽kskJRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ֭kkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR޵{{{ZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ{{{ΥcccRZJRcRRcRRcRRcRRcRRcRkscεs{kRcRRcRRcRRcRRcRRcRRcRRcRRcRZcR֜RcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRkskRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRֽRZRRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZRZcZޭckcRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBBRBZcZֽBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJc{cJRJBBBBBBBBBBBBBBBBBBJRJZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZ)1)k{ssssss{{ssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZkssssssssssssssssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZŔ{ֽBJBBRBBRBBRBBRBs{s޽ZcZBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZRs{sJRBBRBBRBBRBBRBBRBBRBBRBBRBJRJέkkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZΜZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccΥkkkRZJRcRRcRRcRRcRRcRRcR{{νŜRcRRcRRcRRcRRcRRcRRcRRcRRcRZcZޭRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRckZRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRZkZ֌RZJRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRZR޵kskRcRRcRJRBBRBBRBBRBBRBBRBBRBBRBJRB{{ŜBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRZsZJRJBBBBBBBBBBBBBBBBBBBBBRcRZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{c:J:cZc{{ssssss{{ssssssssssssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!sssssssssssssssssssssssssssssssssssskZk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssֽBJBBRBBRBBRBBRBֵBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBs{sJRBBRBBRBBRBBRBBRBBRBBRBBRBJRJέsssJJJBBBBBBBBBBBBBBBBBBBBBBBBRRRccckkkRRRBBBBBBBBBBBBBBBBBBZZZŌRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR֭kkkBBBBJBBJBBJBBJBBJBBJBŭ{{{{έJRJBJBBJBBJBBJBBJBBJBBJBBJBJJJŽZcZBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBRRJ{{{BJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBRZRkkkBBBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBBJBkkk޵kkkJJJBJBBRBBRBBRBBRBBRBBRBBRBJZJs{sεZkZBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRcscJRJBBBBBBBBBBBBBBBBBBBBBBJBRcRZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cJZJ:::{sssssss{{ssssssssssssssssssZs)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssֽBJBBRBBRBBRBBRB{{޽JRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBs{sJRBBRBBRBBRBBRBBRBBRBBRBBRBJRJֵ{{{JJJBBBBBBBBBBBBBBBJJJZZZZZZBBBBBBBBBBBBBBBZZZΔZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJ֭sssBBBBBBBBBBBBBBBBBBBBBֽJJJBBBBBBBBBBBBBBBJJJcccεZZZBBBBBBBBBBBBBBBBBBBBBBBBJJJֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJք:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޵cccBBBBBBBRBBRBBRBBRBBRBBRBZcR{{ŜBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRcRc{cRZRBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJZJRcRZkZZsZc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cc{cZsZZkZRcRJZJBBB!!!sssssss{{{{ssssssssssssssssskRk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZkssssssssssssssssssssssssssssssssssskRk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc֭ZkZBRBBRBs{sֽBJBBRBBRBBRBBRBs{ss{sBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJs{sJRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ{{ֵRRRBBBBBBBBBJJJccc޵sssJJJBBBBBBBBBBBBZZZ֭kkkJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc֭sssBBBBBBBBBBBBBBBBBBBBB{{{ֽBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{ֽkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBֽJJJ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJޭZZZBBBBBBBRBBRBBRBBRBJZJckcνkskBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRZRZsZZkZBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!{c{ssssss{{sssssssssssssssssssZJZ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::!!!ssssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌBRBBRBBRBBRBBRBRcRֽBJBBRBBRBBRBBRBRcRŽֵRZRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRB޽ŽkskJRBBRBBRBBRBBRBBRBBRBBRBBRBJRBs{sֽZZZJJJJJJkkkńJJJBBBBBBBBBBBBRRRŔcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ֭{{{BBBBBBBBBBBBBBBBBBBBBkkkťcccBBBBBBBBBBBBBBBBBBBBBBBBBBBֽsssBBBBBBBBBBBBBBBBBBBBBBBBBBBֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֥:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΔRRRBBBBBBBRBBRBBRBRcRsskΜBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZkZc{cRcRBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))ZJZsssss{{ssssssssssssssssssssJ:J111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ssssssssssssssssssssssssssssssssssscRc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{sBRBBRBBRBBRBBRBBRBBRBRZJֽBJBBRBBRBBRBBRBBJBΥJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{޽kskBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBksk޽޽sssJJJBBBBBBBBBBBBJJJ{{{ֵZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{ֵ{{{BBBBBBBBBBBBBBBBBBBBBJJJֽRRRBBBBBBBBBBBBBBBBBBBBBBBBֽsssBBBBBBBBBBBBBBBBBBBBBBBBBBBֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBΌ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss޽{{{JJJBBBBBBBRBJRBckZ{{sεBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJZJZsZc{cZkZRZRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111:1:ss{{{{{sssssssssssssssssssss:1::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)kZksssssssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsskBRBBRBBRBBRBBRBBRBBRBBRBBRBRZJֽBJBBRBBRBBRBBRBBRB{{ŜJRBBRBBRBBRBBRBBRBBRBBRBBRBBRB{{޽kskJRBBRBBRBBRBBRBBRBBRBBRBBRBJRBZcRΥZZZBBBBBBBBBBBBBBBBBBcccֵZZZBBBBBBBBBBBBBBBBBBBBBRRRsssֵ{{{BBBBBBBBBBBBBBBBBBBBBBBBsssεJJJBBBBBBBBBBBBBBBBBBcccֵkkkBBBBBBBBBBBBBBBBBBBBBBBBBBB޽RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJń:::BBBBBBBBBBBBBBBBBBBBBBBB{{{֥ZZZBBBBBBBBBBRBBRBRZJsskΥBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJRJRcRZsZc{cc{cZsZZsZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZZkZ1:1s{{{sssssssssssssssssssssss)!):::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cJckssssssssssssssssssssssssssssssssscJc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{kkkBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBZcRŽֽBJBBRBBRBBRBBRBBRBJRBŜJRBBRBBRBBRBBRBBRBBRBBRB޽ckcJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJ֭sssJJJBBBBBBBBBBBBBBBBBBRRRֵZZZBBBBBBBBBBBBBBBRRRsss޵{{{BBBBBBBBBBBBBBBBBBBBBBBBRRRŵRRRBBBBBBBBBBBBJJJεZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ń::::::BBBBBBBBBBBBBBB޵sssJJJBBBBBBBBBBRBBRBBRBJZJkskń{BRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJBJRJRZRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcRRcR1:1k{{{{{ssssssssssssssssssssssssss)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::))))!)!!!:1:cRckssssssssssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBք:::BJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBkscֽBJBBRBBRBBRBBRBBRBBRBckcŜJRJBRBBRBBRBBRBJRB޵ZcRBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJֽέ{{{RRRBBBBBBBBBBBBBBBBBBBBBBBBcccֵcccJJJBBBBBBZZZ{{{޵{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBsssŵcccBBBBBBRRRέBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBޜJJJBBBkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŌBBB:::BBBBBBJJJ޽RRRBBBBBBBBBBBBBRBBRBBRBBRBJRBckcεRZJBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB))){c{sssssssssssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::))))!)!!!:1:kRkkssssssssssssssssssssssssssZJZ1)1BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽BBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBֽBJBBRBBRBBRBBRBBRBBRBBRBťckcBRBBJBckc޵JZJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBkkkŭRRRJJJJJJRRRֽkkkRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJsssֵssskkksss޵{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBνֽBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRťkkkcccsss޽RRRBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBZkZν{{BRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB))){c{sssssssssssssssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::))))!)!!!B:BkRkksssssssssssssssssssssss!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֌:::BBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckZֵBJBBRBBRBBRBBRBBRBBRBBRBBRBν֥JRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJZZZJJJBBBBBBBBBBBBJJJZZZŽZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{ŵ޵{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRŽťJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::ZZZŽ޽RRRBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBckZťJZBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB))){c{ssssssssssssssssssssssssssssssk)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111)))!!!!!!B:BkZkssssssssssssssssssssRBR1)1BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB֌:::BBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRcRֵBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBΔJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBJJJZZZRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBJJJcccsssZZZJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ{{{޵{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZνZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccﵵBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRֽRRRBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBkskεkscBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))sZsssssssssssssssssssssssssssssss{c{)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111)))!!!)!)J:JsZssssssssssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB޽BBBBBBBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBssֵBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBε{{s{{JRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssŵ޵{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZŵZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJﵵBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBֵJJJBBBBBBBBBBBBBBBBBBBBBBBBBRBBRBBRBBRBBRBBRBBRBBRBJRB{{έJZBBRBBRBBRBBRBBRBBRBBRBBRBBRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))sZssssssssssssssssssssssssssssssskZk)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111)))!!!)!)J:JsZssssssssssssssRBR111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBք:::BJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJZJ֭BJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBckcֽZcZBRBBRBJRB޵ZcRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJcccεssscccccc޵{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRν{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::cccŭkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZεsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))sZssssssssssssssssssssssssssssssscJc)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111)))!!!)!)JBJsZsssssssssss!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{kkkBJBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRB֥BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBs{sŵs{sJRBBRBBRBBRBBRBJRBŔJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZsssֽkkkJJJBBBBBBkkk޵{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssŭZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsss{{{RRRkkkkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::kkkεJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŵkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))sZsssssssssssssssssssssssssssssssJBJ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111)))!!!)))RBR{c{ssssssJBJ111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJcccBRBBRBBRBBRBBRBBRBBRBBRBBRBJRB֜BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRJ{{RZJBRBBRBBRBBRBBRBBRBBRBJRBkskRZRJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJZZZkkkkkkRRRBBBBBBBBBBBBZZZֵ{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{ŽkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBŔJJJBBBBBBBBBBBB{{{{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBkkkRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB{{{εcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))kZkssssssssssssssssssssssssssssssB1B:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111)))!!!1)1RBR{c{ssk!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZkZBRBBRBBRBBRBBRBBRBBRBJZJ֔BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBRZRZcRJRJBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBJRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZcccsssssskkkZZZBBBBBBBBBBBBBBBBBBZZZ֭sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRR{{{sssJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssRRRBBBBBBBBBBBBBBBBBBBBBBBBkkkRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBcccν{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))kZkssssssssssssssssssssssssssssss1)1:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111)))!!!1)1ZJZ1)1111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBckcBRBBRBBRBBRBBRBRZJΌBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ֭sssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJεťkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))kZkssssssssssssssssssssssssssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::111!!!BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZ{{BRBBRBBRBs{s{{BRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkΥkkkBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkk浵BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))cRcssssssssssssssssssssssssssssk)!)111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBsssֽŽkskBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBRBBJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkΥcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))cRcsssssssssssssssssssssssssssk!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::sssRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkŜZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))cRcssssssssssssssssssssssssssc!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkkŜֽ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc޽RRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRsssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))cJcsssssssssssssssssssssssss{c{!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::RRRΜJJJ::::::kkk֔:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRֵ{{{BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))ZJZsssssssssssssssssssssssssZs!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::kkkֽkkk::::::BBBBBB:::ccckkk:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBkkkνcccBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)))ZJZssssssssssssssssssssssskRk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBB{{{΄BBB:::BBBBBBBBBBBBBBB:::RRRŌ:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJssssssBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBccc挌BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111ZJZssssssssssssssssssssssZJZ!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBZZZssskkkBBB::::::BBBBBBBBBBBBBBBBBBBBB::::::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZkkkZZZBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBZZZΜRRRBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111RBRsssssssssssssssssssssRBR)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::::::::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBJJJRRRJJJBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111RBRssssssssssssssssssssJ:J)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111RBRsssssssssssssssssss:1:)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111JBJssssssssssssssssss1)11)1BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111J:Jsssssssssssssssss)))111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111J:Jsssssssssssssssk)!)111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111J:Jssssssssssssssk!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111B1Bsssssssssssssc!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB111B1Bssssssssssss{c{!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::1:ssssssssssssZs!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::1:sssssssssskRk!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB::::):sssssssssZJZ!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::1)1ssssssssRBR)!)BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::1)1sssssssJ:J)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::1)1ssssss:1:)))BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))sssss1)11)1BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::)))ssss)))111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)ssk)!)111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)sk!!!111BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB)!)c!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB!!!:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB:::BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgarden-1.0.9/data/gfx/trans.bmp0000644000175000017500000000471212457263300013234 00000000000000BM 6(,D  (((yyyeeeeeePPPPPaP]qPiPuP<yeYYPPPPPP(Heyee֡PqPqP}PPPeyyyyyy((yyyeeeePPPPP]PiPuPeyyyyyy(e(ޡyyeeeePPPaPqPPPeލҪҁyʁΉ֑ڙy<(ʍyyeyeePeaqq}<yeYYPPPPPP(PPyeeލPyyPyPPPP-----------------------------------32221111---`3^ 3L3 33J3333 33 3393 3333333 3373333333333333363 333 33333353 333 333333)333333 333333(33333333 333333333333333 333333333 3333333 333333333333333333 33333333333 33333333333 333333 3333333333333333 333333333333333333333333 333333333333333333333 3333 3333333 33 33 333333333 333333333333 333333333333333333333333 3333 3333333 333-garden-1.0.9/data/gfx/small.bmp0000644000175000017500000012025212457263300013213 00000000000000BM6(]t  (((yyyeeeeeePPPPPaP]qPiPuP<yeYYPPPPPP(Heyee֡PqPqP}PPPeyyyyyy((yyyeeeePPPPP]PiPuPeyyyyyy(e(ޡyyeeeePPPaPqPPPeލҪҁyʁΉ֑ڙy<(ʍyyeyeePeaqq}<yeYYPPPPPP(PPyeeލPyyPyPPPPttttt tptt tL tttt t& ttt ttttt%tt t ttt tttt ttttttttttttttt t ttt ttt tt ttttttttttttttttttttttttttttttttttt tt t tt t tt t tttttttttttttttttttttttttttttttt tt tt tt tt tt tt tt tt tttttttttttttttttttttttttttttttttttt tttttt t t tt t t t t t t ttt t tt t tt tttt tt tttt tt tttt tttt t tt t t t t t t t t t t tt t tt t=t t t  t t t tttt t t tttt t t t=t t ttt ttt=tt t t t t t t tt t t tt t t t t=t t t t=t t t  t t t tt t ==t tt== t tttt ttttttt t t tt t t tt t t tt t t t t t t t=t=t t t t=t=t t t t==t==t t =tt tt= t ttttttt tttt=ttt tt t t tt t t tt t t tt t t t tt t t tttt t t t=tt=t t t t==tt==t t=t tt=ttntOttttt ttt tt tt t t tt t t tt t t tt t tt tt tt tttt tt t=tt=t tt t==tt==t t=tt=tt=ttittOtttt tttt tt t tt t t tt t t tt t t t tt  tt  tt  t t ttIt t tt t t tt tt tt tt t=t t=t tt t==t t==t t =t tt =ttft tOtttttttt tt tc t ttt tt t t t tt t t tt t t ttttttttttttttttttttttttttt ttttGtttt t t tt tt tt tt t=t t=t tt t==t t==t tt=tt==tt tt==tt=tt tttdtttOtttttttttttt tt=ttt tbtt tttt tttt tt t t t tt t t tt t t tttttttttttttttttttttttttttt ttttGt t tt t t tt tt tt tt t=t t=t tt t==t t==t tt=ttt tttt=tt tttbtttOttttttttttt ttt=t=ttt t t`tt tt tt tt tt t t t t tt t t t tt t t t tttttttttttttttttttt ttttGt tt tt t t tt tt tt tt t=t t=t tt t==t t==t tt=tttt=tttt=tt tttatttOtttttttt tt=tt=tt t t`tt tt ttt t t tt t t tt t t tt tt tt tt tt tt tt tt ttt ttttH t tt t t tt tt tt tt t=t t=t tt t==t t==t tt==ttt=t=ttt==tttgttOttttttttttt tt=tt=t tt t_tt ttttt t t tt t t tt t t tt tt tt tt tt tt tt tt ttt ttttGt tt ttttttttttttt=tt=tttt==tt==ttt==tt=tt=tt==t ttftttOtttttttttttt =tt=tt=tt =ttt_ttttttt tt t t tt tt tt t t tt tt tt t t tt t t tt tt tt tt tt tt tt ttttttttttBt tt ttttttttttttt=tt=tttt==tt==ttt==tt=tt=tt==t ttettRtttttttttttt=tt=tt=tt=tt`ttttttt tttt t t t t t t tt t t t t t t tt t t t t t t t t t tt t tt t tt  t ttttt=t=tt=tt=t=tt@t tt tttttt=t=tttt=t=tttt==t==ttt=tt=tt=tt=t ttcttStttttttttttt=tt=tt=tt=tt_ttt tttttt ttttt==t t==ttt t t t t t t tt t t t t t t tt t t t t t t t t tt tt tt tt tt tt tt tt tt=t=t=t=tt=t t=t=t=t=t?t t ttt=tttt=ttt ttttttttt=tt=tttttattSttttttttttt=tt=tt=tt=tt_tt==t t==tttt==t t==tttt==t t==ttt tt t t tt tt tt t t tt tt tt t t tt t t tt tt tt tt tt tt tt tttttt tt=t=t=t=tt==t==t t=t=t=t=t(tttttt=ttt tttttttttttttt tt=tt=tttt_ttStttttttttt=tt=tt=tt=ttt\tt==t t==tttt==t t==ttttt tttt t t t tt t t tt t t tt tt tt tt tt tt tt tt tttttt tt=t=t=t=tt==tt==t t=t=t=t=t&tttttttttttttttttttttttttttt tt=tt=tttt/tttC tttttttttt=tt==tt==tt=t t[ttt tttttt ttttttt tttt tttt t t t ttt tt t t tt t t t tt ttt tt ttt tt ttt tttttt tt=t=t=t=tt=tt=t t=t=t=t=t$tt tt ttttttttttttttttttttttttt tt=tt=tttt/ttAt ttttttt =tt==t==tt =t t[ttttttt t tt t tt t tttt t tt t t t t t t t tttt tt tttt tt tttt tt tttt tttttttt=t=t=t=tt=tt=tt=t=t=t=t#tt ttttttttttttttttttttttttt tt=tt=tttt/t t t)tt tttttt  ttt tt=t tt tZttttttt t tt t tt t tt t tt t tttt t t  t t ttt t ttt t ttt tttttttt=t=t=t=tt=tt=tt=t=t=t=t$t t t ttttttttttttttttttttttt tt=tt=tttt/t tt t+t ttttt ttt ttt t tZttttttt t tt t tt t tt t tt t tt t tttttt tt tt tt tt tt tttttttt=t=t=t=tt=tt=tt=t=t=t=t@t t ttttttttttttttttttttttt tt=tt=ttF t t tt t+ ttttt ttt tt t tYttttttt t tt t tt t tt t tt t tt t t t t ttt t ttt t ttt tttttt tt=t=t=t=tt=tt=t t=t=t=t=tttt t t ttttttttttttttttttttttt tt==tt==ttG tt t tt t+t =tttttttttt t')t ttttttt t tt t tt t tt t tt t tt t tt tttt tt tttt tt tttt tt tttt tttttt tt=t=t=t=tt==tt==t t=t=t=t=ttt ttt t ttttttttttttttttttttttt tt==t==ttG tt t tt tt t9ttt t%+tttttttt tt tttt tt tttt tt ttt t tt ttt tt ttt tt ttt tkttttttt tt=t=t=t=tt==t==t t=t=t=t=ttt tt t t ttttttttttttttttttttttt tt=ttH t ttt tt=tt ttt ttt t%+ ttttttt tt t t tt t t tt tt tt tt tt tt tt tt tt tjttttttt tt=t=t=t=tt=t t=t=t=t=ttt tt t t t tttttttttttttttttttttttItt tt=tt tttt tttt%+ tttttt t tt t t tt t t tt tt tt tt tt tt tt tt tt titttttttttt=t=tt=tt=t=tttt tt t t t ttttttttttt tttt ttt tJttttt tttttttttt tt tt tttt t t t t t t t t t t t tt tt tt tt tt tt tt tt thtttttttttttt=ttttt t t ttttt ttttttttt tttt ttt tKttt+tttt t2tttt tt tt t=tt tt=t t t t t t t t t t t t tt tt tt tt tt tt tt tt t>t&tttttttt tt=ttt t,tttttt tt tt tt tt t t tt t t tt tLtt +ttttQtttt tt tt tt tt t=t t=t t tt tt tt tt tt tt tt tt tt tt t:tt&tttttttt tt=tt t tttt tt t t tt t t t t t t t t tttMtt tt3t tt=tOtttt t=t t=t t==t t==t t=t t=t}t tt tt tt tt tt tt tt t8ttt%tttttttt tt=tttt t t6t tt t t tt t t t t t t t t tttNtt t=tt=t2t tt=ttKtttt+ t=t t=t t==t t==t t=t t=t}t t tt t tt t tt  t t6ttt%ttttttttt tt=tttttt t7t tt t t tt t t t t t t t t ttOtt t=tt=tt =tt t=ttItt=tt + t=t t=t t==t t==t t=t t=t}t tt tt tt tt tt tt tt t5t t%tttttttttt tt=ttttttttt t8t tt t t tt t t t t t t t t tl tt t=tt=tt =ttt=ttGtt=ttt tt t==t t==t t=t t=t t=t t=t tt t8t tt tt tt tt tt tt tt tttt t$tt tttt tttttt tt=ttttttttt t9t tt tt tt tt t t tt t t tm tt ttt =ttt=ttEtt=tttt tttt t==t t==t t=t t=t t tt t"t t#t t!tttttttt6t tt tt tt tt tt tt tt tttttt t$ttttttttttt tt=tttt ttt t:ttttttttttttttt tttttt tttn tt +tt =tttt=t t=t=ttCt=tt=tt=tttttt t t t t tttR t"t tttttttttttttttttt tt t5tttttttttttttttt ttttttt t$tttttttt ttt tttttt tttt t<tttttttttt tttt ttttttC t  tt + t=t tt=t t=tt=ttA tt=tt=tt=ttttttt ttt ttttt=tt t&t ttt ttt tt tt tt tt tt t4tttttttttttttttttttttttt tttttt t t$tttttt ttttt ttttttt tttt t=ttttttttttttttt tttttt ttttt ttBtt  tt t t=t tt=t t=tt=tt?tt=t=tt=tttttt tt=tttt=tttt=tttt tt tt tt t tt t tt tt tt tt tt tt tt t3tttttttttttttttttttttttt t tt t t ttttttttttt tttt ttttttt tttt t?ttt tt tt tttt tttBtt  tt tttt t=t tt=tt=tt=ttt>tt=tt=tt=tt+ tt=tttt=tttt=ttt tttt t tttt tt ttt t ttt t t t t t t tt tt tt tt tt tt t2 tt  tt  tt  t t  t tt t t ttttttttttttt tttt tttttt ttt ttt ttt1ttt  tt t t t=ttt=tt=t t=tt?tt=tt=tt=tt+ tt=tttt=tttttt t t t t tt t t t t tt t t tt tt tt tt ttttt/t tt t t ttttttttt!tttttt ttttttttttt ttt tttttt,tttt  tt t t =tt=tt=t t@t t=tt=tt=ttt ttt ttt t tt t t tt t t tt- ttttttttttt tt tt.tt tt tt ttttttttt ttttttttttt tttttttttt tt tt tt t(tttt  tt tt  = tt=tt=t t@t t=t=tt=tttttt t t t t t=t t=tt- tt- tt- tt tt tt tt ttttttt-ttt tt ttt tttttttttttttttttttt tttttttt tt tt t&t ttt  tt tt  = tt=t=t tBt t=tt=ttt tt=t t=tt==t t==t t=t t=tt- tt- tt- t tttttttttt ttt t t ttt,ttt tt ttt ttttttttttttttttttt tttttt tt tt tt t$tt ttt  tt tt = tt=t tDt t=tt=ttt tt=t t=tt==t t==t t=t t=tt- tt- tt+ t t t t tttt t t ttt ttt ttt,ttt tt ttt ttttttttttt ttttttttt tttt t ttt tt tt t#t t t  tt tt = tt=t t=ttt t=tt=tt tt t=t t=tt==t t==t t=tt=tt+ tt+ tt+ t ttt ttt ttt ttt ttt ttt+ttt tt ttt tttttttttt'tttttttt ttttt t tt ttt tt tt t"tt tt tt = tt=t t;tttt t=t=tt tt t=tt=tt==tt==tt=tt=tt+ tt+ tt t) t t ttt ttt ttt ttt ttttt ttttt+ttt tt ttt tttttttttttttt tttttt ttttt?t tt tt t!t t ttt tt != tt=t t;ttt t=tt tt t=tt=tt==tt==tt=tt=tt) tt) tt t tt tt t t ttttt ttttt ttttt ttttt ttttt ttttt*ttt tt ttt ttttttttt tt ttttt tttttttt+t tt tt t t t t tt tt #= tt=t t:tt t t=tt tt t=tt=tt==tt==tt=t=tt tt tt ttt tt tt ttt t t t t t t tttttt ttttt ttttt tttttttttt ttttt*ttt tt ttt ttttttttt>tttt tttt tttt tt tt t t t t"t tt #= t t:tt t t=tt tt t=t=tt==t==tt =tt t t t t tt t t t t t t tt tt t t t t tt tttttt ttttt ttttt tttttttttt ttttt*ttt tt ttt tttttttttHttt tttt tttt tt tt tt tt t%t tt %= t t9tt t t=tt tt t=tt=tt =ttt t t t t ttt tt t t t t tt tt t tt tt t tttttt ttttt ttttt tttttttt ttt)te'tt tt ttt tttttttJtt ttt tt tt tt ttt+t$t tt %= t t8tt t t=tt tt ttt=tttt=ttt t tt tt t tt t tt tt t tt t' t tttt ttt ttt ttttttt tttt)te t t tt tt ttt ttttttttttte'tt ttttt ttttttt t$t tt '= t t7t t t t=t tt 2ttt t' t tt t' t tt t' t tttt ttt ttt ttttttttttttt)gtttttttt tt ttt tttttttttte t t ttt tttttt ttttt ttt t$tt t'= t t6t tt t= tt Mt t t t' t tt t' t tt t t t tttt ttttttt ttttttttttttt) tt  tt  tt tttttttt tt ttt ttttttgtttttttttttttttt ttttt tttt tt t$tt t'=t tttt tt t tt  t tt ttt ttt t t t tt t t t tt t tt tt t ttttt tttt tttttttttttt tt)ttttttttttttttttttttttt tt ttt tttt tt  tt  tt tttttttttttttttt tt ttt tt tt t$ttttt'=tttt=tt=ttt tt t tt tt tt tt tt ttttttt t tt tt t tt t tt tt t tt t t t t t tttttttttttttttt tt(tttttttttttttttttt tt ttt tt tttttttttttttttttttttttttttttt ttttt tttttt tt ttt t t#tt'=tt==tttt==t tt t t ttttttt ttttttttttttt t t t t t tt t t t t t tt t t tttt t t tttttttt ttt ttt ttt t't t tt tt tt tt tt tt ttt tt ttttttttttttttttttttttttt tt t tttttttttttt ttttt tt t!t+'=tt =tttttt=tttt t tttttttttttttttttt t t tttt t t tt t t tttt t t tt t t tt t t tt ttt ttt tt ttt ttt tt ttt ttt t't t tt tt tt tt tt tt ttt tt tttttttttttttttttttt tt ttttt tttttt ttt tt ttt+'=tt =tttt=tttt tttttttttttttttttt ttt t t tt t t tt t t tt t t tt t t tt t t tt ttt ttt tt ttt ttt tt ttt ttt t't t tt tt tt tt tt tt ttt t t ttttttttt tt tt tt tt tt tt tt tt tt tttttt t t tt t tt+'=tt =tt=tt=tt=tttt ttttttttttttttttt ttt t t tt t t tt t t tt t t tt t t t t t t tt ttt ttt tt ttt ttt tt ttt ttt t't t tt tt tt tt tt  t ttt t t ttttttttt tt tt tt tt tt tt tt tt tt ttttt t tt tttt+'=tt =tttt =tttt +ttttttttttttttttttttt t t t t t t tt t t t t t t tt t t t t t t tt ttt ttt tt ttt ttt ttt tt't t tt t tt t tt tt tttt tttttttttt tt tt tt tt tt tt  t tt tt tttt tt ttttttt+%=ttt=tt=tttt=tt=ttttt+tttttttttttttttttttt t t t t t t tt t t t t t t tt t t t t t t ttt tttt tttt tt(t t tt tt tt tt tt tt tttttttttttttt t tt t tt t tt tt tttt tttt tttttt tttttt+#=ttt=ttttttt=ttttt+ttttttttttttttttttttt t t t t t t tt t t t t t t tt t t tt t t ttt tttt tttt tt)t t tt tt tt tt tt t t ttttttttt ttttt tt tt tt tt tt tt tt tttt tttt tttttt ttttt+!=ttt=t t=tt=tt=tt=ttttt+tttttttttttttttttttttt t t tt t t tt t t tt t t tt t t tt t t ttt tttt ttttt ttt)tttt tt tt tt tt ttt ttttttttt ttttt tt tt tt tt tt tt t t tttt ttttt ttttt ttttt+=ttt==tt=tt=tt=tt==ttttt+ttttttttttt ttttt tt tttt t t tt t t tt t t tt t t tt t t tttt t t tttt tttttt ttttttttttt)t t tt ttt tt ttt t ttt ttttttttt ttttZttttttttttttt tt tt tt tt tt t tt ttttttttt tt tt ttttt+=tt t==tt=tt=tt=tt==ttttt+tt tt ttt tt ttt tt ttt t t tttt t t tt t t tttt t t tt t t t t t tttttttttttttttttttttt)t tt tt tttt tt tttt tt tt ttttttttt ttttZtttttttttttttt t tt ttt tt ttt tt tt tttttttttt tt tt tt ttt+=tt t==ttt=ttt==ttttt+t tt tt tt tttttttttt t t t t t tt t t t t t tt t tt tt t tttttt ttttttt)tt* t t ttt t ttt t ttt ttttttttt ttttZttttttttttttttt t t ttt t ttt tt tt ttttttttt tt tt tt ttt+= t t=tt=tt=ttttt+ttttttttttttttttttttttttt t tt tt t tt t tt tt t tt t t t ttt)tt tt)tttttttttt*t tt tt tttt tt tttt tt tttt tttttttttt ttttZtttttttttttttttttttttt tt tt tt tt tt tttttttt tt tt tt tttttt=t/ttt=ttttttt+ttttttttttttttttttttttttt t t t tt t t t tt t' t ttttttttt tttttttttttttttt*t tt tt tttt tt tttt tt tttt tttttttttttttZtttttttttttttttt tt tt tt tt tt tt tttttt tt tttt tttt=t t=t5tt==t==tt ttt+ttttttttttttttttttttttttt t' t tt t' t tt t' t ttttttttt tttttttt tttttttt+t tt tt tttt tt tttt tt ttt ttttttttttttZttttt tttttt t t ttt t ttt t ttt tt ttttttt tt t tt t t t ttt=t t=tt=ttt==tt==tt tt&+ttttttttttttttttt t tt t' t tt t' t tt t tt tt t t tttttttt tttttttt tttttttt+t t tt ttt tt ttt tt t t ttttttt#tt[tttttttttttttttttt tttt tt tttt tt tttt tt ttt tt ttttttt tt tt t t t ttt ttt=t t=ttt=tttt=tt=tt t t'tt t tt t tttt t tt tt t tt t tt tt t tt tt t t t t tt t tttttttt tttttttt ttt'ttt,tttt tt tt tt tt tt ttttt tttt tt tttt[tttttttttttttttttttttt t tt ttt tt ttt tt t t tt tttttttt tt tt tt tttt ttt=t t=t tt=t=tttt=tt=tt t t t=t tttttttttttt t t t t ttt tt t t t t tt tt t t t t t t t tt'tt ttt'ttt tt)tt,tttttttttttttttttttt ttttttt tttt&#ttttttt tt tt tt tt tt tt tt tt tttttttt tt tt ttttttt ttt=t t=t t t==tt==tttt=tt=tt t t ttt ttttttttttttttt t t t t tt t t t t t t tt t tt tt t t t)ttt)tt tttt tttt-ttttttttttttttttttttttttt ttttttttt"ttttttttttttttttttt tt tt tt tt tt tt tt tt tttttttt tt tt tt t tttt ttt=t t=t tt=tt=tttt=tt=tt tt tttt ttttttttttttttt tt tt ttt tt tt ttt t) t t ttt tttttt tttt tttt t.ttttttttttttttt ttttt tttttttt"ttttttttttttttttttt tt tt tt tt tt tt tt tt tttt tttt tt tt ttt tt tttt tttt=t-tt=tt=tttt==tt==tttt tt==tttt==tt ttttttttttttttt) tt) t t+ t t tttt tt tttt ttttttt-t t tt tt tt tt ttttt ttttttttttt"ttttttttttttttttttt tt tt tt tt tt tt tt tt tttt tttt tt tt t tttttttt ttt-tt=tt=tttt==t==tttt tt=tt=tt ttttttttttttttt+ tt+ tt+ t tttttt tttttt ttt ttt-t t tt tt tt tt tttt ttttttttttt#ttttttt tt tt tt tt tt tt tt tt ttt tttt tt tt t tt ttt ttt+-tt=tt=tttt=tttt tt=tt=tt ttttttttttttttt+ tt+ tt- t ttt ttt ttt ttt t-t,t t tt t tt t tt tt t tt ttt tttttt tttttttttttttttt tt tt tt tt tt tt  t tt tt ttt tt tt t$tt t t  ttt+-tt=tt=ttttttt tt=t t=tt tttttt ttttttttt- tt- tt- t t-t t-t t-t,t t tt tt tt tt tt tt t tttt t t ttttt ttttttttttttt t tt t tt t tt tt tt tt tt tt tt t't t"ttt+-tt==t==ttt ttttt=tt=tt ttttt tttt tt ttt- tt- tt- t t-t t-t t-t,t t tt tt tt tt tt tt t tttt t t ttt ttttttt tt tt tt tt tt tt tt ttt ttttt tttttt)tt$t t+-tt=ttt ttttt=tt=tt + tt tt tt tt ttt tttt- tt- tt t t t t-t t-t t tt t,t t tt tt tt tt tt tt ttttttttt t t tttttt tttt tt tt tt tt tt tt tt t ttt tttt ttt.tt'tt+.tttt ttttt==t==tt + ttt tttttt ttt t ttt t t tt t t tt t t t t t t tt t t tt t ttt ttt-t t tt tt tt tt tt tt ttttt t t ttt ttttttttttttttt ttttttt tt tt tt tt tt tt tt t tttttt ttt<t,t)t0tttttttt =tt + t ttt tttt t t t t t tt t t t t t t tt t tt t ttt ttt ttt ttttt  t tt.ttttttttttttttttttttttttt tttt ttt t ttt tttttttttttttttattttttttttttttttttt ttBtttttt t tt + tt tttttt tt t tttt t tttt tt ttt t ttt t tt ttttttt tttttttttt ttttttttt/tttttttttttttttttttttttttttt t ttt tttttttttttttttatttttttttttttttttttttttttt!ttttt*tt + ttt tttttt tt tt ttt ttt ttttttt t9 tt  tt  tt  tt t"tt t ttttttattttttttttttttttttttttttt )t0 tt" t&t t"t t) t.tt tt,tt=tt'Bt7at tt  tt  tt  t t t}tG t) tf t1t@garden-1.0.9/data/gfx/garden.dat0000644000175000017500000003173212457263300013341 00000000000000slh.ALL.propDATE9-20-2007, 21:51propNAMEg_fontpropORIG1c:\CodeBlocks\Working\Oscillation\Out\g_font3.bmpFONT22 ~                                                                                                                                                                                                     propBACKnpropDITHnpropNAME GrabberInfopropPACK0propRELFnpropSORTypropTRANnpropXGRD16propYGRD16info For internal use by the grabbergarden-1.0.9/data/beat/0000755000175000017500000000000012457302476011620 500000000000000garden-1.0.9/data/beat/pan.wav0000644000175000017500000006613412457263310013040 00000000000000RIFFTlWAVEfmt DXdata0l"$&(/39:DFKQR\akogj_WD7) uT<i[K;0" ||omrhifmpc`WJ;431122.152<<98?:3=>Eh4n@sZ$/'zAh5f7]C-vjQ9"xT?sgPE.Iq1 [} (4@E?;(rF$   *(#1@MVW\]WVabnm^ORF4)Lv@V"0f1G+7J9}$i;e;[:XV"hT)CXd9.fJm${P4]?J!;*ZF|yp( 0j?z+xD>'6)dh4A I " *  " 9>Ifk~"[.L}3;*]dH`8w5tUH* /O 0s,5ND;=\wF4 OMdksE gF tKI: + | q  11LLpS*pD{'VC/P 3 gJ(UPsU6 $oC!?  ;  ~   l?}PIxL6jl[AB|!W3X,r]%u%1WFO"$%$#u"w aT$E&r xvu (WH`/Xio_&%YA?;%1"e q`1 ytLauy>3_>3T'd> , I eVWzCbE#}utA vTV&R)5ޛtuޫ5c*ympF%.B8&l>7[by0zm.i(  `  H  4t?Yw cs*}Jx  w  =  cWh;FV Q)07VnFK g.[0g+8vV="^?$^WK|TGT]&`\CTZJu \Um ' ) /|1d0C*G7{,9CQQD4#cT #1C[g c|aqV G E{F gS0i4oY$vq({"4.Lak  r4)viD>i]l)bpVg*\0$/oi B ?hj.6s(?F'`nS^SVz\RT[ N X  F d * X  s'56y !>z#lbj l3,=dM_  x ' *zC< 93chM3]{>rMD p FKY_iiCx1u`5Vt bC o**~jB)}mj3k(v$GZ[U>e />4V*_uJwv4W1y(M HuI{s: e OooAgL*HH*LVT3a%l b+4 t  I U  t D z D  Oca?bu#o#\{y VC / ( f 3V[aNm rK0Kdv!HyWL8 &eQ9HdkIzueAQM\{BQP5\!y(){*z S*z]N=7e8S!NiytU+a**Nn8~`<&*@mJ1oRF}L`;gEJKu6 Yf  pM|a< tZ,aemXq  W I  w H  a 5  d ( U^F.5K}&z`PPd7[Wt`X E ? | 9<&hkY0V [It@.x F-y!)3LK -dpr[ {4M0ZjrIEVNO~!c'v^ e7)Y9olCf't;N j2iL<8AV38_X!\U NJUx '7&D^M #l] )R^$\\)3o x ;  } S 7  x E  j - `  y,{"m@NTW%h=.%8N|D vx 5mT P F 0T[P'r75|S0kBk=q@ 5sn:ZV!^i-wHW7+p*uE h M\;i5r)c)tL36YG=0oq5$63 u,,6Z$m^lFSLck%^%^ ] `j F,#UoTt x9e0-k O  ~ A  _ 1 p < a , h#IE!3/8csF 7i< J0* t @ _ ~\&EJ=9_GWQY$ < <vfFNj+wN22K{&#RE=&JQ8W:sF{%Tn&`X/vhhp;("<!<"wE fm"; 'T5{):l!mGjy"QW  !Tj^T,#i0mYh_f A  d 0  q <  f 7 S  Ad c]FV&\Q,0N~$m\  K  ;H>.s.1g%au)R fF!; kK%.]S9VHsv:=VO| Ar/d1n"]3sg j>7@/T+<<$ J(s3MVvFyoqUI`[(v?>sA[}b  {]v1(qm2g7 kbzOd W  u H  f >  R  q + \~0=Dq~/u1FQ=NvVC 7 y  6 WWM4 r:I< E2Y" E Z[t05#j0Co7Re_J'8^1e3X.^)ca>'{*}TRUO*Nl}q\$Uu;NRVzO56CgGJd"OxkpJ  d5jhN t~>+:(xUFNa45 a & X .  j I  z K ! E  Ly+:7KIBV/wns.H>M{c a P ' M ]j\;v42 M  &mi & q 8s_g\6D%f! !5F>(inC&V!Cn-WE{&b4vZW"(vUvB`i3IJ]"_FAIm C5Co$!ef(Y1Q N 6 Td(/ew~wd][jQR  R  ` 9  c <  o ?  n 4 ?r'GQql_e1tP>zG hN  v+oY_~tOz+:Q_TUl%ha:cH{ N,ax N GhmDr<%>FLR_Z[ Y & t N *  _ C  ^ + i , z:o'Jatl#G$ Cvf@Gi:.{! f  3 X hdP.U bKSf [ 4{7 J2/9[ oRG=vDT1h<]7Ow9h@nVN(lPqx z> ! x'lsG h~+Mh^gI6Gj|@9l r  ?f^Bi\e/FY~f b \ $ v P 1 q X 9  d < | P  k%fCj  v"r-\\<Mt D7. f  , K UJ6o-1Ccu<"Q ^ P/ +&=A83wZ=SY3xFo:Uo!Cj2`/g!Z&gIZXoyI>P[Q6Ctm=\c"zL!{@ug}27VX"*( - E\V-`u63c?jIN  H  _ 8  m U 7 # Y ; Z ) NXEm1,\PL|Kt / V b]Q?4*0Gq#T\^d.kAgrO0Kz 0Gd4Ur*\Q7u5{HNPbwtT;kd3Pzf5X j*Y/$>mW\LxuH  > 9D> hESj @xB*8 h - k ?  m \ E *  p N *  e 4 i+>|;l <6 OcLPXw&}B9U~XA& U  & r=Y XQF K sB-y}! D/Eo1>'gP{/Rk&[5$Q o>=S\Bv F f o q ^=^e__ K 7]$E NE2oPaoo UK|#Cb-DYl+OsAt >u$aY6+?Unc)uo)of2Uw?|leonA;GwBs>G? |Kp;n ulm! L e ;  } d M ,  j O < " l M " xEy: W_"[\>0A &\X;7R~ Y4m # A H < YgD@ - 2l3_> 1l3b!TrfcIO?a*>Jar/Lj"Lv6g@y+l6+Le_5/@LD) <y f6a"V6 8jF3@IR{R [t2pOVey. P  ^ % _ > % w g S A 2  k Q , m>Lt@QflT..p(DH-0NzL"Jr   k @W\ e  _l8:M* /ZlE ?y:gCQ+O{)BViz ;K^>f7i-g@}:;]gB&XzwZ%Nj<d3rWJOe!b\ Z.@vP u !?Fx[-<h I  M  ] 9   u c R F 6 %   r X F "  ^2 R"U$D itX2"X p\[f(}?&+Jq ?t 4G X R ? I 4 ? # #z"[=DTk* .aHd(kHt+Od~ %3FQiv$?bHu)Z)]B6WfIG~HcnC|Q& ?w}3 z2w _  #-fgCl1 h * g 1 _ 4 s _ F 2 "   o _ K 8 " zX9pG_.c/_xhE(%OtO0)=]h3!*Am/\}    W + 4 cPs=sREHj=9D#BrO B2f@b}#,?GTajy 7So6W%TBxLH]R`e p  !|N'pUBBNm g l O&CMmPHZ}iad53S~I&\Nr'@Par} -6Leu2X{7`;k"[ >[V"q0.)~4{+(_? ~| *Z"gNDY= LtY  O C . [ { o O +  r E  k C ] 6  o a R F A 1 ( "    p]G+\>Z.S(P~X/!86[L0Lj%(  r A 7  GuXF?KeyvxA3Pz3f*U8Nl $.2>GP^lu.Fg)Nq9h@m ~5RP# 3RddR5@-,u_E:3?_'YIt{A . '  M i m T 0 ^ ) u K '  a P ; %  {ojZJ;+o[8nO&]4M b;)8u$=F #>SkrrbI  q gH3%(Be33U& $Gl;j 6Z{0,&nbMA*nM3oP. vV"|zY@>l\@-%5Ms%y7~ d2H0 &1GYk49$F^,<^~)BZ '&45=BGKPRX^^hhs#>Th &Ie /Qr*q2D/B{F]#BDC<;ANi(z2E|S1g0Xf > s s W <  gU6#{|qpmh_]VKC<)"oSE& ^:y[6t  z^HAht>1Yt8ywtolWBG<Ny!P b%EQ"B[} %:LVivz %5KTi|5Kj9\{=l| +9.GSa(@OVX^kAll6;C g73!1rR   gJ5yk^SJB94.,#$    k\J6vdD& yO8klULo o9 #Pt7qc`L@&a,(XYg+h-,~.?r^VNXZ^t4Jcu ##(+099@OO[cu~.@Zs*CcJgj'G186"X `(HVdu.XWCIxBQx(~#LT.*o,BINFK?3$lWL6" zrfWL<-"lWD% mR5b }cYs g)Ds: jTJ*ZGXK} q* y%\Xqg(^E/ *5CRg} (7A=KQ]almnptu|x|z~~ -;Kdo %AYs7^pe $N 6L[ZI1 Y _)Mbv7dJ" &OMKyWEr }PN'MaywnUL<!{zkkkcb^ZXYXWTTPUMPHH==70*! }lVD0q[C% Qlase! E#x8y`L. }S`{U[kQ$U*I>T-1CN`pt"08HV`p/IWt:Ou scq ~D?atwm[>X\*Pm:d8Mmgz +IVN&85_~rbVK<<," wn]M:-w`N1F#  yk|}@ x9wY4}Tv[ NbbPB:JlVKth_adbgp #&).*14.11132206469;>ECLTVfev{%:Odr #9SihVftvBOvjER S%Ts /]/<_GDH=.r"v?q!5ELXVSTLKB7. ytjaWO=8%q_O3 l8!'#hfcZkE'AvL)_+$&.o+BWc {=]C% "18>KRTeilsy|#/@Oeo 2G[tnR[hte8$V{oIPO'UK{qC&&5W c kO*`kN@c{|uqkgaZVZRTROVLVNUQNURRUPWKRMGCB?41,we[C3  hY('1*7r&{_KJK^yJ1FrBx?Dgv]'c J}Br^m*}P)w{sxrz{ %.4@NYhv'?PgsuIHRbY.Z|KGI"Y+`J I"w/Wx*aBq/;CKIPRLIEC?;/.'       yocPG9*yhV;&@<(&@z!vM70)7Ns G5Lo<d rFb\IAU T#bH/ #$#$'##%(""!! !$#1/9;CHNY]gu{->Q_p,|G;GRI%"[M@<_4tmRNQd mVQS:;x'Jdxn]YJ=0*qcN9* *HK?>N/rG..KjO@Pp1L*Thti`?r1Rax0a']7rjd\TURLRUMVXZ]]bdemhlinllmhkmfefa`c``^][\a^_aceiomu} &/CQ^m|.z9-/95va~H=:#bFL>n(nN(v:yJq-5LT_kr}x~|}|yxxtsrtqosrtuxrv{y|{}~xvtki__VVH@6/&ueSK6'.X]PO^4i;  #?hVHPl#5zrCHw6k+EyX@# %);EWbk~ 3~2#-+ pa~J 00"h X_F8/=ABCDDJGMJGLHFFIB><89.*$! vfTK?-"0bj^\j:g7 :iaPX is7hw];|FSf-jFqYH8&#$.2BISYiv| ?~+ ^]"&"Ez-1!ls++W.` CwAf9Kf|    {k^VF4' =u|xxGg/:bcTS \ ` 5FHG7&xH|E uFtP2qfYXJH?8;55,0.'.*%#'&$#  "-0?FOYhu!1;O`}QqV-<BUfkdVD"w=?l)ZaL7-')/9N_v0Rs3Na~!#'*&+,,&&%#!   yvqh`ZYKJ@74('{X+dE"5GXs  )&*&*% garden-1.0.9/data/beat/nice.wav0000644000175000017500000020455012457263310013174 00000000000000RIFF` WAVEfmt "VDdata<   #$#&&&%(&%%&'((**-+.,,.,,-.,1/.0..*(#" |qfYOD:1)"  !'-6?KVfv!@Zy 5FWfovyxundXK9&gF%lT?*'36005,"'7Ld{Gp9q$@[n|s]?w4PO@9X M c*q<EUl<|/Pz 7uQ$ +U<,];is_E) eM:1.2@TmCpQV  0:<<1'al:XkyGY& *Tn=H/-`sa70duO'VcR1~m}u: @vN;:qLpX@!e@ >c!Z^WK!8LSRM>) `AH6yD|bqfX`y&xIWq?JJrvKX*&TL=fkp@  Bm?[h@E-83" yY9S0bYDe3G## Miq T/5"d)1k pshWLHF<'[ K[ T u u ] * r`,XE| m96`>n;:*z AllP/ _.D (c1.iX=Jf&eW V;iP:8$}kf>07OrS^ _  : A J*Cc'l7 D| d$@C~^;v=s,l]^p(lX{gmziVzOX@Ae@x1Z% @JeT8xp 0 y N I W  %/2&I%m81bkt =SBf3 lG"K_bC8:Os#mvKB`"#IfquiU2O; )*%W8A.{G1;d wh4 o   B  [ sFe5Se. A~;JB*#{GUT=V&\Po>!:`#v5 9+]I #1-#B<qF7b:5W#"Zs : X e ` C 0h  , T h h R (S?^2 ,UVPv h'J-HV)o`8Wn @Q $S(RCa`x a2Bs;k"Y1+\5W^wPNuB W5^ 3@ 3  2MNZU0.MB"`+e!Wf?|V,?~2y5H0ui$q(X ] \  H  NKU0oZqLR?sX+ : oUu5- Q ]/J.g1!:~v*&o_v[<R[ a|"CI;xE k$b @>'`uK  : M R I , G /0H| U,'N9oI/5rpE2>BZ "& i!\o_|d\ k = NsV[U]oXbZX0GWan|Y ,$ r/a6"uB4T."7Qjw n F 9 h { U   7 1 X%mpC"n+k|H u 3b`c b '2t?2VCbwB3Fp+'[UDb a}b?+ Z$~pE*V   ,    \ t Q v ,- P0&E<<UW{sa4 FtwU{MNN ,& F -Xcj@ *r^a=s F{!PrxVK~<}(|j O?|6E{ H 1tco a J~qE {-~Jbqa] 1P+,EgS 0:"I{c8,yj  e"i@|Yfe]MS9S}qY7W.n/}j WVhC3<^ K h j ? l 5DB k c  "!Y8n'YTe.+&n 7-Q& " ~ 7a irO!:_t+ m2Exi  1%n6kal_ ^N  R c_g_irS6j<IS?(`"2X `<x !!I"O"!H!H r5D \ ^PB:EpI \9t\#{4o ^pGt <gwi4@F |+PXK!L0 4 _a>LU"]"߉nߝHnx.8 P !"###H#w"W!?X8i O*1wf~HCoa/9w0]6Yv\6$(|EhorV& -g ( N J+n|B  \o9 \V!-42߇.(qoeR {3 f"#$C%r%;%$#e" '} K I79+0HfRvb~F_ Y?Q,=f  &Phziz~|VJX3 } D>Z_@pD u :awߨ޹ M\Z#,_ *vv' "Q$%q&&&&%$^#!jVU #-w 7&ty6uZ6V#h K e k ` > ;RQ@0+7\hq`u $?-  ` w8>R4 v v Cr:'xZ$Fۓۺ5 /޳ߋC@E ]Kwj! "$6&b')((w(''%7$T"- 3ej?q 8y%9<;-eoULJC5`$Er |    gfH>FeccQl6B- : TBWK 6  QJquggS'MܦkRړ. n&EUE1JVJ 1ih$ "$&(-))*)G)?(&% # /gmB\ .gCB|j(9@A:/#yCO + w " dRUp\RFbHEA > NDu+ ;*IPB$޲A.vv0Hܜte5M &lr0"$&()*++K+*Q)'%#*!pWp &Z5 i%>B"Q- 5Slv- n 0 e m *  8 7jg}VyF;[c1%P 3 ` 7Z 5B!8P )68o5aۼٺe?ف'4ާw?\ ,{!D$&(*+,&--,+Y*(&)$!! 2fo$ߤ+x4)Dy?x$>E+l + * J I ! G R~wHd2*PvNE[s  [ bP:kk`a  #:6:^dF:ۍ@S֙eg٪ݔ k @ #[&(*k,-j...-,J+`)#'$!g);- kj'k2NߵdTލ3HX@7{ S j   w  =8LD!kmH5 x ,=M]q! 7OH$$9ݝۢ{fոs֜7AۼݝtTvC~% D^"%u(*,P.o/0@0/ /-(,*'$!9@ .a|<\ߩG Zy53b ~Ui~ H Q  >  a r T  i!18%$B l xC&gq'o  SngE/#BXՕ6<ԭԑֲڤݿ7dC  /!$'*,./02111@1H0.,*(8% "= 7d=Q[a@U۪+& {#<=hP  % xH Y 9 z.+ wx ? ==5p^  oo/Rn^ (݋OrAӴEDکp w0 #'*,.0 22K3*32^1/-C+~(f%"o{-  q5ޡܑjRځZSPK=`4gf,  ckQi H  ,[ X!/Ha! } .<E8T n ;}^rشԌӎױeK}j\fv wI;C"%H):,.0234443b20U.+(}%!$L  D!Q*bQ>ܗvߘ-L JK yUx7 R c%v12&f < 00l^ \<|Rߛܻ:i4ѷЪbS׶\Fs nz $4(}+c.0245>6Q654U3X1.,(%!W~ WK kܴboטר -%Rl215 qJiRYy\  4kVa2Wc$ ~p  O K9 A ؘՌѰ|Ϗ5ձyuV A/ xZ"&q*-024_6]77775242d/e,)j%~!J'C> % ,- p!;߽ܬ]0\ֱ]1U޼^,)/)e )  wFZ-k V 6FW48nq88 n ^ = "x:V8dq!} qGgke`s=TtNϘP·Aψ`Ե",mc:.  %),/246289^99G8642/,)=%! (jL]F9>_X']ծա׋ن]#&FmP * HK }C 4 ^T: <]Pz9']P  y lGNt$ t^ת^~Y3͎zҮׅە| D(E #x'v+/$2478:::j:e97530,($ ' p }~TFR{דsԽfmӉԞ[ :~QH ,  L97E{ $ Yhx0+gq9'<`OK F /E   VyvW$ܭة ϡͨ&"̧zѴ#P(5 n u%)-L1V469:;JFd5,Q% gLmX =-w!h a k&KkGύ?`!)ϱԆا!5F  g#';,"0368:zfLIXpv = w L^Q-\39h^  * / fybg 2 %^P$}1K +ˤί_;@^ %V*.{258;?Q?>=C<:R74~0,*(#P)]"M@ߡsؽ~ӹkВ"{8VҫpNrTU fk c kx_TFGG o <jJS5Elj} O*A'b $dw_N{CRڱuӢ:>̯ʏQs≯|ե19-% QhI"(,148:=>@@@#@>=:7E4p0>,'"1 &7-ݕpӛ϶ͤͻ9WS^\1sk + VExS7d UlB.I A7uM * 8*l܁ ϹTNlj˶e)6 d k%*J/y3!7I:<?@A;BBHA?=;7R4D0+'" ]ۃiѸ^*ab&Lmc| i /sPb _zmN3_d.'O== e yj&?2*  P q\,ޑڵ7"v2`DzvuҢ>2lu@ $hf"('-15l9x<?ABjCC]CYB@d>;"8F40c+i&!Y n8_lbUSʹxaЮ`kqKOhh WTpBCz!  v!m8O"$ZiBGm _oGT|Y fYCQԅ|˱Ǡš; ɿ^/NP&7{ #%*/=4;8;> ABDDE#EDYCtA>;68$4/*% H6 .@/PVˎʨ?Jɣ˒ͤ/غېߚ Iws1? 1 tr1Y* 6B:'  4cz = WH9x\k. nOCj$T7Ȑ]ŻİZkϑ7<݈* E!'=-C26:=@CDEFzFEBDB]?<2833/!*$2 )܉؛+@ Ǹ}ȁʺΗўe.v[R N28IBI~T! k=-N_kZc a f!$ dk  huIR)'x3WE.ĭöc V5jw [:a$d*/4/9<-@BEFGHGFEB?$<83.P)#t] SXzߦGa,+]7ƄCiU!Zx. Yk|u+ ~)E y>P2 l #p (F~Bmn  Q<eCNOӲ}̳R^¥1'c̅*;ڛ<0  '-2Z7;A?[BDFcH@IrIHGE0C?&<73-q("_Aubo1` -VJ6a7)܄x =T;BJ0T>WkU'& BXn lr! 'o ' o8 6,B "0 $/`}Ռ%ÞW> ^w<4Xm#)/!59=ADFHJJJJHlFC@<72--j'Q!>e v ֺͯzĒ4TZ7ȁ;h cv,.W \ [ Yo ^ I7{:7f$ :)@Zyc;; ?QK?FvתUCɜuIJwfp*יRDu :^6&,w27VIFC?;61%,*&<ee WTvvsݝӜ7J5C%Ĺź-sCweRt` D>QH i!{! !W 5 ! z  A  j~o }KQR # 7 K4 B5֮Μ˭$k[GonFٙWQ >!G(.(4.9=ZAD3GLIJK LKlJHEB>>:X50I*5$6. !*YaBίʲRŋdAȨʲ6'Ճ.QR @wmlM !""! Z I. !dK>y}Yl w 6t:`JG a_}GHËšq ۔[Z1#>*K05:>JBNEGI KKK3KIGD_AO=83>.i(7" Iqv̊ɶ~uk<{2`!֟hfxo* NQ !`""q"! x  x  L^ ^ Nlk0 ;D0]8Xt? TX@Ѥ͌njųa®M'(θҴݐZa<: }%+,2;7;?(CEHHJ6KKKJ#IFC@;)72m,}&2  :ӋϯjȻŭ@gQÕăȻۦ8; ]}N!u"#7#" "! Y.m  j,jZU  SUv / -qh [vKŔl1K=ȒvԐޑbvpX~ !' .38=@DFHSJQKKQK>JkHEB>t:5I0*$%| 7Z)h%pP§+'US,GZ:K{|S  ># 3"2###9#_"-! #  >uq\NbNFy x 9 ka9Bj& i9[`,Eӵ}̢(ŇÑJ*`i,ͅVi <4#)/A5 :5>AD9G(IJXK|KJIGDwAu=83.(" Rifbw7$ڎ9C7!M5̣P5VF X^f!*#$W$,$#"P!l3f 4&^xf*+f, V jug8)' ~uScO։>ȹ}ŖM4vy?d@%+16V;G?BpEG{IJKK>K|JHFC=@<`7<2,& )7 7<\C$]|IÓJl wRŠlʵͅՄڊ=F H "$$$$#"n!5 1?C{= D>ZN* w uco2>X2' _m1[&ozр΁țĔ6<$YwQ}m& H C'-&3&8:50*$v FWNTw9UU4C§áuo־-zC\Y 7 ("#$_%e%$$"w!}Jqvj Y];bO{W PIdJI`" .+fG܉ز+ ˁaƼįW@:.BD"GH,JJJ+JHFCF@.<7t2,' C "0sUĎu^%a].Ji.C kF"8$%W&&I&%$A#!`~uR % 1|MQfg-M9 rQd HsLTE+LF3:Ѿՙڻn  &,27;?BqEG1ICJJJIHEB>:50+%&Zo v܃ׅ ʢOu*^tƺ'%ѨՔB + B^ f\4' !k#5%c&& '&%$Y#!T u NL)Z(o'uh .`D p^n48.֯qςɶz9!˺mܕb -"(.48<@CEGeINJJ9J"INGDA=<9O4.0)# 5ESo%,џȏ ¿@0Sb*K>uc BM"$&&*'''&&$o#!%vK ]Lh7sg4 zPf 7 EP%5)|̘ɃĎoɌVОLDsx_,EW&$y*N05 :=RA#DuFFHIPJlJIH{FCF@=<72-B'! +O#n?|>ːV7"N1?QRh #=D #%'')('M'R& %#!o M $,FETM  -}9`Vh  aTx=6fpαMaWkZ"ȹbSlfXB ]|z&&X,16E;>&BDFHI:J#JVIGEB?:60D+L%x 8/ 6ݷנ]y@^xNÜuimRYJ` /"$&'((O('&+%#!9V ; c$bAfO"p w} 4 @od=:;%  &sRgۯ4TO"ư8@̘Ϩ"0]iv !(.v3:8YmAD5FG IIIHGaEB>:-61s+%FE ax&$"-m1rBǧʨ>Pib OW J#%'X)*@*)B)?(&g%#x!_c*; -E%n":caB )} v11x-T ' 8Bl/ٸwusʡj7ZQufkLfWE)  f'`-27;(?"BDFHIIUIUHFZDOA=S94D/)#F =bK5і|)S#.Lj˻πԻJBaq G!$"'('***L*)k( 'l%#N!p N|? Kqb1=4M |w  (H!܌' tEʢȡ`Uɇ{ր/;FIQ<>1"6).,48:>6!1+%q C)@οg}R+l&XƀɄ!E܅PqMo v a$.'N)*+++*)(5'g%K# !w  6'q 7zUj>q+4 @ {" 8 |BS޼IA<|ȏu`1fݪT'S ~A &,16:a>[ACEdGlHHHGxF8D@A=f94L/)#lR ?8}Kђ_?/n_ʚkӷZ% ^ y"%\(M*+2,H,+1+(*(B'[%$# z` 0[Wr2+}qf1QF |@8`P  ?lzQ&FڲրӉͰȭ/ɂʣxۢij<#b 9"{(<.d37;,?AND+FGmHHkHiGE+P,,,A,o+T*(A'A%"9 2I @u V6j{" 0 miXsBm % ELbT4Dz)(У͒E<ɒyu_,7($x "$6*/49:C621+%V N WHކ!(βŔ!<w;qB`d 9ۡF#2 z +p!l%[(*%,-S-'-,+}*):'%"3  P' \.N@mvdHBa? I Zi2 B= > @&8-<|K؛Չ^z1ʟʧ0Yq ["6 %+/15 :=@ CEFGDH5H~GFCA=`94u/)#J 4q%z}ւѨWȟĒ/|khLl°Eɂ\ҴkK.qQ vi#&)+,---,+* )&'$O"X w Xg`.==P`Q*o c  IJv T> 3j%ߦIk*tdʆ͇Ӕײ5)R $|!'h-27:U>(AC_EFGHGFOEB?,<72-'!6 e*.~ßnǻ^_վPsAʷA :8 ~<!$((*,-?.D.-- ,* ) '$!d d - >@VF^ o .<qh FV  ]2 &Y{۸׏Ԫ̈́˯ʚQ T*Vtb6q<[#h).3,8;?ACEFGGlGPF|DA>:C6A1+&}  S([Kζɼa³XbW|6KS6ڹ3 ^7"f&w)+t-l.../.[-8,*)&e$!@ k6 P"(mv]#% w k < f%BWu-K̩90SWs,$hF H-%+Z0539٩֧аˆ ϢbYܙ=O D &,136:z=R@BDFFcG9GgFDB? <72-("VA>WBY_plzοMr=ɸP+(y y!%4)+- ///n/.-p,*(h&#k   n&ndnoOkhcwc } hI  vn eD Q*;ӨЊ+̸ ?<5]6"(.2B7:->@CDFF(GFEDAu>:56F1+'&" t @=N4١ӅPdغy:QYGc 8#X'*,./>080//-,*(&## 7" u/IUt+88^ x Z$/6 e 4 jSkQh ثi|+̭͌̐/|YԳtہnLxm "X$%*p/)4H8;>_AlCE-FFF]F$E6C@4=094/ *8$#f 0~8^>e]o'Usr6z[Ցێ65D XdI $%(+./p0000ECEA6>y:6?1+@&L K j7ߎӥɰ7~ 7ĺƻBOMUOGw  Y$I(+./111V10/<.,\*'$T!Q  v_k$UNe[ J S ! &O* ( $ dK.bdIu4ωвjՖ*C} }Yz#7)u..3P7:=t@B&DSEF*FEDB4@< 94/*W$T@  e>0tp TFߺʹݻҿKƍtԳڻ8-g !%),(/0102210/E.e,*\',$ K {vh9IS`R Vk 6 1  3  y SaYP}dΖϠӽ٢ݗ\3V s$!%*/M4?8;>@BRDWEEE5ECA?;72-<(j"Y8 _CՄЅ6z]깽eSydwKL 3{]#'!+.'01j22211/B.?,)&#; m}7OO>3nw  W r go*,߈_nӽ3P$Ϭ0t$%q$h &#,1Z59W< ?KAClDKEEyEDC@=F:631+Y&w ] .XK5ʹ dcںq|-ċ6s!4F9 i e %)x,%/1^2 3132F2I1//.,c)P&"  o I`|$F`kP|fXy k j  : u-:H֪ӺfоϊӀւܥ  P"@({-/2S6901333A32k1/.+(% "n F*ITb?# lA{ q ,  B I!k#TހyؿyӼў2wh#P7Xdrj &O1$).A377:=?AkCzDEEDNC`A>a;_72-L("m 'Uk:Wн0U@#BCmDDDCBi@=:51+l& jQyZڍ#4 pk̸9ÚM̟TWxt%D H$!%)j--0:23Y44j4321/-+'N$X += p4t:l<&r {  n +y:p+ݍڻNbgeZ5Ֆiڣ9!^|BG n!B'o,"1G58;>@XBCWDDLD\CAd?Y<8G4j/&*$n Oހ҄ͺȁ 7ڻȹ& 3UV2! :"y'k+.C1"3T4454431/^-*8'{#ix  +!R?c02?f U L a  K  5@I$gD`10|8|\]Zؽ ߰R$( Gjt=#(-72269<>@yBC0DJDCB@P>;(72-O("u ~QܰPDٿ{Cx/qF#7Դ` .$),/O235555V4)31/,)&"ff? $n'4)HJ.u~_X` t 5   f ~"fmM$P߬3՘ӰsnՇh(9<+ ($*.637L:=X?,ABCCCBCA?*=951+}& ~ }\qrپBQBoOȼsƃvvܝ= !w&*B.!1K34565j5453w1?/,Y)%!Z6 ^hFL~JL^6RkTp Y  K H TeRC6!K9nӦԃֶXc%a 3&V+0.47:=?^ABkCCCB"A>;T84S/$*$ w])ȡݽrhvS: S%6g` }#)(5,/C2:45J66P654<3U1.,($ I] a0Fmp+4eSs`vEW < p v k3$>#ԧӊաܴٚ2 >; 8"',158;=?ABKCtC CBJ@=:62-[(" !rfo4XӿȷtXh3ei= d X%)-0O35B666654,31.x+'#&} $I1eL4d3S9A # ? c  d , pA uZx`u,dּnW v['#(-25>9 0@ABCCBEA[?^@A~BBBA{@X>;836/*$% *maٍ!3нG_gKŸaU/̐Xjݞ2<8#"$(,g003G56777:7=642t0-*9&!u8 o}23H  _ m +d yڮ_t?څtG /!}&q+/3u7q:<>@AZBB:BEA?S=M:6P2-X("";, /l݈ч̻ǀ޿ݼ(ʷѺDd.ġȩ- .k "  %u*Y.1346g7!8_8$8y7Z6420,N)E% K B jad n0BY``& + d ]_l>koE.ݲڨ+A-9"ܽ*!q` -"',04$8:M=+?@A+B7BA@>:<9"50+&!AR? .kۺ UD;Ź2=MV__3@ ~"',/2K57+888v87^64S2/9,v(J$Jm h#(P+8}{q xZ,/E  = l 6 _PC ܕڻq׶֑8]"|D> x$ $)-158g;=V?@AAA"A?= ;73 / *$%_lQ ,jyxʽ䶳ھo¥yЍ֛k &/"z$p)-.14J678L9A987W6h41.y+';#H c?Ac\7PFv [`  ,  _:pkE-H߯܅ؿ76׾8v9gEW r! [%B*.2P6R9;=y?@`AA[A}@><9D62f-O("L}d -s7ȰӼTx;(Y+¿nJdީQ . =-i!&+/w25%78e99987C6)41W.*&"l HJ7_.dI DK(K0  BvUdsށ܄ؾ׊ب32ݛvgt  )!&d+/3690<>?@/AJA@?>;840+&!s{ ,0~3/֊P˛q绖ж\HfX~16> P;P#A(,03:68\9:<:9'97630-)% 6MYl ^'/vuz9E\<h  "J6FzgP_hܘOّZأe٘?}@@@I@ ?%=:A7V3.)$E 4+Ma58ѽ߸Uq)vR9](#ViN0%)?.14=78:::8:K975c3Z0,(y$ @5c '8#3${JCD } R 8 4 bڥjGڏGm }Xl J1$ )-1"5-8:?\@@s@?<> rX!'+/53 6489:&; ;b:E9752/+'Z# </#<,v?-@S@?>^=;8v4B0+&3! D#ܥЭƤol Լ-&ĸ\Bk2+ ^ [#(H-/1w47 9:X;;`;:X9745R2. +&%"NQA8G yqO#{NV}B^  (9 $Jރ=w0_rRߥjIOM&/Y B!&5+h/%3f6#9d;/=>w???c?;>l<963.)$l E"M+ʅk Ⱥ?j&a A%7'W %*.25)8:@;;<;:I9M741.*%  Ia5)pN?3kqOnqyS J5y]HޱܓmdA0x"'C,Q0369;N=>R???>w=s;8p51-4( #/5 F"ӧͧ)8ݼ.{^¸ƞоGM N"{'/,W036&9:;x$?X??$>>>}>m=;U9F62k.)$Yr8JU\պόŦǶ9yfE3ĒɼUGڀ11 &+d/43o6 9;h<1=k==)<:862`/L+&"  {dh*3zMM|=P+.0t#;CaC>ސܩ[KޞbX(&s~ !&*/25Y8}:(>>=<:.8401,#(#< DI ߂ٝ{r׷AV#1R^C\ "',047:;===H=2<:X85F2z.?*% G (% O>Y~1yT >.szP-q,OgE݂ ߉dB "'+/L3D68:D<]=>J> >;=;973/I+y&Z!p LE%ݫх̗)F<*µ һ&ÎDŽѽDb1 8$)L._258 ;<=C>$>r=,>j>=<:i7C40},''#Z+ EpZ_|I]3eB%4'iOrV`f(4<ލޖ޵o!M  5%)-U1z4 7L9;D<==z=<;97x40,(#r [?B ԕtĬCmxʱVX۩:t ho#](%-q105\8:? ?>=;963/i+&!r" JIvj| ^3lzBAeP1^0u>dfG=hU&V[7ߦxa@f){ E!!D&*.14~79;9<<7==F<:8R63L/+X&_!& 3 e?t?>=;09062.D*% KZ ('` | K 8k^H&|&0P[4:6(?`߳^?\ugh 0 qG"I'|+D/2t579; <<<|<;:7/51-)$k4H +cCyrֻp˒2Zge!hSտt}ߊO???>a=O;8{51-);$}  sDJcI$hCGP.nj)BlT{d$< D#I(W,/-3589;;n/=:840,'"` H)zh41|*w'ZsjsLzyQt OD&eU7glsEWo =f $8)'-03;6J89 ;;<;J; :7852/*S&q!DL ~IhUygù-@@@@><962..*E% Ww + +W+0 }L8T0|\&0_WLe6-qG ZP$NU)SKU02m T"&*.14689:D;P;:9O8#6[3/,'#l fjt9BգhʙFu9m]۹e{B H} _#)-W2G69<>f@XAA2A!@n>;840y,'"9= R 0v߇F 0^;&[X5zMjS`^-Dmwa9gXQ=(d   $(,/2;5/789`::W:9K8f6309-$)$n yqݝst۾Wq8紀ĸÀd̶|װF3a95+"',01W59!<>@A]B4B[A?=;7 4/<+K&!1 sjA<#D.M)eg#}cN+9D3jGC^THUv 8'%!t%)1-p053{5H789:):98h7]52/+'#4=+{5 ơ\Z߳0EG`dK١^gh C$^)H.26O:L=?gArBBfBVA?I=`:6 3.)$,  .hdZN߼ޗޠZR< t;B<tg ^Xi3@:%Si\Y6r/b bB&"^&L*-035]78c999,986M411.[*&|!^F _B-0ԥ{ɺotdzWo|eʄۙtn BP %#+/E4*8;g>@*BCCB  @ Y #@'+z.m135i78*9k9898T7573L0,($0u T P=qM'1ѳ׳=aʾ ݩe1G _N"',159(<850H,T'"j D9B-%kb$ta {4 :fZFr@]BCCC|B@h>y;84/*% m ;=P.އTݐ9Ki0q++tz.rQ:\dB\0)BE|bSZ yh $(f,//2]46N7$88887530-*%{!9 u)-Ż߼ ( ³C3hG΅ԏ@D j .&n+E0482<(?yA C D5DC[Bi@=:"7 3.)}$z{E> ތ OEzj2#:=2rm%l:SAHCDDDCAv?<950+&!A YV]-XU`HA+\GHG0moB_I}h3noDf?At]c(gQ Qu#['*.03466O7V76 642C0D-)%t!} +)3wRiʚ +Ź 峏_b6|zysi  c&+0 5!9;!84/*n%X p"/B߇r۶۲F#_J[sXl5.{J6S!b Iw  6 F$(+.1+345666L6H531/,j(^$/, UF Fߏٽ4;޸Zg*NMиە4"gG"C(h--26: >@>:!72>.=)#g [F):;a\ۑXN;"%> :xo$tvQ39of' S8P! z+ !%(,.Z1H345Z66P65420-*'"hpa {a\Ҧ̏¯ <̳ϴrnljћX  $*%/38;A?BDgEEEDB@= :61,'h" 8g q8^E ۉtܽlwvjgSY@UY60K{gz5<)6@!7 !%i),T/1]345 665431/,l)%k!C s+o%mƑ7'볉IErik  &+0`59K=}@CDEEFEwDB?<95y0+^& /_ OZ>ލa۹ڂںYYܾ݁ߦ"`z\ 1{{W5%3jTO(l76 "&*-/1g34W555'5<420|.+(9$GM  =LADExFFE5DB;?;830/-*$G ,<+w.a pR9$w.HݢkAC^rm1@0LXH. DQ#.} |lb6MB* kp#9'*x-/1^3i4 5E55}4s31/[-N*&"kP TހؽC _Y>Rȳƴջ>TG iWa3 $B*Y/4x8m: 72-(M# $hdn (< AG6n-V*w% %aAsg$4yTmA mSWhk E$'+- 01K394444321.4, )l%Z! mѹ˯XtQ F9ȹ߼eZĺȖ{ߑ}  &, 159=ACEF/GFoEuC@=:5e1,B'!!/? c"fQkݚ[ڞY|;_(NaMjp-C.Y}BY3.?&u? Y=?E>!%z(+-.Q02333_4]43310-+'$\zH )9z0@ļbմϳYҵ뽒)*ϻڡ]Bdb"(-2>7h;?ABDuFYGjGF)EB+@<940+%% Tjq}l6Xzں7@)uy]J]yi![= P3u5 0y/} ?"!%)+q.p013333S3a20/,)&"n FK(_66lͳÅwԳɴ{и ǧЖI { $b*/S48AmDyFGHGYF^DA>:6J2`- (" [':ߘܱZو/Bض؊ټQFޠI@cWS/Iq=&Z 9 8c#&),.012 332103/-*p'#n xa&-B0˳qߵͽ`_Tz>;&]d #(-27;?BgE4G*HDHGFCA=950+& " +BE&GqHHnH3G.(k#o \hzd؀o-Cٿڡޅw;"2mt~eA2|K^%hF*h oUQi sL !E%a(+M-/Y04111z10/Q.b,) '#tf  qf܅{l#VW86%ňu6M^#(#.&37)< @]CFGHI^HFDA>:~61,p'! M"_jSٻֿ֧7 :)k'q|WM2`@',y4_ihbKtC#/ m z9 o"%(X+o- /300E1A10#0/p-g+(%Y"_- 34HņF$(ӸȾhw2)I  %*/4h9=[ADFtH5II HlF DA=9N50^+%  |&68tCx>zKc0;b6z3!It3-<2yR 0 @#M&+)+-.0000D0n/6.,k*'$!m`;^]C7ӵ{ȪOw("lL忡ǍWނ%# !&w,1u6: ?BEGII2IG FsCI@<83/)<$c]8 1FJ&~ׁ1;5߶0pd ,T<yoFW(>k/4PFx"h{% n / #&})+-./G0h000/.c-+b)&g#y %lhE,(Eו" V%6 B%Τّ,L#(B.S38|v:6H1#,& ?*YKޏ'\"l$>ոՉּQU۾݋J?h7dn-|&'SK &W  h1`!$')+-.4/{/i//K.2-+)J'S$ 8 l,I 긐roο}àM̓}? !',16=;j? CFSHIAJIHF7DAg=M94/*%% W)!RYy;؛ևԄoֹlٌ&~'? ukk ^{i[WObj_i  &B!%'**,a-P../.j.-q,*(6&!#v | U̵·3䴇A) aӂNpyr0#(W.{3N8<@DD GI3JuJIgH-FcC@G< 8j3j. )c#qO  qB:ww*xf{dԯRSֺ׌oqpIbaWD,? 7 [=_y-#w1c 'z$~k ^'}"%$(Q*,A-.}..Z.-,+)'%!3kx9  7E?3)4_ֶUGƬ6̴mƆʔDգ۝#! il%*"0-59D>$BiEGIJJIGEB1?>;62,p'!jX^H^%q،8j q,F״6:7g]2 g c o3MGcjoFUFb# 6 :"%\(g*+--..-'-0,*)&#  Dhwsnpڸ%yn ~д󵖷ҹYtXCu  !',16~;?oCFHGJJJgIGDA)>:50`+%. hw|{ՒӡӾ5;_=i7`#1?JB s(}Er?9,e3 Hj <QB e#,&(k*+,g---/-~,u+*"(%"]k?& 9~ӕcȚQTVSȷ-Qt@EYD#(p.38 =ADGIJ KxJIF3D@=884!/)$?  *ߔؔnF{;!ڸܲ^)N12i/J J99[&X9e _ ku #x&(m*+, -4- -,+*3)4'$!| x(zT=˺B>[enk ;H %*70U5:>uBEfH2JK!KJJHTFcC?;72-.(a"RP ?1kYs4Dk"5l8'QrvA ? C }\;}` |!Y11>  59!#$&(Y*+E,,,,,/+)Y(:&#g  [&)/Fzόʚ:BX6ķ繎>N+ףul|9 } &,27;?CF:L6f1 ,& z, Zy)dDԯҌҒҬNIطڋݶGN?v: & y h)3+UWcj`4.Iy: >2!~$&(I*M++<,<,+^+y*0)w'>%z"+Zc] 0QcmyߚSEFO'Ե^ƶȺȒ (I" "(.38I=iADGI8KK KIGDA=94/*$; R,0 a;ҳ҅gւ@,mCq  7 / n\CKp ]i: C|U"$'(%* ++++`+*)g(&8$S! d8p?̭k϶aC@DKF "$*O0y5Q:>B!FHJKKJDIFD@H:50?+%FZ Ym޵ڨ=o-g l*OmXܖZnKqQ9& ! ' u  z)?BbFIJKL\KIGDCAY=9=4/)#ZV R9(oَPԬҏХп8 O/'2nqrVR T ;UZ4OLLKSIFC6@'<72-'!iOIc<ߙ>؊yoEІ i?ՈB_ݿE>S/4 5 7  8 k}uPJ*ibo# 1w- s#v% '+((X)~)c) )h(o'&#$!! ]N8uϣlw p|rġmغ&nJ"(.38=AvElHJKhLKJHFB?:P6M1+4&, r GG "!IוԫPq3kbײay ~Mz T { =  I Cgfw(o  VI!#~%&'(( )(~('&9%4# y & 1A`ߍ\4|T׼򶗶ﻭ#"|E90j$*`05:$?+CFTI>KLL{LKRJHHEA=94/J*u$Xx ;EH֪ѰϑϔϹхӠ2/~x\ V@ ! ) t G * _tXm&g ^ gtou 6 .V!#v%&'D(((c(','&g$="<m% ^3dBQ]жfxؼ/(c{s  &,22d74<@nDGJKLxLKIiGaD@GܺO`I X ? ` O y O / +h? >HwKHse 4 6^z!#A%V&'}'''T'&%$"5 4#Z M/ 8hں<[2ܸ-vk#վ 0/!_<k:$*a05:>?KCFIvKLL3LJHEqB>E:5j0*% \ DTpܧ؉+~lζeπԠ֓_H]I#w- p < @  i w!P[(CO5[2F 1!#"%&&!'?'('&2&0%#!(T- o &V޼ӵͯ(6eh޷ֿ<2`hj P &,12o7K<@DGHJKLLKDJGDgAd=84.<)M#L {LwBky&j1m}Fπ4ev7sPy & =  ! Wl * CMZ 5>bj"#$%h&&&&H&%y$" - d5w׋Cg TJzWIJ}ٰm; l"(.4#9=BEHJkLLLKI#GCM@%<724-}'t!" /wqTbݡ6mFѫϑͦD,ϊ_ҲxףޭKC}|h`R5H @ ;\9   D I 5.sisx|#  "#$% &M&W&+&%$# "|7 u,41ۄ@œлĹx ٸGPCI; Y[}$*d05:Z?fCFIKLML+KITFC+?:#61+%- `oj3PvqsD~ ϠК8ۺZ!::56:8 L *F q @ (^bM+QgQtL A &0N[D( "t#$9%%%%%/%Q$#(!2( !!UߓӓΑ ӽDtgkj:XPmg|M 9U &,22z7Y<@DGcJLM M>LJ\HnEA=94q/)#1 Dr"ӋѭXvC&Ձh3"% ^  n 6u M,7~ 9 !J#?$$O%|%w%/%$#8"; :q mB;vj'L=3ߺLuPظ˻&ș ٷK. 4"(o.3'9=!BEHKL)MLKJG}D@< 8*3-("-t+{YeҦγ̛̔*4 uZ;u n 5 ]fvZ"~ Q _ # P7Xoj * (=B !##$$%$$$"g!HHF QA[p1k.IYX9E[D$w*L05:d?tCFIKLAML|KuIFC?k;61',S&. X  ث0j+M<&ъb֚ݺi%U}; @ Yv X g t.P>eEA uvsO2 !"#$T$p$R$#5#"V = FB[$r<ˌƭt͹,EB(ȳѣ~ K d%+f16p;?CF5IJKK2KI}GD>AY=9@4/)#H P/_۞׀НΧ9~Є ۙ0Q7^s k - C5e{e 1W Y>=Xh k!"""""S"!E +I L B^eqP *[\+WS#3G? Er &A,16;?BnEGIIIHFDA1>C:521,& 5,9+۲ԉЅϳG<ΓUπ"7֧JH8Zs ' !m s j C euww(^ Qd55o } ;Bv>" -!g!n!;! K_$ A`^:XQ-U_dX xʋ/f!S;`!-',1R6:A>mACEGeGGEDA>$;5720.')##8 |,T1@,ә{yχ{fەT<`p}v" |  0liZo 3 %Dk*w-JdDX_W r Sp*;sT@ ~(HL2&հЭ(<4"v‰p͑A{1OzT1 A"',159Q=2@tBDDEtD+C;$874/E+K&!q dM\><#0{҂кjXүvե;!C Twj. . 9[U27 n N6?wf3{i T j j9#Q s R}g<хPʬǟ'I@nZ~Ъ_ٝAD < B#"',_1u59:<>@BBBAi@\>;8(5<1,](u#BD WfgGKFے^֯mӕ"HS(eXg5=K J <MI  g1E)}K^r - O^&P * ke ~t=xΐ4e(yUżŪ %ʸπӴg܎cV nN/#'(,04$8:J=>@p@(@7?=;8532Q.*% F I}Q{ ޒאvԿdcӺnԇ&ۻݒl<p # V 23pt" I XN)+T15 6|  YQ{G`(7 a l#?C֮ҋ=1Ȯǰ5>̐u֪Wl %z}#,(,p03 79;==>=<:852N/s+I'"r_xLe۲ׅ֎Դ7(׳ؠu>0383"L ? V %WxyPYt Q d xV@I|f)$\qF?`} 0.rS7mxI&\ ;prG7ޕ֔Ӻ["Iʴ˃ͳiҥcٓ55~N #(,/35%89;;;;9 85 3/r,($' @ G$9Pnta؇װ4 <ֽ֘iYܜ(U&n.i\ P R ;[T$  nLaQe[[xk)|ht +$!d>h H}h4ۥלFm6z9v7{BՆFp l$ %ku;#'+.1468 9n9=9u87C52-0-)%!8C/ JKW$ۯׂٛq׵L8VM!@Ne U D }3$p & b`|%>5rNE K H,_fj T p/;.߬ۃmӊ!Ϙ΂μ: W2miB `#m'* .03466765c4y20\-E*&1#=% ;H\mR\߸ܶ+@7LW$/ 3 O . WR M  =Mq_c;n;b. 3P=}07vS  F\(h܃>/M=ҩӑ5 #TB#&*,a/i1344494131/L-*')$ K% ia tk}Khڋۓݛߐ*P8dwMd ; D  ,L H obYhW+5BP  h <I\:,% k eA~8=ݛUw@$ӷA7بڇuj\@  D<"4&+)+-/11b2D210.,*'$!@C ; *`Ab3Y=j2EޤRBm9MdeH 7 , Kx{O L o b * {hSRlqY`F5 G p)!Pr  {Y11^8x&DT0pB?& KDV"d%(s*k,.%//0//-8,0*'%%1" uG (ޏD?݃ _ X(] Hia& & S .% y e`F<Dd797>G i  :v\*  MQ@Fٯ׃xהhyy7%@; Ote!n$&)*,---@-o,-+)'*%"' *rK6o"߹ߔ7NK]   } | M d X * yL- 0ZP@\P5ms & B4mu$ 31RUI+ 6iy܏ۙ٩ٹ+C Usk0$Cp Y [#%w'(***P+A+*)(&$"m 2GZ.Y!9dpdDciLtyQPq0w+ThhD U 2 f u T  z Q' P ma G x,0 *L}\݈iݺt~}oT +V>'"%$%('&((((<(?'%3$1"lV I 0&)m-( 5f' w    z + F @ -  F^<M@ "N{` s t a ~p;_(j;q-4߀>0q! ,sej Of "$<%&&&Z&%$8#!`V_  zhk ag#Gjaj{}:H 5 , r P R 8|D'^ %  6 Ddf9 = ^ = <py`/ US h 540:`rg2,F<1  Zx]ng B"=##=$<$#"#"  Y{t N {<;/p w Wz$m8\ G j   M  %*(.3EZx)&6M"Jq k + O  < U K   0  ,r]j>TNd5N 4 >*T:>Z -!!!!^! }LL z1g).o O9BJK 6 -:m`v`61 L  9a1CMoY~t@=kS K7LO .OQ5 & u a 'Ij\@ 4v?[ {K !  : D ) u ?Q|slwr$eJ;N3JX@i   AX/3aus  |5^y~S#C>~)q z ,4 ;  G ` Q  J Cx ?t; N")SQ[lU>NH ! = =  a ahT~=G_}{JAU, D` 4 W>| : f )UlJGfd*2@ { A5 f Y)j,ta>7Iuc]f5`w / F =  WDX&zPX/2\+#@"L/. _ jK{nhmVi K<@ UuG@_ H NT.O  =H  JGYF9vtZVlt\=u)bN!EQFW ^nn NiRIUm B%z$,-/K  X Ph($b\!iW2{_6R >QJ$j-Dol zz2Yof <.@Y`O b@LD%jNH*q] q nfb)e  ^zl8[-E Y R$l;tA.guC8Wemg[M;24AfYp559vz_KN p s S  C$0i 1 h ~ Z(7swB R+aN({+wB(x Y=YkWHCFNRTI0af  U | ]  Y :Gh 9x'["YXJmT.GA$=)+y:dr!}1]G98>Oc5tLVF,:- uOA\["5l06u@`7u59+ *C*6I&~OQ< XJ"VnW3=:-s>PS~meekw*X2f)487+]lFn*iIazbXdAV=7qU`# BKC~^ jp RM 4@DA4# ^7 Y/ ?` (?R^iormeV@%o5s,\oA$['tfo*+rDd}wW2U~0=S Nse`^dm|.Z(\:`&4<BA=5+ r[B, 1EUgwr]F,vX9 'Gg7]$5AIQUUTNH=. z^A' wg[QHD@?@CEJRY`ku $(/358998843-,'"  garden-1.0.9/data/beat/walker.wav0000644000175000017500000014403612457263310013545 00000000000000RIFFWAVEfmt DXdataHx] ) Y2^s RtSk \/[]F"  !("%')e+,,,l+u)&$#l__ݟ4rfՈբX؍ AnyYVaz$$Zm- nM!$a')+,p-_-,*(%," q|8 Q= Y,fh(c Mo\ p #en O0{g#; \zW]߲݇7 EKX 8eT =.hj\] nu %+i14 52/)$w)X PB;)P0l R D>6ifU gx#$z$![ 2v݄yݐݎ5$ /n3ZE y k`#Y7zH "_-a6<@@=7/&P AiKFrjҏmքۉAZ s,Hk^ }&w$۞Q!#)ޑNׁ Н̙i%ō73ʅԺ*7M }M9x e('\~FZ#*nf,|0%+m'U; F \ ` ;Y"${7JW3^Ap35CY( 2;:Hx|f%X 'o>@ bI/BI E~C{|#*  |  ;!$9'i)+8,,p,d+)&p#Mu 7. -Pc9"$ٕ}ߕ 7#Qn4,O\m~ 0 'X" $&u)x+,--"-+)'#7bM `[aq\\}F 6E@2(*Dx; G qy(, r hD3}C`u&e;[ \0[Y#+3IJ A!!!H!( u3[c tfi+@ t<^X`Qx 3 ; $ h l Y`c?v+ Ah@/jH7\@Ol \-# 2gf&c VoT8 FL:,+ )u " m|6h < &!Kc N I"& E }z;7~^-/پףqP@ٿ[ݦG6+3IhhMg[cqEU&l@ݓڄ*ךֻiP7 q n t      4:?i}- {t X  y`UBoLH"6'(}'#W   3"Bv'S!I'@*)6&i su W2 rY)܅_8 SnyaKK X h q'*[*& juB"d+4Q:=p;5,`" ^ _>7Lpe.H5( %+1t57n637/)Y$JE| 0 tk]i \!*1;6,74 /' Rdr3X+NFķYl5 < #a%%%#Z" MS wqAnN-(fiP8": "&(~)(&$$ !}"L] tb)z$! E ;f9*FpLu){L "#"~JyW1!E$)&'&"$g \@%-3,8B:961,o&! #N|0 E}K \jHX zs%# ' 8C5Dj %)+ ,)*$4 x>gהٺ{|D ?cwN '[Z95/?0r O+& ,/K/-(# s?2IbӀXېj [e!!p "9] ܟb9ѢR`e k /,1s-؀йΒ̇5˻΍ӌ0  |-v3= k_Y+`zgeZn fDkcmZL-dR z 5 B   ` c  ?x>:r=b /h,G,ZY>x VwD H/g +uf,m'x gQ W *u^^b!@$&)*,,c,v+)4'#1/ Whgڹպf^ld'tA Aj#s N 9b4" d#h&):+,-G.-,'+(%!_ ET9NNRQ)]O7Q|se{6gH-X  !c? { C N?=QiaK#{9S_w 7|r2!"#$%&%%#!0e Xbn9?7c^Ue8H_9!  F >&Ry$q&~W j|  `  n ll'Y< > 7s[ q  L:FN ] #d V pm'3W^THiY Z a R)NiH5g Kk@_hWTܴnxwp׶BL۠ yB*4V{#}b,e_3L`,ߑ߰pH>w 3  " ) & vThu~ v < IB1;j  1!%2`+&\Ա=ی:|f!O&e(t'#ApP BnK7&@ڭd@%+-+d& ,>i[(9ۙb<n\? a{:q Y%.1F0*!&D^ & &()^(r&$7$%%w'*{-G//k,B' `FnJ&+K"1>ZGJEI=C9.$aN~ PEK@ !.^9v@ACAA<3(G@)xZ+H~CGp;toûߣT!E%&&%"( z!'E  bOݴچ!r`<)ۏv.MS. !U'>,/ 10!/',L(#H+p& x3'n><5824+$Li $ 2ulLe*o,ho,X2 , V ha>_USmU!%*-s/.+:%ttڌ&#T˭ЄxLM5l CG K n  = , a%Mc c$'L(& $/ }E kP ]ԣuӄי/yU y%=)R*(% r$ ~OI)kݶ9dHN (s "@Z_bآ_ՌeFv͘Fuy =nk  Xbu\`Wm8 Qt'gc"\1 i] , A 8VKu K}m2v"+gߞ\+#j(Pmv\ |Q=_A=8j.\6wHS1h%lmv *+Ck{!&#$;&'(2)f))((&m$!Yy^k ge %OOfTx['#Mk:6! [1ZJo3iI c q=r3P.BBG+nK }] wI#$( ,9Y[X # i +I22xpo?[b][az 7 KeXWCC N V J$hS>|X& Z U-XcDނ:؝ؼٸك~ܾۖ3>7s4]g`L1Y]"0tXkMU _mfew,/_[ |pzi8 %ES C x )+Vp:E,ZO+"D &i;6lm .  C)^3Tmԥڈ1P= j"'V)'"~%* " B a 4\nMN g۞ 3 F.d H%K+-*% C? y" g E S ^ 4,Y8CLkPOI>0q!&y|*3pܪa׃'/|>IM M@G=<2&[ ` CY}ed%/&7;<;L6c/'I" LXx>C@ƕ޷0\3}.hK T& "[#"!0$0  aRL4ةSzh ЫM[FQ (/418x98X6n2n-'J"%rh4i4. !y2Oi!   \'gEbjas^*-9 {~Y'~,._.+q($! 0!#j'+/232/)#N@\"*:29>eA@=6!/&5C / g )[fԓv,#Љ4' cW58>6Y P:NISbwVU9,oL? } F 4 SWNy 8#%()D+,,g+)'~$ ^^ `5W .WӐ|ؤڅݮzAcD#,EMUx9s=a "Pl"%(4+N-.//a/ .#,x)'&N"d|b? ?3[7VW%c 5*Aja.!n36n9AEPt,1} P&]P#h T~D0+w S"!#%')[*?+++3+*^(&1#T U@]5&wsq!7?Y65!z][=V%qH:x; *4 S4D b /9H{FW{)>$xl,E U 7 U=tqf9: + > V6w0N%OXt$Z" Wdq+>LM o u Ki`~T!9ߦezxZyG۪܀W.ߤ7=OD#o)(&`V (H"4&g\;Ht,$ am+ij.nR-KYXI 3Q $&'9'&%!k "&kRa['FTpDovI .2j 3 n& / ~"u7׏Pg-Qv E  . Z _ 6 + O[a`:Yu:4$.&'e f*,p/S -svxPm b~Vzgh)8 &. 46;5Z2l.*'&y'R*."34798:683-0' 8Sn$,3g:>&@+>8;1'#[ >XAcJC˘l|G߲ +s%U,/?0g.+B'#v =2| 8N\R #4),n..6,T)&" x^5]?^o x ǩ\4(Ѷ٦i_?t C3D!"!)WHL6 D -߿ԟkϗg )4:>=< 93-$& b[eVPb3!E&R('"H /udl/jN֩6ۦR "!p: g#R܀zءM߈j*wc4  @\p5yO8c/drB!5{BcNIGD5 ^ r;y%rX a\h``v4jrIz}n1Bbm& #tBMr_9 PZ(cH,/&Awz n  p G K s"4%')++*,+j*T(n%!TE *{Yދ|3չ JK٢Xd Kdij} :!%K(%+-V/0100.<,G)%!*l T-kd'w,--BWx|uq34CvjRAi,3t`r^<!" F)" "%>'/)*,,A- -M,* )&# 8I U-sr5)9c=?mbZ{ Z1xܵ=C aD2> & Ai0hJe;cxkOmnLo,U[;=s y s|zL\}Fc]K )WU2\^`Vc(^Hjcp>@~ # H43nu:% D n4-ޗݼ ܿۗۡ ܆qAދ޹ޔMmHܲ(ۯW-8ڀ%ݪބtdwc(V&n)00_`\*t_#(T|a %+t034k3)0 +w$ %oRUnF9mgo Z  7H' S- _wW+0}FjMb 4:qp (\h/  9Mr y3 ?!0$7ӇցFl%19<951& h8H H D9a'8lGTR:XX9TK@4)pEs 0|Q= h! s85#'*,R*%, )"&\'$ "m } : !%a('#K3<i^+ͷˢ6ϱSmٗۑU&׊Ջ H ~r"%%$j".3 M?w`jiؒօ]E߿ UY "-6w>C+GGFA;4,$>}  ~ (  i = M ( ]IE |^H,|!,L5:7.d&| n g|T(F2i|G Ld-g5+O\V=F: bMtg}fs_)d+Fcކx ڶ=[pF:[=ހ wN[jXS BWR=O>^p k S!^Mh$%n g >eV9ߌ ޠ޴D<z3W,rdix#G5 8 :lF\E| ?j.:yc | ! F B'J!$')*+ ,+~*(%<"  H[ &=׻,c`ncsTnD 0]vN}M t}>!$U(m+.70122520.4,( % #. aJhJ. FBJPc|\9|QZ1$- 6B3$'~S`: kv F/E"$%')+,--m-c,*(%" s\7"F k2*pR\#=`+Vh אJ _[G:'  g>B@O$k& K  A5Vޏܠ)ܑݔ GcZn6F[m  "$4&'7'&%#c!cO ie2c !Y"~:(8Kh X i NqoLexoJ | 3U]Q<./LzAFrBczw^%f=ڋ'؂֕doosٴݒ  Z8! @0  N;q8tV !%"F PC'.48L:9o6d1*#h $8u";V&x|Vl )8 :p.cX KOPUK*[ N _ 8U H  H .$qa $$ [V]}kѦ߹ +?8?Ae<2&% lS4o{ E(06:h;;976420 -'8 8J N( ( h(,-(< ) W0? !*0.2/(n$7.&{SG{k]_CV k # f% )+*R(#>8:IЍ2a$ԐL6c a\$F+03'41%-1&, V~0[`Ħcl@za x/;2DHIE?8~/>' ` [ u,!  n `B7QVQ8e2k  Fr"0#C!; 186Fymg!y[`8бרM1*|)߼ޜV?)e3Z![qM)a *]Mj {:DF[2; ߁Sf!(Ta{mY?{. - cF/^Se *9X34J U ZXQ F >kGev |#%"()+++*(A&"peTvHEԀґoeY׿ ޕ>8) lQAoB~ !{ $2(+.0244j4~31s/k,($3 jkao IFWR{maL{,y \f8?\t=Agxu0-dS W^]:6#0&(*$,,-,@+`)&#  9 cC4vM4 z u]Ao;Ak'hչ}D vB%IVN  M &?40YQ i$6)"Eӆ ڸ8/,mV'dG|/v d1!%')+W,d,+*'$   X@gXX8r?n{itg _ Y P B &a8XBdT  p:DoV:ޥ/ܖ]+ۍ?a/قkg#^Je%WPF [Cs <*C]haA9BCHP$6V%p%$+1577@5"1+[%*" m =}j@`?b!$O3_\4j (|\+ xq,n]c  #'H(%( @F?$){[ao O&-0.6*# z6[ 8 ',..*%v / !D',J01$.'A/_Y/Y1km\O#7l@FJy tDbwz } r ; "%r'o&"% K}j@g2N-k/[ ,Dnq_?}~Q]æ!ʖZ '#,-,.(R!rI6ߊ9C, F Ubktx]^Av u(3m<,BDyDA=2941U0H0l1 34&54%1W,& )B+[  ! o[r<v:߳*ۼM Ej)5>CPEC=6.&^BEx8P[1qU9SQw/ Yzd=&՞.rҀ.]nCI  %w*- /*.*P% ZݔRڡ ?׏ 42|)4=nB~D{C?}:4-'"1k!ty %,OQ<8=Sa[J'v2<7S  l%''l%!;l? IY O=޶ԛ%ɋʩ0\JD7Q7NY1sNf 8@/"&M;6bg* - >1OIWZF' j7p1*+1S%p"0SY:V~~6(  u? * pn9nPrQiB b M W<6!$%>' (7('h&W$~!x ݅|՛|1%~P+[hO&*~6#u $m^!$(+-/B1+2h210/,)%!h0 ,Gd0W FlD.ZjyU84 `/>e_#"O_^jnJ)C+#~/&J f \#%'')('z&$4"CGz g Ap HNN ! O `G,/y*[%(%QWaO+dn9lԃJk6@j=;a qp "$*%$n# M 7(do('ZӋՖO܈ G#q(EOC < |S(B"D%')*w+6+-*b(%"Qq, ySpFERJxc0mt0NV>Xx  $ m 9 @[_FFdcEJs/Iފ0pݕܙێڪY4:ك:߃zq4f ^ \A , "PEg_Bo= M az"G'*,!,*6($ & <  JndgiB-/(' II&,"?Q]!1 SU0Q=j%DE &7))%B =t4@6O  Of&L+R-,,':!0 T.L<ٺԗрѩչn> \L@Gqh : i%JV[l1i$ +Q.-4*#*J  m"6#!6 ~  J b7`U^c9~ GX##%l''&7$ Y^V j| k>[OO C [ M  > 4QvaR֍ẅ́ɒ-&a FZ#%%"( pBߝKwYJ,9Jom 6,6>D'HHFA(:1(M H 5t&n,wt QV=gN~:2'-IKYP,*T7'088,=?_?>=9510.+P*))?)T(a&%#>b   _,< 46#; LFOJ&08/>@?<71/+%&i9wj5 w y`'-hqM߽h ڎU b!O##"j kTUNARmSlhI>yd D>!<,5<@B4B?w;x6"1+&h"= !ӡϣpxL:U ] q\4bD~Z J!K'+,+(#Cfabp-+jz@wDW }fc?d_$   % / ) SAQ@ zor G$D CcE.+Bib7[H /{X /=Fy,$:4`/  P ~ %eiS0Bq! ##Q$ $#m! C) ~Cu  M׃eb9R=s|GMm<a-/ Y r - ,kXY!$'a*,g.//00d/. ,w)X&";d $ n"Bmf~$A#)y>wtb&E8Nu_zmMw3Zz%S['^ *#6s,!;""3""!j"X*v y@IpE  DQV  )Yj y`!nTATޠֻlWr,Zs n7p3p "$&T&c%K# xp smEݠ ד3~ݸD:dwD`Rh_[` Qs  #$&&&J& %!# u= |FtIW-q-*%\wa}$B]qIqF,IF$;L e _ W ?. 9+"Jh z{O % $(+,"+:(j#|q NOv wS.saBC&$ 7Kt'.3540*i"P0n^jR T0 XkU  w a5!ݾrӧЦ =H<$r@ Es b~m g)*SZ_Ys !+q4@;?A@=81)!r V}qH4AmkQ d  11&BI $S>;#+1677D6R3/++($]"4 IR h) Elr .% R eR#~p!_$.5z;>s?>:H61+&"< X*c< /Os>mQt -f H  Qf[YTLؘk5<z L# xlCOv}?$7W # by&%19@DEDAb=71*"L 5uN̠˕ %uX 8 , g UNHz\mnrY |F"'+./.G,($#: 5 V$aoE1 D ~x_E \ N.u8 y;? :5/)#k y lu:IA$+[ c O l"*n rEs,{<)7mhmF - } C u( %`S}5:+TQyO&.0u8>BD.C@ ;4,c$kP W0>qǸ̔͐YշM5|*  > Z}M]*:3c sY"'j*D,q,*'"0O]c1RҔg͍̓]#.26p?# N-?PZ}/ERz k V v)`\' pDP+ j 1\ovWR\c#qx|[[G ; ( x(: _ e-s+_E lj3u%;\ [ V + $ H D%I-"*V B J~Re P\b%)7a9:xyL=V-Wl lFJbz -#%'.)F***M*,)z'A%"k5JC7 8aoqN7qvpb=(9'ceE46-\g$Y  M  % >}$ _o#A V8 fw 7 59e,gNI E p*J4@jܬٮׁ1%Of GrZC'/pG"j %qUU8Ar[3t: EiH%H.e,cr#-!{^PEHSi  5 j ,FOCOJ.~ 6TK7)U~H c8W8+Xt}6`P7DG>+.~j '~[kX0}~;? ) ~ ph\+/mc9e4J h8; a   G[$Im` v  {2I59 i    x C@miAG=JY @QH9R<o NFDnO:/ a"vG^6 e0L1U3&5^:({ݮ1%#Wy "$f&&$)!B g%!}E[WucD$*/220,& deP`(W~4{KCR"$;%${!T /U9Wb%X  )#%&%"Q1iK׮r_0ؤtgOSMJ)@dBVp| S(f,F@Q?GO !%)++*(%!V~K x F)Z\"3nD~ bmZ; cVH@ /Ycf L* (#$#N" 3 r%LFBaT d m 8Dxiin] %a.5:q>?/? J h2 ;H '}rBiNuzXo*zbntTx#+:279:w9I6m1-+#J "`s݈Za"9XK Sj  Mb7i3C/ 5nN q #9&'' &0#! 1AKVSUسU2?ӉAuԀ1هkcA28;N'E=Jfq1~i`z|\J.]_A& =l2K  M:!~MLFe8k/R[`y 2 K : &%mtl< C5 E j \ as nBn2u> 8[t`IwftP$\#N Zl-1!K# %f&H'''&%#!#6 G cD'~sFw$`jmp^ h < d  f c#Bf>eFi  g5 r ] 59D  zPwefPS  1f]v4O;B)wDTt-4%D`Q~ T9 B"1%MXvm " 3  kK__TA'H  K e O yd(Suh/%?mZe2 C5$8~ Ub;, |C7[ nn vw6|O* f@r*)@di$$$i.L7s!Bqu݇^].x9S Z2 `+g  / ? } M FWrm({Bg GI]3n g\ e  }9ms/tU|etZ ,*[e0bDx~pIc_/'m߿ ےڏ(mS ~#%%#  ;P._{u1R :? U$&''2&#% LB0nt='. <[@81 1~~%U d{VwY~^GQQ|ޒsuwd+YL]\zXApA`q>"0 o OYJ vO= D!e! QOL n|m7'0 j hh B `A#?$MeY L b6 ) A`(7XH (6h gj<8 H;$_+D15<887 50*C$ B ;|gT\\,N4^v ec_14 RSIPT#EZ@4Az 2 ; 7`qsoleWF=PGfYoq G>#'*F,),*'j#Gp B}ZmۋN@J`K?U Bs- f 7o  30Z t uY/8 H ' a$CֺՃե#N C:nrp o 3JZ%@rqS{=[aapzHZR3Q!  ] tM# $,Z%L+|v2r%4 @C6gY-  D Y & w <yg'1hK F 7 t   ! ]},X b Zwk0 #?D475.1!b, ; { rjY !"##q#"U!YtH .BbG~XCo] t_ = P  E " s ;_u~=*|&'kE<&6MIZ!c[w= +^>6UT!~q g7S.7JuRT h[4'oG8T9 [KQ F ^ C)YAc^,%?lp{L9h3@" JH  `  F =`/."'P~1 ]QJ:sswg*<StwMQsL57{WEE[*2nVHHLQYVM1^Iv(P=TKz$,0C/I|ޕu0;rU~_)} ) k cI1W * Oj %{O.U W$9TlxtL)!X/\[ 3 }FBmdto " / L J j]7FS ޟݩ 1eW ;`]FUJ& }fx01r4e# ts?:YG@e  i . P S " KbBNR@`l!r * ,FGxs 3+\U+E ujK~^+&R|r n@|yx' Cy$?r1G  6 + 6EKZ  i ^F U m _5u#& + (N BhRu 9 $(*,+G*c'R#S|  h?kx>kzz F m4f;D 0 v q(T^~E$ := 0 uWp , H0MA4h)PCL "rTFc V e=j.8*= W:}  , z b^[%*< b 4C}5 5 5_+RG"o!7ۮچڸK?ܗSuv}D~/ V  zHrBLx{@*L:{Nf%$nP<>JW\ F   K : B \ 5 .ao_D)I5 "=>'WFoqr'BuA -  Yow0+ V !#/ g [ y > = ' |  0D b 'c y}&D9IPm2A@ 6Z\4   L M{IQ0Zy4ZX'28d^_d *J X l'[NUf8D!L2c/ADE! K*Tf `/Y1P5Y8>EK *$l"$nqngBs}z/'jdLUf0MH(a U .l  t j  %  jas:"Fe~l5RdZP x" f[07<?6LUQE=5)zr. 0- YqIRvr )|;Y qp j 8  ' J k } y Y  ^thD8}hC/dhbiuvb*6he! ua X c 7e!aQ P ki_T_h3HYYG.RHtA pF"|H3js=R-7z+n3ji V 0Q!M'' 0 2  h 5=no<   6{p%,Wz-+eS$ux4&To`'+ S2HTZj(zr nZbz4G[t="4z+ _+2 6 xH ? =A&8_uFV A Ev?1jtT R)rQhTZ{ p-bMB><?@>2|+ ? * Agn[6yjy UGi-gV0w\3 8PX2I4Q P!7 _rGw4 8T M G? zZ L OKH;2ld&_M f  H < I Zs&sO9!6 c  b ? 9 R5Rgf z!DB    <(GG{zdBTMy5[\Q>8H~sX6[[x w9^4M;N:ud /ZTR  /  pD26e;3 !<=a -Ibu;]xm7k.6643B[R,K-k`w-#Yhsd<3IX~f^_goofM! i M / S , A u u 3  /  68maXoI-^5]S@t+WuFO)~quUd42FJC;>SIbtuu6UA,z:os^<9KtE+eR2z=<+S Y|FtvM*S)s28KyoZ; nf!%DKG7$=zZSW*0 ~'>a*j \01N >M-G 9U > B   h4Rug'm{sV?, c)nBH.Z;r<7RCZZ(WgSN3-:b~!6"| Q)k4VP==q'0zC!&SdU+|c1` a[ I>mD& l7GiX-CF@APv!Qr:ZQTh~na-Y2 6 @W'0kX6wWDL[/NT; =#[dGKMMND}i$O`$e8$Z~]8@B{]q"[u .LO6\i:_^|@+EK&&6LVO.fwj4M_  *  Q #."r=WQ>.}587.jg'{;TpcZ[XVM3 kLo%pQ G1dQ%N5+=M`tOJ"/)uWdOI)L tMw0Jf X4uLw b^mT}?1Y<9Mxtl;<e1JXeov)X %78* .?D'G \IumC@InF3Jg';Uu:; nJh'a>?}&|v^ ? X P & b W})\NdN4?r@@ h<s- g<t0Kdz{X)O}ySwF@~B"Mt^j*&3TI}$bY=QIAnv4?6f8ZM2LL6OM Wf G=6]&(EE*=@m-3WA'>m)#Y@|W=57Ga0Xw[,aiH(aP|GB~OaA0sN;7Fi<6sh 6+ +0OZ(~ s1"W )Je|%-1-" _'xM% %2?HWiA-x; XP6GL!7Y[y']&1,gz; !T*b2eyo@M/ ^BHq&l0HDVN O {3rdm5q&x%te<}bq)j^%k`!u mh]81K_XF9 rJrJOd'iL)cE(&9Rm,W ]! ` CgqgHp6btC%*IpO@A?qh+?Y"h:w X_Bm\iWh_/\0h`0A>#P<j'OsL>Rn li6EF#<JF2M)`^MTr;rC"CF1,.^ MO"4se b0UfMt4pd~'LqJWg neam{+ GA}KJYi [ qZRSato9mgC+]6 1[ardf|Gaf[<U q&j78W~>d#+.-!|Dv(2F`=#"5U|%g<<t '<O^kx  m5q)_#-i:W8ayOREu*WQ_ pI. w4 Am"9So (;GHB. R wBoVjxK/'0Is?Y*^l@{(Je  u@t&ypN+b@U jVDr&Baza)I/fDPnF% .Pu CB%NpgDJq\PNXiO_Ny]1rBrjlq{'9HUZ][UI;)qha__dlumO3~} Aa  vbL=0)$%+8Kb"TNz X(^*xS2*Ihe>rYG5'/Gf5xQ a&Le}x\:m3jD$vskbWJ;):](RufD! 4EU\a^ZOD7)  {`> }phjt8w:y2Pds{~{pbL2g<<Zro[A%yQ*0dM5Rhx|q^G(^4 p^KA4)#  %1>KYeqz)AWlwfSD2! "(-49AGQ\fr}yrg`YQMIEA97,& sY@% uru~5[ )G_u}snkhijot{oZC*+>RdtthYK;.% %+16:;<94/$ raSD70)%%)1:GWl %=Vn~wdM3wkdaagq|,>N]fqtwxqmdYLB4(      garden-1.0.9/data/beat/voice.wav0000644000175000017500000034021212457263310013357 00000000000000RIFFWAVEfmt DXdata^ %08CIRVYYVRKB8) tfYOG>963268=?CEEEC?95.(" -WFs%\Afxwb::Dsj}M,'<^6nM1ic*a Z 8_?YS(`-Pt+oZKIdz"z9R "/56(  lQ,~ribg[3#9/m[z]B-[+R2#qm8Ui,t9h`}3XlP E>F>& 4Z!f-YMx6 %l:_jZ0Oc'I^$0W Igh  NWD3/Q;$}*=0nwEL : f = E\bnQ/bn\l+Y 0 |  a,L@?~F H2}2nP@K; 2 m|$W.* ;Q'To+{j5;gkw@8vl_/FA?5D _ U 50qs 3^tz3zdIx#G \Mmo0b) U>j[8!z1C W K KO5Q41@Gk 6@| /eF+ bRU@#)bTC y +[h5c+N_ny A"qhhN8 8 )"(,814647D63]0+"'$"B3 Mm3 ߾B6hX|E?r  Dnf@w g;8 73]JyCs - F k>@"s;pg   ZH}]V@ tx IoLu=\/#7_WGK3PWV:n?TdA{ '; D kcF g"$&(0)(b&"` L?|َKՖX?5 'Qy~^Y   15Usۑ/F5C ;"!%M'(('%"01T XUFU dlF Ne7#'[+o.023s4#43<1.++(@$ } #=o2.[V1 1NJ ^ OrDM5B-7\j1y1e q (*- S FE}@k4 bJo 2+Y #&)--C02454f2u.)"= bYV-ek$O iڐ٥٫ګ܋/_`qTPq7enDr StGPa=@T6BR/@u#g5oC't@tp x { tSHTlb <o9 $0) X#&*.x25h776n40,&U!Ma  l@n69N8pD:O7T\Q1e Ikc~ (L* L#%' )),*)q(8& #'A &nsgg IRspi}0% ~!OWAy1| k}6O&T~ ^bq&GX@?W/{Vx LCJ"c&~)Q,.0233 3\1.*%K  j++V֫r ͣFԆt  YA%\rg aPKZػԧ5FOEfF 54 $');,.1456s6p40+V%D s QL=Mj!)'1e778w*caP p@ XFR:wZCt p _#0(O,/1222Z0 .<+({$ >x< iMz#}4߶d52zSE՚1g /IaS r8[   rKoChObayiΉ`?ТHPOt Du#0&*()+-[0 35C7763T/F)7"q ei~ .6Co!&,27 <4>>;70)"k W(V!ޝ(7ݕ#/kxo8Jͧ#̀mЩ?wٵi~z 0f;Q@.G"/$$#1"# %?-kyi Fy)lKEA!X60$  &)+*l(%#!F|mvH =aIpa.|\o &=Lyl>++M-=.)^6]t3/ *J;3nF^/DUE X r N y.ZΔQ%򿟾 6.9ģȂc5d")06;d@DGIJUJIHFnDA>l;7o3.*B% s] xa _ |  5 6 iu6\UL?~eaaGg?lGrt6RkXnn I A Q=,qJ&`*OAP [#y|i_W<> 1 w(ck]bC*zZnj5nPm!et{z!"G: g!6 | KQ&4n"?%''!'|%# h?0J 'p`UhsQ fL.Y),:bU?\>Z߁Qضկ+e~ϸ`FlTֺcZ [#%(+:/2578851,'"R%-!!:!( f}H6 $"$%e&Q&L%_# 9`M3L  >wy/FRoe-Aj=cևLloĥŻ;γ*՟ i ~ MFo#<-| "%K'(("(&%d$#T###+$#"5 023 4i>eIa L 7Lkk  y  e$6Dyn >8tPN[g]2{]|t jO6( eo54>U:T lq;.}LcU fo &s5BF a1gޡׄ@̱Ǩ¶/Hqũ2> 'g.v3o7:=@CtFHIJHEA<7Q2h-")%"$ !hYBhSr by [ MJNFM x  B  w t 9' &#AL\~qc)(G+q&'  kBfDhuC(i *{hhP\MF.7W\d\yh$(3D |@mA}eX#Bu47  & ; |6Q ?  8_4/g\ }kr}~msKA߿ߏ6dw+.IYa[ o  ^l7U d'ZaQʒ/%פd k h #%{'w)+X.&13d6J8m99975360L-*"(F&%$$y%Z&'W'&[%"g rQ? Xk Pw2/xXU bGӣB|@Ěo1RĚѩ{.>8+` y J n B` D$'()H(&x%b$$$g&(+.I1231/*%  f #  Dj8* > !"H H!"l" $ S~+#+T-9<ڣ:L4!ޥ Q5]JCw?Bdlq1SLMHjm^ 9"y6?a  1zSk .F0۾(Iiԭcӵī~+8Xc!' -U1&58"93+#^e3hh/E#o(,0B34l42x/+%; 9 j\WZ>e [ j#%(*0. 2(6":=?@?<8i3-($! !T"$%`&%+$1!_Akh1;X%)  J . !!re.*"MDmHZKesM:kɥ.hË8`<׋ۊ87o4w} K^q !L [#J',3 '8;s -iQ %-^4;PBbH^MP|R R{OJuD<3) >|˚ľ$ oLrx E u >W(P~ϒn8cI a#F).L36e9O:9}7 4/*%g!+qM =  i ?M"&!L%'Q('&#!jlH"H C"6@| 7`hRdϸ8e@Ш/Rl ߛuzAnp/\y6$.8AIGQW]aegimieheaS[;SOI=0B#;_!nTџ/Ͻ޻5e†?Џ%} 'Y07=CBExG#HGEBQ>82G*! !9լI TĽ轱$6, f( a%e.p) qh  kHd < 'X |si#*|V?&J}jű]pb`T ~%"&n*-!0^11.*% d<.5Hiְ3ؒ۟^HR&2=xHbRc[@cinq;sroQke3]TI>*3'V+1ͷ\`qǽ!Xi{&.439j<>?X@%@?=94G.?&BHڨNϟͱ[̐OͩβЀ%יi8 o |gWx P =Whjm+) 7! 0"1 g i^CB%3^8|1F E  p>U:`BFyA_TJ!)DtWٞדs+ѾQ5{ȼ8nm!,5`=CHLQTX[)^^l]rYR@Iz=/!m70\t>Ù(\JXZpj5   D  =z)m69( x <%(T*~*(%}!tQ  7 *I u"v(,J/0100/M/F/m//l/.<-*'T"9HRO"[OQ3o- kP"E [R'B~XauT[,ܙ$G؁=߭$& (6A^KRX]tbjgls.yv~xm_N$BCEGMHFB;2o' dR\8ލۡ"֏mԅ0&N%A%0;M L%_31` r !! ! J; Uxjb%ZCs86R=?\UUDz JQwHWnFr)ūIJ;pĒErC34*S5L>EKJP T9WYh\I^I_^\X#R8I7>1#}R; ŚҺ0ɯ*uJV-Gls0 *+> ]!!"C"!~ e j3  Y 6 +*Dy+TxfaDSBq  \ ?#%'c*,//|1}34555|3+1D.*8'C#e 8mkUqНSob س"K4G`ne69Y4^;" a"ܓNzՁ-j1ѽk(D+6A*LU^gTnwtjy|~[}ysXlc:XBLn? 2s$ ӧ˛ ȼ!Ǵ͟ծޓ 9}#*05C9;;==<:703-!'hl{qnOk#T[ǞʪӞ w|pާ6߼y$E%s 0 + $@(+ /`12f20.Z*&!eD ]P[d$ӺcNIsb;٧e54I!'a,2/k0|0//u. .-,-+S)%J 4Zю>4šɾP;g7qZ!a%.7@3IDQX_Beimn1o2nkhdu^WYPG[>3(@vз"+_%3{  =5B p;,TjKT༨ɺm긞Yܼê>w.2a q 4a%.7?GL9QST?TRiPMJ=G]C> 92) b bߤJLOQWv0Wn Y &-4n;AQEGHGqEA =72-s(G#& 7F6 DdBY = " 07YU#!"#$%&<''8(((!($'u%#.> ,}qZ 5P>{̠XˏẼ\4q l 6'H ` --#vc4H 6ɿǐƠėēlǡɟ̀W'hi B7="(108ABjLV_igl!onClgb]W}SO LHKC=47+ )#wڍaE܀YXMEb*#&i([(&:$!v5  n+i<Zx> ŝy|łǹHXϻ+h-Y,qz+qQu*ZJ SO",)-/C48*::9741/,*(&#) zqYLɌ3^V $$&)o-27'>DK)PS%UTRRNIuEA><;:t962r,,$_M ?V;H70Z$(.3431.+)P('1((T(&$`"hbix*T޳o]-FԘ.؉ܚplEuG3p- ) ?9n O$`'w)m*0*(&#k ?]: %>LNWhsOL [ )UOH _y"Qnq+IҴk$ӬخγZ'(H,  t &,2M8?<>?>U {3 be (+x۞SUdɸѷPXW=#ޢS X"j%)-16;{@DgHJLL KIFDA[?=<;:|97441],& 3n* `26D3<T( mm F e $ r J d edp= hOmԈ$ȠR+Gr} "*RJ*L`9UF+f %+|0 4]67/8S8Q8U8R88Y752:.+( DY&mδɑLnlȿJʑܐu)(`2_:@pEIKMOgP#PiNJE0X0Y0S0b000r11151/,(#YW AKrj6b;O ! j~U; "$&&F&$"H  l: ,ڷ9ӏQθϡћӠz$ّrߟ4Oi`f WSG9!"S#}#V##"""}"9"!~ YR 5 ik6x:WwD7g ?qHڜѣɥ“Dv۪ۧ+ȣ~bȵmH  R d:!#%&&y'/(,)t*+\-T.l.6-u*&% StAJ֤ỏ; j j] _+44ַϫ͖ˣƷĽɺ_k׉v}.9j PxAZ#W "g$%&}&%$!b ,5eT#8 * .BRAl   ԶX(o0hܽ;32ەFFHKa.Az9^R`y 6H"z$z&(*-~003P5o6&6$4D0*J#[ P_PsƖp‚Ɓe߭ $w I+c4;AFJNRVJZp]_d`4_[UM`C7+Gyn 3oB{{{< >^2 m Y {&"##"!55s1*l# =*?s&Kwk@ؠۥjt#Hs @z9" "q8'WM"ɽd'񸨽qˀӌ# k:s"$v%#p z )0 0N!#%'1*-28?FMSXYXTNF`=3T*!; ڧdŠ[$ʛLֲ>zpTX EKu" %bZډZBȟœ}tϼ-N-{jjCd// }2!#$$%%'0)+.12!32X/@+&+ 01ZffE١շҴ1&ٮ߼> 'w-26:=@xBrCPCA>9C3*)!C n֏ȅ¬[;٭H([N`Ib Y?x!##7#!E'  <#)%&(+`/)49?EJMN5MIC=5-~& 4<{ ۫ӏ"ɥ ƐʄϏՙV ! (.38//DiEHܚXIjOx1~[C {A !%(+/~2&69X= @oAA~>927*s $ -Tkf Yا͠ԾL#%dzp'1:AIQDZcksx{{wpef$ZL>1%1O7*Ioȭyɰͼ#׏XSe,s!'-D37:5<;95D1,&!;d!Z JHf&GfGx J<  H4 C ]32ѭΖ̻l͐6'hB^\=  2 g mxe0cG  I(#F*1q7=CI"P Vf[_bcbx_>Z:SJkAv7C-#!uѥ˒£ 1ԓܫjp [ -"( ^q-ُӇlNUM8dQ/8  "$&(*++*(%<"m  T>tN~BOjKrk ; >1 "]$ %C%m%%x&_'3(('%"Q @݌֟P%y.w=6»ǜ^f IYb`f!"#$ $#"f"O""y$'*/4x9>#DHLORDSSSQOLHwCC=5@-#r ,3x"E}ҷ[oӇ0eI "\,5=[DI#MOnON&KF@S90@'h:ϧR,S֫ جⵃBܡ K[Q - 2)"Q7^A("+%mRi<CMy6! *v0\(cbr!״Ce0͎]qϘСdҧT҇uԒuLݰݪ8ݹZU@AyBBAx?;6#0@(c) btК%&òiȉܧ?' -=KqW`glpCtUw7z|-~}>{gu l0_>O<[)!};y"d-;Ѳ) &,258Q;=@WB=DXE6E~C?:3+# }xz::g.\k48A`8*e*J '*zk' a 8x{ fr= a߂Igc ܺ}Wdl[=4mD$7/89:BIOTWZ[\]^_^]YTMD:q.="o %CծȺ N(BT k)Kfr?  0j MQ'ϿZjոWٷ lo '^"L%&'%"EN+d[ M?S*)-K4~Fx'z83?9:}5߰Y k !"s##!#m!^@ dPe`ɉ_/8bݘƧbܱڮ3"LK. !N(.2`69S=@DFHHGB{<3r)E=a Eȣ-ɳKկ˰ho¸ɰhׄbL3 #o9WbM_J/E%!$'**,x,t+L)^&&# h BcE B(_W]x7afnu512Ӊͻmñühl˭l߻;$p-4C:->@AB=BuBBCD DCx@ <5u-#Hk/9#ixF{l+ȞzڈG} !H(x/)7?H7R\[Mc:iflnlLiTc-[QG=J4+#3 os=X\9I|ɂϔՑp=4S=?&,0344n310.m-,+Z+d*(&# ^ 6 %NDy}>EB%u-ހހ6)t2vW +ndZT TpG jcݾ޼5罦ƚvT h$}0;EN>UZA]_`o````C`^ \vWP/H=18%}T 9n:ߪۑ5,n\څH;l :tP$) V =| [Hؤ>ʼ <;˧нfb(aG@ 4 r51!qm ]i11 EBxݸUsjWΪfx?ݾ0gC S!@ b!!!!f u#> rܒ֨$ǟvƞ-L*ъ֐3k W0$12?K9WaNks{wl+_?QB3%k->94CĀܰ7-تDuWĺt k݈a ^!=&*,.//.@,)$0 Z k'>O )|LzNӋԴWBxָ֗uLؔQۀ Oqr m+ "A$%G')U+-03t6c8U997)51t.*'P%-#K!WM *VU 1&}^&  M6IVoh*jԓʊƾž<5OԺo@X¸Q(5̓vkB=  -%,2E8<@BIEQG I]JKJIFB<5,3"% iIԖmOȴȠΰfN: 5d %q*- /.4-Z*&"xtg5 ~r9L b V{m.48K!Whަx_ 8z$p)-S26;N?CDFnHUIHFB=7/'X1de4q}cn֝*Ϩ:͡[׶ڱ+@?O~ >h* !MIPpݘ~]†Z)]-ip %/9CKR3X[ ^^^\EZoWSOJD#=4*  cF:֑?J/NV "!O$&'(l('&$/"*M ybVl݆پ6Zlh{y7nJv"K^߸2_EOqc{~{+yv$t]pjbWJ:)P<~ި&Ϥʹā\č!JH_ϵݮ+e x):Q L E " [P[a >p q`aBگ?5 .(n2;CINQQPNKHEB?<8~3,$)-G*eۺעԝզc'VV NqI$mj TIUS*~ݐײV'ĚÈWǨC˩3e+ek8!H 67#`*L048; >l@B!E!GeHrHFHC=5," )X0iQP # >@ f%Jhtٴߞ{ wA![$'x+.12>2_/*""zL]PR٘,ӿ )y՝ނ^'3L=ELQUVV,VTPRqOKGbBFNU[^_^J[+VOHA:4 /)$ 0KًӔՂ17(>:RuV)FD"f m( g}] zBa;Qa ? A "(.37;Z?CFI1LYMLJ*F?8.$lzr"̰̤ Ӵq6 io C%Q-% G+ڰZGǖ!;_͕jm֠Ub\rIZw E9!E%(+y/636:<= =:61+1%0@ 4k8 r+rex.Z #o7i%jU L6gqI`Y &!""u"I!*A` U8OXb^O;w7I3.y)# +J'+Q8wH+g 3cb 69HEң} #-q GՍܗ a X^ hZe   | e8i#y(,03)57530,'C"Z uF|,ԼץC>t  8 !"%#";!UtiXT  rz׫.su*ހh  ?{!C#b$$#1"]"0 xW8_س y<,( TbhLuMޓ׳ӡ$˭ce}ÆkGۅ=  $*188W=AE9ILPRTSbQLE<2(AFP u qsj2FY:!')19@FJLMKHD`@;62j-(#YW( $.ުYڼځ9hnN]km!?HL4~۹:j0r'ېPނK0, H  scxFUH P DD"^'+/6232\/$+%Q _ ~dJ߆jݢ:D;k^% DK] .xu>HٺEx̅+ˆAΣД֎:޹_+L)TYfU# |=G %"#%&(k+p.14\7%99862.#(!dl4 k4HU')P,R Kn 5;=mwg ܩzZֈV,c=42@ uv #&)+,E,W* '"  bLr>  b!"&j*,.-s,)&"s4ne 7 X B;|@L- # ^ Cuh: l}wƸ:0qĻʶ jHy2Co zY{.%*7 h9 x}[Kw!%K*-00r/_,'!=d Wbw4xݞ?2l&q? \"'+.20/-(#Kx ; &׻cܴܯ'd۸څ"ܜߍwf/ x M( {m "V=)n1t[(Bpy`K>ܠڄbԛŇ5J8Ȱq1ܟ`D ?!)*229P@E*JLPNNwLIzE@;Q5/*1% {Q[u}!'-!37:,:3,$~  f1t]/ r!PL; "%)-*13O4Z30,V(#^"p' " e|W~KiWƎ qNJ8#/J .E M ? F !r NEeB L!N#!!u"V#$''#*s-0232/*$~ C0=B;߮ݙC$ =r! ',158|98V62.1*%!.z \ n޵ѻ >rHӇ&D޵ggGXv TzgK50 N Q  +&}+I<_49kYNH!`?3zϏ͹˩ʎʁ}cmߜc9b= %w- 3H6779631J.,*-***)(&L$J!7{h[I #'d+??<93t-g&)3t M:r1C2 <[#)-157U9=::C:987653_1.)%$]qj]JՅѷKĥb¾ŘȟїNI#c3!N- }CG~ n"%(e)G* ++&-.X0122c1.A*$,y%\7}C=PR+2!(-146W89:k<=>>=:26o/&S~%=۱טԪ6GŨ@>ǭoPsS{Xh Y A>r ?N,f#V.K]gekPpja>ׂA\3*X "r## "!! @!u"#$ %$!; ! W$)9.123]457t:9>sBFIKL0J"F/@8j0'K~ 4q0aS/JF|Cn9I 2 - 'Ql)%MlӝsD83%Rւ.I" ._%V*->..j.n../1322%2 0?,&4.ssu;nJ|dE giX| L B2+#gd ^()tD D.}Qh!mgܲ߀p}cb`?6;73/*#d )ML{4l9ӌkΘΆ*o&#"o_xF $p?XKw#\gU&[ @ R;M!D#v%(0+.)3e7 ;=>>K;6n0=)! *:+-]ө@JؾPz%a#(-1?4q7;?;C!GJ:K#J_F?6,zp ن9 bT(){Nϝւބ&<W- 5h[t5tifB~&rg>o p b  7P z/ A#UiWLq.In#jw Y4Eu,  '{3 YK$)".3:BKT]Nejm3mi4cZgPE;/1B(K @^ $~VЗXkı{ ڐM" Fv# iTَ5?nԲԥK+ ad^[$()*m*)Q)((,(='g%J";_Pq^AT` K!t',/120.*&!7 ]bO&ߢ(ߝlaYE/aAX1EU԰՜֌d*٩ڏۡTiZvQp3(&p !M)*06#A}S!N(-13(3q0+$ ;>Ojf&$ݮ^Ks GI(0p8?HFLURW+\_abaR_;[UOO H<@8/'($ &hF(̆ʲ4PKZ^U_e O6>GFLYu}+1<*WW#G Sߑ)3 !9(-038?5+!k Juo;ߋX&iEژ5OY c&.6m=BFwHHFC>O92+O$^;  89%iÓqάӱؿݸ2 ~(e|$fݜr;5~g r` a ~L9 #V!aYڀً -eޔ߳@[!N#];o !%([)(M%!9j bCRCkѿ"؝ޟcT! zG'6E*S^gnrtAu utsrqnjld[CPB3#dvu RAGʺ,Ҿ$ȹΑUߡ ( )]K N "Da7j5 7 G);Ki6w.Gds>{,ݡ ku&S \m&.5;?BBA^?7<840,( $J VkF?؅*ٙڀܡT'^=hF@ 5 6܅!mͥ͒ Ӫ#"ؒw(i}|ܵZl K f &g17#2j-)B$.<کһbM5gм٥iu<K `x; # # `G/f׳ՈԮDli=ͱ̖ʄ ͫӐOKaM`a )"4c=EJNQSTT|UVZVULTQKD; 1X% M02=i{* 9$-37b9a8J50r+ &!|a fc`7*̢˥3՘بyoc Yc[h[:ԴU Ӣ֝ٔܲ8mzQ Q) #&(@(3'%"$ F38gߎi<ԋ^0ו:<\zV- _01&#-2{7;=?ACDDhDCr@$<6N.%}4٭ѲϿsAo>T]ڻ7%i,29@HHPW^di7k#khd_YSM#93-e%`6u8ȁVUmȭA\C7awL"v { ~ !M#c$$$;# /& F v'K3;Y n>MPnޮf^XSZ$,  U!(.948;=>>^=j;852.*&!*1}2>)܂}މq%W'kE:dZJܑ7Ҫϯ-ĒL*0ÉZAȹRhH(C B (*%>,28F=g@BFBiA?=;1:8 8K7^64h2.)"= t{S9 ܤGT1*s& M !'.38<@3BYCCBmA>;7Y1*"78Z<ϓӻ imp+<? TJ0 B#%()+,-./1j23y56*888t8Y75342710 /-Y,*&!0 0{+EܵW6bvIIg8  s!#f%-&F&%$! #4$x.xa &­HѵG B8)4S\9 C P5k"'*-C26: >x@6BlCKDDEE FEuD/B>93Z-m&/ ) 2e\ ?@ t 4 T c2-_QuvߙXݹ٫חtҳёѾһӵԋ$}֥֧֟ הk؎7l*~D>y Qm37'_Eu UxS];T[TޡELԠhՀ6B (l%1;.1468]:;1<;:38405,'"$0!/{QI N C u,iNׅ[5, ?C"(,'027444Z2z/z+& x{Q.:R\؛Ai{r|]48 ?J"%V(X*+-.$/;0>11,21/,(#R ~i >ww1K@V"I?EݑmӞ>XU)]Qֶ+U?"ի_xA  W1.BxdAS Xl 3!J! R F!\"#|$$C$"Gj P{^bZq  '*.4:@DDHJMKXJGC<5%,I"[  ގװ^ʞĖu#}Šɬx{K3 *  Z"]$g%Q%$! ~\" g N #'p+.111`.)#8KN@  v&-J0I0 f"%'(((&$!*! n[3q\2!V}Ϩ 6&jDt > >z& }N"V(-"1p4!7l9;=@xBDRGGIJJ&JH}D?92+h#c  2'h p1phOZMTBoCt]I}2ޔڵז]N_eΎ ;<π]ԩ]JsdpOIM ~}f +g7yL1 E%,i4;]BCHMPSSpSQN)JD=5,P" E ?Dxvêm)Gy- E+!&$+]..00/-F*% v 'o x@2_"' -2;6<9:O: 83`.' =4 ; V< ?~g"NF4D"GWM }eJJH iA.sjEEi^=\ iIxkt!%5),c/F121/2-)L% l  ) Z8%: ޵.8P1e5<R|pIܶT9yȨm? *e[9݊e]%/8  *YT rD@@ kb u&,28K=@@>:48.{'!j"{wp Y s jt`D av3AbeINfw+kL$uRF  <nzbyH}Js  Zt#)/k3/542-[("x QxIBB ;>piG t +(3vfQ`ܼ{XZ[&f5dBik+e< j#*0/U369/=GA]F}LES"Z4`dfea([eRaH >64i+# [2'@ 8q+7֘ۮ?+wDPIr IU  a#J5w޶gڷ׼Ԥѳ6h|Ɋɋo +ҏ3K .x0@Vp+N>x F )[rw ~#&-)***Y*r*+-q16;?;CDdDA<6/(D"($ |Մ-+Uc uK  6cyP ۘ$ڗ~ q$l s%)9-059>DH#LMLoIC<33)  tAUq'p###Nr E bn W "<gFJ>ݗ[܉&.ޕD&(@{7y 17"![">### #!} (=\ m Ao4\|&JaASTaGNOq֌Դя~ΧO߾? t l܎(;Qޒ0H W!(u/6<C5IOVTXk\^:`J`_\XSMG?780)"n~ eX)ޑܑgp-M{lon -ij9U h XigIޟ߽A;9h[fk ~!2$u%D%#\!w)zvrnm} H k sZT  o)XSH AI1 R`Ϸ.НKѪ7M 4K8qJ SrV |I^B7 ;"Q+=4=EMT[_`dgiijjhfjb]wWPiG}=}2&) | ɳ_%޸;fʡ٫? c.,Rq 9S?L٬ԸyȫƂƙȈg˶[DLXLߕ1~VCO}9^3(e  :k"Q(&.358;>|@ABCdEGiJNMO H7L4ƛŝt[MԧmP?f? >$7:cA/x,=0'  ;g*6BMU[M`cdeYg(iQkimnnqlrg{_TG8M)t a#^ٱljƧO߰fڱ]D$uj K]s cNEӮM΃#Jȴ[SǺǦ&O~P_a'ty EKQVa[ _ac~d!db_[VP>I@7-# cٌ^oƵIV.M˰,كdh8| : #%4''C'%o#~!31ׯCΓʕAʼn^»ã|ѽXܘ 4 %p,2b8<@D=G\JhMCPR,TT\SP#LEFL?7/'j r ]wm%E}jueD 39#-(,.|/..*K%Vk+*A!u s&OЪт3!a|Q x < htJI W oGs)[vq3 Wi;+]|ޮܟڗؙ0Y<Ѱўiqع݇ߨ 4O)V.Y6g'г$lʅ3 #ʧʼˉ7D u"w+ 39=AC6FHKOSX\`!ccJb^XQIZ@7N0)$ >Z 11k`րDQyC|JaWw"G&''&4#P^(W9  VUq9+@;LZ@1D5Rx! 5M $;(F,0368h::: 963.)#p* (r߹wԽϔLZVF-ċǷGo/IA%`]o h8޴ޮo-HNg e&/9AIgQ X]c\gjnmnPoHnkgaZQHB=1T&QTb3ˏƒCH: vfw[u/1 T.=VB a Zh vO/ֹьФΡθϓwжXX՞ڗ5?!SDjo1t r (2;EMgUw[_bcLddvcba^`^ZLU ND9,8)J<_M֟  J"^$%%%J%l$&#N! @C+ 1,ӧMɛƸMǫȯPϚ0ܠ#<%9+/S3e6D9D@AA@o?=;9a75i2/,)&#!8mIG/U);r 8 tQ_i3ZsUdC5 ; 5R V$&!('%"_q&FvA D 6@o{*4٦T ؎١-` "(J.257L87[6s4R2#0-+s)&b#Y?e0Cݙ|s{ٖ/^Hؘ%=d^GPhX^abYb:`/]YlVNScPVMI&E"?7W.#> Pg!"IEgފhw{?Ei 0#@j3Nx׹лΠkϔX8ת;۟#N0 }X,JJ^M K%%'+/^3;55=5.43\2g2b3657R:<>P><9}50#*k$g63 C;X7: /UP޴~[Gf]V,Es$zO-\+l  "&*04T8:<>?@"A@?>=k934-+&%C$hk?/ ]#$()-u//.Y*%z LQژԮϖˤjH_o$_gP[  -y%zjߖLY@@/hR$`eYV!o8 הQ'c=ăŸŅƀǽVaҼk._ 3 f%)j+,,F,+e++D,T-d...,)$X /rUD  .f#,4??'<6/&`vؖSq& A#C)-0221G0- +'$  } |0/m<$x4E>d:-VfB) Ȍʞ,@ـ R> Q}` +;.#!%L)T-035;77 88C8893;<>?@9?=a9^4C.o'Y l " P%lm$G]Zc0GE(]hfhMɈʄ]˼Uo #(t36Y>=K]ue* ;$)-0,3[5T79:^;@;96v2U,$6v <sܭbִ֎q ( '/u7>DfIKLID=4*;{˞XײDbfL-Ƕғ 2Yl4"s&r)9++(*'"  }S |Q !3#a%$(S+.{13Q4381l-("[x ' z'E!N  ~a !Y"a"!  %.]^ԎҏѵѸ, K*/zNH| M'\ j~` "$%'''&%&$!N? XIXz82mZyV  a8N%m[! < ֊9O8Z!m.EDwAtp (  H } & mBWs}C "M%'!*+,,*f'"*;a2B9 U0GԺH(?2:A[FJANQTWXYXUPI@6+j m Z:nBg@ѳlPޓ'h xamhc !+""N"h! J1~4PR - yh *iI#!+ڹלէ7tP5S6 f': Jt }}Ỵݻ>zⰶ/jm HÏːVR' j#(j,A/00/{-*((&$u$%^&'C),*t*%*r)(1(5((A* ,-/01P0.,($ ;<A v/5siKrooIvd*F q ! % V 4~ޝٺ ȺnaE7DZʒSS \2HR  O$&($*+ -.-13578486O2,Z&.u bY>Pw͠Ȫȫ"5F i)'I/86;>l@@,>*;p7P3.a*n%p 4MVWȯ(Iݬy/ޯʲ~e}]I#(,W0 48 U;Fp 7G&J-3y7:h=?ADGIKN,RTeUOTQjKCr:0e%Rh" ؓϟ́Դ~CXT O;O14ݸډh/=ϫ8ȅƜtD̥)ѯҧ<׏۴#  $'+049:5/)I"US 3` 3iױEҷ@v71u1!H-9 uvoAc| E[hnh lۄ8m$"CʣɑtʿFN1(7EQ[cio$tyyhjYsI:+,)  "2Ү4sS eoԡ= N !('_+-.:,(#<E { aqrݚJ#C֢,՗T?2Նٗgz1Jq( yLl"K(h-146U765c3u0,($ #R %i |AB8vhl8 7pM  d !Gnڞּ|8RQ4)g-IV#p̮HJ2ĖwQ h "<#(,..=- *% $@x= ) p & d 0-wxAD8h6 :&/7*>NCFOIJKJmJIsHFyDDA<{70(  4)ޝ֔J"S-3'(_YihB`^YO%4 fLGj yؼ]̠m@" (3= GP3ZbiDoZrrpkdz[PPE09, "g4& ߻»_]} #'*,-'-*&! bTPjbްqWԠT}<3v݈NF{xDk}5+ G-#R1's a + B,*-f G*pJTlS?޶܇&ت0ТEPʯjnӈj%Lbh #|y"%P),--+'"~$ByDE>E.CW?92*!d#5UGr[0]Zfp%%T)s,.0 2)333M2}/*P$3ړҾˋ ô99H+>K#,b4;MB#G JJLIE%@39L1(y JH 1B"k)9x| q&@-26m94;(<C_HL~PSTSOcJB9/S%|N5Xy̓N~Nˊ9i oK` ZJ !""!! !hms-Nф#ұԉج& d%3& )EV[SZdV |_$ug Z X\%JxW؀g׮ئٖZ#h(xUתq*׹OgC&Z7CB#cߨ$ z|"B&}),/q2F4431,& uFu$"(-13455v7:L?]E(LRX{\]\XRJA8/'} b$ vUwߌ9ެ2f O@*1ku \} >ίUŽJNΧZw_t Ep:e\vR e Lgs1jCf_ !9$(,.=/z.,Z*'%#t"5! Wdd}[^ߋRLߐ.1y`ENA%-E f/$'*+Y,+*p)'&-%#Z" l !/jw9xU=v-ۨOڥeOF=B@ (&R5 cz["|%))5-H147:9J97?51.*'~%$"!Q +&my' .D4%eY JOr/wI1u tv@`vܕڑ _R Q6\ ?^1&$ OSgWv0L) uR]A faۈ'ٮ١<%ܗG(%':5eo HشN@Ўβ̽- ƬQ3jZݘ{x2"&q+07=DJ{OQQN/JcD>9V6'558:<=<94.?(c"' "?"!FX X m bV-# 4 q=G^ 9"&а:˫ɛv̀Ӛ`Hl%29A Gdol l  qm/mF;6D u"$H&['(*T,/14%666`40*r#;} TjGo ݌ Fy\>(2#AK؅ӖϦ̽ɰ@P˿pLSrԭZ\n/?T<w &)!#$D%&i'A)+-/0>0-)#~z `F_!W` i+#&'%&"M [ci~i$ڌ5PY04̗?(oDr_$-5; @LBBBO@=*;840+%8:ځ):`gT/g U!`(.3$8/;8L4 1.,*&!N Y#ajsMfBj`=`Z-rMj۴8Izq 5bu si_LN- r|߈$ A#9)-1589C=A6FmJMOEOLGh@L7,!` =4`ޢ=:Ժ W)+"T7M*  het ?^۽ԫΜɲd9Ofʷ oӮֶ ݦc Z TfnWge("@]"K&D*m.27;(>? @>:S4C-%'}' p P=6v@ltAbb~1kdT#' #&x)m,/258 ::83`-$dhLπ4:3"il{ѯ# d%0:BHMEPRT%UUUU&SOKkD$&@ZABC E-FFFEC?q:3+"_RKUTCgޘw;^<,ܦSN (=W #4-5<BEEEB,@^=:?98.763l0*7#\ иȱŒۻ$ԷCUMʘ] /a&'.4:>'CGGCK OmRUVVQUQLF>05+"IeV dA޿/ASʳǤUکajtlq 0%%l*.121Q.(7" adϖ˓ #͈s0=ܻ;2D=b_5j5l!*2i9;>hA>C(DD-EF8GHIJIGDC<3)4|(ḡ{D<گ<]s? <x _^p!#$$"r p;ތаcZJɨ`ɌȄǩuPǎcҩ٩[B W E!$"(x+.P133i2/<+r%#~ 1-SާdDq&ˑOyːΑ ޅo8kgq"*2"8;<<:z8631n0.h,(#%W*T~߿չ$15Ƒq)~9d +4: >K>]<&952f113v7;h@/DF GEMB=83/h-,7.048:b;95.*&b$p@>Բ͸ͪ|^Cv OS8P!%*y/)48:;:751f) c O ;ڱ ~|9&óP67SR'$,E37n:j;b;;:;=d@CF0IIH+Eq?7,/%^ h>p3'03ׁYM9S B  W`k h.:G֘nB+1ݳ[αOճHp iĥfʩ̌C/ٳ 9x) "'K*B,I--.026;ACGKMM*JC;1w'@LpXW!2Yú±ǼϤڳXH*M3:@EGKQtW^^Pepkofqyoi_`RjB0+)e(ܺpgF򷢰`*B,/@  q j$(F-1Q578@73.Z(8!   x G = " _'_0]{'J  v0" (.5;@CYDBB=6.t%? H6dnMfgh5=ƫG eA;$25 Ejdu iB!$_'*2-15:w?CFG FAt;3A)Z #Suxtשh~ȼ}ѯ$%Y 0"6(-26|874/(q hzfxːĦMv2GĊ$SgiwB6T* 4_^8)})."Y a 3"A0Pop8߫ނla !'A+.a1L47{;?CFHH,F@T9/1$| VhNl mDǣy}I̲.. QN!'.4:Q@NFKuOOQPMF>r3'.K}8btDSB&9/R8AHOSnTRNkH?@6M-# 1g gLˡ8c5g6 lB"%'() **z)'D%!$d +`ʸŸ忖ɿpGàųȎ'o>i \d  ] wK !o","V!J mo $"$%&R'&7%" Y ] }Li2G:ydi`?k{>r*E͈ɏҾ!'/ .TƻʢcJ{ܔߠ(sG=],]s<(; @" + 3:A:HM|RU:X,YX WTPK{El?=9+3h-(G# oi= \ZoEz \B>'Ntf5rxA{  s P|:hx'j bzIA g TKt ";#=$K%&'~)*q+(+)&"Ps %{.?T4HϢ`Ī۵3X )IԥiQ] #Z Y {*+5Gݾhٗڋli"*258\=AgEHMKsMN*O-NK-G@9/%.9Fu*Mϻ.ZmǓȣ˥i6+)Y"%G()*)))g(W'%"L2 bAy b.(1E}6$ ͺ<zYR5RPuzwX`E { %+16A9I;=2': >-ʷ٬xtR4^&-&",n7AJQ;VWUPIhA*8._& cb߯I*ǚěĩCȆϿ+ۺs%( k^ uo  !p$o&'(*))*F,V.1+47:$=c>>;72f+G$eG?YO @x=Ab͙ʾɏʝivcیHRH.Xu292 /  Cr EI70nM%,d:nU%4# ,}3A9J=?>A#B CYD9FHJL#MK6H0B9/s$! bd$&e}~ŦXVv*UYl#O! %(,1g6$; ?YAaA>90p&7׿+ɁPZ۹_ڵWV;Ȇ(עzT*3G {9[2Wl{>SwFv "_-/7?FKOORHTUdWX ZZEZAX$TMfD88+D r*t4 >˶ EƳuP !F&C)U+-.137O:<)>=:{5'.F%6  9cߗM‹\kAϗВpҍS&muh? ~'F4?IQ'X;]yaWe?iUmqxux7zyuvBpg?[JM=-{7M2uml\pg% 9$$)//$4%8:\;9H60V) L_F؀w͟ʣo2f)~ 6[OW (OBh]g E e2mjc j=)|! .߄pʙǁGêEƻ˾Ӈ)ݵLK$,-7A۰yο^əfƤ>1{żɬʂ̌ή֋trފri M4%W5$FV4g8v=|gQV:" [6rݟΗGZCOى/THHϨF -~AD>FGdHG=F:C>93-5&Y} SgjRΌAƁ0Ͳг ټG0k 'Tqj> b^ߜڀ̲t)ƾ l+Ѐմוڔݣ?7 2!((/49=@C EF0HeI JJHmF.BtBDDBf?:4(.&+ " .Sý1Ƶ[Śʹԫ^4P1 ,9( b#*;16;~@%EJO8TYS]G`rai`\VxND38x+vT1Ȅ®ŷ!#*l޿ VON nK#';,05-;\@EH K;KID=X5+ "dj >HTYߡMNԹпD]G+v|ʏlެA _ N!M)X1%:CfM W_gxmhqOsZsqnkSf`ZSK6B7+`2Ǻ=2?Oޥߨ7в`):;D @(/R59

> >i<95 1Q+$gn !Eߍ'ZI͘γ~Q c +! z*#YG9)U!%)3,-i,V*'"?>v zлֿ &¦Ť͓Y=+nKN%3]_մFǿjn_‹ȆbIۍB "'(q4V@LXe r6~useUDo2 0NɿF驝OJjY )(6ADLT[`cedbk_|Z,TLCz9g."8 ]\ y xŵ mʾt'y-@ s lz .%),/4{:@@E~J=NPbQ}PN@JE+@:4/;)" Do >Ǵpjs QW g; /$&'&%"H 2r\{L֎φzđk Խ*ƐɌ̶ӓ8ݴovk6 h&-38<>y@\A BBCBDDD+Bt>80&_vbq#}#pJЛ-ҲvԄ ^ X&+..7-h* '# ( Tt5ͨ}#ɚ.[zԉnةrL"pTi= l(.3Z8<@ETKKQ\W\Racc4a[9SH|1<-'D!hu_f%]Uxj-=}Jl@O +$v* /24:542_0,(/$  7Ьɝÿ(߷e{ºXYKLXdXo1x~ {rtrk_MRB&2!2L2|ڰњĆܷq!Ɗ 1)2:z@EH5KMMNOONLGB:z13'@V?/Qߝ nΖLipf׻F`#7>VqRNN%: a ZnG$,6@?HOUZ\X]\H[+YVSPLHA9/7$N wcՄ_`4 ٱƧήקOUQ  %8+.00/-*+'#q6 :r ֥wyüS! #&g{PiѾOgv3,j 2")~/M47:?ADCDFVF/ECBm=6.|%  jJٶֻVxmfII5 g Fw[ "x^_{݆۳ C#և יN`7Lמ'՜bԭԹ۫jYP q *3/:CGKOQxSTUVUS QLWFo>5_*wXۗ<pf)Ī9g/W¡Փ Kw%+g158;;;5:7H420+'"6G cr zFG%l'la"[kBh!q\Z!&*\.?13i567 87"63/4*#hu hmmcq* J)Tؚchwhf.d=לӝˆ[vǽN Š/]ص71|*] Q88mO$,6ALV_ej=npIsux |~~>ypeVGi6%x_(qȵ:eNzYϲ Z#!-:5;AFhKOTSV;WVtSME;)0#" ^'i* ȹԷʶ¶Ϸ7y;݁3Of'D KK!($/4|9>BKG}LRX]bfhh'f`7YOD8,J!V hT܄{۾'殗/V>`Sqi &e%*d-2/6/O-)#E s;j0lÿڶ7s+©U+o4.y9p d!Z(.4_9?=:@BZDFGkI@KMnN5OOMxJEW?t7e.$S8qFėqšˮ/{k  G!,"!5N` 8D]ފ7Г/R0޼׽G+B04ֱ؉ۿEW}PK_!+%5?yHP/X^behliiihfb]VMB5'H MލҥoDƚ̴Ӳ۷x&"/<]FNRT_TQ%MGA<;4-L& фǪ˵ϳ|xt;݌_#!a MZ2 c'-257";?8CG1MRX\`a`]WO)F:."e lg!;[ U SBQrzrY %#.6*?F MlQOSRLOIB:2*#} !>գ̄BۻhE 1FKЋ_ ݔqI  #%7'()+-/1>374C4)30`-(# > s/}SףѣSċB*6$-ثL6zcq{Wi ٽ<Ѧ/yM>vUA\'z=^ZSL4  -sj#0+4 @M[;iv~vnf^UK?Z2"@JwȺ֮'ҜȦ`t!EҊ6Tu+8"BINQPNJ)F@u;5Y0y*$ BE iex&ŏcɥ\^M~&Ya:Wt! $%1'%)+/R4V9,>4BDED\Bz>94F01,(4& $" & \:R0Zl/tNIܔ@SaH5h)C~W&\e1֛Ti|Vw~SS 2 @z$z,~3Q9=AD HK,PUz[agklokȱ­Y~DŽhXz  |#(*0+)&"% npڢTDžѾEߺ^,Qύѓ-SheN+EUn T ~C#(.4f:?CFHHGqECmBAAByCCBW@;4, "f lpHϐQȞ=ΏP=a W vyw0m:)ިڥҔJO`Ϸ++ by@!&j+}/}37<3BGmMRUUVT1PIAd8.%0 ;#~.>\,ח-nQ w!&v+C.f/'/-#,0*S(&$# Zd HjӁeʷɰ?[΁іCؘܝ?dJY D1I!#%&'C('!'%#!&snP = Cs/:F/ iCG,ؖv׼cK]~ی܁Qߏ]Gl߿'!Ru34m\M]ͯΚФ_X"U+q3?;BIOTX7ZY*WRPLEY=5Y/)%"| v7R) @Mn4  anG tVxehoFUݎܟݗ:$p  *|f= gI_h8 IfQm|+_ 1&a g E:0"^, 33)Z6T@c>5F:h"t RcKcKFTDp;V|$/v:DUNBW`_flquCxLyxvrlVe\QDU7) ڊNW񶃳ao)Q+W!Y"$%o&&%$ tx "_LȜŵÄH1Óz,ҫ|NCKb i_Y [TPgN  zt OC &,!39?D8IQL!NNN@LuIE@;3+A"W _)}ܵj&2CIk'U:ɒҏ >;%)4-H/90,00/]-*'".2i/0,)58Dk $7){.3U9w>BEIGF_C=p6W-@#}adqrըҫQwQ]+Q)4>G"M:QxS/TSRPNKH5C<4)lcCRaӱHθP,b@QA K3G"]t!:U yQm5    T i KjoV"3Bm[HH߃fP[?Iy+[MQ8',k݌܃`[ 6P,mT)P29@ EIxLjORTwUUNTPjKC9- H.F5O୞Ga *K9EOW?^cgkdn ppnRia$WI:(UՉv >ҥnZ4MݬôyOd(U6eAIOSVXZ\_`{a`h]WiOD8+[ _eqKp+M?b zs 6 E@&m#uT'#?pk f S .  w#Q(߄ڃZrĴqK;x +Sk],-14 v2RT"K+5 ?rH}PVZ\]]]b^_a%de#f&dJ_TWfL? 0`  H,iM2_ĒhY]f"H*0b479;A=<>>=[;170(hbՃ̞B*Ө> "ói,ǻLxks*b;a }Kulx_ ` o 4   V J bB 05:Wv@ڑ۠J!q%(+.1T59b<>?>&;4, \NV'zҨUcֈp> z%q+29BJS[XbfwhgDd#_XRLGC*A><9 5.&~@AؒԖiϕͱˉǖf#iȍ۰0 +4-kCNԁVA yP>!%$\%V%1$"jeeDgzL P6aM0~s%`VEW,uDF W t ~ A 69v _ئTb,׹߷ﶖ¸Q7rA{FgM)5e@IP`V Z5\B]]q]\\ZWSME{;z/"0s.qu/gʩ乧9/1 Cgh '08AfHMSQ4RPIMH+C=/9C52 /+'|"grrf^߱R7m؜i% l {! 'W+y.0s23A568s:c<>=???e=:62-!)$ hT&,  a*+Dިݜܣۡڇ^9?֚Ղ"֓ />chY } ^ S Sk~Vpl.יc0ş Dؾ࿳FČz~#G (6D R ^hrym}Nu-k+_QB2h"$ إzͪר\eLз I  9( /48;=>?><84G/(R!H;2s;Pn`A[LpVïUʹ\҃] չՋ֪/*ەg] R7 Q6 /#%(*-/W00/[-)%!8:O @҄:2KI[̼ZYMR])Gw q J'X-2|689:::8e630\-F)O$Dfר̈́м챉D=6۪QڮƲq),ʎ:r-E?O]Giry{n^.Ma:k'2{htmƶXi Oҗ #Z-5W< ACDCA>:J6J1+%L&nP.ވߥKCg*wlC* 0߱ۺ7֭!iRݺzgv !'-r1467j75:3r/*0%o Be|(ם ϗVOh|VѸi@mhm&.Tu !(##! wc}[ /g3If¥X긅)j<ݷ = WN'1;DuLRVYZyZ]YW1UARNICl_` 9#/BDDC?;h72a.*%l!RS `)0|E=ڈ(߱1>!Iܢ׹QgHL؛\Xgr& '/-s011"1/.-|,V+),'#m 1~=M_ Y ;3!%*W./12331?/9,(X$\lߍgޏqSBG ?b C10cס՘DԖyֈ؍h/%1 >Ld8!{ WoPF!p%)%.S2577$6K2,% oSc["-U6ːnKBT  Z v%w֐Q˰Ɨ뻁ظлǑIK"(-'259;/==<:k5.;&.%.DIV  L+7uCO][Kemrhts-qtlhf_XRKE@):31,#v/\װcmyAL  ` V [nuFnEreKu> *De:+HWDG'b wVN!'&x+05d9_;);8^3," "DTW)ŹdǾسH'#F _4"$%# ? ?^Zy!%P(*m,+;)$ J5&jߕ~cTC3n'L19?CE;9`74(1,&!V +)TG(Չ*ـWBXTY"9cODz^f3 Q!^*4?J-U]cfeaZHQF0; 0%J' 8t8̒Ľ ϶38Ǝq+ j#b z#%$#=G 4T0FR2JKWՎ3xԈ{Nc7;r8; o.%+V1a5X7 74.0*$$'H $3]uȊĻ·~ǁף@G  ouN$z`ЧZɮKYԟ9<, $)-0232M0+%;\ f:yU>P I e&c4AO\iuqzcmUG*:,_r+ɨ˧\ H\ڤt9 ^ 3',0Q332/+% P icm0p]gU4y2O+ ف, ݭ-QgC l0#'+.0[2"3%3T20-\*% 2@ YFNQ_"'R+,c+("-8 b_(@;>ψYҺ[x/zǮg>9 vs}$̉˜F͑ЄuI N")M06.3& S ٱ@,ÅxJJȪ%>3۹˴ԅo #*138=?@?> B0D DiA<86./\(y": `(Ϊ ̻ѻXÅ Нl9I@ ("6.BOLTsYx\]J]\}ZXVSPILlF>5i+gB_ոʀ/>?ëmĀ ˂2C wjv83 ?4jpn KcJ~su ]^ߵIɅůÊgxY4#<0<3ITl_(iqx}}cx~pwfZML@N2'$2 Ūm򪮱Nß؎iT U%*-022E1 .3)" +!߈Eg I3ϴ#Ӓ-15p653(0+('"\ bo_+ږw*9wʢyϿ0֕03 USQ~_ :;61YFpk`T X55yŒg_I.Gѳrr1Œ~Ե_)5AuLWTcn?zBsg[*OB.4s%y2iܟl쟉G帬^* XMh)U4=(EKGOQR,RPNJGBW=j701) ^ ՘ ȷOTκ58ڽÖƬ/݇.Kz }Z!&**.0m2f33`321#/,i)% w}g'J uM`Y]1} #%%" 8?L\LgׯҴΰɒ/˺zDClzڤֽӄco1ѰғֶHw\ (8)F29@yDdGIIIH0GDA=7b0V'mO߸ԍîԸU^" 9gE! +;K4[JiuuhXEGE4a T S]*ӸFd |@{^ӉŽZت&Ƈ֒z ,6>%FLRW\.`bc6c`\VOWGw>c5,$BY}bپϨ@wӃP-։"= ګ*lBu@ h aF$ h  \-pDQfz]4q"g/D]>aBNXZ ='e3>HhQW|\_`_>_M^L]\pZWSlMD/:T--i|\J9u6 Y? B*!5'S+./k0030_/-+(@$L+#G hƞ>(B2"ͺ²C٩+ sGi#>(#-x14525T2-w' 3 ( 8Oxc%A9>q0f' y0>Rf-:3")/419=@9BCD'EE$D7B>92 *CHx A&q̝ .)n܇pF A&~+ 037(9%:9840c,2(%#%(.M6>pFMQ6TT9T)StRRS+VX,ZZPW`QH;,cx 1ޚn-w :L=oޭh%5)DP^Y)`dgiiJigfe1aZHR+G9P*!򟣜ߙJڛU?Pؼ/Zb f HKbOIA HpSB@ @ = }Uit' C `, ; \` 0  G'OSUTPKE?8g2,%' @ ) ?SL#X UKtE6# .e^sX  K oFmAXRl&9Fٶ0PX۫"(*U W , :`D O!ڥ h(m2_;BHMQXUX[^H``_[fT(K?62#F<' 4IlpCΊG )!!! t Ye) #J =3Ze(ńGAd$z7|83I2SOHSswFB /\"\( .D37;>$ABCD/DCSCGB@>:5/(] {8C4wf:Ӳִaĕ)$F%3 VJM!s!4 8V fgH߆'5-*j6@7JUROYF_Udhk@neoomhbZrPD7) 2GxɉΤZ+Y!'H,9/000p.,")%!q Q^ؾӼΝOѡKۘ;MC_k[& F&OBm2t13P 1+ `kA"3%'*+*)'#. k' d mi++ډ][XO=7ZХёՎHPa(0RmzaTQۣؕ`ϴ@{j˝7QR٪u *B!(-u26:?DJQYZ`fknnkuf^VL=C:3~,~& . =H#  #&(<+5-.//A.+'" .uSr"cvaAy>ir|#EpuRU~i um!#3$%V%&%T$" dN #k[NWRۮD-,0ݝ(C h<!0##$`$$9%%9%#=!K_-;ؼz<k:ͼ[$A*Ѧׇޙ1, *3=GlO>V[]^]a[bXUQVNJFA;2) vߩVmƶ񷐴$bh |ўڿS" j08$ + )tjtF3ވAwe= t O CCPߪߊ߷߄jf*:W %4BOE[d#lqmuwxxwurle<[Nk@/1 ua žޛ2`~D楕J3W ~L ?)K0592;<;:852:-7' ?֪i8œěEŵ-ƫȠ#ӆݭ Rn &/:E3R%^h qv@yEyIwtp*mgj%he>c_X!PD6&[V'NåQMH³T A#+ 2t6B9:<<=H>>>m< 93,7$2p_8֋ҞABˈǝ{űlDtˈS{٣o}xF=XJ V ] $g+d2s8=?@?j=:Z62/,K*|'#2Љ.%>ܱ²ڳC7𹶽ɺЄ1i |^ )'f= 2 z7֔1= [ɰ۱f絝N:ʦ2ӵ߉ &7HYhuLo [&D+>.hvHأàءYJ1ɩ;21IFXfqwcyy%wtqmomje_2WK=2-|u "kuп.8½ĸƋ"ʞ?U:0[ۧ"!Ps`<@$7AY'cdB v&-27:E<;950`*w#J "Q[4(hyN#UXPx˔ѓׂ݆7* q**5>iFKNNLGAB@ɫ4Ɂy ZȦ>DZoد8ODI@j* 4p Uxt$,28};<<;v85w2/,)&t!. PTV=_-`ː"h"$%$"< fPB&ҿ(V-تn";<0@ŭ˙ڬy?o'.47;:5rAEFKQY`eikzi"e`^ULXC:3-)$ @J}iاֵWX g 'h/7?F0L|OjPNQKET?80)S##j 91ըֈGq3-Ig~G;=Tex]7 5 yEB*c3 AD\'9zްOyLo<;JVa -!*'x,03%5U5e42m0-++1($ N {@n5~XѲ8?6¬'Rݲ h $< ;f;c=!$&r' ('&%*$"!!  ^ lxR"4A9ƹrt ]NЬ43T; y """C"A!9A? pzGv}o -4X s7!G""##y%'+x.13442O/ +=&K!Lvy Q ,iG P7jY!.Bo0 'K^/ LIQw<"o4E)؁@\ SaxPϱU<B$(+/37;}>I@@F?Y<'8.3.k)%##!!  e w F  V nW;;A!d EDC2 , k_4  ` [ qefv = ۔ؘԋrӽR""S؁ګIZqrY1* != O#%%W&}&&b's()3+,,*_'N"~TT 5(8t`\FĚ wWɊDM- 3 `ov }Wvɧm›ͺǸoᵁ/͓׵@"',"/1368+;X=>>27,<>?B?k=:705 310//D-E*%P.UopJgg  =,g7?p~]e8`|>|G,j6r yA[@.e@ib^~"JP# 36(eO NCFRc~T]ý./ЂcD0CtZ L 7 P < _ pKrBJI (  s@QY !N!m L_ pdz˝?ȃǕǢA؞F13# #xux"%o())'-$2K! f 3Bl 3I7 #&)+1-6-+($< b5 up!mkB8 (kz03 2bTH=@v_FBWwoߔAؠٟj\5- W;U|"&+/2[441,t&Saf56/<9 k#H+1)6[8+851,&V!h< 'eU; ԩ/ Af II> K u =-S?U@US QM~JFYCt?;5}/ ( _9ߕkCן 'T; Z%V g#'(q(&p#q Q-XvGՋ+׏2ޓzH^nu%#K . ;Z~-Uj0X&ss .,`  P 4  b \A*/4% Jݳڞ׮ϙ=Iюӎ٩w>7=g%UqUq*gLl!  >9 $')**),%|w@%ߔ^s͢ʟȸGѥOzi K $*059:D:8y4/u*$N,D MZӕh/HğD D!'.5=CILMLHwB:1+(  l.[&V܄n<W bqnke uV^<_7Wo}C!QdaB4eGV= /Dl5|w m Ww5H%l: /D!&,v16:=1?~>;7 2+$zLt G : b;ӓs$6$V}I {c08& cYD=Gj޿[Rھ٢ ۀ܊)C] $v*;^ !"s#$0$# " fQ,*]X2#: 3#oWX#|t9BZTxлМyJϲUБѿg A #$K')K,.1l4K79;<<;z9630z.,,#,-.`0"23e44320/,+Q)'G&$"o NY  +WWy,&,n,#2'I*W,@--+)&" "-DKӌ*><ѓ--m_ + Vwa9a8~  R (YY=U;1 "tP"S+ 4 -GEQ~\0d-d,d)d'd%d#ddddddd|`WNlDr8* c̡ʡl%ƿLȸ{:TW,1:FoQY|_b.ca^ZUPQKvE?7m/&HZJګғǮě‚;b„`̒ίcղ{މD\%6ZX 6 ]!4""_####`#y"! I A$R7f+Z5-M$T3"$P h7?2ok]Wx@DkUD6t&,w035 77[88887624.'n Gݥ>vD}]BƧΎp H )076:C>hA8DFHI3IFB;)3( D̷**иQ %eEc܎8uo_t ]$Q*o#Z'*-/13J5-7^9;y>@BC=C@<6.t%u2+!WFUӮcT޺iX Ʋ~<b 6$x)_.269;I<;c:740,R($% EHS_ ;.ђFMAM՚L6t' 3>7HLQ YU_;`;`9`7`2`2`/`.`*`_WvMeA3i%Fߞ4忧QX- E;,6-&+048:<>=<:M7Z2,$ Fu9; n! %)^.38=ADFGE C?:4.%)k# 8 ОȻR;¬S_`mƝGnj>7]Τ}ھ6.TK Q %$v(,.A1Z3[5b7q9b;<==x<9R5/s( Y/y/P9Yφ̿ΑXK%o  %)z,._.-+_) &B"SZ ]kӂ3!|!Fuf(*xWqMGE' =#+17<><@Q@a?=;97Q40,'1 -"ѥƕp=οYs@8;|vX)4D=CHbJOKWKJXJIH G1D?490% Nr.ԛ͡7"|/G(Qv1ӟu" ^"(.4t:?DGYJLLL LJbHERB_>94.0(V!9 =A}U+ӄϯɺY̘Xт z-9r6+ ?  Bl h_.T5s)egEkZELS^^{"#Z AO #&'I(('%#*!wpq Wݶ|ёλ̃ʙm|mIՃܿߗ|G2f$?N|Ke0;M,^q(ڱړکC(_z | p"(/S6(,0u3d5X6f654.31/).,~):&"H rWRp#Tߗݏarjt1ڔ܋8`k 0NaPHdY9N@#iLlhLppGX*(z; #'+(/135C789:?:85g1}+V$O s9-]V )im c `#^U3SR#"߄F, _H1emRGg,/reߦAzv]+ g A ; e o1b  Cxn "$$U% %#$"|   >o;!"ntYf<)7 ? ! e jwB_ sLO "#$$%%%3&6'Y(T))()M'#98O ' D2Uډڊ~}8/& V"0| }/YI$s Qsl(%lmU @ Cg  !$&'_(@('&:%<# I%.uOY|*! q`9\ٮQ7gP?p+G" >rvz5aZ'j HX, zvRaG6 e A"wmlcT5 }P/E_`1E &v.49==?A2C^D@EE]EC8A<6.z%f/>z˵Ǿ|ؿ DDț=~nY: .,$ !"f##"!c4 W XRt !"^#O# "y?W?ߊ۲ؘ#ԮӅi2K Bc !,: %(*++*)&#! b n۷ԧγ:üA½) Y [ (RtK WdS23n ,!I"#%'<):*6*(k&"((3 9>MPg Dl2 s  } y  9 ;joH $uHOodt]"AV=0EhoeC3x% IF@Vw%c<{F$.P7}>.DHKZN0O/O,O)O(O'OSM Gs>3:'M "#׷~ !^ӳv ]B%*."247-9 ;<=>>O><:7\4m0E,(/$   8.j u.Y:>YBIkϤ8IԤٌ6ORxZ"&*.@2467~73630|-)% "G}k # fFkk8 'ޫݯ8B߼ \~`MP  +./N 3!!!G! l)VG n|wzڢZ٦vڸZL|RHb.nV({V&6mԏխ׻ڡ+*!c +lyz]fB6, d}Do ? #8d9B~s8.\yxyߝB{PdU1&r 3f%6,2 7:/:50*$1?#'.^ژGkXTH͞Ϯ^֕6.ldd $G9 sg !"4#"!" -N7 Z{{57ߕZ؏2@ѳϏ́͡9FН9٠܈ߓ5!; GjWB%*/ 4799987]6532130g.,(%\ D94 zMD|q5V,vuzg!-v  o_zV 2 6jA6SB<}֣F-78) c(g%PW C w | c / {WJ &+tFmx"&)ܑ|-{PVGw j f \Z BX Y2O? *CA,@b7 ^Yz '=.`49>>ADmFG,HHYGE}C@;6|/'u DLFݴβ3wǃc(ȖQӐߚiad wF #&)+. 123320%.+'$!? Od#v؟Bn inO1.Flr-TS 9=w L$'+.02-444d2}/x+& H sy) 0ݸټ`Իѝ*c*[Q7M<: _ R -bS=b ;i]9+ EB4`y DaQi  )gTHDr d EOGީIۙڒ&:ܯjVi`d,YD) / )$+B&,{+SBzT;T  ud( P(=jIcC S#"'+r0l479:97 4$/)?"Y 61(˯~rŐLCыpܹkbE2 iI  Sj[QXJ= 1  f n\<Smk_v p$}4's, S #%''k'&W&%$k#!O- L)0D.rQF3#\"zgH k6XG=k I VeOH1K1cR R" )/5;>>>>>>>>>>;C5-% {#m|MZȑ%(߮~V} P#`'*-l..I.,P* '#e "L<=ߠ߇,E(d<+5Zdm!g ? Y~%F " o(V*E[/DT5`d%%>"dc-Xk5 9KC !e#t$$# b3 a N;ۯ؄־jӶ2/]%u"*17;<<<<<<<<<:X4,#3AI|j,5-+:c  #h(+-////|/=/.-+>)]%[ e r I2-VfKG]VJaz8` nqoi2^ avaq >dovZU@\:FO~]b"k M   IPaF4caG2I p7GnQ8'2߁Qh"( ,)!&*C.02e456v7j7g64U0*($ +f,> hh)oЍ(s6$h2.C k_r Y$X / D j t ^t ?  ~jz%lxE oxQKD1 6{ =u6Jl)/&2} L5C{!`'lfI@BPdx)sSO *$+ 278888888888888/%\_)&bܚ+/Ϡ˔hllprЏ2޲ [ #&'r)*+<,,*(P%  q.rTm91MOv;i " 7| n87~wlkT R'Y ,TD+w6 J^>VNp/Ex&L  0s:@k7;xBZebX.!ڬV)@վյX>z4=#:*/36666666666660m(F  '٢eԢҖщѵtI R  c!#J%&((*A,.0&2\21-9)"# Bjq"65M6E'!} #it["p*VkJ 7 G*zC 1nF_oGJkr^ ^X9 6 : J4]fej!e-c+}?jg#agM`={F-0 H#'),-. 0011O1/&-!)#4 FjmBsޥs׶bhβ!GE933"X_C  <) !""!> H<&|1 8k59/ {vYgI eGI})\8lz C  jcZ6)%;#Ugp8Q`,L)L;f(wIOyY\ X "B\u';L /j '&:+/222222222222.()h"{ (~`q۩ך:}_+=8.'smPs W b"# %%%]%A$s":]H (0=t4q&=8%q?>(kx:oV7"CvB\ e . :+[ UwU!dN v!#$ %$;#Z!"LUF QMJ]i"uOڝTe٠lz (Nn< J= O%[)b,c.`.].^.X.Y.T.S.Q. -) %^y @D[ZRJ4ߪ@ F0F .} %sS44 *"C'!Tj'Kd--7/9OJqS Blk ! x RIS ;:6K0#pVX߽pj WDY- {` L X9%"$&P'&D%"#  ?f3(Bg7;#.Hno~ ]e1 I83 k2kC&.'M"2>>@wc'4_G#g`j'F   * OrseBCh}g` , 1HPvt W!  xJQ>wxLޭNݰlSmd) Qlz I6HDH p > g w | zd h q07\ P!y%'(6'8%n"56 "6/=9n{D  V>SQW $w#?5zB))$ E@ "V o>K.N!H;VF ~t n fn V Y B  I >}-+Srd'#t$Kwwwo*MJRcsO  J[Y*: Qt4]GiQ5cPtie!xyL5+ |j688 v  6~Yd=} 5JXe/=pMQG.Q\%c4K{IR")7c$XFspU  [$vQ}l=~qb TbWbEOZ].zfa.F8fZ-og`~v|SV]%Wk >GzO`N  w[^>|u)8=2{x;h0Odjg | f `   {=`qu$f K 2 ]=Q~)a z!, %! / Q =W1%2#!= e  |3-_  v;2-Sev^b=LsX26F5 %zx.Z! V ~ y[=1>w`bwDKyIb Twc }n iY%*rw= %N{[PT3^3s7 %3oE  ) b j ^ M N d ' h X r9]Pg9>xA0JH$_~mAi s lQ5zzu_Pcf s8Z Q) uQ=F<uj x$z~]Q? O&#BaF !GqX4MgV RV ?0  ` 6R.5R^ bc ! &enE&^}9 sAZUB@"p G K[% p 'Rp0Ykf%&}&c8z7uBk"$(4t!?=cc."oc,OzYj  n {  qqIJi+\]mU|GV*6.  #kMF6s.ZHs e >|ww{3#8 PMV/}7S t Q*.D02EJgJ3d j2  qqL]  sWUPuO1 rzY[bd6[0m[~e^wC}Se\5/0  A  X y {)'@QUWbaHPjwE2MYXa.   Z lY+w A?5aC:?JJ94HOJD B z o D9 A   d f t gQ@m) 05]5V}C !9%Q~Q9F ~<]:mOd(w%9+'uEU>bQasd*|9>QbO| @c{ n ` 0NXw34oku2  UA o h )WEk^vK,)ND&M;Mr*LD-c4e } t 4 w y O:C\pn@S&ACezjGoF-S^GMk6 XTx?v^'V&6k {7Q0?4AOA}U)&pf # \ c   )T1Uttr!B|bi*pLGX IDC"aBKxFw'xf91djL,wb|8^pS8Fvf~%00`%RA vx#Wxa af5?>FFCpD50x3Yw)[z[DWO0 ZHiNQ}sH[MU ? Lbgv]`E!15~+!vdgQTy#R;>[Xrq'p0e +y')V8 j4UhgX6 {"K [' Dv eGFCw:g6t{)}4yKTL/BsQ3}fJK[n}xW-<)(75^6(5]G)A[y]L5eo8OEj{ zgv0z "Ph`"j'1^oS7rHR/UNV@2'[7GLr P;uIE]q|_& 4CGG@8+ mYR\#;VGFn8dy/fN9}$h6A;*Z}f,vk7x-^2 5i5Tlwytnd^]^fq -S~VU,q M ~72IGSV,&>^cb&0u&Bk  kB  ={ 0E&V;"@c~rUrmJv knKH`-OCB>WvS>7@T|3X'-* m1i'jTLMZoEzV ,>FC3X t@ jL5($&1D`)W&_QoR5O8U5 (?Zy!PP<v$*/'#Pv&?_7 :60*" garden-1.0.9/data/beat/cymbal1.wav0000644000175000017500000002363612457263310013612 00000000000000RIFF'WAVEfmt DXdatar'2)< sq l!# ?yOf @-C9  hqYSXgu09) w\ JI 0F8= h& "z:[  N "lELL%c/\:&.im8 t  n h 7 `M (CK"jl9!]N MIubZ tw+EkX  6 |xs 5I~;1 $ Y. 6 ! ,7["gO< D rB B*SP' (j- /c| $|?A " !|`9 L. P&a  8sME =)))h<  # u2} 57* ~2e#A9 <^Vzx:a J2xqR +  %9?[M3 u!3uy<n J!- N538)=w!]l'3oݬT - H9h'%!Cj !, wr",c /J gk xtmu1&!{k(j M yH1A $-qR7KU*$G&; w 8w$3/k*"&;1* 8߇+K  D#l\&i`& #Ov :*/*oec!v2+K]E LQ^ Gxwcvzb 7j C=-A}Xg)l RD]w &-!SQ$!m4F- Zչ L0nz'# O \ 1h# /ag T85",g "cߔfk^( [Y ?= B Ye/-+ lK  ) K " u9 Fr Q1na zPk*} %rJ߀q  w>Hrے V *:U K!  j Q;/egZ (( $Y j]*"o 6&R 9ar/OU'e*8  u%t"VBc d aֱv T *"0}[sy0 S^oh2 "qljU6c "}&( )o Y / 8482U;W |'X3| ^, ]X  RO)}V #m[LA6 d]f V+i| GVV8 BoFAx ]ܯ81!Jq j")M`hr *  S9_`4n+ +vf  {tQz Cn O1q? zec & ;M-Q! PJ Y XXfZ M;+h:*? 0F/wa w;[+X  eX5DdLj | JS> +A  a%AY;  oK~kV !Z'L* Rn  ss6fz ;== 3~ O) ;@ :EP{ x@K t qXM% C7I\ K}WwK%ae =+B"x"yp &s^ s6 Q'5`$)t \_<{{oFUoKESvn#r ]pLq($0;<Hi3 cR mU4 dGY`Pi >nI &#UVcdL>_ #1Bp16% q9, C h & E ~ [3 z6oeg|U #lp q.iAiu _k*jn@ Q^LM ;a W )|W' x h2=NE|m I 9 ^ P?D "1a JZ9Q~AL >8  >pqprI O \W->P| QJDm i>Z// .<@\l8Y 5 lNE  1 W2V~ k 3 sRi xzWi,SN F }+$=)u H_ B(JCD !D@e\p !_ Z '0z ;4V(zm^ 10 TO\0Wv.@\W| Ea -oMM q (Bf*' I4{AmP+w}[ cy ,) ^, J P>uH bJ< Z + Cl H1 }sy{ wc ZTA{k v B z1 Qiz )Rc  ?=\V DM}z. H  @#z R ^.^ ?d M*` =W$7( 4Rba  ]A/e`] '" .s1A!.]pG$B 0r2l4  5 \v\rfw |{d wJRuz* 7& 9 19:y dIXE!wLi*:O\/SY _:6Z|.D)X= 2$"B \u| SmgI5y: dQ O `"2$ jn-6Gtcf:k= $K  D|1X0iVo%sPM+& ceq PNQ /\7{ 7 nih66F1v\'Z {2]k s'/ <>BSUNNlpj!h7kHHlJ5 { T`_CA+y`F[yY) ]eBbd8b<%t_%&ne:5r 3i D"(mBQ9'(x=%V5ia_g.^x/9PE)':_sO\  ~&Az#|/.xa7{n7NviRF\|~  gkN$RaXBk!'h\.zC@;1\QOC^w=<l#{Ful5kj{Otc.0/J"b')ZA9+#];~~ 5 GO^)~{ %4\_`25mY p{B21 &TG h?9eBi22] TjQ (3#nG suw EDGQiT7SEHdOWMU@Va7@o8qkRq? + A|Ju-Qy)CZ {&< N FL#p blq~',R6(>g]v-#cje`kAH PME^!A G:W3m9-aMgd xU>0v~<nt\6 7 2+V$xv\(hm8*d7(%pbz=}zFr~=R3u`tr}oKqZ,+5S/D<2oIN xf``K>|,/kiR/xP52 KJz47sX u d>J` 7?vZvt10nI<"~kU1}OHrPL=eTMwT~51ga#[sT|$"x6UCz_Ru mYR=K./^Eh5KWoFUb|*g-Q77/3i(evbEK` zx(K;6 @CF2`nWuWb)/R9)q %f8?dfZvL nUlE|Un4U:\jCdGd2m)dd,E,v\]8 6R$QX< =4h/?K+ R[6$"MF*fre(A=N[NC%<V&S;%:h=<d- Ym@ r!jaR)s."oTZ +r-$;t=[v!Y?*@Tw")d$=pr;G(?XNx)jQP>:Y/)Qk@HT,|1ZZkl96E0)yJQ0>J<D$F0y'-Q5@N,d/DGC,R(=! G.  # 1 (G&8' 4WUF%wK. ':' garden-1.0.9/data/beat/flute.wav0000644000175000017500000002133212457263310013370 00000000000000RIFF"WAVEfmt "VDdata"rV929z:{:#   T  V (9rU8:r ~hq'8!,##1 #!#%&&%'('&&$#%$%%$$%%$#%%$ #""$ "$$#$# ##$#$' $'"%!%&''()("#%%#$"$'' $"!% #$%"&'%#%''&%&$"#%%$%$%###!!%#$##$$%$%#&&'(&''&''#'**(('''%& $"$%$%"%$%""#%%$"%'&&($&#%$$$"!#$#$$$" #$#%"&&''&&&%'&)*)&&"%'#%&'&('%! $%%%%%$ &%"%!$$&%'(')((&&&''#! #%#!$!&&$(!$'%#$%&')*(&#$%!#&%%%"$!$$" #"#$#&%'&&''&)(()+*'#&'%!&%&  &$')$(('""%&'''&%''&!% %%$$#$$" !#!#$#$$&'(''*)(&(+..0-*()'&"! # #$&!&('%$$&%&%&&&&%%!## # " "##$&(()))****.2330.,&&'&# & !$$ &&&%#&'"&()*)()"%"$"!" !#$(*))))((,011001.*(&"$$%&%#%"#"&%& &))*("&&$(**+,(+)&!!!!#"  $''&%&%%&&)-1462,*))'%$$$!!  !"!"&%()''''!%&(*+.020.-)!%$#"#$$  !#$&&'*),,03531/,('"$ "!  !$&&$%&&&&(*.-../120.& %%###"! #"&+-.+.3587640+*''" #""%%$%%%%%'+-25998641/+(&$#!  $&&&%*)*-256973/,*,*('$#   "$%$()).49<<;:85/*'$#"! !"$'(),1477:9:75311.*(#$!""$%)*-168<=<;:85/+'%  "$$'(-379:<=>;98851-*'  "%'),/269=>=><<95/*%#  "#(.369;<=>??>>;80,'"""%)*,159=?>@?>>82+'&#!  "&)049;<=>?@?@=;841,'#  #&*06:;>?@@@>>:4-($" &+26;<>??AABAA?;4/+% "(/5:<>??@@@?=:3-(%"!)/47;<?@@@AAA?><60) %,279==?@A@??<94.)% %+037:=?@AA@A@@?;5.(  "(/38:<?@A@A??=92-(% &+269<?@@AA@?@>92,(! $)/49<>??@AAA@>:2,(%" "*04:=>@AA@@@>;4/)'"#(049<??A@BB@@@;50*&#!)-179<>>@@A@?>;63-(# "(/68;>@@A@AA>>:6.)%%-38<>>?A@A@@?=;3.)%   %+26:<=??@AA?@<91+'$  ")/69==?@A@@@@@>:3-(#  %,169=??A@A@@?<70+' ")15:;>@@@@AAA>=70)%#  "(,28;>?@@A@@?><92,&$*.39=>@A@A@@>=91.*%" "(/58=>@@A@A@@?=:3,' #,279=>@A@A@?>=:61+%$+26;=??@A@AA@?>82-('.48:=??@@@@@>=:70)% &+18;>?AA@A@A@?=84.(  %+16:;>@@@AA?@><70*$#,27:=>@A@AAAA@=;3.) $*/6:=?@A@@A?>=;6/(% "'/59;>@A@@AA??=90+% (/59<=@A@@@@>=:3.)%  &-38<=?@@@A@A?>82+'$"(05;>>@?AA@?@=51/*%!  $,36;=>??@@@@?<85/)& #*27;>>?@AA@@=:73,'$%,17:<>@A@A@@><83,(% '-49<>>?AA@A?=;50+&# %,27:<?>@A@A?@=71.*%").49;>@AAA@@?;:5/(%"  %+04:=?@@A@@?>:74.) #).58:>>@AA@@?<60)&$#*059<>>@A@@A@?<85/)$ &,149;>>@@@A??94/*'" "*169;=@A@ABA@?>:6.("(.37<>>@@?A@?=:61,&$)05:<?@@A@AA@@>:3,'" !(/58:=>??@@@?>:82-(# "*069<?@@A@A@@@;82+% !(-269=>?@AA@??=:71*&"&-16:=>@@@t@d@X?N=H:F6N1W+a&m! (z txE%F+159e;A=1=>>===<;:5d.(#~1IB[tkuG (+"'(-2D6 89::::q:a:j974U.'\#afߪ߳ߠߗ "' -0 35i79 9899876f30x+U% u P="%!' +6/2)4566p65|5l5\53-($V  c% Xx# s"J(v+..01E34333222j0c,&8!3Je'09]e WcO#'*-[/00u1h1V1I1v0h0.@*$[ RE ? PjGX`i/  #%(#*+,O......<-t,A*&I"McS9r?n $9'<)*+|,l,],N,@,-,*(%!Lj FDI]rx8 aT #%'(Z))))))Z(`&g$ p$ ;< z8&X w-4"#%J&s'd''E'&&%$,"Sp)t&OLA (Fy!_##d$$$$$$w#!Hr ^W^W]i ~ Od j!!Z"K"9","! T.Q$>I^g~ umK8m_ 2Ec*`w (OJs +mH#Q?2"-:HqImf!gyg[U <  Xy-='zii N,>Gy 9 } ^ `.SF7)ZI>q.3z  ?% _Ve[]  ".TM]%Fw 9!=.i"5#] Ho ;LnO)z l pm&[PBaQ H ~ f(,   V 3# 2 MQ7FNT|j Y z y j [ L { xc RS,Q7"*X:t $ 9 +  sH6T^(?>cV,b'<zO 0986}C\ -/0!>Cosc`i'VKN~tgK1garden-1.0.9/data/beat/square.wav0000644000175000017500000007552012457263310013561 00000000000000RIFFH{WAVEfmt DXdata${FZ(m< Qcݨ/tֺDшWʝ'jQ> @ACI=I;I9I8I7I6I4I1I.I0I,I)I*I'I&I"I!I!IIIIIIIIIII I I IIIIIIIHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH~HH|H|HyHxHwHsH÷ķȷǷ˷3H3H1H/H-H-H*H)H%H(H#H!HHHHHHHHHHHH H H HHHHHHGGGGGG "!!&''*-./03667;;=>@ADFJHJMNQPUSWY\Z__bcdghimmnottuv{z}~¸øĸȸȸʸʸθѸѸҸָԸ׸ٸݸڸGGG G G G GGGGGGFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF}F{F|FyFvFvFuFrFoFpFlFlFiFhFfFdFaFbF_F^F]FZFYFVFUFTFPFPFNFMFIFGFHFGFDFBF@F>F;FBA?A;A9A9A6A6A1A1A0A.A-AԾ׾ؾܾ۾޾  "!%'()+,1/26679;<=ABCCIIJKORPRWUXZ]\^`ddgflinoorrxuyz~}I@G@C@C@A@?@<@<@;@8@5@6@3@1@-@/@.@)@)@(@$@#@"@!@@@@@@@@@@@@ @@ @@@@@????????????????????????????????????????????????????????????????????????????}?z?y?x?w?q?t?p?n?o?l?h?g?h?d?'?"?!?!??????????? ? ???????>>>>>>>>>>>>>>! %&'().,0143699<=@@BEDFJKLNNRUSXW][]a`aefhilmoqqvtx{y}>>>===========================================================================}=|=z=y=w=w=s=r=p=o=m=k=i=i=e=d=b=b=`=\=[=[=V=V=V=R=R=P=N=L=J=J=F=E=C=C=@=>===<=9=7=6=6=3=.=1=.=*=)=+=%=%=!="= <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<]`^bcfghkknoqstwxy|}ÀÁÂÄÆÆËËËÏÑÓÑÖ×ÚÚÜÞÞáãçåçëëîïñôôõøøüýÿþ  !$&()+-./245899<BCCGHKLLOSQTVZZZ^]_ddefjlkoqsrtyw{{~~ƂƂ{9{9x9v9u9s9q9o9o9l9j9i9g9f9c9a9`9`9\9Z9Y9X9T9V9R9Q9N9N9K9H9G9H9E9B9@9?9=9;9<9897959493909,9-9+9)9%9(9"9#9"99999999999 9 9 99 9999988888888888888888888888888888888888888888888888888888888888fjknnnsutvzy}|ǀǀDŽǃLjLJNjNJǐǍǒǒǓǖǗǜǙǜǞǢǢǤZ8W8Y8V8R8T8P8O8K8M8I8G8F8F8A8@8@8<8<8:8;87838283808.8,8,8'8(8$8$8"888  ##(*(,.,13457;:>B?CEEIIMKͲ222222222222222222222222222222}2}2y2x2v2t2t2r2n2n2m2k2i2f2f2e2b2_2a2\2\2X2X2V2S2T2R2P2L2N2J2H2E2F2C2B2?2=2<2;2:27272224212.2+2+2*2'2%2$2$22!2222222222 2 2 2 22222211111111111111111111111111112357::<>AACCHFJLNNRRUUXY\]^abbfgijnmoΏ1111111111~1{1z1w1x1t1s1p1q1m1l1k1i1h1e1e1b1_1_1]1\1X1W1U1U1Q1ΰγζδιινλο !#$&',),1123677=<>?AEDGIJKOOPSTVXY\]^`ceffjjkoprrvxwy~~ςτςφψόωϏώϑo0m0j0g0g0e0c0b0`0_0[0\0X0W0U0U0R0Q0L0N0L0H0I0G0D0B0B0>0>0:0<09060403020/0/0-0+0(0)0$0$0!0#000000000000 0 00000/0///////////////////////////////////////////////////////////////////twzy|ЀЀЂІЅЉЉЍЋААДГЕКККНОПТФХЧЩЫЭЮЯвгL/J/G/G/F/B/?/A/=/BCEFHIMLOQPTWXX\֣))))))))))))))))))))))|)|){)y)w)t)s)s)o)m)m)l)h)e)f)d)b)b)^)^)Z)Y)Y)W)R)U)P)P)L)K)J)H)G)E)E)A)?)@)<)9):)7)4)4)1)1).).)+)))()%)%)#))!)))))))))) )) ) )))))()((((((((((((((((((((((((((((((((((((ABEHHHMNNRRTTYZZ]^badfhijlnoqtswy{{|ׁ(~(}(}(x(z(x(t(r(s(p(n(j(l(h(g(d(d(b(_(`(^([(X(X(W(T(Q(R(O(M(J(L(H(D(G(׾ "#$&()+-0005668<>=@ADDGJILMQQSTWXY\\]accfhilknsqruvy{{~؂؃؄؆؉؊،؎؏ؙؙؙؙؚؐؑؔؖؖf'g'h'g'h'f'i'f'h'g'f'h'f'e'f'c'f'd'c'a'c'c'`'`'`'^'a']'_']'^'['\'\'['Z'Z'Y'Y'X'Y'X'U'W'V'T'U'T'T'U'S'R'S'P'P'P'P'P'P'M'M'O'M'M'K'K'L'J'J'I'H'I'I'F'G'F'E'E'C'E'C'D'A'B'A'A'B'@'?'>'@'='='<'<'='<'9'<':'9'7'8'8'9'6'7'5'6'6'4'4'3'3'1'1'2'2'1'0'.'.'.'-',','-','*'+'+'*''''''''''''''''''' '' ' ' ' '' ' ' '''''''''    #!!!!####&%&&&''((+***+--+-./.0.3022134435775697:989;:;><<><@?&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&~&}&قمكلنننىووهوًييٌىٌٍٍََُُُِّّّٕٓٓٓٔٔi&j&j&j&j&i&h&f&g&g&d&d&f&e&c&c&c&b&a&a&a&a&_&_&^&]&`&]&\&]&[&[&Z&Z&Y&Z&Z&٨٩٩٫٫٬٬٬ٮ٭ٮ٭ٮٯٱٯٰٴٱٴٱٳٵٵٵٵٶٷٸٷٷٸٺٺٹٹٻټټٻٿٽٿټٿٿ&&&&&&&&&& && &&& & & & & & & & & &&&&&&&&&&&&&&&%&&&%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%/01110233433566598688:<8<<<==<@>?>@Bھ%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%STUVWUVXWYZXZ\\Y]\^_]`_``_bbbbbdeddhgfggijhjljmjlnnonpppposrsrstuvtwwwxv{yzz|{}{|}}~ځځڀځڂڃڄڃڂڅڄچڅڇڇډڈڇڌڊډڊډڌڍڌڋڐڍڏڎڏڑڑڑڑړڔړړڒږڗڕڕڕi%h%h%h%e%f%g%d%f%c%c%d%d%`%a%b%a%`%`%_%_%]%`%[%]%\%\%Y%Z%Z%Y%Z%X%X%W%X%V%V%V%V%T%S%R%T%Q%T%P%Q%P%Q%N%N%N%O%O%K%K%K%M%I%J%J%J%J%F%G%F%H%G%D%E%F%D%C%A%D%C%A%A%@%?%@%>%>%=%?%=%<%;%<%<%;%9%9%9%;%5%7%8%6%6%6%3%6%4%1%2%3%2%2%/%/%0%0%/%-%/%,%.%,%+%,%*%,%(%)%)%'%'%'%&%%%%%%%%%%%%% % % % % %% % % %%%% %%%%%%%%%%%%%%  ! !#"#"$%$$&%('')**(*,+,,+-/--1201/323354564869888:9;;<==;?>=@@AAA@DC۽$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$~$$~$}${$y$x$v$t$u$q$o$o$n$j$j$h$f$g$b$b$a$`$]$[$Z$Y$X$V$T$T$P$R$M$N$K$K$E$H$D$E$B$?$=$=$=$;$6$8$5$5$3$1$0$.$.$+$($*$'$"$ ####################################MMOPRVTWW\\\_aaddfgjljmpqsrxwwzz~܀܁܃܆܅܈܈܋܌܎܏܏ܓܕܔܖܚܚܜܜܝܡܡܢܤܨܧܩܫܬܮܯܱܴܸܸܷܾܰܶܽܽܿ """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""y"{"z"x"v"u"s"r"q"n"n"k"j"j"g"e"d"d"c"_"^"^"Z"Z"X"V"W"U"P"Q"Q"M"L"J"I"H"H"E"B"C"A"?"=";":":"7"4"6"2"3"/"."."+"*"'"&"'" !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!GGLLNNPQUSVWX[\\baacefgiklpnrpvtwxx}}}ހށރޅކޅފފފތޏޑޑޒޔޖޙޙޙޚޠޟޠޠޥޥޥާީެޫޯޭޱ޴޳޵޵޹޸޻޼޿޿ } | | y x t u u s o n n k k i f h e b a a ` _ [ Z X Y U T U Q R N M K L H G D F D A ? ? = > : 8 7 7 3 6789:>?@@BDFEHLKLNORSSUUX\ZZ`_acbegiilnmppstuuwz|{~   }}{yxvvsrqpokjjjhedcb_^]][XVVVQQR     !"$&%&+*,,011248699><@>ABEEGGILKLPQSRUXWYZ]]```dddhhjknnppssvxwy{}~,.-+)'(%$!!    ~|{|yHDCAA>==;967554/0./*+(('%"#"   !#$%('),*-/0063587:;;>@ABBEFHIJIMOPOUTUVVY\[^^abbcfhhikmlporttvtzz{{`^[[YYUVSUQONNLLGHGFCAB?@=;:977534/.0,-))'&$"# !    RUVWZZ\[^`aaeeegikklnqrrsswxw|z~~{{z{uvvrpqomnjjgifcdbb\]^\[WVWTRRPPOL  "#%$)(+,,-00345568:;==@ABAEFGJIINMOOSUTWVYY[]^^abc|}{yzwvsupppmmjjiheecba`]]\[WVWVQRQPPJLJIHEEECA@?=>8:786233/0,.*)'('$#!!    ! ""'%(*)+...2144598:9>=?ppttvwyy||{  |~{|ywwvurqponmjjifgecba^`][Y[XVUTSRRNNNLIGHGFDAAB=     #!#&&((+,-,/2133768:99:9764422/.-,*()&'%"""!    fhjlkonpprtuuywz{||~ljihffeba``]]\[YXWTURQPQNMLJJIFEEC@@  !!$#&&)*+++//12254778;;=<@@BADFGFHKKLLNPRRSTWVXY[\]]b~}||xxxwuuqqqpnlmjghhfdbbaa]^[[[XVVVUQPPPNJLJJGFDF@C@@><<9;9655221//--*))'%%#$!    !###$%)((UXWY[Z]]_`bccdgfiiklonootrtvvxzz{}~   }~z{yzvwKIKFGFFCB@B?==;;8958432001,-++*&'&%#   "!#%&(')*,--0.31446799:;==?A@DBCFGJHILMNNPQRSTUWXYZ\[]_a`baefgfilklmnoqsr~~{z{xzvuutqqnpmljijggeddba___][ZZXWUUUPQPQMMKJKHFGDDBAAA<=<<:976532220.-+,+)('&$#!#       ! #%%(&*)++..0/ZY\]_^^bbdcgghiillomppssruvxxyy}}}    {|}^]][YYXXVUSSSOOOMMKJIHGDFCCB?@>>;:<9   ##"%&'((,,+..00133557899<;?=A?ADDCEHHHJJNLONPQSST}}~{zxxwwtursqnonmjkihifedcb`__`[]ZZXWVUWRQSPPNKMKJJGGFECBC?@?==::9877545100./-+,)(''%'!#  ,+../1232568799<:?<@AACCDDGGHJKKKOMQORQUTUWYXZY\^]^`babedghhhimlmmqpqtrtuwxx{zz|N M K J I H I F E D C D @ @ ? @ > ; ; ; 8 9 7 5 7 3 2 1 1 0 0 - - - + ) ) ( ) % % " $ " !                           7::9<>=@?ABDBDFGHIJLKNMNQQPSVTWVWYZZ  } ~ Z X V X V T T Q R P P P M M L J J I H H F D D E B A A > ? > < ; ; ; 7 8   !!"#&&&()(*,+/-//024266579:9<;A@CBDCG } | | { { w x w w t u s s q p p n m m k l k i h g e e d b b c a _ _ ] ^ \ [ Z Y X W W T V R S Q R P P M M M L J H I G G F F B D A B ? @                            !#$&$&')()*,,.-/0132265877::<:=@>>A@CCDEFGFHJLKMMNPORPTSUUVXWYZ\Z]]a^babceedigihkmllmporqqsvtvywzyz}}  ~ ~ | { z y z w w v u t t r r o p o m n j l j i j g g e f d b d ` a ` ^ ^ ] ] [ Y Z Y V W U U S S S Q P P M M M M J I J H G F G E D A B B @ @ > = < < = : 7 9 8 5 6 4 3 4 0 1 1 . - - - + , ( ) ) ' ' $ $ % # !  !                       4556998;<<=>??AADBEEEFHIJJIMLONMQQTSTUUWVXX[[[]^^_``cadefffhjjkjmlnoqqqrstuwuwyzy||}~}ZWWUUUSRQRPMPNLKJKHHHFEECDBAA??>=;<::7875652331//0,,,,+))''$$&!#!!       !!#$"%&%'(*(,+,...0021254777WVYZY[\]]]``aacbefehggijklmmomqosqsvtuvxxyz|{{}~;;:887673342200/.,.+*+('('%%###"        134474797:9<:><>@?ACABEEDFGIIHKJMMNNlmnnqpqrrstvvxvyyzz{}|~,)'(&&$&##"!        <>A?@BBCEECHEHJHJKKMNMNPQPRSRTVUVVZXuvvwyyzz|}||~'$%$""! !        ;>?=A@ABBDCEEFGHGIJJMJMNMOQNQSRSTUVVqsttuuvwxzzy{||||./--+-**(*(%'$%$#$!!!         /.012225357668:98;<<;?>??@?BCBDCEFFHbacdeeeffhiijkjlkomnppprqrtstvwvxywyz|{|}~ECDAAB@???<?<:;<:897776443331101-/--,*+*+'('(&%#%###"!          !"!###%%%'&()))*,CEDFHGHGJJJKMMLNNOPPQQSSSUUVVWXXXY\[[[^]^^_`babccdceggggjgjkjlmnmnooqosqssuutxvxwzxzzz}{}fgedeccbba_a_^\^\\\Y[YXYXXWUTTURTRPQPNNOMNJMJJIJHHFFGCFCDABC?@@>>==<:<:::87667543441201.1-.-,,-)**'((&&&%%#"""! ! !!!!#"%#'%&'&(*(*,+,+,//./1/2222553757698:::;<;=>?=?A@ACACDEDFFFHHHIJIKKNKONNPPPQRQTRUUUVUXVYYY[Z[][]^]_`_acbbdcdefffgihij}~||z|{xyywxvuwutrurrqpqqnpnlmlkkkhijfgfgfeddbcc``a^a]_]\[\Z\XZXYVWUWUSSSSQRRPOOOOLMLKLIJIJH121/0./.--+,,)*)*''(&%&#$#"#""!     "!!"""$$%&&&&()*)**+,,---xxzyz}z|~|~ttsrroqpqomonmkmjljjiihggggeddddcbab garden-1.0.9/data/beat/drum2.wav0000644000175000017500000003557012457263310013313 00000000000000RIFFp;WAVEfmt DXdataL;uW1 s7e^':6FET LtJ*4Q:e2L}-i9s#%&{tZav $rArE<iX {!h"y#^$a%@&7'(()*e+-,,-[.//G00t1223u33M445^555#6Z666666666666y6L6655G544243Y32e21R10&0/...|-,,9+n*)(''&.%8$B#H"F!@ 3&}U-b( w : u5@aE/!%8`A`$ܻەr_PHMYmӎҷ&n΅uˑ/ʎN#Wʘ;˜ ̄ ͘0΄=Ѩ҅qdbet؎٪6t߷Tk?%.Ga}0F\ f aR1]S ">#d$%&'()*+z,R-"../T001)22,334]444*5Y5z55555v5T5%544V433!32210G0/..B-i,+*)('&z%Y$4#" P]<aw}  { taI4" 4aNk/ݟ}dTIJRdԤ JѪ,а:dΤM̰l-˔qO4#  1Iiˍ˸!^̣<͒Nη#ϗЍљ)ҽXӚDէ[ؠm: ݠނjUE5,#$+3AM`o;\{?_ 6 N i u R!."##$r%7&&'l())w*++T,,w--./|//^00'111+2u22203a3333344444 43333w3G3322L211Q100"0/;/.=.-+-,,h+* *v)((Z'&%%G$x#"!  0J_p{n^J9 $  tZ="z_G0:z3o>_MNb߿މSܿ*۟ ڂqnvՇբ5bҙ=ч3БCϴm0κ΄N!ͦ́aG,0Jf͇ͨ&UΈο6xϻIЖ;эBҠh:ԤՈymp}ڗ"۹Gz޳Lߔ31A[ ܄aݭEގ)yi^SPW^m|5L g&Gh0VN|HzIL T'`3m?|OZ.j8q? s8  i J , u S 2z X1z P$k>V%i3xBH I LD;u+eN0k G  !S!!!!""W""""#N####$?$n$$$$'%Q%}%%%&+&T&&&&&"'I'r'''' (.(U(v(((()()H)j)))))*)*D*a****** +#+>+X+p+++++++,%,:,O,c,u,,,,,,,,, --*-6-B-P-\-g-q-}------------------------------------------{-q-e-Z-N-C-4-'-- -,,,,,w* `6 ID ~#pL"x"\u =Z&H"7ۨ.Fdb֬X-T'l/R# %*2/sHVx%j#l:ݬ2U]9 }8/:cUy#@_k,0s{/ME!9B}K -!,$Ԧ Jt wAōޑ'm9 U,%1,=?. @ԪA27.v~4( hJz:8(%,%40%. D#9Q ݩ(E*Lu,N oh!%v#0 װ 5. ,Y)& csMZ(5/Zw6f #_ӋۑX^+"  M޴'$="ywۉ 19-d e |i KJ(1[6 l%+a:tMSv.)5!e$, t a  XWmtL=/3@r/N~hbHy $"'}3s2c \V BwU& |_%X'8883 hYl' 6Gt 5 &J5.!>vC -EL K {c-/"A|2bg(@Al)^6'&D8_\ :5@($+ݚ(@?Zt[&H$(hr@$QN H"\y h,! .cD 6ZR'! " <Z  n$%?$VMuS>QFn sON  S'(cuy5 / !"x'qx(Vwk4&V V; -2)-'~Mv p}h+!  " Z;K)+ucQP&3D "rmd_qJߪ:  3#J1L#3؞sZ W2T/Rq+%̥/P-J`*.0_i~ MޢH (2 2-!L#une?$+$*4%Yi<\*z_)_7e^!9<6%Yif 7%n$, e :r?&>%wJt,pӢw݂h #&DfpLsR` ?,lGehp$#"X X bR8 >] > iI%f)]jЅNG  .iK+ri] 'o+7֘ NYu&  L0 ~* #' !RЦrzCr#/ORh g , m .#-.s? RKbx[ Ad k |* "] ݍ #8N~Oڵ| e2{C^ Y q  #C)UKNӮR z\`V\ " U9J2Wy J1` # %#֘m `[  3J)I~ \H r".823bWE/Si*!<+*G!=XQ5-tk+5(7%#t#l 'u2Z@ T$)a=%G [v6[/M$H} JgEo IS* YZjxWߜh Y )c &l_hF  U? ; p(mWO`  _n4" y "M"R5 = P ~U?YqPM5޹ %${ / I S  V/gU]vm, @ m b=Ovb r )C9J \ TjA pD}oݠNN^a* ("U | \Q f# "  F>LyZ JZP yBl ,{P ! d  Z  oMv1`-g# )%Jz| MD)B < m4+h 65[r&9PG eo L a: ^!%A$MR yc& EI5JEMo&g OeL Y X--v[! zCY9Wir   /4B L E $ f | -M"0 %eZ?܃C4TO(r Y_ &=s  \]s } avd6 I-OX D: 2 |/ 11g>"0STL 5``Hk ~3AV yy Tm w T./ "Evu9 L 2V4f"PFf/p p"1jFfuUfK(DJK8J| {;r  BMk `  tSI =/`T% F4 ^'t#M0 r nyzDY  B Mc@f(vOVhNC Q-VS9"P^,c:Cj1~,dM; & =kSY]N/#O%R[ I`w 1>x is QULdBg~&.6D h#t4 CA f'  "O?RE_ p  # h 6l >xt_d p 7; E0rE>yQV<*pdfNb]58 clX, }# ]H4Z+0z%Trxf j ukomD}ZtG~xy>p T>)BnP$=.R[<^9EyE, HF?-V y # `9W+&f C !OmsJUCi ObiDWftUz e7s:+v~Cnp .o((1^[& y0|$K30RPU*6\Jq 6'C2G~&LeXR @?r0%U "ksKq3BzOM zhC&5B@m,S}Ggj5ihM]YU ZZ V{ 0*ouY('N[/ahtae]LxV6(l[dXx<7v x8R kh.>y\b2q|r%s@b3f$O=sVi[AoMxt0z.2q'9Zn~xyb65617K$]KM3 q2tF~,gm P:"DBwonUE;yL+Q:7tx`8Z*R0c~cHed"#7 1F5XI>zF A(Zv{,&h%<Y'9@~iW{Oy M_G"F4XQ`l]&^+4O ocuWqG jCsa~JImZ\7Z{3W`kf +B )x*%8#^-,=/Rg!rv? !K14/3oEb*Jax\KflZv0z}HE$-15| !9\u! Zo@twuDWQ[[hP=_H=,/&+l;'<bw6wKn0 W_ DGMOv,Gq]*3T!VP Sm $AK8x?[THCPpGB|\5Vz7 |NFc,JnKO;BpB6)2mZd\qCA"-_*5NwA +~&:`n7DVenXWg<t`qJK-4D#o]D;y;bJ`+,R.tAaI;d vVx=$.W\` pv50e;"eT_I9?,\@NPs :;K8ce=Wol{s*{*o{%R^dVK}+F[_Tka#\.P+Mn{: e 2 qp8HRCrNwB\+NEN$RdMd ?y/&XFT}hU!'Ij@AHh\`loy{phl%?w&J#R4Y%:6h_U8>2p9 8B`YlDf RC$;%.Dj#?-5UFrR_GBUR9wUOO? B(c<<o(TcRW|y d&9 nAxv9yf",^6uvq>pm1t-/:hX m3:$*;:40."I vgl+:>.L)h3v\ZFp) [0`\z$u>EXOT H*odovTePvFTHiQmV SA;uaub>?U[^a_Nbp^S] W'JXRDk~+-!N;ZRqf\\"q9>bH68#"iH0Wr {N-$06P\ Ky\kh|4VvQy*Eoox/ /.$,>E>H|ydROH=CW`0 FC@_sURbqv2& vx0? 9K@FQ/DuvkMQaQpyt[vhTr1HZnM|EzpqQfugC{hW, g|K>dU4 3oa5@1($9L0CG+    .0&"#+-# ('      garden-1.0.9/data/beat/funny.wav0000644000175000017500000011122612457263310013412 00000000000000RIFFWAVEfmt DXdatajz@efs'3&U$^66eJC^;"Jm26EM F   bGgeh Z s afxAN x  P3 YQ.p  Oj $|S TS 2J L,3  h n(W] hhW71 my uw!5cmvZ,$D g\ yޓ310L'& B"P|(fJ_R5+6# F $]M܎dL߀W8H,n A\$ -nۗIKe"-4m"#( #1;d*,K &!Uf6.+/{'k P (C?& ~X~~u.r 9%v$Z|b%ۤi^9. $z lh֜ۯdh( -R#% "gԩ+>1/) (h]7  l/"W &%.RݭcOF.m Z$s ٍ^zsfI%J-C0#" S =h-,] ' !<e*P_G /% 'ّѠ| d.   %`jճ*'ۄ߸]- T)!# \Q-i*,c z&!Ok20-/z'l P (B@ orT3} / J&l:h2֯rZ~ -Y" %qv cmޓQzr+), &!P>{j/N*!}/= "-$Ss}Ґ ߌ!g73. %ZQ ݺΐ31RB,0* & /S[W\+GX%A/[S%"^+w $M 3SD/, s& ?Є:܄3M2m-)' ':?};{߯"&V/Y%"76$v|P[jܲQE/Q s% מmd݀k^ݯD;.&D 3'4)61E}>XeY)O/B 7'!װ4]2OF/ $E Oބ8c,G$.&9 ?'-0 50B~;YeX)Q/@ :'!Jv-A4oZ/[ $[{&3ׯ}ZT n.$_ 9'+Ttwߊڀ~ W ,I/ 7(M!ya̐~yaHZ [/1 Q \$G+ԘeGށo~< ~.$T @'!Owxߌځ{ W,J/ 8(P!x)s̯r>ݶk/ T$Q P,ѳьBօ|5:d ."z 3&"nWP=]Nی*CX- $F֟RLf #,/"!~ &ڭk (1+%& og't-E}/n& {(.ޝёTx,^ C$7WrvVؙh*&_1 !t[[߳%)$0 u48[ a; 0( "o)\e%oڽb4,,#mhelvؒPk*bY!!D$3eݧ|jGvߦs(o)YY%fz $Uw/F& }(Cpуq?- %C֔؀ݿ+1F/ !oW^߭%)$- c'-( J("6ߊ< Q.! s&xBנq؈'=r+";ev؋I K*"e Z2 ALyk*' &4) 0?K߱ -"k q&Ohܧ*u&[w+#&V .!>  ή Q,6t"C(jqU p(<&53Fˮ.# ?}qٝc 1!Ԉ@ PԐ@. h E~69*%'mMDBO*O% .Boܶڐ0"L 9˝B=c0u v s΃]Q,  >;J!)pI'&igEx'K,$ =?)ګۣ/R"" ׈̆{/ ` 3ϩ2,"ַG#(iˑߔ֗)&2LB˹y}#+# DWߊٳ 1!&%՟(/] 5 d *!x#"%'I1Kץ(% v̢u[`.~#8 ̲@@a& 1 3iL͒j=Ե- UP˧p%q!)R1"$/'wQ5*!% #%>f1" CF͝Ճu.  ΝѮx)* or&hQ8Y4m%$Iʹޒڗ+" x ݃ 1 t kr+HԂ,s-ӑёNT(WQ̩j<@2/y! 8'%0I+}. ; jϟtod/*ˍC 5'vy`w} &$A , ސ+" .'!x 25oRչy9- FY Ͽc)?bt"j&_^̽I؟'D$! <͚ܲۡn*" vcΝ %0  eΈ1Ԅ,"Ӑ@='RȔj Շ*$%h8IST7ru&#=Wܸy,'"a 4@C%"/% 1((ϴӼ+XOֆN +'Z[%vr _#U%I,5W'"`V7υ^޵- @HX,zI!D'@W̐@%;g΋Y ##5%^`M9)!Xߑ- i/ JhFSa*]H˦ե4O2&NM͗݌Mk $hROU^{%"s ۗD+1! Y9۵ϻC>- T I1kXI*J#u8d3+^-J *#H'.o )_7HO8I$. )'" z!V.V^& VGo}K-$ytԒF-4/#$6tO\C-! vc,p w{ޜr8,} j" σI!d /,Z C@{, +Z! ;v>y+#C  !ʹ)ؼ+5& #Yuz օ%Z*(- ut&S2FK/e*+ )z"G],,,W+/Ȗ>iաE--/,_LT/Q*.*>t3I&-k x)75kׅ#- 9'4 VeC -{Wn&1 Q؜_6-u$/]iX2-d#+o)%XUڴy\-!)q1TV- Y %:RM߸2o-& !ILfܙx Z- OFSH F-8"' !4`C1t4-$D D$k?w~?+ -I'a 'Sw9*`H -)8*aƃ5ՂM,\,G+P)*յ^--5,VH\4T*.*=s4I&-m w)77kׄ#- :'ۯc{L%%;P B#͆!ه "Jݼ0&!:7h)4 6, G-3*^&Pi%oTDq#%vyVR""w{x( X7*Nb -~ 6cӤҀbl(56M}iӴo~$ V$+S#(%Rݦܔ$ aZf) g9i ׶*6 :TԥI &TCz!"gJJ !"!=fLf%  &'{JVr * >5@ Ԛ>d)/Wd ~Ԁ+$zm"Ag`-N"o!7)lm'b w3^ ) m V'/Iˢغӡ#'#aVl+@1":Kovc$! kuzTn ) k;g J+Y f Magj2o&5L˗t"J&|oZ%R !9=YEd% "'&~HV'_ g ԦNx))] HO#y%0^4wh6քB"GϱdOTZ"|!!Hк.`ޒwO .& c%i"<tY h֔sv6Y%ks@ J*!&A K'. 6 Y@5VYL)`LUL8 *,e_ )9#7IW5[NhMi; -i&X-Cg l "{!>'"EWq תܝ`GD2Izgbj0>#'/8#s+h1ߑ޳>WnJxiZRB"M'H$NPi g`Ќ6uT/lF{8Yk`"\+4! y g3d $7+4!@i`RFd/}!- &S##C&W_a^ee~ߜ4VV~\ '% & kW!hKbNbuE=ݳ{7< Y\g)Z"t8t|7!?#aeڔo;ڪd `> ()gEs - #5p+"o?. 3_KDNV3;AHKN]*#? %X5"zWD@QY~U}s%(P`# 4H h\qs!rYGx@Acy+!A  fVkpu~Oc ܓ*pSJ.I Tf~0!&#NmS$OQWX-lYQ`sMS;Szz"S&I$sq/П ٽEI?{j;,AT; Kv~*&8""M F62Mތj4o,<#E%QE;>B/? %M-#d{ ||5Gިߡ8IMSPp($ 4{% l!&JeSJu<xѴ݇q3#*"i  %a"*fr[5Yl݈@ $jw `' X#n/"E&9LtܗaBu?p\Q>VE&yJ &+-$Iu }Z+` %Ч`۳ER1l5,e<*br"|X}(~@v[)/ޝ#Xt!@z=! - "!I!3t'~Nw n" B& f+3. xXW0.! %#83#ONQO3AODiGݔߎ6W1MoL"%Qc$a8i H7@0)Ю]ۺCO5j5+f+b)E#;;rBjU5 s']G)t+Ha|\& -z #u ]!?bb ҕxmq)fvgNV&:q#u<.}%5F3IޫGݱ@;rpvi>K3,)"U7 >gMl l-=Sܷ9/;px/t-l ( *$z"m}-jq:yAwg~0t!3!bE_"$~#e NhqRid:/\j\ToeM?WR>B*d#* 8v, ZX7kvp8DdO8;/U " #" h{wPկ@4FSlf\Glqw%#w#G$!X- =}d|}%*޳>z2v4A<(p#:L_OIK<ܞO96ySNbJ H-<$#@. t5UWm y<ܧEO-k$D:|G;+n "!U+ѿmۊRN,+Iq@q;UEb/ #r!! 7cOBh߫GOvV*F"pMaN_.$`9)'9"-<T 'tc aS!G#"#N1"Y|  Flݧ(O-'[*  #X!=u<OX'(޹w M} -jr 4# y! <_*303b߾K~FsU*D"sKbM ^.#^:)';".<S[yb- 0#!w!U*Bߺ6y4y5 .V i${:^6 :+]-.b?pYe*#>T63`' k@%"qiGV<4c1%?"K"*R Fݠ$<)<\{`- /#!x!T+ԌDI&l =.o q$#ZJ /$k(1_Ao]nKf)o#'8UMI ?1bJ%"ujGV;4a3%?"L")S ~یi ߽m- 8#!!H# ԊFL$ ,?$X:Q#v(N Dx'i)$<  aHHf!cOu ~%="q) ru(Chۖ]1ޞOyIC=xF)%z!/~!{N "&ܵs4lFo*1 l&Uc [h4jݚG@߂JPW ^-6%,A2.b2O@v#h)$<  Nb)X,b?%"|4 aw3Bqےb-ޛUwIF<zE5j^x& "LR?fuWwL20 )2T#YejW S 05)9$8KՇqm+%pУ׶IW~ '"I]RsQ^*<ݮ.m9K,]|&Ur"& n7h$XJk;,<'Z#64B w;K, 0F#) a$}I֦pQ((mu# ao? QYs!  ni`gMވU3Z&q#m!m) 1".(O[#FإyT*$ Gg]ݹ$J זoܟa;%^"H jt?b0,m'E##j$5 .'O?#tԡ B!7 %WRL 1֡D9'i G#br".k _ bEKF(I$!߬N:G /(n#c[C}}k&D&,,!'xҡ"0٘ ޾F : 7ߘ&#1)F!h9^ $.>d'5;#ܟS߆wO+Y%&?!Glo)D" t%#d x uC@(r*%("ݛ<'H1-Z'6"G]^1߁C $ 6 IڻSy!6(! ܋MwDci(\g$!ߥJ:@&#iAm4VJ,Ӹ&| 1-)+-db0^>%L4ނ$:#E`}~.5-)4לj+t2[3Z+]A=Y/6 l$w.݆$) l ܙ!L"}!o ݍ=l(oN%>'v0|)Yls:G 0p(^,6- Er R: [<@(Slk1ww" #y 3zO*:&j@a3 +gFײ9UQ/ l',b6Fۃ6-d )b3Xߑ%dD iߣߢA$ ${J@g#ߔ-J(B"ޥ 92@)Ջ t#u\0 \%?0k\C+v `3+#,1!n߮wo-.'#5~%ܖE^0V)tnhg 2M<*1YZ|S/ LY$a*r) %bܓ! " Zt+, a@߄sf#H!vE%54$kzwm, V'&SR 0Dy'~3. "*=IME( QeR߼! Y"t >o'M+0%%blK[/f](<9@+${ 0{ '0ו)߰^- I?m=&c </Y"50#ߓ8syv*U&hN 2d)S+g-x/ d&UFu+ 6LE7$/7!`Md%Q$jצ ܘs (&!ZXՋ"8rߡ+ #];e& Z. %y4V8ph} .2%hݺ +_#:WmI  ("@[޳n';"-ߦ8&!uH9ߞ|߄#$!x{d&V" 4 kyR s  d:."AL  {di@   Q0* Յ;-ہ"  e=H 14/r$ H Iؚ?& 0H( ~%1={ (E >/X}+ `"H^_*Z"Cp8Fڞ{ )"Gv0. 'w!YiOfܾލ`&D!n+HO,%R!K^7ߕ#!wܲ h,O" 0 muO u   c80"A M  zeh>   P0, Յ:/ہ"  e=G 040q$ H}|ؘQT2$0;*ײg]w%{҃7<rjm(3] U]%F'x2 ר!ٻ~v*E(&N4!)##x H@2f-&$PM8* [^?M"%(m!Wzޣ' P" ZUL[v'<7#j7\ #-5"%uR9- #15SM 1( ! j^A[E# !oL4##y)")mK$U -^$C:K+ >"qs_` '| fn iNf ?E" nL% ~#~)t$0 "U /$ y%7[ߩ) \} E{Ee%O!"J1!%" p=cSo%#'#\a3_+$ޞ'Wi-X #]^+> &( OC#!Yf'-#!#w$'#(tu8| -}E-%wA'+h#"ژCH'x K/ SD|o" mY"9"#B@I(C#E[s{v-a#>+'D٠AkI$+>"I+! 6(H) %2"'*tk#o_:+S+";D&[` 0 % "E#3BWfܰzx%! ~R1kGX/$Q{rGi-aj}\"Hp2*{ 8!\)9-%Z3#\O@RnY+7\m=*" ! _!V~&:5 ޣLx%kf[ y<&-kF'~8"a(<*gԧ$l#k@Ary+Eq^c+s.7. t #jC#'q KGl$;v4hfU;9dIT- )r|"! $ c@wp`uSBXxam,U#pK} N_# 4WwޢޞhEhQwN}L?d"A,4 =-z{n.U*\?s<mf.R,"-#!M$U2aL (#f s+'{%w " 1iX[,wmctݲ"Qp0eR@6n~bq!!s[2]s6 kAܫ 6߄StR=Dn _lPtt*o!_l"rP2!EYM<: 6 |W IC/H%KDv*&ajF!9N+]C{k1y`Hv y${**8GGZ,7R?O]/>ޘ %-JU* g$W &6#!/$uv8MkHpi98&nq ()!  XAvk#miv_2ZsK|M  6W m'gWހߝ}HZ[uGG>b"C+4 >,y{o.T+Z@t;nf.R,",#!M%V2aK &$g q+&z#x " 2iW]-tpcuݴ #Or/fS?6n`n"!u\3]s6 l?ܬ 6߄SsR;Bp \lOT(pC !Fl o+: ~6;?+C PBr,&`jF!9N)^B|j1y_Iw w%|)+7EIZ,7Q>O^.=ޗ &.KV(h$V &7"!0#vu8LkJnh:8&os*%U ( !e  SzJqh&%)dtK/oML-f!Q 0@$S9WcI'AT)ZE(Ef*R1!'%]8BzCdQ G8Ds'd&dwHz.X)Y!G! s /Q PaYCwVa`A)y'qn_1B$i)"&@ e)Ji|v߼(V/V>A Tn!# !Pbe()f]I:VҒ@(M O%8(FiBN-!!*O@<uH gP G8Eu'f$dwGz0X)Z!H! q 0Q PaVCvX_a@)z)rma0A"k)"%@ e+Ii~x߼(W/ W>A ?%!NwYRԪ=-Zu +eAEn{,Bj gNU,bݢ2|[ch2mCde0)F!@! V'Bn ߰/S4 [C> . -)8"J& ds"HoNߐZl/+0$c |PL^|AZֱ"F{gY-s:yp!d%' ~1ymT'@&zwGe~1_sW^ #%rQ; "a!fJ}tl Z`0 +9$ p! NR4sbn^!W*m"Z!t*!{]"e&ZFn \J%(J<9:S<}i(DUY(Z1`$|"3Qܼ5Z,K= +|3$ yq!NU0rdp["Y*n"Y!t+!|heq'9 7E1?%-)R8*i/f+<nlQ,\6A\< +|4$ zq!`.J! *I"2 !A!hYn 2 9G]#&\/?blX0W5?^>>im$o"-Y2ڜY>egf +PML%Z* -:Kb]5Tt(cf" kH}j֡cLsfg}#tWQ?^nܱ'X3X{x3J(s9߳WDR Da.$ b"{fPsٴަR% ?-%z'!y)x(L&m '~!KW Y3`ߥLߕ0ߏQ#~5" b3z N7ߌJQkq@j $bpi*= QUn=f A^( O#iK"g 5<~|}LJ'U3n'wGm-G[-՗mݟ+oo=f ,e9$SH|H:|by+e]`WKaZq_`'<:&YA5j8.޵z/?#R%"Ux -xQ>ZX8;m+!BYxLl/^/Y@^:f%7 =Shq  _It!)~L)e/qؤx߫5 T$Nc& ) !Z 63c7W0Vh(Df #,(&("{}B:(>Y %b'rbe'r(KJWH44H1%'  @Z )&6 G#4 & I '](hgeYR3[S!qQOUnZ^f1Y7 Q ?N=[Q6AoJYPrd+ x0QZKVE;Nb:.[ crVe,~!0-AVW"Z} +r*;t<1eKc,H "  O'-)^ 't$,v:EB~F ( 0n ,hj=55Qn]" >.rk )`SPV++[308.=k0Qw .#(%$ Og`rfXED $ KZaSA%  vy6 hb7)p ; 9m06R%/i0}P{ ,~ +VSGz2URZ  l }6kOoGNM!9i|L`WNr$y^b\:+% SF8)@ x#  _zG4w % Af| RS R_)63m Ig P@nlc    50P`GLH HZ FJ+I:o|jK)ytM I S_(Qk_ ! *! c'VyfZ<5[A 5d 4jM#P,nE1u d=H-U{ y / e6/ \D :gg0C   =FL x] $ B6X}V : l?n?8 e "+\e ;F E8 c 'Hr3Wp@ dP : n,z  z4 H%rQq ^ v})L*\  J|?XBN  S $ 6 x}{%~VSf  mzq~  @4 @us(RVRnK o 8pg T s [UcG$ 4 &} LWy%l- } L8 4 Qbf Fs 1qD kC_  - J '!3d   zBmeR , ] v , 5  sF~:J ? d\Wr4 P A - dx  [ | * z1[E % ]T18)A}8 @Wobe1S  F  P!1  w V`M\9t  ? | cvSP \ 3K!B9 -4p U)fd  G  ?tP^o"m _  1 .<yQH PS /* hO:)F n . e /Zv;< R  q `wa(  m  [  @ % x6)` f  w C{Psvpz + H -Pb6)& z * 2 .K|@7N !Z / ~ U  -T8 ] I $^ 5Uw$6T}  b &m >lNG2*F4 " l How>+ eD 3  EjJL  <  W4'"j?H F  , HGV t N GKF/J]pX]@.X/O4`h ^qvIP w z\<A.|D(i5i +S5Q*;j.-P0Pvu,?iB3lH(2 5*$IIkD_m?wcM~ &0T"mKDB?y>^O (v wX3t]{*}A6$6)^83Bmo@W6o\c^#up|@7rd:h\w06D*?:*mQv0'o$o^3"v'LZy~-[i6![(voUy)V~v671t+D GeT8[j_L"SMs"fv8%  jzYh"g A@> !;<o[]EqOe\zN~ZkR/EX*mG!Lg@jZCpP8 `N8G"h1dD!Mq4, .fhbRca6  bfMH$iOq' $v-+uI=b{hSi,vf%Gw0b8 &7xgR=J}AbpkHv\r`gQ}r88djE-^kHd$O5@6:* garden-1.0.9/data/beat/synth.wav0000644000175000017500000013321412457263310013421 00000000000000RIFFWAVEfmt DXdata` %2AL]n 8XA:=GSm *\,h:;cGAX ( > T=&wc  W5c = w xyggw0!~"#7%&(M*#v4^M\* !L"#%&L()+}-D/124r6B8:;=~?OACDFHXJ.LoHD? =;;<:>@A DET:-$I& }2 !!"@$%'_)=+-|--5..+('d&&V'("D3 j"$&%c#!!>!"(#$&'=)*e,-\/0'2q345]42I100 11O2334=5U0z*%E" L LZiP{.O 5ŭ'PʵdzSا)ݩ^'ҡׅی3ӧo)%,0ԿiB-%;Z~߿$uJKӓ>,Ct!PƩƍ'Ơ n@ó2´CwkW<0̷e4PqXUOuzΤۭ߹kMóYȵQoo7FçhWm/Izu>JŽƊʤںn P."$$$%(* ,=G $7?i#!$'(*C-V0q369:7c66e8:='A@??. . ^}*<J8W!$0!\* +Sus pF! %(("Xr!$'),k.025L41/..N/w01i34x67]9:;)8/(R#NR[ޣzڕЕƤԴ=>L<.ܬYܲ+o֪η\ʱ{ɕ;ʳBkͶkϢk5')P+BpޭʭíX2zY#A/[r8w҉۹*ܴJtaϟ ΤT sN|\1p& ]A|}~^ P; gTk   L-9XDLSY^cdUddegXI=744\68;Q?BzF$JMvQU&WVUTUWY,\^a]d,giloEruwkz}{"uxp9nn8on mklamcoqzrqJppHrbRG@%>=?SADF;3;;<>Y@?B)D FGI;KKIFDCCHDE#F7GGHZIWJ@KLLMN MrD2"&d)\ipS"'ڲϹ0;7Pٯ ށwޝ\uׄCGa>ȰkgDz>ȖRɸ'ʗˎ»~u󧒦!ϣl'0ı;GЂ7qX%ҏA˂dI^lɾbӸͶ3ٲS_ tb 0 ӭi7 s9Aєԥ#gzrlϻFL­06uԑ;ߴV.jz h(! (-:1;1113 $|{ <<2 r *:! r !#V&(P+-p02|58:=q?A;H5M1//h135l4!3234311247:k,, J t+pGf O$d' ^j\ |@ "i%(+)#BFA j"$&(*,* (m&%;&#'^()H+,8./0'2U3d4g5L-$+m۬]ffU%Չ~sU:|O.#ݤ!.BZb&.j%dТqF* ҶPk6ڹ!^`vh9iک}*P*WCn(ܮݘI܌cG8=NtܥBtD1 ? 86.E  B]tp/|ݤ'^|5"} E!"3&)j-14$>JV?_Pfggh$jZ3Ka@7:7r78:y=T@VCgFvILORU?VTtSESS[U#W2Yf[]_Gbdf#inkmKg`\D[s[\^aZdJgihg{c_]]^`]c:fKipl ^LOD> :75G679ACpFIKXLE?{;a98D9J:;=>9@A@=`;:9::;<=>?@A_B5:1*)&# &z+{!Frߏޱċթu+!>޷{N!ڗ?zsέϚ,ltTeK#ϱpe>ϧWE*_˝Sw,]Oޭ!";ݚؙԟы*mzʈxAĽzrs!¯(8ྊHbEG'ݺtb|Hݴ w/(RߓʔrȱҮw8+_|8\ [ * 1357( Lqh m/c+!#<"  !"]$Q&X(m*,.02J,%!H l !#4&(+x.M1,44o1@,(k''j)+.147;,B 1 bp jt o<n  6n}A)l P"%|(;+-o)<#G!U "#w &`l4!"$%&s E z ]mILדՅYҋ5|ѼXϕ/j^Qڣ迚}ql.Cw7eB6݄ڱW5b݋bϮ˜ -Ô ĀʸӶ~^jٶ|'L>{ C0I,*6Tz0z?COٶe(~ CXy 7A 5 X "j\ K|?r}aj#a _!$' +.41I4g7:=@CG,JSZ`eWI?::88#9:(=?BD!GI1LN=QSRPOXOO%QR`T5VXY[CUNJ:IYIJ{LNBQSVAAC~EGIGCA;7865767#8520//y0U1Y2_3m4k5-%|v x AZ 'hڹ eu,ՈI%!R"Sވ3"DnEי(CָZOыུ߻Ի0ZǶ TwU ޫlbJ{كST_ZV۪1ْSGyǴڸ0Wδi͢nRA9Gd͓͆]{]teGڥˋ4ROiªgk*€Bçw >l*g]eWE bٺ؂׺ޫU} ;=z@CENHJMoMKJ;4@2 2 3468: =1?FAdC|EGIKMJO'MK JIJKLSNGA=C6 jLe "#$#."@T0 4itmX<  "5": H} *e~!V "W \!n#%A(*f-/2576&@  A(/ l5  6< $ +wMd " %'(*,*$>=8 1(A(=G965Tk!R- u3$+A[zϡnIrX A67wmEBͰYβv8ҟO2Ϸ1rF_ʯˊ̉ ͒Φ,EkтݮwE&C[ [Dpo9 }eK\3F6G'~yOT9 J QNm1pqcyJ{  '#/48;~>@COEwGIKMONU<7,v!$,Z2690+@ACiEGHlJ$JGE;=51//j013579;=?ACBAz@@4BCF`HG$FEE2GHJMAOQSVPXCYWI: 0[* (((%$w$H%&(* %<R! $&g),.713A63.*(w(D)*Z,,.0135378q:;t=>.@wAA:2* uw~a:*k]o9 jB25ܙ١ׂCԔӾ s1fp3*rWDR݌ΦcIɅQLXkYɹƋCãga…²&fã)pĸLŋdƿּ<!j[%)9M5I9r:ϰ9W̪̓N^mzLTA$ s^ao|G$ׯl,Whoݓ:t7 \7h Rs,Zo d"V$?&,('[u% kHe !RyW k^J6'>yy x"$&))}+-,r+2++( _A PGPce5 Nh$V "#Z%&a()"#+;AW R#F`wOF@{1o2Cy֦7ҘkыljϘVY,qhmy)A-%sq҂zыL)ַי؉1]^XwzӵQԚ;ֈ*w*VӪoМ]ibjefYTQX-^DR-  5 p ) ;L+6 /  C<Z4s,x9YE!S Z zE1y(Z#o,w4j:>A'D1FHIKL:*m H##,2 7*:q?eAB<4M-)(((L*+-J/124p6>8Z97%65689;=?BDD*C1B5BCuD-FHJLKI3IIKL?3o,(''%?$#D$|U){T!#&(*-M/13572]-B*)!))8+,./1j235@6t71*&H$n ]Tg@ KEQ.K*!Uؓv}ם0VR1b5e;ϳFЂ'rϹGˑZkʤD˧b%͍Qη ~LƴĶĵĂbA|ݠz ۚ5~%؏I6Q3h1zރ"ڎ:*4 ts@5W4Q>oE)wsa. t <#%&T(>1#`NQ  6A% ` a WxC2+28CGT!P z. !##9"!"F# %'F)+F  pzTl l"eL^v\#lw!% D  pJ7svb} W&`$/P@9FTp0jYT)y^֜H3*\p|z |Y =ٽIxب٘ڌۆ{ݚڭ_T~-ّLܹs-ޞYR|ځ)*hپڄBMR 7 T -'h: )Oww E ]) C1|oD0 bn iL 9 BO3 H ,  # KrP K#k!S"#$H&,4O;?B"EF7(VfTWl3!6)('&&''%e$$$%&5()2+,Q.-,+0+,n-/0246`8O:3< > @@>==>><;;<%>?ACEGI=23, )V'b$"KR8!G#[%X'O)8+-.0x2+454/d+)B(s(/)'*<+<%oK\PpteTP5 yD=Ff~Db+R,cOUhBL۲E,)/~J!tpQfؘ־՞b֯eه=p.Lњi[MGտ>ֺ7ױ.)E0(V{ϱݯ]T$`,KPx=lM+P7\%$W t8[PBuq/5^}V{9'1BVc~$Ag2Y a #CbC2C  3  @ i0^/k_DP6~J: A"K$\&e(k*t, DW \ SOX1{' Q q|a;  ." 3ZI3rYX5pLk2AD hP7$$:X">&C%Qp{G"Gr! .y݉޶߳u:ݸ \۞Sޙas80$waTE>^]# ,S9- 1 _Y`kWA(c { #q?q^N9+  !"#$& '(*1v8/#&AA[uX: ! C { h H! ~!T"m#$%0'M%#e##$?&'f) +,[.01n356t8!:;[:95/3G223568V:#<=?ANCEF;~1u+5)#4}hO. T"$%N'(i*+V-.0l123!0$$R;]Sz  f}~f?cW[xO5n,sN>EmBt0@ ZLs`:ܽalyp/n~ڗ۪8Qdl޽ۈ5ؒepטT؟ e٥%5vt%Sh8bK& "RMh% b36KH6! ;J@/>gj1\+]3 u _ O ? _du:k"##$p%I&]  D;Oa ) x !|(^n'1/ !"h$%U'(C*+--.013~4@41Z.n,+w,-.j013&56A89W;<[>?MA<\- h2Q_? !M#$%'7(_#r;*>&W F   & Irx4)d7}W>/5K}W6)!*oA  0 Q "f(]C/'VU99&v܄ݖ-޹Mu 4[s ߵ09o`߳WG/|,u1,7g\M(}m\JL?;%G#Xg[UlOlh dHBGI\x,S)ok : TU[iYY:4 ? Sp+;Q07S]z!"$%'"$37$} g=~(  }3  %: :a`Jr!GEG|0Q_SDHNUo?i D.3P  w,s)VObd<#yHk.Kh.#TI `Umt  &I<m!8Rm!O5)Eh~n&%q!{4>><[*g۔] >;+ kI7-#- IGm#QJn.'g*MUO4&*E oH%- H ]S0<.:#5NK a  9 gbc m?_Gd,n e n0mE >E*HPJ4"'U)eW<[RZOKe^^`l -M{M2{++B b p?vm Y&l$f Ix1Qk :'09FFGD:">XJ(:a$S nM"A qTl)A1O BfvV9y;YQY[?/2 !N  $$      -n& u3}D !"V! E!9"M#|$%&'&x%%<&'(.)<*K+Y,`-p.k/+$)((()*z)iWu 2  z < 5w*Zb `'+?j5OsK^b|Z[g KyT2{wsw-}N2vD] x 0 ?iUo?9.*.Jbx$~,"oFiID@*ez (,F4|%Da#I o8("9f'.oJ?N\3R*\(l'jOOf5 &!3iV[i.+ N * +CZh as(F YIA$H%"_yd,g^A"]7vI[o vWMDBDL_o"Lv D_r|3rv,A=hn{L.E76~OPxF=:61$y`If>\/u_T>+t]uZ #  5 B~![ 'N ` (Eax 3X|=k_8*@[ Rfz$SOO|"(9%- s O Z7A  !"! !!t"A#$$%&u#&!; E !"u#e$H#"_" i ig9 x  D g   1 : 3 *Eg*Fjbu bbi(JxD#hO9$ =RN2K% xuqg]MSG{s"z+/*yqRz/d=fL<iG'sZ s{qD2Be5fm6x=m7Oq 2d? TEL /BGd[hcdoB O4S8  w[: BYDj:D"PkwbG!]4MC]9h/*`[DZ6]+x|`M;/&./?Mi.b}uE!!xC<nJgU Czo .DrfU=(Ecp :xnAT'X%  I  } K}%8J @ ]  J_% E ~ '2HVk%FwD QM Y OEL2Br[Z   q X & y v q IfD! !!! Y !Z"## z' y!L" #& 7X#W:d #Pq`Cc!CIh+s >d1j?w^O l:3xJ(LHA{=|Ughku&Aj(?T2{u P^M T5].v;t*i;6#vv#7OiwhSR=\gnm Am*_%lL9Xo3AAP.[UN,zPdv }Y* 7^>/Fz_L A @ WS .y)o6rM28s<"f?@ uXR@DL_v#@i/[^%&I{=(fWq !kbPZ2a!,ysvJvi (bG4!:Q]*] ! = N R 5 P R j0x E O T7 0 Thjqr"Gl2wl 7 7 N E )=4(jm&vM0d` L  `  g1~{ q!J"##f$##"#~#$ m$!%c,xJaQ` 8ln#It4CTbq|Qrk+,Ek G?Ym;dp|S1q_PFC!_'m&{T!o;[!}f98oN) ukqFN 39G/A?B3sD9zJ~+ v?*gjXV^PnM3! k{?Y}:v;pl#MNA9&I&9}iNbb "+$"%%&s' &;%%P%!a{cl,jA"('/ks  '@[sP8b"*mW_S~Saq/Np;pE\"IT Tb"bJz9bj7DqZ}@lM4#leV+Jog*0'rHn#hB#^OV <#6Qk$ c ZFO$,\0e6`Rtp2?NTLB+~V  Z C +)yU'bz[ ? RL.! rlS 3[6b I Rjqs| <I y J KO  h  5J=bH2q!dKx =62j= W#t&(()P(e$;  pU)DG 4^ V ';JYjzZeVw8lLTbjH%zM=^hyguK9/0[ s'v}T( }dNlu0<@7"l[]afjd/7*4c;e!0'xQ(Iz6UronpbZC-|S)lH,n}j/Jl]MQIpPT@|uoY:& rS5^  q 4 AfC"+ Gqy f I  p X  { k $ s  C oS?p &3+.>T%0\[Ce*_4p/"HIX3&`?$ nc0?LeA#.baH%b"h VA-BEW} ,0,g<cm w5q3s<Bi %onM8&6|3({S%o = Keq j)hZv  F B c ;!nz2} sCnI  s_(N6~1GoAmHz<:F&9\ 9 fG %8IPw .]=9z/7$TT &r@`fruo$n"7Yp#dq8-M+ mF&Od1ANZ*)?--<FP\P8zM or\1jz St_}>cC4(IWp}_1b:" G6T f.^Mh n76j, jll?\, II~ W q %gn$7 Q  j   c ) g 3 Fy;y3p 8KLTdy3Qxj }e{70g|&Hc} ^f/JL?AdB"WlgA>o(J~-} ( 0 ; = B 7w{uWR/}W7[(ITeF&cO|c A&6n6>Q6bY c,? 4N}W%V?%%d1 q Oh`p q  j  M   *e V . [ lD^g7[6b!Ri|(YeZx%/Mm%WN}me]YWRTELOw2p} QY .HRl 9 [ W ZO' l<6;;'t9PG]< cIc C_3 tH Bx7jQ|aL<1*)294X! 6 n e Bh k%5( \ J% W . Dn  j dXx Z f & 7`JWc#/B`or 0!Zuc C Y:($QGJ8FTfC.T"R&hAW9R i/Rllyh'V!f,N}EuITjX^Llf+e x*}ZV9\x= ( 9 / LR!Y f: {v&We2jpH7gf-Fp"*K(y5f*+2'|upz|) v(|Du#~Xv>f=%O ! 2&`t  Q  =a(;nM# R ci: {Z> KEH7G.YEW 4]t-1~:(*/By!=^  4b > U*#\7&kt " ^  [EZrgd )QT |<]PJNTWW[R P I  # E E prd J = t m P. b R S O q  /z(M,%5Oez,>( `}og&lWO; 4Pv(_sE$%9=k{=`&I\Z X/$mY-p.W ;Xu;$:oK -pgX@z]< MJl /6;?BUa  Ve$a4y%`p?._S*ka*O0>R82  @Q 9h_N2:Fta'l#PX1.Z K )H}CyCw T*f^0lR8y_8&%/h!AeNPuM>6/#l&z@ n"rg+. ~xx iYU=S$ n R 7 $~X%T9l\VAG|?h  8j6 \Il*v7xR, Q9}Ll^  A { w+F[nYD5N o#-~j_= ,  E a s 5 3/h6n 3 _  D az% N v ,\O<  7Lfs/Ib! p;l[b$'2J^x)M<:Q >O-B#>RHT1Bss1Kvt?|>O#Y"~EO&x?L<3_)V$:BNW[`XXWJA !kh?g.|=~E vI!]^Ay'SCM2!M1_4 l `JMly[6`/(\DQ?e/9BtW?(YJ}.Gz :m;nW1F3X_4iJxP;&| w!#c]L07}fPgH[u0~ lHBjTE;k|N4z^;!r P *  y$4 p-d{U'?~=x 7`#;LTBO}P+\a#S#|b[E~vqr?T ) Q }E C yO) #Z,',W2  h 3 i6r   KG})Jj6P0Y =o!<ay i D F R g y 6Nk~ * D+5EGUiqq})CVs_|nx$y&o@6=^ FB ;[*{-<`fF$4z?~?z6Zx:QLW0}X%e0H/4<>D@<83'c~SnO+ YFc0`E$M?q.DsTH|{;? j/hD    \ '<4@q(!"i R"Ecv[z`&[}9Kp Fv/f4jI4GpM`#W#b>}#e"|K(iE !@4F/%,H%zN.rZak= UX! v 5 Ewj] >  { Iq]7p^&Ip&4DGgCc62Q0m2Y#|Y5!GNeUrK=E5 ' $  ? Dc6?   # 8 F ^ @ F GbK|=Rk"V+GH2Pl @   / L f   A [ l  MK\RQJLW`gu} ]dRI;EZJ]<{N&Ax00Ddl/@JC,kDWK`Z#Gtd]})61r: |N%zf\P{?s4nKXILm2 <m,}wD  h)?y ] h&^4 =l;Leu0])K$:Y{kv-U#^ uKo:yDgH7~Sk .Je}2\Ei"?_{_z}Mo)0Wk$Or Q  3 Y { ? D 7 c > - "r_LA5*($i$scGfM>s+ai+T5#y8C ;Z>!]2j!q;4tH,f3;FMzwj`RODf;b4 rJ3g\ P)z[uM,!!v:EI<{< Q  Ar=OrGns'CSdlK>V}"7Vug8|B=E9D}&_N Zo8)=Sj|>Vm0 B>Kh.bt$r+lI{i4~FN?7e9o\q<gFhg _fe ]D  Po" q  ] . q " V b,Kn)pBgJ3bh6 `K4 ;v:!r3~[t2; v m  Q N Y 9h"C : d'M3F^C=Zos,IgC6F]s6|ds|z  G l h Fe= & q    xi}_K0}^LI3N-yO'iE`c8t)gu1DXdq{xtoH+Cas0i;B]7?k9p>?Y,KuG[[cgm"ZAKRPM:3RUN>nLxI7 idehn:o6bD\w O =:!o9 x ( ]  I n  %x}mLs_D1 \XzY8hD"xFJ}%h2n|v `Uc p O 6y\4n+j" @6pF %()% ~o-EXi E*@Ule~/By7Ul4 :B~ K, ~/<X4Z6r!D\%a"d\is 3Y}:Nm/^ m> uCgZOPF:+wUUw5r An2Tx(7EH/>XzI|fW c(|yvoeV_^O+|r&^_]::\!R  ? ^  sKt']{hs~}oo`SJ!0Jcu 4!8` !C_~;\AsaL&F=F:uTC}|YO:!oQ(qI W6Y?exxAi5kC$^`bkoskbR= yBpOT:l+ S y , L h W }) +4E+: d8#:{8dP=' #U|E8 Q@Pe\JLJ   1@Tal^/rj ,2\|lNS[hhheea^VKH<4'*92E[m.FC %DXlp[[zba,oCQ8M u Gn=`j M9|%\6k8Q56&:LavFW(si2<^1i:h-w:UEv .Kl /:JR]disv{b=[J)uI^;!tM_Gw"b&oRQ#>9odZVX M D  nN5 |  `u0X%JuQEwp^WG6(%2H]lfZ$?` Hv pCy>ErY+e>[pJ) 7g7~ JV}r&A. %Gdp{!s"Yxd~%"5PmF5.5W.2 0uVJN4!YH}q(;EGA$+[<c<\|5E_o %-W+@~oi[ULFC=: ,WJp5fG#lGT o !rT G \  ( f ! S % X ~mZte2 *?E[f|dLD[m,5Nk-LmV9%ueCoM0 w "@v 8e:dvsW=@HR^i>  >i6]F^kdx+`VwQ#g<IHayTo4Ge/?O]eoz+kH^%~uo`[LDA=24,0/dTCo1i&qNOR[csu" =*X7k(L{ %jt}pbTJAH *:CTZqwH67c .Yd2ds-,mC/lV@.t\b,c5l%S~`rx '7Ou`@q"O{ ["(-?Zp 3SdbPo.Qu 1S|wj!8B[iw %1@GPZhvv]C ]@;8:240};L[N]u.Laz;SOl ;b*U{pfRR'5I[du(d4  "14\}"@^t 7M]q[gr&).5~!sked]SPN@?36)#! 3&->AR[`t; *DTnJ-2&8Vv;[{rI0IXmv\ [",8HV^kv%"/>N^kx}wzV*)6Of,F\m  %,9FM[`lw$*J3506('*,+&**'-).^tUUfu z &:Mi~WWhp(L '-4:=DGRNV\ZbdFvwpmge^YTSLHCi^cdnnw||vKGJ[ft|eFP\o3EVpG$57HRYep`*7'#'+--.3)6/037ypww-bMM]Yjlt|  #1;MVfszQ""&,5:BDIQWX`glntw{jA bZWWY[\Z_^`dafO3%OVksz|X'>DFMNYU]bbfgkmopswqy(# %,23FLU\bk  -+5>>HN$*''-557==DCIIiM.#"!"   &  7RcefiijkmiZPLKKJIIMIILF      garden-1.0.9/data/beat/string.wav0000644000175000017500000022272412457263310013567 00000000000000RIFF%WAVEfmt DXdata%${gZKA2"mO0uY/rr{ )]Oo/"g},h UG"I]R,5C]pzzueM0 t4\ ]G&aA04Ub-jR<''8IZp%?]z0E[o{jXE0iR:$hZH9( % jD5;Ym>'w B 2fe%rr,mO{#`0Gc!b i%xO-+Kp8yM;/$s T!]6c0G\nr1)n P IK)rp+R8SIRy]<l\T/O]Y={2 Y^+h's{9_<9Zߦ[ގQݗd1ܔa0۪ۄ_A# '6FSbo|ۈ۔ۚۥ۪ۯ۳۶۷۷۵۲۰۪ۦ۞ۙےۋۃ}tnia^WSMJFFBA@@B@@BBEHJKLPQRSWXXZ^\_]````baaaaedegfihjmmnpruuyw|}ۂۂۆۈۉۋۏۏےۖۗۙۛ۞ۡۤۦ۩۪ۮۯ۴۷۹ۻۿ #(/1ڃةԜϝ½O֬{vޗّ~܇f݇cPCǙ2h ; 19t3'M+ }g[^kwP(Hֲ^KuWץ؍x`@݀ߏőh͸nӈG!؎םcbϋʞɬkGǨ'Ƚf{&UCΜBXbbYH5 0Swϡ.[Ќк:cцѪ#=Vp҇ҞҸ7Onӈӥ A^Ԁԟ @]|՚չ1Niֈ֥8Ttב׮'Cc؀؞ؼ4Roَ٭%A`ڜڝlڑLؚԽӬҠѪA0UʃĬ>ТKJ [΅nxɈ B4.xҦk=Rtlԯ$R_A*E>!鵥SJm9/XdzJٴbRҶ,BWj|η $?YtӸ8]~ƹ(IjǺRf|ӗӱ .OpԕԷ$FhՉլ )Ifցֹ֠ &B]wב׮7Tq؍ث!<\xٗٵپ~"ٲ1آ6XlxӅҗѲZμ:.wdPUرfv "k-62?EFLPSUVEVUR1PLHD@Z;6H2-)&"^uh33E;iB]3"j(0:VFR_lyvj^RG;1?(6  1;  w )%P)E-0R4O79<='?@@@@@b?y>d=4<:9Q8754322w1100w0001j11^22}344B55Y66L778^8888!969D9G9F9@979)99 99888888899,9E9b99999:E:q::::;>;c;;;;;<-pȻ1Me~Ǽռ!3DWkɽ:Zwپ=^~߿=Zx";Xq0Gf›¶ &E_|Øô )EaĀĜŁXa6{&1099qAH%OTX>\^ ``c`q_][2YFVSO9LHLEA>;-96421s0/=//;//70113F456289: <7=M>K?.@@A+BBB*CMCWCMC1CCBBEBAA[A A@@C@@??????????*@Z@@@AEAAAB?B|BBBB3A=82'*K! i" U&ܠDzVGV GWy!Ȼ<ϑҳՔ+wogdz-%55&Pؠ ׍,ձջYֱׇ~كڇxQܭRݓ$8#ݡ9ݾ6ܕ*6@OdԁӬ;іZ|ڽqٻF"0·IĶ:#6ֲ>˱±Ʊܱ#Y۲'tdzqĴiIʶ3aз)6CQWcjt|ɸڸ2NjĹ&GkҺ6[xػ1Olؼ 'BYvڽ)C_y˾;Utɿ:Ys =Xu8RqŠ¥0JhÁÞû )Da{ėij"=\vœű 9YsƏƪ5QnLjǣ/Kfȃȝȹ (C^ɮǔ׹7NĒ-',"㯰v%ʖ_׃<ےN81TGڼUasл΄fhˊ6qA3>kȮ wɃ˺^ͫM΄МщLҙ@`{ӉӓӔӏӅygVC- -Hgӈө KuԠ"Mv՟8[|ֽ֜(E[r׋ע׷&;Qj؀ؙد/Kgفٝٺ-Kgچڡڿ5QnwZ)ژ@LٱOב EԂpj'V_.3'#/5;AEkIoLN@PQOQPOcNZLIGD@c=9%6u2.G+'$!o7! '/8pBLNWblwWztimDf^WdOGD@9E2+& !^y * _ (vY_!$&W)+&.Q0N2457>8199{::;:::#:99V8766J5433X21"10/0//H/!/ ///-/V///0k00'111X22(333H444B5556<6i66666777%7,71737476757576767;7=7C7I7R7^7k7|77777788:8Z8x88889$9J9j99999:8:W:w::::: ;%;:9M7}3~.(!2/ 6zQ߇3e1ÛyqSrj|ֱr@4>Ujqg>tv Hޗ޲ޠc}'^ۅڡٽ9nԲkoЎm\avЙ\ѳ{U=Ԯ Ր_o׽D~ر#:P`ksx{yzuvqolmopu}كِٞ٭پ8Tvڕڷ#Gkۑ۶%Ek܌ܯ.Lh݄ݡݻݞf qo,~Zם:Փ9pҘѲ=kʨ!KhŖĩ9Ͽ=ǟNҶزrG/P:֛˓NK/.cRuh-S͝d֥Dsڻ?7 H"+^zcݼ]s `⹶ֹ9wOC?޽)s9qٿ1St '/7?IQXfp~4Mjˆ¤$DhÈè.Pnďİ )Eb|ŚŴ7QhƃƛƳpșuRڍ9%K'.520//Z.-----,..N/ 00123456789:;>R??N@@AGAwAAAAAArA@? <8 3>-&8oue_wd]ӣzBgذӯX[ӯŷ-¼{K'ʵpӓ "ݛEK":d|Cs#Xܚ@ڦ٥<ןiD109Tx׭5؃<ٝpJ۲܇MݩVޥ0f߃ߊ߁`4ި=0ݑ3yڷ1r׵0Shvy}ЁφΏ̿͢A\uǃƗŨ1l i˽27BɸR߷r X ǵa=&)Ab,lC۷*u¸ X&dٺ =l޻4L`sʼռݼ-l{+b_ *#t).g37;^?B:EGWIJK`LL\LKJI6HwFzD@B?H=:75:2n/,)]'$" !~ !"%u(,i16<CIPW^fmtz}LtYkPbNYcPG*?75/' { &9';h` V f:J"@%(*X-/135h78:;;<=M=l=b=4="(J%~*ṱԵo ڄ hHt4y\߻t$܂Fڰ#ٞ$رL֠`(տ/a֙i׷ `غl$~/ۃ%qܹ@݀ݵKvޚ޽ #4FO_eouy߁߂߈ߌߍߒߑ߃jG޲p޿UidLھ/٣ySՋԻ;iЗ3UrˇʙȜ-ɄʗXϬҔڡ߫np $D$m(C,/N23G431Z/+'"<2 jyL6_>,Z]:XQNבݓL֘"~f- YV~ ʻVM]R*̏#̠rWȚRŔ$v5 9ؾ@ ܽؽ-c3ۿ8VFã^Ĵ [Ŧ5uƲKwǞ'7GQ]cjopsuwxvyx|}ȁȃȌȏȖȠȬȷ 1\2Тӟ= C^[/"'?-i2M7;)@DGJM[PRZTUVWGX~XhXXyWVUlT SQO NILeJuH|FDB@>< ;X97-64l3321"0E/.-k--,,,,,-V--6..#/.&.,*'$!#F? B _׳ӽ̩ȐL#Kúǻ,oI1οЎU ֮>ٺiݝ޷ߵb"'H%::4/߲9P܄+ۊHڵڗڂsns}ڑک QۇE܍kݷLތ޿.. ޝ[ ޷U܁ ܗۍ>كؽ?]Ӣ  2Pvß@׾-?{9䷙X"׶öҶ=o/wĸn¹yҺ/?C.x>x=f'8HS_gnuz~&9Oayª0QmËë -Lpďį3SsœŴ-Hgƃƞƻ &?WqNjǢǺ1I_xȌȢȻ.CXrɉɠɶ0H_xʑʪ )@\tˎ˩+D^z̬̑,Ha{͔ͮ8%϶Ҍպ[ewkXo S$)t.37;?CCFIwLNQSTUVW*XiX;XUWUROK6G!B<6H0)"x @5=!Rˬm_h.ӧӦ2AħJ㫪E.In}[Ϯۉ߆ j`WP=Jߑ&w0ۗ ڄٗ2ׄAַ֞֐֐֧֕@z׻M؜J٣a$ۃGܤaݻg޸Bsߜߵ߮ߋXx#[L)3-d( Dh!c%.),(0R3B68c;=?;ABCDbEEEEE.EDCBJA?`><;79U7|532]2i2245v79u;t73t0-)&#!!!`=F X*0Y)B i!"$h%&')3*G+K,?-$../n011 222<3z333333333h3/322m221|1)10{0#0/w/%/..;.--s-:--,,,i,N,9,-,", ,",(,6,H,[,w,,,, -5-d---.;.v...(/f/// 0Z000 1F1}1112M2~2223*3P3s333334*4A4Y4o4444444444 55"5.585D5O5Y5e5o5|5555555555 66+6@6R6e6q6E654209.J+(e$ ` <YvT_ )zy2*eܸ"ƴbŶøC)^ ČR˭k%y֛~D`dW0F>$Mah`H!gZ'5BXxޫMܡTەe=2U|۫J܇Kݐhޯ@}߳ *FVZQ?&ߛ[v!޿USܾwSؓ BՒ=\Q+۔F;iViU9 sh #&B)+. 023X56789f::9;f;k;Q;;:9u86 41-)}% x 2`~'݂Ҫ̂NJϽKJթ#ОȜ^rɖc9L՗љ r]6" ,Baų 翾2QȾSv̈́vSѼP*vӭӘakьыtKεͅ[9ʮ+ɫ0ȼNƊ4ş`*ĺĤėđĕĜĮ1bŕ Lƒ(rfȺ bɴ# ̩ͷ*ؓG@kBS r$E#', 03t7:>ACFHKMNCPQRS5TTT UUTTSXSRQPOnN2MKJIG,FDC3A>&<951-P)$ R$VT,ΉBȻѵN 1<TU1y߷_󺝼UæŌqR4 Эl[Xܸ EnmDJA$Iai`I%n` =p޺iܛc4 ۻۭ۬ۨۨ۸$LyܨN݃ݷ8\~ޒޢުޫޥޙކlN)ݝ_ݵQeZ3٘Vר(_ԋӰ)D`{̚˶3ZƆŰ:m,x̽*uh߸~`I=:BRiW1ݺ8[&b˾1c+?—<Ê^ĜFyŦ>[uƐƣƶ$1@N]pǃǔǫǿ ;XqȐȫ&IfɈɩ ,Llʏʮ1So˒˯ 'Fb̶̚ =Tm͇͞ͷ+AXm΂Κά-CXjσϕϬ"O'׉079 o !%o)-03 70:=?dBDG IJLNnOPQgRSSST$TTSS S{RQPNL?JOGD_@s<@83-/X*^%C y! z24'<ł!ȷͳ&̭@ˬgSɵUp?ǴɞˇiDԙGwjNvsJ[ZTb.Q$;?6' ,]ޠKݰg!ܒQےO ڡ; 7ݬpy<hCO fU0G"B%"(*~-/S246s8*:;=Y>l?R@AAB?BUBEBBADA@]@5@I@@$AAjBB,CRCVC9CBB#BA@@9?H>B=/< ;98X7 64`320K/-,E+)(m'5&%#"! DC9gzcXYi^f>07Kj &!!M""s#$$%%*&&)''(((`))#*~**!+h+++),a,,,,-%-@-T-g-v-------~-u-l-\-P-A-/-- -,,,,,,,q,],L,=,/,,,,++++++++++++, ,,),9,K,],s,,,,,, -(-D-d----- ./.P.v..../-/R/x//// 0,0Q0r000001>1\1~111112-2H2b2~2222223(3<3S3h3|333333344,4?4O4c4s44444444g432t1/.,);'$!9c G Zv`? Gԧ!̄iuƣu׾½Ҽ\պp/ %] GȽ+iƳRʪaνqe֭$Xܞݴ޼߽uG n 'o MuG^28312|#h @p.U}ݪ=NQJc>e؍فڪ ݡbOhzM)  ` )Q!#%'q)'+,=./02 3445K66D777888777;76g65X544h321!1J0S/.,*(8&#   ;?9"royۘ|Ƞ^CEo0ͱwũ(hBDn1Πik͠*<ب]{fcnvvf:Ě=ɹ$ҊCԌ֠׀.rب ؠq8׷p {!gեK"pAمqݎD_JOgRD N{"%(U+ .093588:U6@ACE4FFDG>GF"FECB@=w;852/,($!! bC* 2[`٘eTd͙s޾;6̵ҴMYC E۵ȶȷܸ4t^VZdhaAը^٫)W}ߕxP.P=F # q;u&(qL"Y8)1Vi9 ߮߂W*ޮރU'ݛi9ܩv@ۀ8ڙDٔ8{ؤ0׶8ֳ+՟U%ъJϨbͽokɿiv;Ģ~ou-ξt"սR缾~i[QOS\k 8jݽZ4ҿ"u!v(€2Ì;ē>Œ6Ƈ!lǶ@ȃ=wɮFuʟ9[x˘˱ -8IR\hnu|̶̢̨̛̖̖̖̗̘̘̘̝̝̣̫̰̻́̅̋̋̐̑̒̓̔̚)7JWjz͍͠͵ ":Pk΃Ξκ %C^{ϙϷ,LkЇХ!=[хc-/hsB=^ީNI|, f %+ #&(+B.0T3589:T6@ACF<9744.1.*R'#9  :d >|([ LҤͯg@=]ž5:P%$Lf󷖸Q"IWŮj5̚k5ӓIכ/nܥ(0/$ >.= _oA*E}xAf 0 `  "$G&') +|,-/.00|1111h0n//.,*)$'B%k#!4b# = I V q I 1 & / E i - _ b )~4n6i9 tB W !0""#"$$T%%l&&l''T(()))%*n***)+Z+++++,,,&,*,),$,,,++++++e+@+ +****\*2**)))d):))(((([(9((''''''r'a'T'I'>'4'1'.'+'.'/'4'='E'R']'m'~''''''(&(A(c((((()7)[)))))%*Q*y****$+L+z++++",K,t,,,,-;-_-----.9.W.z...../0/J/e///////0%090M0c0u0000000011 1/1?1K1[1i1x111111111122 2/2?2J2\2j2x22z2<211,0/-G,*(&$~"! s/ > ILPSW_nOݼwJ02NЂ6˺W?˜ :̿տAyžGĔrYIBEL[ö́ΡϾ>\|הحپuHH)<+P"Y{F tVsykE(OU R;~tz> W o}|jK7 R"##%o&'()*+,-D../0u00'1e11111111P110v00/H/.W.-I-,),+*W*))v(','&%I%$ $t#"B"! : 2/U . s{m`]fxۗVл1dC D 4o ¬xwI)O|R5+>Yw7`…î "5CHJE:#ѶҀDԬNւ ؋sٜq~ܱߚH No6l4 k1`)"$'e)~+P-. 001 2)2 211=04/-,*)%' %"i S  a-۱NѭϨ>ȥ(ÂZLZȽ(7⻧{0þx< ÿ:^̃ͭ'JoԐկ޿ߜq@qScOk6ig?u:|:g!Kz3p5T"xT3qV:sL%߬~T%޴s0ݛNܢL۔1WgfU9֨ՂPӶz<КPΪZ̶l,ɐbBƽ6Ż?`–;M lD"ٿֿٿ8Z~ C|A†hõXĩQŨRƩQǨMȡAɏ(rʹFˆD}̶ Q́ͮ)Opΐί,?Q`o~ϊϓϞϥϭϳϹϽ %2A#f' xL "q%(*,N/13579;;=>W@A C>DYEZFAGHHbIIVJJJK/K4K#KKJJ*JIOIH=HGFFFEDC-CVBxA@?>=<<%;?:X9q87655.4d321%1r0/.-,+)'%#!sr> j >i"tI^ܓzx֍Ի`hɸȱ6ŖĠFNàvĎ4ơi>$6Mbt׌؛٫ڹ߶qK]6sDBg"b--X*}6 O6? t!!"""!i! |3 4 @x`KbiQab}G.W}He H )t5?a S"# %W&'()*+,-e.!//g00o11;2223(3B3M3O3D3/3 322n2(211$10W0/t/.~.-z-,o,+_+*M*)=)(2('/'&8&%M%$q$$#G#""H"!!x! P l &!V!!!!."j"""*#m###>$$$%a%%%;&&&'\'''.(q(((4)r)))"*\****++Z++++,,,O,p,,,,,--5-G-^-o---------------... . ..........#.#.&.+...5.6.<.B.G.N.U.\.e.m.x...........//(/:/K/^/e/=/.J.-,a+ *(&%/#"!T\m (^?) `'DԌjέrRM]ȇ(Ɯ)ćU>8JnĤKŷ2ƿWȲt@ͼηϸк  '*'# _'U8MDv] #!z9J 5(k#hN3  {M~"> "g#$%&'()*c+,,5--.k... /$/+/&//...N.--G-,l,+r+*d*)>)( (m'&,&%$E$##f"!.!  q\Xh)p I}:&XY3pF Q F8TH&kSVۄ-ԫ҃jguʕ{'佸9;񵿵 oͶ:A׸|)⺦nF°êģšƚǕȍɇ|o^I0ћuvԤ׍A>~T@ -  [ u` ES6Y u < |l` &>Rh+aCޥۏرZҲќЗϥ.̂ZvȞu^SZlȌȽ?ɐWFV̆(z.КUӑS֔Tن?ۡMݙ:j }Xo S2\hL- ~[5vS. gJ-wsqoouwt[>#|Av*-p ߞ,޲3ݯ&ܝ {Nٵ{;֗NԪWҬVЩVΰ i1˗wjqƍ)jĂ@ä|^D/!(5KeÄè+aěUŚ-wdǸ ^ȴ`ɲ^ʲY˪M̚7UΕTώ0dАп:^рѢѿ ':L`l{ҊғҝҦҭҳҷһҽҿһҸҸҸҵҵҴҶҵҴҸҺҽҾ'4AO_oӑӣӴ3J_xԑԩ*B^|հ֥me؍`߼91WtI hX _#%(c*,.024H679;j<=>@AABC*DD1EEEF;FMFJF6FFEE=EDgDC^CB&BA@@S?>=<}Q[   1 LkjMe[?jr*$r}PUnE& *;K]lv } |ugN+-[ !M#$%>'m()*+{,T-..r/000Z111 2E2\2d2`2L2.2211H10050/X/.a.-T-,6,++x*)F)(({'&L&%'%$ $#"{"!!! 7 sw-wF Iq>w5z O ,!z!!"`"""H###)$u$$%L%%%&X&&&'K''''(O(}((((")G)h))))))*&*7*L*\*k*y********************************************* +++)+5+@+O+]+k+y++++++++,,1,F,[,q,,,,,,,-,-G-^-h-K-,s,+*)()'%#)"? ;>U ? o0kb(rWR^۷doЫϚΞͼ>ˡʭR ȿ`ɵʊ ˚8̓PϾКфl]PGB;955/)#e8<1XW(Kw7S 0j'3}5{X 4 y<O}z !6#}$%&'()*+6,,c--D... /,/T#   QMV('OzS`F9 xh D8dQN ۮّ׆ՌӡP̰$ɰPï¤Կ Y6ļdû̻)nļ'8ڿ;—á[ .ύԾևlk߂g 9^~}]"V%gh1H1E\x EPݪ܉pfct׋ְ#r5ҫ.ѿ^φX5!$;]χϿCЖIѱґӅԌգ4Xׇ ٶO~ܫ<]t}{jHv&{U ;k*>KX`dhed\UI>. nU8"pXB/ cC$d'RYBizykS1۝p;؞h3՗^&Ҍ\7ϨΖ̧͗7eʫY ~B ǰnjlSB4-)-4AUkLJǥNȂȶ,mɬ8|\˧B̒.}fβIϕ$jа3vѲ)`Ҙ/_Ӌӷ*KmԊԦ -?M[hr}ՄՍՒՙ՝՟գեըըըթէըէզեդգբՠբ՟բ՟ՠբբբէէիձղով '5BRbqւָ֦֓2I_s׍ץ_ؽٯ݃W/Bwk _ "8!u#%')+-n/&12U45*7t89:;<=M>>?@}@@AGAdApAgARA,A@@[@???>>i=< )P)a)v)))))))**+*B*U*m******* ++4+L+b+k+N++*))(&%$" *,v% _  #E}&`8!":gcqխԔӖҪrbͦh:#+IvͶcF_ФVӝmD ٶڢێzhTA(\+_ Jk&{rpZJDFLV^ k t}~~weF@!"Y$%+'x()*+,-.W//0 1x11 262M2N2>2211E10m0/]/..o-,+.+]*)('& &&%>$V#p"! *X8%TFX4Z$>s)q Za}B o<j-L[T6gl@Sk<ctl O  9g}0f ~J$0_Ҥgˀ.ƸŽ T¯$T0KM,F×ΊՔ}}ޘAOPiFf -n<`Z.^u  U  /J\jvyS9ޔ'{?A3Ϩ/n(̵̷̰"aͭdGOwҹf;ֹ{>ڈH ݆@߫\T!;>)^ \"Z.AMUXWSK>2wS.f;iB^>o]K@2*# y_D(MS u%"\#ߦ-ޫ.ݪ%ܞیzcL׾1֦Տ}vwЊЩA}#~1̪n: ˹˙jYNJFMT`tˈˢ0[̌̽)c͠]Π)pϵBЍcѪ7|ҿEӇC~Ը'^Ց"Mv֡0On׊פ׻!.=KU_kqx~؄؉؋؏ؘؘؙؒؓؕؗؗؗؗؖؖؕؔؖؔؔؕؔؖؖ؛؝ؠأتجذظؾ)8DUbtكٔ٦ٷ"[XT߯._LSo(R:1$ o%p!#%&(*,,-D/02L3{4567^8$99n::j;;$#j# #"`""!!]!2! ! !)!Q!|!!!"V"""#g###O$$$F%%%G&&&K'''P(((M)))?***$+m++++t++i*)('l&%#"O S > 5-W GmݓE e hTۏea|v:yAh! $UMAO,]y ^ ) JI(Z4|>5_m-vZ; % rV9g+WJs}i 5!!!2"v"""#F#f##########z#c#C###"""~"Q""!!|!E! ! ] $ u=d0vO%mVA1" $1AUg~#Gg En;e 2 ] "!H!n!!!!!"?"^"|""""" #'#@#W#o########$ $/$=$L$Y$g$t$$$$$$$$$$$$$$$% %%% %(%0%8%@%G%P%Y%_%g%q%y%%%%%%%%%%%%%&&&'&5&B&O&^&m&{&&&&&&&&& ''-'='O'c't''''''''((,(?(R(e(x(((((((z((x'&%$#H" O.2%  { ; fV !i4HۭzaZg։ ihҮqE)!(Aiџ<Ҝ ӄ ԙ4Ղ7ױxBۼܖoL(i9:uF*#.Io"m D 9OUQ>!"$G&'L)*+--J.P/?0112333B4y44444V443P32J211N0/.-,, +(*))%('&%#"! %MH^IZ= u H #  * N w eK\]7jJ'g5YcS(hJy7QU4atFVQ ;  TH(r Y+ D؂7ӯA5Ͳjȃ̗jkϟщ< (`ݵ ۃDޅCjrT| r>DK.AMY^_[UI:*`;qElBxS0 }cL8)o[I3c6] Vw"k ?g.߳('&T&%#%$$x#"y""!'! a o._=  )HfK= !W!!!>"""-#}##$n$$%^%%%C&&& 'f'''/(m((()Q)g)X))(!(h'&%b$#!< 0WmrhV6 |H`C0$(3PyQ5aݵܰIOڑ}ܒ:wD18X4(Fco Zn "#%& (()))**)b)('&%Z$ #! S(!ZE   E [ !  5 j 4 2 \ 9ysj]K-o6I>P$Ox!0AJSY[[ZVQF?0'}jQ=&o]N?/$   .<L\m,D^u0Nf &B]w ' ? X n !!+!=!R!c!s!!!!!!!!!!""*"7"B"R"["k"t"""""""""""""#####.#:#B#P#X#c#q#z############$$"$/$;$J$W$e$r$$$$$$$$$$%%"%/%@%O%`%n%|%%%%%%%%% &&,&>&M&W&A&&%%e$#"!I d7EIB 5 " sjejx%t b 9zk`QA-Y)EF'iL@k!=2 X r ztfL+~S)$iُܸ֬UϼY˱ʳxzɸ*ʱgдҖԘֹSMSjK* m &mx= "$&(*,X-b.1//0500/K/.-,u+*(&#%<#:!GbO  B{p.pTJRnޤGټEԢt[[rϢD͹A˘a@57T|˺cJfϳi*ҝ{`I7) hGF[/B2bI7Tes||xn_M1|My@K NWs> ~S*jTC0r\M8#uO%l4N ~/4|^0^߈߯A_{ܓ#۱Agؗ/p׽iՂ>ԌV(Ӷәl]RIFGLU^qӃәӴ7`ԊԶF{կU֍=x״)gؠLنپ*_ړ)Uۃۯ*Rtܚܺ3Kf{ݒݩݹ(2:?HKQXY]`abfghghgijhkillmmqqsvy}ހޅއތޔޘޞޤޭ޶޽3si6u~O1!*=Up  N9!"3$%&,(Z){*+,j-=.//U00d11,2w2222 3 32222N221T100 0/ /.-`-,,,+*N*))b(''y&%;%$$r#"O"!@! A X#s$Y"iVH@;@GTe|*W-j,oC g E!!! "j"""$#4##"s"!9!l {pH<u$G b w AuM&k&߼$k+ڨ3~= N؏zڒB߈\N\t^t <p ]/3!%#%&{(*+,E.r/01b233333 3]210/.-,y+]*6)(&%z$F#" uGG 0 y & | 8 {rr0 i ? G  y U <,  ydG$XqjC3f )G^v~m]K8"rZB-{k^PD8/&    $.4ANZht !8Qg~.Ic4Lf~ #<Nfz#5DTdr   $ . 9 D N V a l u } ! !!"!)!4!>!J!R!_!g!s!!!!!!!!!!!!"""'"5"C"M"^"j"w""""""""""##"#3#?#O#^#m#{#######w##"!3!P P1H@6q  1AUm5v~pFEݚz۟K٫ٍٗٞ7ڗۏܰjrx `, [!EVS?!#$&()+U,-./0V1 22'3334E4R4G4)433R32d21*1u0/..-,+*)'&%$e#="!rS4@gm -  + j  e?" 0Ku X C Y % m Q:)cFf .; -  }+Z9y*e'p}[eݡSؿ׫֦ղ2|EоJ΍Eͻ͹5qθ e4Ь9^x2 0go]j'* k Clk :"#%4'(*p+,-./01Q2234k444444t321\0.z-+*(&#!\{`p [W";pSEPoߣOZԚӋғѵ>Ϥ#ιd$R͜]Zύ9ѱyN%ؾٸڱ۬ܨݤޟߚ|mXA"x;b E]X/6)SupU1 Nh+g'`Zg0`3qP5r_I6! r_B)oEPe!DQRC+m Cx߮I݂!bܬVۯ_ىF ؙi9ר׏wfVMEBAEMVdu׉מ׸7\؄ح2aّ([ڑ/dۙ8lܟ5fݕIuޜ4Xzߙ߸ &&%%z$#S#","!! yyH/J d9.Sz5j $-5YfY9i  `t!x*S:Csc<&%:]!߂mܔ>۽ۏr`Zbuە۾3|&݊h]m#sHCdscaq =v ; cc) "$%&?(})*+,-o.)//W00'1o111111i1511000000F0///r.-+-q,+**)/(='B&A%=$6#)"! 2\Pf L Y 7 k 9   $ K y ( l  W  c & ]1 tM#Y#AG4}C"Q| )@Yj|thYI9({gU@0 }wrkicddeeglrv|*=Qdw&=Um%;Si$;K`q#/?KWeq}(1:AKSZflv~&1<EPYgq|  # 2 < J U e p  K R.S@ Q $c!aBaPj o8 "QR߭ߧ#Q$:|[mH55AY{8n . Ql{{oS(= !D#$&>'h(~)y*]+,,,- .~..#/W/w//{/^/1/..:.-F-,,b+*) )-(F'X&e%g$f#`"W!M @1" 'FeD D   B DuVD739CYr#^1 x 6 C&HWVE%z,zEl$WJ{G([ٚ=ע֒ չ\әqRA9Pawیۧ#Hlܓܼ;gݗ"QށޱAoߞ)V-S},Nn%;Oat "$')),.//111355588:<>ABEHLORX]dgl{@`INX^gow (4=GS^is(]Th  xU,{my V+)Qz]hOB!=pdGMl- [ ~ GBanrc H!""#5$$A%% &V&&&&&&&&&S& &%V%$u$#h#"3"! ' jN<m=yC= l V ] q & |z"Y}sQ#gvmi>y]JA@Lbނݱ-}Bٷ8_״s:&T։ Wר_+ٙڀrorzހ {fFx30{FEg F9 { ~ NK-69)x ,!!j""t##L$$$6%l%%%%%%%%%s%G%%$$L$##N#"{"!@!r yUXG9q *?Tm1o hMi U9-5KsެTܿ=k٦لqlvًٰdں{emݒ/tx(Ebz'|],){B<9j%0;>>92'{W2 d9 R&sG`=wY8pL)]8_/h6UV5K  ~ S / | X1p<\eO \6d-BUfr~ypcVG7&zeL3iZD3"#4EUgy-EYn0E[l(:IZjw%-8AJR[ckr{  $-2:BJNYagpx  )5?JS_jv{"!}d r " !qXV, Cv pc#~6 N  j>Hy(nJ"TwP`e,BFA0vc@ F  j,IxWSql+߶ުݪܹ>وE׻?qԦ}`RPWlԍԶ)pzSCI_ڄܱL݀߸RDauwkK~2] 9d " U)V W,).$ m ,bI h n !\!!!!""""!"""!!!{!E! ! = F0m<J!36 tC B !OtB 0mqR@9CY~DW ޝzbY\jނަ NߚFw )SQJl |Z"-} N!Im}dK+ `:|X0 wP+b5 Y-}OPs:TVDr.Z>k!Lz8x:\)~Z6}|z{";Ws:^?g$Jo!@c0Icx&4CP[grzS<a_,tV2 c  bKjxY.c( ~ *!m!!!!""""""!!!!M!! : 3q 8^3VaKjulS)T  & 5v)tO3($2Hn4r,ߖ]1 $Hw߬4=}os/Ns$@R\ZH'YbB*Z(5@DFFC91#lVRiAE^6#=c= P U,CQUPC(>| Y!!!9"k""""""""""#b##$z$$d%%p&''4((u)**h+,,j-..f/ 00W112+334C4g4m4[4.43332141o0/.-,+*l)A( '%$L#" k!BK A &q*H(ZjwAuj ` X U H :#r@bb@4e)E]q}l\I5gK+}`B) jYD6'  %0@P^p !5Mbw+AWk  2DUgu$-9@KS]clsz '*26=EKPW]fltz#-7@JV`jt|7VZ$uR6  4Jay$<PewnV6k9RLs(>6"q ]izv@K ߣ4܂Cڸ>kוiG3&+7OrכVإXپ'ژ ۇ܇ݖ"ް?a5OclhY9 k"uV Bp/CM[^`b]VK@0 jJ*2Dynn{ DN)o8 q $BSbd]O5h`xd(x/Uux[;q/UVBX1p _ j + 8~S)qB |nr|f`h[RWi:~o1vd_afr}rY3_hM Bu6Oh{ugU?*kJ, jH$nFuFi=|En2Tc"_UL D}=y7|Ab1{T0vcWKA=777;@GP^jy0Mi +Pq!Bh1Rr;Sl$2DQ]lv -h#6eA,$,?[$eA)sG  Ge{|eCN&'X'ZwR&7bUszmI|2 % ^?|lx S mTEGVt$yViq;@s߯E`?7B[FyAl.6,K[<~$S~ !)*,&  dC$nG \6\B7Dlp7GJ [ :b[%9ZE I !(!R!!! "`""!###r$$p%%& '''((C))c**}+ ,,-- ...////..4.-B-,,P+*)('&%$#"! ^4 c>  F f5+MJ kYST]n9tKN rAh I (  q G w6A.w:x@f'7BKQUUROI@6* x]G+rZA'weVF8* $1<GXfu*=Pcz,ASfv .;JXdr}$'-46>AHKQTX_agintw|~ (/7?FPW_jpz  (4;Mm^fp"o k !j!!!";"Y"q""""~"p"Z"=""!!!I!! n  d5]x#$# "$!I^bV6 <.5414BgQ`@+ $2Px߭Dݣ܋ۧGٴ{R1(@dُHڙH۫܃plvߊ1Lj  c5PDG'IeykXC(rR- |W5iG+ xo{.Kut7n*j0l ? h zP9oxZZ&?S\ZUE-XJUExZ ]  n K{D$6bC1')7Pv/X`Dv_TQYkP5T+ $/30% ~T{*|ZHx*DYhvvj\M;&kN, fE#iJ1r^E1y`H1|\<eAm> s? e/Lc(u7PyGjDtaN?1( (2>MZn~ "?Zw0Mq.Km3Ne*;N^k|!!#$%%'((),.=_KHC 3[(Mo d0`9C$.t ,GUS54Dq`3\ ' ;>:=IiKzI 6dD*p"tebj|)hZlehx4Mct{yiK>5@w)HgkU=!fE#lG%wW8}gU@/$#8eo(yXF@COf&[ J q r;]U*X{Q+ B!!"""f##$\$$$$$o$?$##M#"i"!R!  d*` 1Tu(S~!] = W 60K.Y ynfhp~Ev&h;&vr p  n  h  S 0 v ;y"T*Ml&.0341-)$m[I6$ueXJ=1% '0:GTak{ 2CRcr,9HUbq}#)09>GJTX`ejqv{ #(/5;AGMU[ahnw} *19CHS\als}^/EW# !"#%*&A'L(>)**+5,,.---.0.D.D.2..--B-,n,+d+*&*u)('&%|$1#!U *y-BKRS R PONORXeyTbZ9ߥ/O^جi7#Lؾ^ٸ ڊۀ܌ݭDހ"mb YC~?X_T3\RQ0DR_bec\UF6# tM'S%qAa;xU3zhUD8+"  8g?kTLKScz0\-Nn qKV;L4D,Pk}vaD^M&/)F N .c90Y"KK6OTC} X nA${\/PR+mFs$5AJOTRNI@4'qT3oO, fH+ r_I7'zkYE3~];qEOyD a%t9Mn:zK"nS8 #4Kby5Tq 'Fe0Je #8K\o%)26>@CHKOPSSVUYWYZZ_nlRuS' | ] 5 LI@Z sGn mM(m9pE6ra67as6Ez?4NbC% yX7 q8PK(lR@]sp\I4dJ-iN7tdSG8-# $J1'[ cC)*8J`s rGH$/p HywP#_\45*_4 uM 0    ( O*5q9x]K=40/6<KZp 2[P-iS ? { % [ ) [ 3 [   9 O g | { r e [ O F : / $       ' 3 = I S _ i u %0;IT`jv &-6=CKRY^gmrx}   %(/39>CINTZ^djqu}"*07>DLR[bhnv} (JY f> !"#$%&s'c(N)5*++,-h.///00G1f1X1&10G0/.-,+t*)' &j$" ):<9+ jR@413BY|'{N`uG-#*DnߧS m8_'~El7tD~Y9rj_WTPOPRV^foz4Jd~;Yt5Oj)EHJJLGC?:1* veWJ:-~}zxwvvwz{})L~zh+NlN4 h I ' d'?y 4c|yc2Y2a  I - H'!7h ef7 }y{Ah*\ D?~@>{/j A r % Q v  6 M e y  q d W I < /   } s i _ X Q K B ? 9 5 3 / , , * * + + / 0 2 8 : @ E J R W ` h p y    * 6 A O \ g r    & - 8 A K Q [ c j q {          ! ' ( + / 4 6 ; = C E H O P U Y ] b h i n t x | ',18@EJQY^djow~ "%.08<CHKRX]bgkrx|+y<2TF|? j \_(z 6 E J D 0  ?xV &+% >D  LzSHp4'`W1kI'zH L N Z IooN  -  k  S#Kl!?_,c$sVNb?a&yjdcjw 9iV*ub[WTI4} TP$S3Oh~zjXG4 ~jVC. ~si^UNE?9710-+-,/148>BHNX_hqz /9FQ\dmuz|wsjbWH;)iK, rI k?OY&`0sF~X9{hXH:-$$+7CO[j|4Jb|(@Xr%:Oaw'3;ENV]enqw}CC i`(^&=Q`iopng^N@)sK%uHX)k>iBx\C*/CWl!7Nh "8Ncw -8HUanx !&*.5:>FKOU^cipw}BuZ0+K2KE TV  y  1 C{_$ $ < & A H ](5t#j>8YKL%s]QF2a/q*a) V % B V l ~ z k \ L ; )   t ` J 6 # pcUH=0' #,3>IQ^ft  * 5 D P \ i x    $ * 4 : C J P X ^ e h o v z ~         & ) 0 2 8 = C F J O U [ _ e j p u y       # ) , 2 7 = @ F K O U Z ^ d h k r v z } & M a?,^:Nes~s[7n- <  Y *Y/ZR TI qTJZ!s"Z"wX=+  $4E[t;\} 3W{7Z~)Ih(?Tk} $(.0379:9897720,)&  ")0Qi$JrHx2bMx'Oy 1Op$9K^kz|qh`YMF93(! !(2HQZdjryO-ZGH;jTEN__ pMHVvwB3s/?GH?3Z!\ne JO~!Q#8e R;Fh0b)N gm\0r T % E b { { d R : $ jL0kQ6lZI<*(/?HVcq},:JXfs (08@GNTY`ejosv|~      $ ( . 1 7 < @ H I O T Z ^ b i l q v |        " ) ) . 0 4 8 : > @ C G I O O T V Z ^ _ e h i n p w ) j  _ ( 9YcA/Ynp\8]}ca0R o $9QqG ]z]]{_ Jwg^WY]gs:dDt 6+!+2;FNWcjzSAn7<M*G^qyn[F.f>^/l: {MqI"v[>% {wuxz{*>Oex%@DFHJJJKJKKHIHGCDC@><;774220,++)'%%%"##!"""#%%%&)+-,2468=?CEIORWZ_cjnsx} %)0379>>?BB??9830)! iVC,}cE' qQ4tU3z_B$ ~kZH6('2ALZgv#1CQbs $05-&  #+08?GOWbq} '1=IT^lr|l`[Zhy [Ey )?MZgw=hA:T]*lQ<(  +;Nb|8]*U1_ 7_%Fh9Pg{  ui`SI?4*! tY8QrBxdTF=6126;FP_q#CfGo 7_6Vw%9IYgx-W#\ KB9uXLv &E]uwgVE0 wdP:'vfXL?4)  !'/9>IS[enw &,4;CINVZaekprz{    #&%*+,12566::=?BCCGHGKMNPRSVUXY[\\aacdfgiijnnpsrtuxyz|}'Rw!?XotdSB0 ygUC2!xZ4 u={5Vht|(/BbM VU*uU:# #5H]p&=Tm 3I]n  -5?HNU[bfkmrruwuyxxuvsppkjeb^ZUROHFA;83.!}S"J Ix2n6v_NC7694)!  %-4=CMT[dlt~  $(+059:?AEGIKNORSVUXYY[Z]\^^^]_`a_``^`aab`baaccccdddefehgijkmmompsrvuxz}}|zuomf_[SLB;2(! uh[Kp DyKEu Gn!8Oaq5Oi ?_}+Fax -9EPXcimtu{zyxysqmeaZQKA7.%ujaVIA4-" $(.27>CIMTY]belouw|       ""$#$%'&'('(,+**&"   %(.05:<AFHLQRWX]_agekloprrusvttusromjid`VJ;(xR(xJLxB s@U)`;nYE3 !+:GWgw*=Qat&1@LXdlxt[@$yV,^5 b:}jYPFA@@DKUbp2Tt&Ns 4W~2Tt &?Wm$)15::=>@<;741+$  |sg^SI?5/#   $+/39?CHMSU]]dilqsx{~zslhaXTKH?62)%|{xvtqqppnooqqrqvuv{z~ '/:IUhx.Je %D_y)DXn*2=BJOWY^^cbcdb__[VROLD>72,# }umd\NC4"{cJ0~dN4p`P?/! +4>HPYdmu #&*,.13578:;::<;;<;8:774.% mZA-wi`UNIC?><>CDHOV^hq| .>Pbs#.>ITamw~(3BO[jx)/8=CHLQTWY[\^]_\]Z[WSSOKGE@<70/'#  }|ywxvuvutuwwwzy{~~siaVKA7+ ~tld[RKD>50*$  !"&,/269=CFINQXZ]ceilpuvzytnkea^YTSQONLKJJJJJLMNPQSVX[^`cginouw|~garden-1.0.9/data/beat/flute_l.wav0000644000175000017500000003637612457263310013721 00000000000000RIFF<WAVEfmt "VDdata<%$%$$$#$##$#$##$$##$$##$$#$$$%%$$%%$%&%%&&%%"%%%&&'&''&&&&%  !#%$%%$$%%%%%%%$$%%##$##"####"#!"!!!"""!"!"!"!"""""!"!!!"!          !!!! !!!! ! !! ! !! ! "!""!!#"##$$#$$$%%%$%%%$%%$%%$%% #$$$$#$$"##$#$#$###""#"#"##"!###"##""""!"""#"!#"##"##$$#$$$&&$%$$###$%%$%$#"#$"#%#$$$#$#$#$$#$"#"$#$#$!$$$%$$$#$#$$%#$# "$ %%!$!$&%&%&('&&$#$%%$%$%%%#%%$ "!"# ##$#$#!#$##%'!$'"%"$''&()(#"%%#$!#''$""%!"$$#&&&#&'&&%&$"#$%%$%$##$!!$##$$$$%$%#%&(''&&&''$&**)(''&&%! $"$$$%!&#%"!$%%%!&'&%($&$$%$$#!$$$#$$!  $##%#%''&&'%&(&*))'&"&&"&%'&('$! %%$%$%% & $#$!$$%%(('))('%&''#!$$"! $!&&#'!%&%"%$%'**''#%$""&&%%#$"$## #!$$#%&''&&&'()(***'#%'&"%$&  %$(($)('#!%&&&'&%''%"% %%$$$##! !"!"$#$#&(''(**(&)+..0.))('&!! # #$'!%('%$ #&&&%&&&%%$!$"!#"!"#$$''()))+)**.2231.,&&''#!&  $# &'%&"&'#'')*)()#%!%!!"  #%'**)))')+020001.)(&!%#&&$$%!""%&% '))*("%'%'*)+,)**&!!!"#!! %''%&&&%%').0462-*))'%%%$!!   !!""%&'(('''!%&)*+.020/,*!%$$!"$$    "#$&&(**+-03532/+)'!$!"   !#&&%$&%&&)*....0021-& %$$##"! #"&*-.,-3678540,*(&"!#! #%$%$$%%&'*.16898541/*(&%"  $%&&&**),247973.,*,*)'$$   "$$$()*.49<=<:840+'%""! !##'((-1477::975411-+'#$!""$&)*-269;==;9840+'$   !$$').278;<<>;99851.*'  "%&*,/16:==>><<:5/*%#  "#(/269:;==?>?><81+("!!&))+158<?>??>>92+(&"" "%*/49:===>@@?=:850+'$ !#'+05:<=??@??=;3-($" &,17;<>>@ABAAA?:40*&!"(.5:<>>@?@@@=:2,(%#  )/47;<??@A@AA??;70* %,27:<>>@@?@?=94.)& %+038;=??AA@A@??:4.)  ").38;=??A@A@>=93-(% &+25:=??@AA@@@>93,(" !$(/58<=?@A@@A@=92-'%! #*/5:=>@A@A@@>;5.)'#")048<>@@AABAA@;50)%#")-279<=??AA@@>;73,($")059<=@@A@A@?>;5/)%&-38<=?@@@AA@?=:4-)$  $,169<>?@@A@@?=82,&$ ")/6:==>@@AA@?@=:4-'$ !$+15:<??A@AA?><70+& ")06:<>@@@AAA@>=60*&#  "(,28:=??AA@@??<92+&$*/48=?@@@A@@?<91.*%" !(049=>@@A@A@A@<:3-'  #,379=?@@A@@@?<961*&%,27:<?@?A@A@@?>82.('-38:<??@@A???>:7/*% &,27;>>AAAA@A?>=94.( %+069<>?@A@A?@>;60)%$,26;=??@AAAAA?>;3.( $*/5;<??AA@@>?=:6/(% !(.58;?@@A@A@??>91*&!'/4:<>@@A@A??=:4-($   %-48;=??A@AAA@=92+'#"(/6:>??@@AA?@=52/)$!  %,36;=>???A?@@<95.*%!#*28:>?@?AAA?>:72-'$%,279=??AAAA?><92,'%   &.49;>>@AA@@@=:6/+%# &+27:=?>@AAA@?=61.*&#(/39<>@@@AA??<95.(%! &*059<?@?@AA@=;74.* #)/59:>??A@A??<6/*%$#)058<=??AA@@@><94.)%  &+059<=?@?@A@?940*'# !*058<>@A@BAA@@>:5/)!(.27<=>@?@A@@=:52+&$*/6:<??AAAAAA?=;4,&# (.58;==>?@@??>;83,($ "*169=??AAA@@A@<72*& !(,279<?@?A@@??=;71*&!'-17;>>A@@AA?>:72,&" !&-38<=@@@A@@A??=80+&  !%+06;<?@@?@?@?<:3,'" !',37:<?@AAAB@@?:82*& !(/37<=@A@A?@??>70,&" %*25:<=@AA@A???=71)"  (.47;>>@AA@A@@<80+'#  &,27:;>@@A@@?>>;6/*"  "(.58;>@@A@AA@?<80+'" #+269<?@AA@@@><93-'# !(.47:>?A@B@@@?<91+%!%*17:>??A@AA@?;95.)%"*049<>?@@@A@?>:60)&"#)16:<?@?A@@A??93+'#!$,27:<=>@@AA@?<;70)&# %,26:=>@AAAA@?>94/)$ "+058<>?@AA@??>=7.(%"(.59;>?A@AA@A?=;5/)$&+.49<=@@A@@@>=:81*&-27;=>@@@A@@>=82*'# ',068<>??A@AA@?>7.) ")/48;=??@???@=;80+'""$*05:=??AA@A@@=93.*& !)/58<>>?@AAA?>=82+'"#)048<>@@A@A@?<73,)%!(.49<>?AAA@AA>=82,'$!)/59<=??A@A?<:62,'# "+058;>>@@A@@??;3-($ .398<@FHF7##+f2Q7D:6<+>"??@ @ ? >; :58.I)W%`"[pܶ6^G3$'-26h9K<9>*?%? ???><39M5.(#,'2E91FKCD0r%%,159j;Y3>.>1=9<=;f73-(?$_!b[hޱ߳߷ݦ3D T"(B/379u;`I{r FD#( ,n.0e2,333333362g1,'# qV_ |~ Xw ZH!"S'A+^./y1<28222'2V10/.p)*#?iUV E9K t %(+-/S12 222121/,$'"[a; LYf q;B"g'-+m-.i0d0111 11B0{/+h&!<V8(t!+%(+E-.u/n/'0c/]/.],+'2$~ Lz*g5}JP8:D!%(+-.E////0/'/"/-v+'"b 7K>v y '%'*+,--F.C.-,*{(% 9%~JPSjL ?%#0')X+,f-`- .R-O-G-,+)$ , ~(o.!%m() ++s,l,++*)8(z% "7zeRMw#.< "%=()5**+z+u+m+*b)\'V%S!K^ru},1&X4 -  v#&(N))****)'){(~&",4hwOV[^bP H #&'d()())(('L&#gH4|:<w5$oR ` *#%B&}'((((((V'p%# !G*SX[a i#!#$^%&&$''''q&i&.%"q)&r@=@CGIK'5 7!R#%%?&&&&&"&%# !%cBSc) .P!u"#$O%%%%%%$l#!'+z LgmvR7q [!"#h$$$$O$K$E$! w  } C g"~#x#$###]#"6";v w Wv3- 7JteQ ""# ###s"!? y;` Xcuvx Ha}[ !!!""!! JRtpps{ gnr( 9!3!-!'!  }oV?) a\Y`adfo| {ojL: 6 %.4R }#J\]iefV5 )  ugSMGD_|6?# B`cilb A U! {[TYRM=SsvR` p V = i!M]smhbW*AFil E %c{t : yTwrNQXa % ,n^,i5cdo`0E% h 9 E%<C.'`TF  1~%af - ~w 3X7I]Q'ekpvQ s ] cT%Rf[ @y`kF +[ rit.0D b  ox=uQmQB 2 ,iI;+0 SYW,yhb WZ ksy|[* Q7} kJQ# Z "w<}4$ + B  } ; [Pjp#w{M[  BT( .# 0 P 0 1nGC; h+:2.J)z  aQ 9kn,.24!egY j L  GB:o q &yM823. #f q q ZSNI4 1 SZcm349;7z. R6mhb A  n(+ r Myuo1 z  W q &B p=C^"O ) - ^ } A  zdS"#8e`W  H u V W ^ 3=w)vYnqx C !r ( 4 ] : z ~j{TLG!)er 8c\ R  P  I #NstvTVO hU4j i = 5%9L:79@DZF3TuUz[_F'f!t fUX"j]P "n:M<  da5'%ybekQ#,fj Img!~J(M6@;x06 HUsc.ltuSf_ ("t *3.(!VAw/4' +D%t9&-3.'#i)i|<)5x:IKQJNHB;0U/0e  $>{36HZab`\VPME6)={z~(GO\hqz}|vtnhc\ULG8/#garden-1.0.9/data/beat/sweet.wav0000644000175000017500000007430212457263310013405 00000000000000RIFFxWAVEfmt DXdatax 0AP]glpomfbYPJC?>@CMWh{(Jn5bGzZX,wEF C 9 s Y + _  F s 0Ss*;P^n}|q_H V @c tAdn.G_bJ6,('*,4:?CEIFC?61$+=Pcz<_#RT N!p ai$P'uaTUWcv9\=a 0 H X ^ YI*^hFA[wqS0RT yF 7 y  ?]y?%XJ i >$&())~)( '$%"w NX ^E2t'm9lYRVfO,MyH* k:1y S)X}zT$F|e$| I!;Rev} s/]_llp0‰Խ$ˍzШѥoԦ|/֌qמV( ;kߩBF@P.?MU\^YPD0N-n  g ' ~ N#9ISXTM@,|H M  d  [ 1 X |$)&~n_K?1'!!$*=Ro(Y6|%})H}@b3m_CL6X*%  (; B nS<Db AysIpnsIRA?N p ?  o e _co|-@P[fc\O3 x=J1 w !!!!! ( m:^sj aMvh)|8ATw{gE's?9VW4&ߓT޹ޮް FߌA*?;tXF?=GUl,c?u<c Z & F lag|4 1 y (;FKD8'hCxspx&lz W b8\.0iF7S*y f 2V<& w I : O UCe)?k[#yL*W 3Xyd?\#r,^|-5.}aD#Z5n F # b  H 2  & v"z'9 'Wݸ4+ʸ3]R˴ͩϯѫӓS4K)5m݁pIܖ\/ %OܓBݫ#ޡ"ߪ.72 e4a.qYKJSdx$Hi&UR&eH-pS1k:h  2 ? D 9"c')t7r2IX_b\RB+ IkSpqX $ } ! e Hp(4:@IOV]gtG;'! L4Y]Og/ KN i< pMC`R  e 8 \%jcq*x)SopQ*t dxJLCt   9 S l ~$Kv_WY=zs׏ɘE- Įš-boX ے+iLAv<=p~P;8>- \  M , Q n t ^ >  Y  I T >q)@RZ[XPC7,  !6U{A~gm;v9b2 uT;% 8He c fho6 < BoIKkT|*r  , 6 9 < = ? C I X j , j ? 2 8 CS e =`#Jq1MZT>P2b5O^qu~|xsdU>%[!Z|+ s% [HgumNVuZGkS:d{Y.d'Duެ ]ߠ1A'\O& =X{"@[rhA F   x &lx< . = |  ^(00.)In@By(~`LKSjN $z6)ke7JL ?~; zR5()>iD |X(&f (,*& uO.T$w7f}-'pW4n Av E |  O $ `  E,%})7R >|Bd2{P(iN4 ~ڷ!C"!̨̦ ϫ}dW:ڮ&tމiCh|Is~XSC>Rgv,Lq6l6j7a@^v   l G  x 10{JHm{Q(<M+ E N ;  w -_K|)Os!Gl!Xa z&8C S:[ l ll5s>P&[ n m h j v$O|0?1^9oyK*g|YlJ , Z +Oy3i(s|URrn-}S/ ܱ0Q'м Φfaӝ ؘ.ݻ2z/n?W'rV38lk?+h < V k w t e M 1  R>C"U| %;FOUUUWY]fo~@d,jSTl#Zq@lK,.Jk 5g?{ e]9 ""f/   ` c &  H D $ e  X 1F`r?oY*oM$k9y>|6u&c @s2_+E]o|kS7~Nc6/l'<EA/q x T*HRCXy+XRڑ۽ݾށxIdޮ޲J߬%F\!uP2pbYQLJHFKLMPMJA9+Im 6 4  a * U v j G  A {   t7S!:Paq!CkLE?N'dbGV<Q/*Fd nJr z EY<|>G=+=oCuqDzF TGl ~.*z!g K - o  Q 4 z  h [Zcv+P?Io< ^4nT:$ e/\+֠ҵj6Sӱ<׌3=ޓ߾J@5Sxg-'H$j N},@LT_m +Jl#Eg~ 3<DC@1  u K  ~ 9 ='j"Y$=Ufq}~|thX@%{?t&y B Z Z C  w*}\J~ 4ZFm"Wc {$8 C U}:[ l lk4t<Q'Y l o g i v#M{2A0_;oyK+h~YkK - Z +Py3h)q|USqo-~R1 ܲ/R'л Φf_ӝ ؖ.ݼ1y1m?Y'rW46mi@(h > U k x s d N 1  Q>A"U{ %;ENUVWXZ]fp~=b-j SUl#Xr>lL,-Kk 6g>| e]7 !"e0   _ d %  G E # c  Y 1H^r?p[)oO$k6{>|6t&dAr3\+E\p~iS8~Ma80l'<EC/p x U*GRBVz,XRڏ۽ݻ| uOl$޴޹T߶2[U-o\J9+   ^+R  D  - I [ _ \ E ) :   S:v&E_q.Ms MHF[#Q9 ;Opjgnz(P~ 5e k 3"A@N"56$ {ja]]gpoBh%GXXL5uR S  M   JW:+y*2N{7}C o>pQ.yi^SMJFCFFNUYhr.;<L=0GcOׇ(ݪx6=}@G 6Yd&"KDRP%FXba_\Z]ab\XJ4U z 4 2  d $ ` 'Or[1 V   + y  H i tiO&KR<\'j8_XoE/6VE j`su_ gK D Q<L z o7 m - ! 5 LZgpe;q%%b"4qyFX A G9v3v Wa6#0^e'{sy#aSL@]bbNaW'f 0QBO'e3C$Q<4#]?u{W+WNknU&Tw!8Md{"Bi&X2wo{/V[#]1 gP=' *@Tj(N{5gI L$mXT^_Blg_{ @ /Q_]#;]9 g .  ! B  NlEz0?Uh{ /V|1Z /X~0J`sxY=uCa%Sh_@m' > L U V Q F;/   >8xRnٗբO"kkۄXv%2:/k3 !uC},y<F,H : Y n | y s ] =  U>RJ*v=t:iL,kS r]d:f5 #No90D,[&t]QD?8979<=EEKOKLGC : .  \"~ .^{{hH\+vI!zN v9] dN ( Y ' V  PS*fH63BbUj5{P,q\G7%  -5Ox8=K]x=@<] Z}<D`7Z^1y7h"&)-36>IS]kvmWA( d=X%y>v3Q ] [ E " W  Go'Mr1`1pbiAJ&|..r ) h  @ z  W3tZC519Q y5s7Y(wP,{gQ@/$  *;J[n$Dg#Pz3e3kMyw=s<(OjVv$0~t"a@fp=5Mz;WdZ; l*3:8/}c0 q  O  # @ _ y x \ :  d * n ( ?4n,HRTL5_4k9 oGvll~ =)OjUB=M5]!xNRi )6c ! lr8&;zS @ c  ThG:z8Z} $''"i/V8X_ S 2 ^  ttpht3nW[v X{DBxMeHZO/f9rK(iI.ujm~7` i3l@lQ;$ 2C`vi.`;0u+:P|8 p , P  ]  U 2 l8i;tO=48Oo*g,NoJ(weZLE>7888;ALUdq $CbCk TQ4kZRSZ$e"u& oL%2!{/Lcv [@c6n0*s3k*W>` #7HT^hopmmd^R@2f>M\?KD*`$No4I`y Bh1l_ o'l0pZE>8:@M`}%b05t0#` H <dOf 3 : 0  | z rK;tz\8]*g! ~ $ `    wW.rK& vxL;g.sa\\bmW'{1lSNUjAi,Sr   {  a _  0pCvJ%)57+XIUC)Y[m+~It7t.CKS^y3f&p9j> pJ, {j\RJB<<8;?FKW`l8Vv0[?rD})fb%d3zO*s S=$uaQC8,/ f 2R<jz'Qf6n`ds6Ws~iWB*{hS=&|\6 k > y ? _ # k ' \  =Y lw!}).3:Ia@z?g7 }bK7&#3FYzBjr/ >7m/!k S8?]L}+s:dita9TkrrkT:y<TDx.?EC:.##Bm\w7`H9.+1+vZ8v@ Z  R , m  I w *) V Im (rT\T FivlO?YO{A c<hD[5 dF-ztpigeffgmqt}/H\y!Ab8^)R3aQMS)`x%ct6a N 8 { + e hj? e R > 0 %          z b I .   a C $  ^ =  ~ U ,  zLZ$U}C b'}D [$xA g4k= a:vZB* W^YhO% j4[( 3>G@'gzB AnQ!TChcAs6Y aM"Qx )HiJ{chX"dL@514?La}'d38iPGK_}@uJ'b2c5F E 3  { B EN @ o  : z ! x ) Hi27.vh^ e|1cg+Y(~X2|i^NE<31/-16;DQXgv-KlCjBo2f3k E{#_ D|,cL3kL+c5\[wm P^SJS,,jHEP_ln\6A]fkjebcgt =qK8\}qXA' \2|Hn1y5j"Hcx'8BQbz-WKd1^:$Fk0m?>`rJp 6 ^/F/? ^ F   2 g  E p y R " h " : < 0 s Hs ,G\q+LvPEf"}N)!HtX24X(qU=,uY7u@ Y  Q - m  I x (+ U In (qSb`Y|U~Fi9D]0uO+g@vR3{n`TGC?=79==CJNZdq}4Ol2V~Iu*\Q$Z2jJ1kR=y(fO6tX<sSOI  (^|}f5V S  V /      ! & ( * %    c A w S 0  f D  W,vE{Io6Vn2CYo4XU"qH!|bJ1 ,C]z ;i DK)tXm<vTy1NQy[8r.OR<cE21;`j;x_J:2--4?Nd{G=!s#~C{Q1tZ@#rIz=MC_ E x  @ \ p v o V + J {1YAX]%z@J F{9u8W$wT1xfUC4& &4DSez";[z!Ge(RyJu$S1^?mJs!KvCl,Px'Kl *FbRB`OMYJMzpihmr   nU=' iL0 a9l>X(h6sAKd9 iAw\A*-Ih+\6q9cV\0==K 5 4 U P . e  c  Z /  qK!y9Weejs/EaGL|O*}voor{O`p #/:EMT]fnv|T5k YB~x&r]IjzfT:! zujcVJ;+~mUA-s]J5 s]G2 }n_RD:,# #.:IXj|=[x&KqBl#M=j3y=@TVa\/K`> qV6xGx>Vw@ tDkBybG2 &8Rj9dO'`LA{/lR)\?j7RmnDS d7 c5[d0O>luuy|kW>&#4DZk}6Rl?c ,Oq'Jp)Or -Sx /V| .Qt?`?Yx%;PM)[(G|Aux/E o[JA967:=GOXahnpssrkd[OA1  oS>" |[>lF |Q&sF_.uDc6 b5^?|n_TLB@>J 3 7 U O 0 d  c  Z .  sKz7Wdeir0FbGN|Q(|wnqry;d%]Y*r WC:+{bCUH}>h " 7 F U a k p u u q k a V K 9 &  v,!Od8orP$YtI]_)lVF:1+#!!  $.:DVcs#:Uo7Xx=_8]@f$Ms 4Y!dD"uU0 zV0~\9mM-z[A'{jYK@6*"$.8GQcw"Ee"My2d/gBx,!{'St~ C'22m#=PQH7!lI%eF( X,l9["|HR(mQ5'D` LzK6t2t;|CJC{'^(V!Ee)5GQ[flnrtsnhU6 :)pv0T/ x^C) mH&nR9#$6DZi~.D_v-G_|";Uv3Oh9Ql(=Sj} /=Nao "18EMT^eot|T6k VBx'r^Hk{gR;! |tlaVK:+lU@.t[I4 r]G1 |p_QD9-# #- IBhkf -`&--& iYG>:0058?GT^jv &3EPbs #5Nd|5Ld~ #;Tm(EZq';Te~  3I\n!/@Pbn".B]0w9p_8bH0 }qaP;(u^G3mXB-|bM4! ubN8&seYK@8-" !-3BJZjx4Lh3TuBb3Yw@[xTh;%_HJXzI 1HWZYO<%uP(zY@!oZ>({dM:' ,>Th~ :[{&Jm#Ei:[|.Hcz +;HT]gow~}zvle^VMB</! _"b'Y8~tjaVRFC>;763589=@GLQY_fov !/9GU_n{ #2?JVdr| !)4=EOW_iqx~          m9p,X7!(;Nevzyrpljgfbca_\[YVRQMIGC@>:33.+&$"   $',14:?DHNSX`ckow}  ')/25:;?CHKQX`hqx~zrje]WPKE>:62-*'%  garden-1.0.9/data/beat/beam.wav0000644000175000017500000012650612457263310013166 00000000000000RIFF>WAVEfmt DXdata %*4=HS^ky $:Tp .Qx#M~P>K*{t& @ p U ( !:^*mh9y?(b !)""O##$ %%W&&':((|)#**q+,,n-..x/*001@223v4 556a78UZEhm }4u|eQV 2Bh^NVr; vKuAn6O#qf`P7b:T/Rݻpœ;ȪȱPʰ.eqi:ϟyrzӋԕբ,ֶE`zڒۨ6Z݄߷W<321~%k G}Fs 7e2h?{[9zW3m AxG |  K } H}I{MV,f@{V !2""p# $$I%%&&''e())B**+ ,,_--.>//0 11c233D445&66k788O99:5;;x<==^>>?@@@A#BBfCDDIEEF*GGlHIINJJK.LLoMNNOOOP.QQnR1#`zjנy" &$]Pݛ ݈ݼly[I e~gs6X'pe ] l8Sfi\ФO̒d[΢AIJĵjAd˽tŕϏЖl+ҊX@Ծ>տBESjٍ ۵Hqޞ3m M@>DRWRE.s[A2*-4=FKMJ B 9  '  n  o ^DOtDk1b5y a!""O##$?%%&2''y(!))c*++Z,,-E../9001.223,445,667.8892::;4<1a4q:9[79a;:7;r<&=r=>??W@AAB&CCvDEE[FGGMH|(J ; @ aPՍ|h9ܰX&x4߆V}}w XB@^Ci >Q` e` \ۨmDOxkI_\FͿKϵρ)ьҠ.ӱ::ըt<׬ ؛ ٪8YۂݸWޤOSU^s$@^6W r$7FR`p#<[~3V u + CRe c  B   1? X t n.=;s1j M1x w% >!!"j#$$|%>&&'\())*6++,T-..n/$001<223V4 55q6%7T5-(1w64,+X11/O1v3334556w7@889:8;;;?6,!f e  i x |8;кgoտҪTF%۶ ݎ'ߦ߃@JB+<54M)w"}/TFm!181%p й2-`|ʆϛIѫ1qkqth@٣eGDdݓ1tm6M\ ir"w(.7>EFFB<\U:i[8 X  e M3{f  $   x -Z. Ro q  T TLgrV.l S;y z!*""#=$$%T& ''o( ))*7++,G--.O//0P112L334J556?75-E1*5*P+1@1/022234 556<778Y9:B0Ec AJDG( G L 8 `t ۪FDAOڰߖlHv:]S1 z4viy.U oq_=s Eufˎ$6\]N5A ՓՅם7أ٘m(ۀDܵ0ݷEtTOj?HB5{bE0wg VE3z\mpoh* U ; q <rG  ] r C  ;lYI ~ 2wg | ; Y-|-G7w_K.p !!Y""#P$$%O&&'Q(()O**+Q,,-I../<001%22k3 44O556.77/%,2.Q-010Z123#334/5o_ 3a<Ws U W M O 4 rRPh+?ط\:xx D sYx2|t,(/9?3o+d*qtYm<{Y}89z>rJ.uX"HgÞһjȫ hqAzrسץعm۶ܦܻvhAߛ$O)w!{(~%i7[w%6F]v'Nt 2Yz/JbQI O J 0 k ) " [r   3.Iy 8Vy41X 2]uPmZ @@}2Ol !""##5$$I%%e&&':((`))*.++\,,-(..Z//011D22h331j,b/m2]1+(V-ۺ s#hhT`b n#Fm' G % * V IVhg VLc-N- 2T$`(=#R%G~F} Ӯl۲uĪdmB̧9iҦԦԯՔؙׅOٺ(ڋڡۧݜݔkP>tJf6d:zU$H_ksw{}/E]s)8GVn_W ; bA ~  cS c 3 ' 4 cx6Xo1NjB9$]? H+P~8]#7E R!!\""i##p$$w%%&''<((T))v*++-,,T--{.//300U11t2Z-{+-/8M i F(4)@[3/,.Dl6:[M g  B 82(k4L(6ܗ r,]]K5S%%/?Vo[z?*_~@ԯۤ0:ү:ίͼѸ%цѸ7-$&'5;FMRUW[_bPfLRu  } O 0e  v  ] "2Xm"2BXog#!P~kW 8Vfn q!!x""{##}$${%%x&&'(())2**E++a,,z-..#//<0B 8b l Y"x]oC l%}~RT(Yh U / h4^z t(hz>=?|f^rI7Pu}M.ڔ8 MѠԴSӳԮzFqٯ-4bܫgݹ{=ߡi9y=SmRmQ:mXD4+""!}|s j v6H ^ 8Vix,4 [ n Y  %137:BKYfy*?W\{Ky7NHi !!""##$$%%&&''&(($)))**3++E,,5>nQ9v bK5}=f=![LAA c & " R a{ {o`Qoz-?jFP/H3A."v#A>t^NS⶞ReVPFIJR^i|*>Sbq} zMslOj !!^"##$$%%&&''(( ))2**"+,ާ #ET}w !/;;;W?\l   k K bdT& |xk[G0Ռ7 R9PMb" wgdy#wGMo8+h \ж<@Չa5הe(۝]ݶAޜZߺ#S"smpz~P" W h_0Evha]Zbir*K i9U%"#  b  GGA?L]d "6L`t " )!!."z I  !""!7!A !t"" ##p$%o%%&''(()'@< O(29j6a#iiL_ bePz)RI C 2 !  @B:;0&,u ZT7,+ΓVjrgJb1rEFEq$Kıհ\ǎ\SfbY(GՂւ:+ܽb?lmOޡR5tGo^QH9*fFt|UW+& o.QD`VxfUf)7GG z P =cNxx9Uj7MOW] b!!g""o##x$#"h#""1$$%t%&W #.%##$&H&y&2'[IZ5 =^VSxFM0=%M !%P /  y m ] TLE:UQ4" jTG;3] aܝB* @Zd~b;9?r{qرqǞ#/yEI`3ؠD~ko݄ݧ ޤ[S6"e;_?!ydZW[-k{woRG+n#D*F\Aq.r*jcOgr?}^w e e [ )!|28S} 9\`qv !!""$##B$$F%%Y&% )!r$}%$$%&'Y''()W&֘%u-h}}bl jS:]Q4h(;0@Wrd-C ) ] U B , kO6zhrs|'4 ҥ"H=jv|iiY(]t0F1`De֗TGM׷؜aec(D sޣߩ3NxI,WW.tSA85782*1Rlc`D6'kB,ZEAXNe{"nVjZ N 8 '  YsI +1IXx 'FFV ^!!i""r##|$%% &&''#(((q#"p&&(X'&ېn /gcFCY#)'*Rd=gC04g4KKi.>_c^ h \ F q a 'vH3RIah|!0 A!"oyhGk&YXCJ(ӨgҹǢ0)ҀէՒ~q׀7.ڞ9: ݞ_߄#3NW9y,Iz>z\A/! vdH;x2}|G/OR_ FkGF7KloZ)K2 '  { q v 'gH^p'//?GWv| '!!G""I##X$$`%%i&&t''())*ܖ0{MS[+L5D86t1RJ;/6}h7vm$v W% i A > WX?A?FJT\ht Zz  ) 2!!C"""do5Y*&sD پV~ҤLJ Rkդդբ֞ ئU;ڤۢ ݡ^WalY/RJu[iD(lT=!zeRG|I[\&c7K]t6iKwqs ` W O R Vctn- o&6?Qw z!""##$$)%%C&&J'',(V !Ge!, Y`S)c-aHf9s|a X|Huv* p n C % ox99KTet13 "!!""%##%$$ד> OqOz F KOթՒ՗֙ ذlcRۿaSޫ_Z^yp\"6LuK M0ug@+}cG8' &~@]KUL^u#BaU:xYc<0    $ 2CTdu & !z-7 B!!L""d##u$$|%&ؒWG<!MiV{Qp@ <faDb8'U\ + u n S @+:l[u %5F_rv  "!!&"" #]##[$$c%&(  g3Pd︡r\''ҮԻ>֧֛#q7uڅܜIzyߗߛG],37V'tU6e w^N;2${3r G*M-aX ,lbo,V!# C o l 2BQap#p:\[o !!"""##j6_iG&% 8<#8|zFln2cSnf=Q q  yRWL)G ~ E E ; < '  1rm,=BHIJM`bc e!!c""c##_$B%&d'x'')((;)#ܾ aV<F0Sr|iZ^֣֎g5xر>ُ۱^ݨݶ;?eoVs8=9DlAsV;#sD$3FEy3:mk z t*\IL .9^cjE  l'1CZn"$Cw-|N s!!_ԂdaG Pjf J&7S[qCf<<!Af1qlf \ [  %  ! E^oz  !!""(## $%&-'!''K((N))D**]+"ޟ cPAճa'nц%QzؖAڑ@ܜCX q!^ Z[PDI^R'|g_\_dj+<"% ,0< P., 4J%  - 1 9"'":J]mv+ot$]Ay4wMeoLhqj?_LBk/25;?B=vX`_P S C m >    {xri"LIV]^`^[Z[] a!!g""i#~$%n&f&&'C(());**:++L,,<Cn}Ƕ؈&(g uwKoיG*ٓI۶ܔ\އ%oYWE$dpVe!S/&9XqsO)% (18O*67el`se@F:JDm $ & " . -<HC4 1%<APQuD&;3%m@j1i#'@>*}^3z1zN hm_H>@ My t R Y e . z h`^JE860y !'',17 >!!G""r#$%2&T&&'((()**++%,,C--R..ZuDìԕΎJ.ԒD1֪׆/؞ق~zjJM|PN88"j9{PI#bTQ]O EcSq _<-77o_=M&s&B=E } E  ,,2AERU|h*nLў g3WLx/I[IiYK wV:b>3 z/pC + o fW  C2 ) G G+ . 9 6 v J 3`W_p  &!!+""~#6%%%&&''R((w))p**}+,,--..%//,P'Ćgq.%(yCrץ״G؟n]`jjW`0D7s*7*o'`[Qf/ x8^_vus6M CueJL;FP IhVR 5 = 4 3*::=:474Wd|GRPl`CsG?^L%c?#yW B$RF7 ; A N ` 8  ^ g  y yi o E   w HG5BLbts.VFPV^jqx !""#$y%%&&U''3((G))G**T++a,,n--{../$:o,(UZ*٪ٌS@0h۸ۃcݨ޷TmbliH DG?t"FR|9FcuZ:Yh6)dl?-$32@HQ\f7ul  @ <pkSɅ< r {FmS!tX |}<gS4 p4Om`lUho  7 Qa jd  ( . ^ W nEG*;  g z ^ +ZE -SsJXTMROYZ ]!!_"#$2%B%%&'t''}())** ++1,,@--P..]/uXU­uքKV܋qX׭ڷ5q(@#xb H-rN)w_ hIs}m~i( /^*?NMW50~"{YI8609=7::CHYg u 8 ; hGYeXb`ƃ j&Ee223G X t  5V"N 8 = 8*  t  Y hbM  X [!% $Fk8jSQGA? >!!J"#$$ %%t&&A''N((P))W**i++x,--..--J..\/p5\SY>(6s z'JvPEo]?_kO|;2|$/w^KpXRcET arkYV_^3&+0   ˊLe9z7c7+*Bl!1xNG o<)Zh;'#"0@R`n\'j d z  %09CL dh%f%SY n3"] e$b[2#LpmYE  #!!#""?$-%G%k%&&A''((+))**++,,!--'..2/?)tpQ`pM t  ʋWLݰ#Oefj*BC7>0 (b?R4Z>q ! l4d:E9FOX_^WM=Womnlfqi jn?dҿ4ܝwf=^DF?|67_*OiN8+^d0I} 07?m   . 8 JZjy; ;SE ;?kXhW q]n)di,6 asd*.B` !""Y$3%;%j%&&;'' (($))**++,,--#..$/&vJG 3B i  @AΩTB]!vh?UgQ?PZbt*P=@xH-Z&*9IONE7, xFIRKIɺI/aФtۓޥ߻lS0eZnR\G]aM0f.kC3ziXWW|7c6E\@xNh_l? . X b u '<QewPR}hE+>-/,$#d{cpi6w $!!B""$~%%%{&;'''r( ))**++,,--!..$/ Z8/|; ^ $ }xM;úoEp5"PLkC,\%M@]l&Xrkn^/2%5 ] A uO'ŴY@5$'~=n_7Si^dD^KZ9XNlcsVP7(~hP:#j;ԥ}Fש۱v^ݟ_yߏ6H@S<+JF&! rx NNgK#17@y,L . m  <Iflz  Bnn._OMZ(+NDQ CI";A (v !2!!a""!$L%%%E&''%((@))^**_++f,,d--v./zju2% psue`O h  / . D r4T VKWDlLr !ay!g\AD&}0 @P[\QA-z16vW6 iеCO ֈˇ10Qڅ@ SۭSݭ,ޯ5ߜO\HgvI{U 'lT:C>~'L:yQs{2Vg W W = !!'+/3 dL~qK>8c&DD|Z + ~ !e"U/!f  "{"#Y$!%4%h% &&8''&((Y))c**}++,--.c:3r/_  E bt;G;Ք9u} LQ__$rRv"Xj7r_`A ( }u_?}M M;?J ]4NُTMLڹ۠d`ݰ {W߸($.AmGnU?+!wqExi5yM#mO5"AMx,-!34FKW_ f q ?`VZ[WTJUd)#lIGB 2Q57Ng !"|U ! 1 X!E""" #  O"!r!$#$$$%&&&''E((7))R**]++d,,qBw5L]V[  3 4 [  T ?#2L^K5̑Rm]mJoh gMaMPumL%$yeN1~&,}_>Rȷf10x:OuՃY3ځr)ܶ݁Qި]߼WdefY>#b$tcM>+`$tcKl: yU6"HLF}5Sp\X P I I A "j|vh!]#FGO.t*+ 7!!!^""#H#C!"#""!"#3$(#N#$Z##y$%%%J&&p''#((3))$**0+g&N6H %wR  u  x ) qfeZG0xj =W0S(KlH;(lJrzhZF- w]8a_l@ ĢB֐̆+jwRgڮGv B - p  X p > xQ9=/)6HX|W_e#(6XCL%*8L7KtJgM1uŽGֳ f=Lٽ{BJ+ۦ=ܮ/qݯ[ޢAߔES}YD0{D}> z> r< {F gW5^)h3[zU#e<'1cW2aB  v eckd(o1Z WZXEZe_AxyLLd sC! k!!K""+## $x$$R%%.&& ((%#R%'&h!!$ &%$%&,d^`Zn  Z S ! j  d  { ;nRF>?nko^K&ӂh! +#YqOT3,~-I z ƻ AWڃ2 bz [۩+*gݜZާ%s_U mA"uP&VCm-A@rE[*L$H3y6m6]uc,m_< W4rF  h :  z M[;$/yOtZp h"J4/T&;'Yj\)_'g w? { L  J {Fu4k!W{U>G3#q kjRPK i/]' U!!!"""U##'$$%&&&[''X(()x))G*`Ab)CMr^6b[h F 2 r B T G |h[  0 9Mht/TugJB{[?w4w.H^ժտ؋ؒ؉ٚ2۔ܫaݡ3qޮ0l߬+o0<tSgI~KWQ<0133FXn#~,<9h,;#yXu>:Pc];{9g* _ # P  y <_$C#\ Gqk'joZ^'\$ l<Vq/Q l) M!!"{""O#$Q%T%f%%&&6''(q(h]M R,xa*]M.u R  Z  M W \ $2 K | l 6 mDDcc1>HS:OҞiۤآrڄ8ۙNݡ?Zyޢ._ߘal9zMK` [C4~_MA9+|BJ1vM&oH*s XA-~pd^YW&;Q p a l  w &  / 3 ;?>=82BMj=\(P= J={s ZK<667> y!" #"!##~ - E I  %  A  + , A  36]@( s = E - | _>dG8,Wq׻d)zٿݳڬ v{ܠ} 1iߙ߾ .BJTifZ l3pD fndK%lJ6jR< >5v!cD_.wJgAiJ3m ]O3gsjM}]p{o8 $ | v  s  n g ]QE7&w}kd|W%9b5?,/piT?:%in !l!M!!46s&lr / {)  $ r ( ; w  > 7 X W u i/ ? ;  k E ^0v S3~Y+g.tͯY<I޿ݲۧt?T ߶Y,Mh'U=01BX d`R8a=bIg?'qQ*m@$|@Sb-rDb@iL0~KG]ZF>3" _ O ! Q  X : #q[E-{b+)-o]"5^~XZ @'jAg(1V) uP) h}0%V_ : c R   7   G ( [F,/ s  c J & n H c5zbZ:|nXc,ݜ^ޚ.lHJrV'R~BN'rd ^R=%rR.tJb:H!u>Q[&h,lW MX!a-o< T(pxg_]){U6P & v B z b <  e !XJ!mhl\)XRI[|jrZg/tHC9u:0dcl6*|}/  : } 1 u F JBj  Z@WO7rX  b ? # n H ~7W< [%.iq i6ݵDd2:x Ds)`JwV`/y W7^.sBT"i5zK%u)m&c"a ]YYGh2l$cb(e-m_Bp"Ya%l;[   ( 3 f D S "gP([y C g2gXPV];._O[Zek}<oDF% s  m Sw  2p-f?x t j mOD ^  j 6  6!`|EWVE|Za=uw" F%c0_WQMRQ FEU e/s6d+fQ:q!^I;x-jX J V@1m4[W=n-k7:}=C V | V  _  9 KP - w! LxUi`~/agmP}IA>~2p(ff8 mEl\g*3pZ ?' Yzdc s V  L A ` D } A?y2 C| >JxKBk!Y?:hB' :+GeB{'XR;rQ.gw#Z@y%`@{>"+6}2jS3OI8s*e W  z . ` H v , [  I 9< s Y ^o5o/jJL@rBa8U{L~.fW>u.:3 NU4$w>   1bUV*FV)W, {+2`{4Q+R%R D } - k l{6H"nDX3v?r?m7l9lh>,-naiOJGv1dEu.`5i.c(VI{R8t-iB-g!V)^,`0c2e;oE{T0eA !b ?yF|RFW1i " ` B { =  ] I  ; J Cy%Y,`C'Nz/` @tS-} 9!)bXy:a,>t"~tET]I}BiR8{Yvj_o*FmQL@q*U^M1 LJtBr5h!P|0[7d,]J8qO/b,_*XL}?r5e3e*^u'h-^.j+\0j1XvCv > o  < o   u q Z _ l ( R   3 u  S IzcAk*Y?PRJSAb6ei 0}1Q]1`cKy M:b`pRrK8M~UU]X;cKI #;+W4VxCV_Zuz-U(E+$~$[)MoEtR:P *Gk/Y 6g6"&`BjOG6k 0Po2^0W>_.Dd 7fIv,]@mKw$R~+U&P|#^)->s#Q"Mw"Mx0` 'O!Ju@h 8 ^ g   f S 4 u  2 S }  A j >g l S>]Fm:{s"C`#OzI[*S>}S4+a#B^$Q)S{j7; Vo &d-CXvYs 6Lb{)@Zz9 !FPQb %=Tm$:Nat-AVi#9Mbv(?U&4Gd3Jbx,@Vl-@YmQ\_qGn]+<Shz*>Res$@IbaRi$NsXLBTJ:XE9Vx~,JA8jm7>qXTs 2J_v;a|dk%:N\q,?Uj~$:Ocz=N^t5<*,!K(SG&gSJd'Hh| /@N\kz(;LYl}#4En(5E+  Z 6t-=N_o~*5BMZft~ ",9DITj-9IXet.<JVft "+AOZes}{5X%3=HUbmxWs(3>JTXalzEac_5x;71%29@GP\gu %0;C# 6DEPboz!/:FV_oz !-7EQ^ht&R Z[$0>HW_lx#.7?FNR]gow (0;BNW_jt~)=BCO\dmtr )/8@FPV^fmu62Z]SVitv{ !(+;OD_klQ=h{S!#-2:ALV]fox'-6:CLPZ^hpx "+18BGPTZ`epv}aXW "+06=EJQV[ahkruy~!'+16<@DKOTZ]chow  "&(-147+$%/128<@DFIMPSXY]_dfhlpsvy}8:]\S2SE5Pf %*+-26>?CJMOUY\^bfinotvznu !$'(,-02569<<?@BDCGHKMMQXG m  ! !!##"##%$$$" !     garden-1.0.9/data/beat/light.wav0000644000175000017500000016235212457263310013370 00000000000000RIFFWAVEfmt DXdata $6Kc :kb8z)SrcAt@ }Mg#zbj`whM!v S c  D1bM+*nik'q8997;<>@FGIdR^#Du QKn~Q;B  y:X~mjO jWkKxKi~yNAL tyMK/}ofa_\_|>kJ [OpauJo FiYv}gYOHGBDFFHKKRTVaP5 Bg+<az1 ~ L'q3a8=u SjgBcvZ* YE`BL_ vniggegg >Ob Gj69\rL# ZF gYS!vmgcda``bdbfgkjV7 f}gB]q}{ L_3wC?I3 V*3n , "C\oyGcIk <wj*1zvssrss{tO PW4Tgv~Kq Y1}#zwusstsqtqtt~Hyu\ e g'MC\kx}c nRbp\s/O!Hbt~ ,c> @TxpnihffefggjimT}0l Mj|2/Tl{}* #71\[1 yFdw\ b'VV:woheccaebhTO! Pq1;bz] r!- m`UNIFFFGGKKPRY[<`nj Tzt%Vuk1 [pq- B\t% Qj!QsJ^r C-3h[RLKHILNRr-=( >o:mc wW8GrP;)$+2:At*_)  N}8 =4c)m(s:^Y { ?W,T}C( fYB2RrR=/'"!#$(-1IX{v! #SCJ :Af@q d5 4OL+E V\I" uxl?D$U<F: zKZGBE S(bDN- q"J ePY!)./(&m]+AVxuvx~ o~+8ADDA90% V JhyTtg y E2|\T `'Z3 Q= 6 nv#; Yb)H\dlje[P>-J.v<xeH3$*5HYq H KpBdzylYG3 P:\B1rH:Su)sy MFyz):AHIGB;1 [n&Q?' wyf+dya h m|a R/Pv#]v ~*5c}] -OCvN$}?U6 yv" GauugAT BDE^B2&&'1 j]f3xFkXcH5+(/9McC2)v_ o)CRXSL;$ A.8GW wB?En$BFt)  A38i3Rq -wE"  -CoSjz 54l :YirocR;A raDj$Cs,GtS `6wiC) e ANG(e*# D^ < L%'t  R:* r6$19xu|ur#5 *#-H aa:}[   W4,Ih-j9mF"8n#tA+ !i07R;:y I9R MJߨwVEJk߯Hi DaDH/)*$ vunTDM<"9 AEPlFdYs W4*tOC`z&  .t8MU:ybo SPRO6]+r:"߀=o:m$  TrKb`+>!jg{Q} K7Hh [ @!fE`$# :'-T } i OyEhw UFp73<uEoY$d oy$^$C<P6-3e$ #3ZF l_ h < '&:3S(Aޑ޳ :"| "5=)B F8"9{ZSc0L(~ "W:YA , K fS}hG_jj v3o#C7Q8u0?  @g7t.=  ޱݻWދ)VH|"e7t3s+6S'jN`*avKF "FZ;?YtP/  KuNZ& C&| Z~{]9ORzQU|)nbe-x iu9j9[:h 8V! 7n(-jB j $=qbM 10\CHJd1):O.D F@Fn rq5iW'q T  C#31$6T3 >s~W! ^Zb|_ gi l*Sdg)sR' +# +g %LE޺R Ymx jb3P|,^5fPdy dF `Dqqx P +DYHF\rj8P={r _!aG$k [eT ވ hMzz!hX$ t{$  /r9SA;+\ f  Dx1\ _tq]56 tq*wLaB; OCY=+,@iwMve[ YRt}XD zEV-ݨE(;)C6T #f ^Hm 5 #i43?;s? z#:[-,X,` A,"%B=DpB  54I=n2G6FM7uB [mk^,EC$1 R9 lfۓT R;&X<DvA A &)>B L @vU0"-.ݖDN#dkW).! ^ 9dls[gl AKg21l4<<R t k2)k}j( .N &JL>?,,O=pt /:XdO KY8g4 &Q_ܜ۳mܻ=߰eDfaH8K{ ec  yGkg%ma!I$ )!xFRH #\lXX6 ^4US { 7 _dIk tbHOs"@:& lf\gw# ) DwJr.w a0 0 J!x!4! V |>Gp Z\/z,wP$;k#&   fwd$:) j3TI7}1=(u L Ww]nlV `iKbA6ܴۂH߯&aywE# !+! P ?u.JgYR Ly:B k`Qd5(  Jj(wy. & r%IRjk+lelC%Ol gp". 7:>߳<ނބFk27gy4b^2w !""!!B }iCs$ `r<*]o6*KwSWz;3y% [O%}XSu^Uk > 8WK qP0fcoATJ <kr# .+ KdLTF s6gRG 3`H vK !!!E! 7 dhR/z^5 Q^var3N"?j: : %phjFMa W 3}ggbZB%c|l%&ZB6 h 6'pd ]iZ>,o{j>`sCY3c !! "!(!a o`hWZ v,*4p /8_*7krHMr C q:C%{!fg > !Q>h,djH I  P Gk C^E;CCDcJ%Pi o_O ' !!q!!  c@;FOE#r%  ~. r {" WzEf- ( xg?Y `!W>%=c !QQK   d) ley2(ka}NzV<6Fr: H&3* 3q' Q!"<""}! N HOYz&Tr :f:>y%0gXp 5 S &$ mt7TJX_!}5pS!31,OUR~) [xPg/gJQS= ma} /i2Z=Z&D  k  RHV6@ -I47>{F  m !R"o"9"!!Y!'! x 2 bpuI&.\ U l v0cM;'9,  _X>$% 3d0(p*V!1wL@ Bv1bv z 8 OKzy(Q X./fp.7A& LtX i F{z0 :Z=ew. QaEidxD6{r+ % hc#/tO7b]),Xbx 2eTl)eXh^ojva,  i 1l4}qwV7 PmkGg"j,1* 5&GW s!!!u!U!3!!! 5 Bb%1f  #ASMbUd5 8 uj!G q j zdMZhJPctlb%J;%4 : A *  K /5_B%H[zNIZVM ^6ZF:3 xcJ  m C++>vg9v<=AJWw>: K O QyzEJA% @Ic}jaf4\ o*d2h   >97ZlyceOQxnNX v 'KA/ q ? 0uuV6b4 d /Hg%'   BEtzF'. r g|\x]b io [~SXoAd`v      ,1 D:.Tp;"q;s%*  OUy#pv+0CB6 % w:y "(Ia%V:zQ eZQSmQ U?]}8\:K5Q?YQ4 Z i 0KF:Pj''K~Wm?I\K W5.3 !!! > Qtv]6L'TE d<) j  X0* ]>?}Q8=Vk4+O4T|UDok i V E  y<9i;2XZ7*).=cuaA}=Z[ #idO91ZHK 2B8 " vSZkEU]j_ZpaJ{?  m'JT@X-iZii $ oQ~[u1CiXM>;m B 6RX|(d*$zWSx/Q: t Ey2;c !B!D!(! mtVp] 'QH3 S*F U Jz 8H<C %Kt9 .ci??oM4r}Pyk G J zPwya?7b -ZLu4;C > @jpR7/] y > bWwZQncS7-}i Q L m q(1wUoV A\iw~^$h0={JpA\>nn"Z0wa{K*6_]r DBZ !B!C!!! s L]| UU@Y59?m i!S\$ 0hyd-&[d%ߠ^hy8&K\7SD3u piZDMxIa`Ce>? d[^! ^wUE  pd~f1Ew9OQze]{{Tj',<>nJ-K XX-h nG] < E6hk4N6 K&nwlRXZai  /3N eZ C hfN߉ ݻA޲Bbt-|K $)0P"T]4 D k L   %H* N&ih6( Hd2 =: F :rn5l8X>e`.+Q:Ea7[S [q=;B NN:}?KRL1@Cws3;'@OA,>mgxfkZ!ZX5! }@{fpN ~T-Z; m kV*N8U^-$e'L%; !/%st */& D rsAiB8OED;9ߑ4&lސw am74l Y e    \ 9 @k=05G`|ckNBV4d jd 2J`) 5  ;jPu?';{d "pyIYjB  )b[ $&g_ 5WCtx;PK:oT}cG:Aqk) K 2 I T  _rR I>^u-F?|n ^^mo-Jb?&hj0 1 x'>H"*_7c?3[" "X Z(@߿hBNDGVLv6 P!J < >< & G /W?j\0LhC1? 81%?3f2! 9 d 62waq6:J iD- !' t CZVr5*|+NQ2 xWokKnOsn@H~[[Tu8x\m,=  y 'a/  P ?L N&SL ^ :X e |)k@c89bC6 m ||a'0w}BR3v9 ;!4_kS }!)3Cj߫ߜ߿ ~FN0yT< : L-M5n } YI{x"N.k:$ l [eM .HxGhu  Ac ? aa"k3X2T^J lO*O#!Soug6feu 2>wcI_;:,C| it4 R+yjLay:b>j=Hkf pJ_j e {tm &Hui,g 5,\ ^ 3  S  <yOyu-P8^-Z[ A U-hWAamhF Dam~cexIbW+P p nShN+ y Z$XrKJjf6 =f| f 5  xv/3^\~(UC li4^|,B3/bn 2 `I hm#u3 v ;N<0v^;{E0zpu> [! aj7ZXSd C [=  4) zKl E(gb@ s i; Z WF#]X3h5$wnsqc3! 2C8 XO Y trJatJ"m| X,Cje| ktXN-S " ! u-~v$|? _C( \xMOQU I F,X/ZR7.1:Koop=N @d'x;Dv c  cf\mW2cqIlIm u |K?  d21$"P ]O:D{A9de4< \i 7};Qk ?v>!_lj,a YAhWn . 0jJ OT.s 3 ` `*(wn4\W~9:2#W0Gm AlZ>1'1k[ 4)&?V5D~`D6+?` Ho 6Wc_O/~ _ ecV^<V$%!V ., DyQJ4Zc  b xR;sGh}C#X`3vY  s5w<l~w]. uS  ,)D2[{qg+@_S& eg\ 72Ls/st"OF~> @UT> :  3fW>M|V9h -7kC>hp7!  @5 ^w-'VIL~Fl psdE By}EYzk:[ jKEbL=p`{  Hy<J>H,  ?QaXq} O (0&eMn ;k9\ k_x7Q37- h y'#76  Sk9}V{ 4W v};!vSx C`+mjFE %0)~z  "942 U;7 M=DI!e^1sah 2e8*0"9rIjE P 63vla w+>Q3  N!0* DzE @ >*ALdcG2s8D&giM ~$,`" " x5PE57+z{%t@ 3{  ,@y\c &4d:Cenp!4 i42 . -<ep3 $  N .x])fiQm#}Yd H%N !]O, 4 m=0} r|;9?D< Z >N-Mv|mLKm3 N 9L <.yc~k)1HO  ,^%  n?m.5d7wd S * 3PM8 & j }(G @}>@`2f:rd dd=fWoN 1$f4l"h]b^ @q_    uL x ND;L>F6.WEc<  <Xf2)jYI/8  MyOO374y w 5p+H Bamp`4u QzReU 2HCzrD 0@5i )  ? 4X54FiB{k3qtOk s5fr<on.\W S 9/G5+{fG6vM : 3gzc6H rA>YoTL3bGv xbu&PDM 4  6wnugCRjq_ <nJ D$y gx0v ? z+J4Fk8gEOT_ ]`oH/ S !4 .%1|{'@A91 &_\7g 62 h2um=4Jr*nHv3s lAFIb k%liV X 1KGz6r!W`B#zy4C dO>*DD 4 ]YBXh^hTbGBV j 9BS8wp*{K_T LOVEj3q2Ma 4 JT2,bXK A us-k ;Z{X+e}&  )w8wK$n5  ;qdRdWNdxJK={L jk6'@ ~C 6 I6~h$/aF.it(&q lXv?=,vl "qYm01g%1ri]*M|Dg vyAj3y  -=Z"! W[ oj1 W-{g8azG/93  ^m.8j}GX.$Bn; 2u`U9Gg$q A K Gx]G4[z8$8zAY >>_ ( -#~G* IX$ ;EA/Eh& O M^l}U/k)X6. W2s_ z Is 7 x S<>- gG *$2Y NNGw%a; "\#Ro0X s"c;#S~b< <",GW>{~<:3j Lo,8s6}B y O nI\4r;,e#'8,/ m*)!t  K p{ k/-xl]#d_vW8 ! 0S:"Y*o =/w#gDQTPzzs*h N e;eV?L g TKM3 ti$|g?B(  %*Fi%^!*D ^ \PUDLp  n%%V46 +U>f GCf#00% i.R}m\7=> M ACzG2CTb 9I;%+oV '':Ox;{_k}~a"1T2  * ITc])Xc L,;F='6h ]8eB9D P'j/zyB W|<V\zo.^$  H78x2QY d t   z2QaIKD'^>&nB  c;.u=t1RMv hM&z(b~()!. nQ=J.6; (# T xc kx{CEH^ p D~2  :X@ENH-,<>zmT )ou~ V@9( F/j_.:yy.>J7}  5M2$Bt6v H!mMqEt77nU={] Jh6 o ^X< z 5 TF(]Y|Qk  f(aK_ G9`rJ[%0Oxp+lS+vP  Zj0Oap!;, 5QBN=S)!4 HAi @+a Zy/q ]  _&hy8xA\SZFq  {**DTseI ; "5'wq*oZh)~r_ 7 vJ,WugRha 9 >5B(9_-H]x A &Cj S  @ *Mg0)*: 5r,K 0aP$mN C[%Fs}n `mWwz-=Yl%/ bP4(B/Tz! W %( ]=`i[wF4ox a yS"Z ` 5 sJxD{['c<+H B~  CKZ} v9oN~0 /1KJL_ ]T96\sG2< )~}. Md$Nc| w d?EQLJ`{&L " { CdS/n>h?5/ w DO F0hJY a nTs;dj|qqa7 . dsW);e ;) IcPP4u) ,tR#^yY5 dh!_ y 7 }en9{yZY: H TU wt%H{z- 2ie%0^q]3Bd~}QWxd)\ R A)c*\e{w / @E LN''Pn Z ~Z}]`USnR'1K <}51bF 2zoR% %kjw[} =V*~jql  9"c]~BC 3 7vVYLud+!,2o#x_xO bx2m < Y ^,}`m)>01 GT  :%'"$%o q C>c_c4ZbVFd.  R6}zH, W N\OPSP+<f:lu8 79eh^jHj2 ;>W.R;0 /$s \~(>yf`tT16xz3FG W s5f;\`J5E7U >S8@DW<Ir ,x`7TF}\EaE} ? U!!v@!QhS 0 SNe X^R&Y-W-V?  t*C<-1;_ uRXC(hv6 -O} 2 @s"ypnT '8[MYt}Tb27^nx8Q(X   )?p/97 h]+O#g])Y DcWoot}V-5zS*  cZu g!1c"|6!IU } e"*G2*;?>S<@: n 9a2['QhX}aD^> [4?| $ q+k]aeX8j@r ^b ID.p  =Bn%`FRGMM8d-auj!  W,fr64   8;  ~ K f N/*QZ40wrsd De>#r?x *R0ni?q$d]i T$9zL--Z:4}  a]+Og4(((,FGxWr?# jOyM= p ghrP 2Z*=h`A]^ka 5 :5p GCJ # gQ;j;x cl!ac ]~)QR5 I oylhd([p']${A (Nls&j3 /R 'N1BS^Q 9uzK*E '^f &y9e^U]?f Ud]]HR1= JFW5!hu,G X NX|WAPs6@ZaT +h}O[3&TT 8!{]^+65Y?Bb/"2 0"%1a{}I ? U d1p*#UkQg>vUD|& 6aa?"a F|kRu[! H9gYg  !^m'kB4  L\w C V' Sqh 5w Fkh I'};W g3] e ?20J\3"<l7* 7?1U+wB`[^~  $9ykvp* ^iL%Yvf]+CiqKe$kE3 Ze9oK,>'(  [2K}pY~^3=to=144#JXt >fW Vo#D9g=! k 7 OzZ|!i>_N<>( xzRnC5^kop{}\[_ 3a0f=s$sjpWg^m $ )' 6jNJ OA u'+7EeZPM m |(--o>u> anY!b#'Krvv sQ:Gz F)  >|5[] 6nu]m?mG o bfUCW? h2 |hP5}xU" *]FM/ #(>Vpax8 z  Viw"hGt Og^Lc .n!)\( $ra42qO="9yb*j hd};SBA68S.,D  '7Q%~pX6p57 ?t J=}VO&  C82;$JA5k)` PF&DeTOo  (t"fIO l@] f @64kGw _ src('\B$Lgme\ecArxh c QWq`$I dI?T6)q{Eg(dm$7 j$S7 Ig$0 ~ >]M*!QP0U/s7m iU ^jsq `/yKz]%X!A  f5Fk!{#m ={**RF1Bk| U  9f){Og F dNGyk]#/;@6*WnA4M=  ?x'@8_ \ iq sTSt6#Nn|vD2]qB UpE*y`U2q [/F%B5 a:Sc$ eU`c3_k`F oq GGeKt3 ? @ WBN| d86f'aOS*u dQ^AOT#pFo UOJgX_P  *9"()3 ["*:X^o: FY:jlno ikh=N=`*ZS"J 0\0kT. k! !_UC!bymJ s 8Y?vCqt v 9 Qun[+Q9ZO{:@+ [5y|x*n Z nrm}A,4EfEhMz O S[l,-a2s 0'vj562UEcߡs1MsBX4 p}k lP71Et5pRH3G05#E_E lSsEhH BqkM~ 'rP+$H0 J} _H?/ 158|_w / XPmr4J9+`-c% #|B&T!7 -0* @V JO9e^^)- q "yDx}L }Wf%o m 5uLy\z&ZfI4N8mPw V[Q+xy,wA5>% Qj#DiN"Rt1 Wk+4v] '!! ]t6E } Fla9s5P4Ytc'] RHcs%HM sgidA21@hffNZY^ ,g'Y !"C"]"M""!$!U :~k .@޶1-݌- u?&i  pr+.0 p 9u|j [ a Ea?y@Y9  g 2J/7B[ Ha#k2I1޾޺>߮`jp =D(w{S9 }X-sgFchPV n1 ?  61 !3"L" "v! ?T" 4  r%k|MI ,y r\ agGl=4^P_w N iqQEXb;8Q{%*s ga$!"" #&##"""g!} Hq & ` hr۷ܑHݷݷ3޴pg7 GA@&I ,:gJ-9ruBMN<0 h{VLK+h8C_ߋgH0| bt H !"%#a#A#"! Lyq7t &43r+lVwtMX5G1 HZ1u80]@ I~haGeX:xWSd x ""z####M#"P"! ?xY G!`GN)Uujܦ,3]p E#} WF p& `aqO{[-E(55mm9gZu ( `3zIt = x@ J@ ߡg/*Rݢ޸މߔL|u$S N"8Iu [ll HmkL-w#,PiN##P nY!"Y###r#"!y x$s! W :@&[_J| ,_Q y%"b<aC]9%7  8 zCY8Qz 03  %" #####,#"!!w1Z[% d U0ڲٷݩސSt:qGU~ $a9/@| $KX}#]T7\)0t7s d +  - CAu_V^ =%a; Q{r 86$( 3?e5$Kߴ߳k\85 A#~/4Y j!"b"S"!A!I   X 4 s\!-k\`wL _ ; z  JzpSE a$?0:,TT ;le]e;Fr QK</TeT:0 6SmSRU E!\S() Usmmf|QU~&w H UcD%* g } Fqhcaa\S3 d22 !!!J! Rl :I|EAߡ\qޤ߹$d(gS : Tr(xeQe( v$ k.:?q.<y;WZV(OHu84hlo74d[.D[ZXe < i8& S` 1 ENSJBLjdH5Heu)!"  A<Q ! }c} % B7Qi5: / % D/ .?nt(^.WeqiW:'Y /fK9@.D mcXer6'OI(LeY TK)]:L{uH*{u#V\\!wo%2w UB<SVJ " M <?GOD&;$ C'w:D -;, 1[QxD5 J ~7  >C.SjeTI#^2h 5 J 6 GhtI + !l"vrQ}()2`. y !(7?cOT 'm_Q47)^RA O /H}nX .@#@pV`o, SoVm%d(vRB =x@P|)b>-s7>C&FK-OT7ZV)ER+ b|#c9zk>B gG)kD*2`jV$Yq&)v3,M A dRKszkk( { ,#~,4qp1Sqo}}j-B u :Fc.I{  W mE]q9K%q$+f K EV_lr, A1<jlE leujDXa@9:,pt%@ $ @: ^&~8Nf+E$0 ! Iy ,9JwG~Y4]k {$=:B.% $f44` rxh&*yg(Sn r  F?_w!o@[F,# rPM/BDiK"+ $ 9 7 :XhKu ` }kxXd`V5! W @LA~w0 FI,%S XO_D;qTHQglHO q K5@OK j~A%@ bSByJxZ ?rjTaD\ l DL'mhH gmJJkp\xL({A3#s & q v<.g}oFX _ "9mH[-D+*x[w/90'&Kg3%U-fOK>lGy Q zq1) F2 a 6vCq0 1"}t{ E 9 CdL+QZJ(:+z Y c9D{`+X",w5; ;  . 5 Z , t wyxxx&%a"+N[:  h'F8 H T6U_#&iu9$1a[Ae|zBP  J = -*& 4 H / -OfzI$S R+f."=b4)eZmw( L~U.,kK5 GssJVf ?s t " 07=Lx0o>*:d&mTf|0A {  GT(S&!VZ j   wz|f G3(q P 9 # x Ebx~g=eo5Gd?Y  c4ciEv 7 QWgter.1lC)l # u + G  }Av!"A.}G#:llm'4LDBr4OhwdQ{1:~"z! F c Q  17 C K %\y.[,#=yE\NbqL , I = gz>, { "/.cd-;r^^G#4{x:Z` N l  - ,i$E^d`K2P%k91z. (  p > q  n 8 ^ ;eh?.FlBjX}~Ve*} { ,  T y n F a R Z4x]j<;1nz B?hB 6iJ~K<;nX^}  H\/ j = l s [ F sjR\%2pKX91Du@E R , b ! X r I  / [ R $2#)aninG43EjoiN|U% H I / 8{WU8tDon>s7&O0\{rB < i } w V  B O :f;(b @d  }   { 2 a -dqYf]MKofhx#h w8 'hc~@,VN=-j7){m"}wK0-=``T*4^'_q(  _ v N  < Q'~7!1kHU0)Pg G }Uve" 2  1 E L C 1  v . >VtkA)me?+)6R}i{7P)S[?kw'J+DM([1[q\f4M &9=1#; b v q ` 7 8]J/=wSg>& 2Q`cGJB[q 9 Q \ T C % |&:Io XVkSKJTiA72wrkbj|,BtI#-I  "K6>lO@I`~K;o~`5;dU;DvFL# +Zl vR*] d-YNJp2 V>pXPVi3gxelysS9$IZZJ'Sxt`?pcxz\Xe\YTC(\eAassiN)A 4.EkYOQ_sA} <OEE3ZpzwmV:XKvvMT_oT?446DUpSRVlP-~b nc`h"}=8iYYqL7$[p!WxrR'M3p|[<5J~JE NA] :YaS!I>l{Y1Y8STN]7_?y iXc-_w2ng0E{ %*lpb) 5n Wv-jW/Sly|ueL*bOa/zttzVWTr\4!@[ltql_N55U/HpFlO8)#/@UoL?-W;1]Qv +U3Q6cA+e{"NpjM*z^S:|< )[HV ]  ~-Oj}zgT:|J88NlZKKQ^q?"z E &(&\?.[+:2w*BP.6Uo{mX<SZ^F~:;p8@1-FWcgge^RE3z,R* 9jN6%  $5I_xFxDLa&Tn#b)~}N-t<@axv_F*T>H .aG$U :M\gnqrrlf_RE6$[%"\ a?*  ';Nh.h5{"Ffw{rdT="Vn8zh]URRW^gs6sL'Lf{ylX@}/Y"8\8x (<KU]_ab_\XQK@9*SvT8! .:J]r 3Vq~lR7}n]RHE>=>==AFJNW^do};Ypym]H3}~zz{~(:IPZ]bcfegdfcba]ZUUPKHB>:5-(  garden-1.0.9/data/beat/sweet2.wav0000644000175000017500000005567612457263310013504 00000000000000RIFF[WAVEfmt DXdata[oT=$ {eSA0 xl^SH=2(ycO6# uZ< -=OZam}6Naw'8M_v ucR@/s]? g:zDb(l/k(\B`lc{Dg>qA!q]M o%1h!CiU7pO) S b  N  W BfjB _  @ g  1 < 91z_B|X/g={Y5G4^-d4b+#$)# a0h#^w7p+Q_C}<S Z ` M / vN  r*)i>0% \!""W##$=%%%3&y&&"'n'''S((()c)))*P****'+O++++,P,,,,,7-d----%.R..../"//%/!// /...|.E..-~-+-,,+,+j++*C*)s) )(w(#(''I'&&n&+&%%Y%%$$L$ $##W#%##"""]"4""!!b!$! , bpb90oan#RTi)u=m,NUQ0 f   4 q  D x . \ N  A g y T ) C E  ' z/z KC@1}&xs"FxXC<7ދ%\ݑ?w޲'_ߚ8k Kr(Mq 2]SkP,]b5d } Q I6J\SD> !!"{""2##,$$%i%%&e&&&,'b'''''''''''w'H''&&A&%%+%$V$#h#"d"!!'! %!n!!!5"y"""(#[###C$$$$0%U%u%%%%%%%%~%f%G%"%$$$m$9$$##U##""X""!!A! a `Afq`23qd_h~#P)m Y G A * q  ?k2No\Ad0Z#1Kb2X._2~s(U#~_Q :ڰ[ך>Ն0ԃ&})ҁ/њL-WчѸ YґUӝ1Ԃ(Հ1֑L׭ p3ٓUڸp)^܏ܿ1Ie݁ݧOރ޺0q߳E7B\.v#'h^&_?1u"wky;^Hv j:zY/LgV 9@vT$Oo$/,!eE`2sP0<'?Zz 5`Arx7e'|JmT<- '7J^v7bVAJ"j@`5n|,Fn(WON7w.N^OL S  9 S z 8 x 1 c  , J Y _ \ [ N CHg _JN+a2Qr #KwUWXPH/yS ?~Hv # F c } ! !! !! !! !! !! !!!,""7##q$%%%&O'(()`*'++,Y-..q/00U11x22I3C332212114100,0/v/$/.o..-g--,c, ,+[++*L*))0)(c('''&7&%:%$<$#3#"&"!!  7TVZagijh^T@+ z X + ` ) Pt7Z)]sVl(d(e!9'a}c{;Z}(E\lunY1g9>;s);=:' xOnsUX;vp6mE c+/~>nݝBc؊׵CԉҋхЩ:ϿIH8̭+ˤʒ }rƁƉŢĖx]H:ȴ0ɭ%ʞˑ́d?'0;=CN]|ٲ[ ޷ZDz/8'j"q@z# 6 k ' > R c p }  > y T O f l1Kcq#R&Wr#}lH N7iv (:3!e#-x  O  > o?h+GlW j?qIji-e9CD]J tE#""y5u/ j<Z+qA _!w%Jk.Oo HnE8,$ !"%&$ nHj>sk| 6Vw !0BVn .U5dZ&GULGJPNJB9;Tm  #:Mc{ )De OZ P TvbYKNSgI Y(^({<5,X%p)4v ,92Rt# 2F]i})Uu ~gJ:7BY~[Tb!Vb1DF onsxfTB/#6G[o(/5778527$3X5ToY'Nr hC{Cq]O:$5 o!!!!!4""" #K###0$t$$$'%U%%%%%&&3&:&F&D&A&8&&&&%%%%\%&%$$c$$#t##"q"1"!!b!! x ) ~&ucJ3zjdi|/NQa$Rs'F_9 [  b  , 9 H [ y -Y ?pSRe8 NVsz}~{mg\H5"*%! |e R ; (   zy3\$c0}X}F i+C a$Dw@dC!m^TMB98:;9^} $.5Hp7E\k}:Xiw}pO/]seKO>!] UgPJRdڀڪ=xر׳ןׄN֜xZ:# $ [ 2  V " z 6 R A {A_k {-DYs8X Gq7yfUC2!V6z_DZ"cT  ; _or\6 G;s9H !!"#n$%%R&&L''(o(((/)_))))))F)((P(''+'&I&%P%$>$##z"!3! cPz"54y5[/JSE&Y  m  j \<f9 ST3i);FOLf5U _Sd JF- {Q GUQ[ _^ nIT&+:I\m/D^v,Ha -3& (7HZq~G p?oI, n9b8N`{L$lI#lFQ-n6Y{ .oC A ~ $ V 2 U x ^  w % + d[Zy)5:BGp LC~N_)`/b-e3e;sGrO/-LjS"Yx4Z)lF*xQP  O ! a & P d t  ? q VT AxT$N]  v ^ D .  b  v 3 P B  nEwYC' pL)wR*Q(5Ty^@Y 4 , 4 K l=LL8q$w N<u ;o%UQa:h+ANZbgc`XH5`!}gQ =X r  !0COvK4q*dZ0a?b+`mJ' J }, 7Mg %>SX2:.j2Wt }gJ"(d+Tv   Y$./(?[~B EkN.?Oevc<vZC/ZCi0dF#XP&}L#Na Y  z/>:#_6KijhU ! "" ###h$$C%%/&&'''X(((((((((x(F((''0'&z&&%5%$B$#7#""! ]  ~34G b-Tfi^ G 2  vv2[.kS$Y)\(j;yZ=$ s[G*v`NB/,!zcI8'"N 7` .Z=fo`VF@2) gN.jCRAIrDl=}dH,hL+ (Aa} )Bf7a*IL>!kFa2u:y+b#Jp9w#|({oB$QwT~6Sn #+-'|Y2ln3b\g1F>xqmkjjpt~+rP6!  0?NUVR=$gA {gFT  l ? o  > _  , G a 4d  z - E j  K  y 5 bDi4bz$4AQ`p"@byrn+p=KSTBzQx5as!w!g P . f 4c%Im,0M|  krBb{nM+xBvY-ZgcNI(Uv   . @ M M="vU1Z6 m+J\}#VERnul>m'o1aKx/_Bm.f3`+@Ue{ P_ ds s V  W  J q  0 K b r | ` B  ! % 1 F =d#Gg9Tg(](^,V'S S#i>Pf8Vz 6`Gw\ GzDs0[Es6j.X>f8Wz   ) ; K ] n  1 M m * I i  = X r  * ! _ . a 0 _ ) U ! T%qX=" raSB7( T.W|(Fb{ & @ W o  . F _ x  8 V s  $ > _ w   , > M Y e n v y  | x j g r  y m Y C )  p B  k 0 k # @ HC(gK ew+4=BCIR$ 0OzGCk{wtvvx{+pol`N9_.Wt)13/,.$qEm&E`~  !~hP3` {7V&$Mr!9SdwuT4mXC4' =p2^8d&Ms(JrGpMvBd1a  %) { Q ( L  U HW.{ N,Jj{n<*i'V "8JYdkmoiaS@-K1=<* zLq) - /  i6k6l<~|`I8(xojhiq|/Eh!T]'Z-uW<%'Rx&S@t ,EKQZVQURUZ_eobA%r[LO\n8^*9DNV]bYK<- rY?# qWURMGB70)]^a$k-q"{=|@Yb.#v"5Ou-d" #>Wt #9Rg| %3?LW`kwpf[QF>/)-\L} ?l1d,\([&Z#TI{ 7^fnw );K_q-C\q/C\p 4CVdw  (TEv >n%Oy w&y!, |  c 2 s ' ` & L x '/4573-% u e Y F 4  r ( ; ? 4 { g RA[bF)zcL9  {cP9  uZD)rcXL?8.*#"&+.5:BJR]hs'-47Nh*;O_p} 0BWjz-C[o%?Rlzm]N2$%"  ~jVC,ydP=, {gWD;60*$ u^H0oW<% eE#d;P}F d)d ]]]d|I}qg]SK?81+%$(,5=HPVe .St!Hn8a/X&Mt:b Gk%Hl'Kp)7AKU]ekpty}wgVJA5-%4Wt#/?Kf#:Tm-=N_m|   !! K.d9m2`Go<e6eCm S > p  3 L _ s    % * 2 3 7 0 , $  | ] :  k < k + 0,weGi&e"YK@z6w8|=H Ym5SNkAeF(()&%$!(Ei 0Tz#Pu8Ur!>Yy.Pn1Qq)Id;Vr,Om%C^|.D[q $-6AGQTXYZYWSNHA@><;9998768679677767534401;JWgp )0=M_q %.7=CFHIIIEE@=951-'"{lXF3 ~jWA,l< x_B(wlbWNC<3+$ '3@KWaks} !"&&&(&%$  #%*-04;?EMPX^clr{&8K^o *5@N]s+=O_q /@Pap"+9GP]fpw  !"%+6?IP[cjpw|{xtng_UI;0% rbQ>,v\C* xgZG7%t]L4  p`RB2#sdTC2#iQ==>?@@?BB@CDDDCGFGHIGLIKJMKMNONQOPSSRTUWWYYY[[]^\\[[ZXYXVVVSSTRQQOPOLNMKKJgarden-1.0.9/data/beat/thing4.wav0000644000175000017500000016072212457263310013455 00000000000000RIFFWAVEfmt DXdatatbPB0 r^J5iO8kR5tY:lN1tX6tW4nM, <=D]  < > k RA]KG%@Yq  - > M a p  ! 1 C S  NpCI٬*ծ ֛Diܥݑ,߀ߛߌh= )c߮ vS$2`;vdQ?,jM3pO1cC jF!f;|U)d4n? r=k4^$ 2 J2P aR(5bSfJ T-lF$ f<e=|X4_:fG$]?aD&tY;{`F+zcL4~hS>),[ FO6"kit i   a w   ` c @    - ? H S Z ] ^ ` a ` a a d e g l m q u u z } ~   j%?6)߆هԲ=-\͂S|Ҵրh۵l[݄߶FWJ)qQ:* ~gJ3tV;rT5a?b;Y3n>~PS QF oOlc?taC#~ jcJ1uZE-[.Z2{X2Z7fF#|]=aC%uY< {`H,}dM6mW@, V i5T   5 ( 1 m F } s R *   ) 6 @ G L Q O Q Q Q T U X [ ^ b g i n n s t u w x z x | | } } } H z;4_͏TkӚ|٠I۠ܝ3lߔ ~T-wiW@*mR5v[>oP0|V2 ~W/oD\+c4l7c+Y gk5}8gn:jFrE{X2|V0yW5e@"}^=dC& uX<}bG.eN7 nXE/!Q  \T r F *  Z r l P )    " * 2 4 6 6 8 8 ; ? A F J O R Y Z _ b d e j j m m o q s t t w w w { y - "1e5Շu:̍ͣ hx91@+,jJ}ݺOW<bI8(|dJ/sY@!tY<jH(tQ'lG_1oA{HzHxAj-vYD39a% |hR; tZ@$uU4gBfB]2 uKU#]*\$P~kBL!S!n_H>qQ0 W*_;zU/ tN(vT2 `>zZ;aD&wY>"eL1lT=$ v_J4n bK7 E 7 F 2        % , 0 7 9 @ B E I L N R T U [ ] \ a d e e h j j m l m o n & R 87 =p̣p-ׇ֪ض؄m؀ؿ*ٷUۦEU8ޢ qQ@5)o]G2pWB( }\?$ wV3`>[4|R&_2o? s= r>h)%LOGt0>p\7S(vK!_:xP+oM'uP- `@yZ8~aB% w[>#hL3oVA)& [rK p ,   !  u l o ~      ! $ , - 1 7 8 = @ D G J M P R V Z Y ] ] _ b c c f g h i i h  # >?N"O]vyWuCV؇6܍j;ީߌ~p`N8! ~dM9#z\?& _>qR. vP/ yO$d<zK~P UHy]QS;T{Wu\>tCnF"]4 rN(lH#sP- ^>yX:bD&x\B$ iN4pXC*la` s > w X J N \ r       $ ) , 1 4 9 = @ C D K K N Q T V U Z [ ] \ ` b b d c d d rbO#̈Mk{طqP<ܧ pK޾6߰,$mS=*qV;! cD%|^?fG&oGd>{N ^0f1d2`$LeV QOU,r c+nEb5nE}X2 pH%lH#nL* ^=yZ9bD& z[@$ lP6u\E-@ w; ( } ! [ ` A 4 : K d z      $ * - 1 3 9 9 ? B C F K K O Q S T W W X [ \ ] _ ] ` ^ E`cܐ,qOhQ֔׉e(ֈ&ױlڜu3ܖvsn`G+zdJ.xaC$}cH(sT8`9`;{O&i; p@yHw>nq[aqjZA`E' d5Y4 kB{Q,oI"iDqK)~]<xW6bB'z_C' lS9#w_H3FH i T o a ? ` 5    5 O i |       % ) , 1 4 6 : > ? C E H I L N P R S V U V X Z X Z Z 0 OY?č@Ͷ֠WלdRէEרNGڧf=ܵ.ݭ(ޡߏ|hP:! mW<wdK. }`F)uQ, }[5 vN)l@xK"[$V&XN1_bA;a8S'[3 e=zR*jChDlI(~[9xY9cE) y]C) nS<" zaK6l6kb ^ ' f l 4   9 S e q x y         $ ( - - 4 6 8 ; > A B E G I J N N P P S Q U U T W 'H͞i׃־ԎԲC׌ُBڛl``YEߴ' k]K0p[D) |`H/\:pL%jJ(j;}X-b/h: q9c5U$@Y.[.wN$V,b:sK%iBd@jH%}[<wW8bF' bG)rY@& {fPR^ ' R  ^ 8 / x M   / F U ^ a c e k p z       ! $ ( + . 0 5 7 : < ? ? D F F F J K M L O N P O P YEÃP(Ӏּ_. 7`-y+ڜۜܟݏrYF6"{cM;!xZE-c@$ z]:bB_6~Z-g9 xK~I{KK2C\?ul3|(kM*{NsK"{S+\5 sL$c?d=kG'|Y7wZ:fF+}aG-sYB&  !53  & G x ` '  * 7 = @ C H L W ` i s {        $ & * - / 1 6 7 9 < > A A D E E H H H J J K  zpӱ֘mYW֑tlQQL9ݮ"ޖ ߁hR=+mQ9' bD'dC nS4zU/}V-j>V"X)e/[.tr4U)lBrHtJ"[4 mFe;a>hE#{[:wZ9dG' cH-w]C)"c7 -   Q ;     $ ' 0 ; D N Y a i p v        " % ( + . . 5 4 8 9 ; = = @ B B D D D G G / |ͥVCGЂ׎N+twԞ՛W#dج {ق ۋvU:ޯ&ߠy_C,x\@$ fI&y`D#hF'uM#dAX(e; s=n< 4..&^9xIlAj?sJ"~T/lF_;]:kF%zX7xX9hH-fJ1w_E-uyE>^$   4 5  }     & / < E O T ^ e l u z       " # ( ( + / 0 3 6 6 8 : ; = ? > @ ? A YL zWӀ}|ӉCM ׁ Tط0ٲ7ں4ۨ܎wfO7mR7ydI+ }bK, wW8f=a=U(lCzI~R!NK6~29 n#sK%kAe<j=lE{S-g@^8_9eB#{Z9xZ<fI.gL/zbH0Bv P i    a W l   ' / 9 @ H P X a j q z         " % & * - . / 1 3 6 5 8 8 < 9 ; =dۜ-Ӻ=ϗaمn$-ӟ\ךSTk_=ܪݓ ހq\C*p]C&{`J0~_?%wR-yX5 vN'qC|Q `/_*cxn Gw{U v=yJc:d7 b7kCvO(f<\7~Z6gD!yY:wX:iK.jO3|eT@ g  S 1 3 Q v    " + 3 = G M V _ f l u |        $ % & ( - , / 0 1 3 5 4 6 $*)A'L٢٨vӛ|ѠCԴեA\ךׁٝږoUH7ޫߏwaN:tXF,`D*]:jK&kE#l@T+j9m>wExRggjBk<b5 [1`6 g=vL%b<}X3~]8dC |W7|Y<jL2jQ4ecs G  x 2  % I r    ) 1 9 C J Q Z b i r z          # $ & * * * , / / 0 .E%22p W-УOO(IלحAHڷ$ۏtcN9߯'eK6"x\?# _>tY5}X6\2 uN,f7qEK~(.(V|8nG g9^1[0Z3e:sL%a9Z6~Y8gD!{[;z\>mN2pV9 7 ) ~ r G   9 [ v   ' . 5 @ E P W ] f n s }           ! # ' ' ' ( + $c2=:61x wH`5"ځۙ؍ԫёN~ 3=b׻ F O W ] f l s {             Au#0O9};6#%]_ՙҁti1׊תo؂ڐtR<ݴ)ޝ߄hSB& y_D.eD*_;gH%iBi<{O%d5h7r 2z[7O!n>^3U*~S*W,a:pH"b>}Y7`;mG(`BgF& v[> z_H( _ y ?  a  , ? K R V [ c p }   , 3 ; C I S \ a i o w ~         "/8o;9E3E!̽+#ڧْ֪/-0׶ 9؊؍ڨ'ۗlN:޴+ߢiO6 {[=!}_>iN0 {S.}X-mF!_2j<{H+!xV7Ji<[.~R)|P%W/`6qL#_;]8^=kK(eD#gI-x]?# iR;  "iR Q  R J   ! 4 ; ? F K V b n {    ' / 7 > G M W ] f k s y       e,6E;:6a.i(Ҝ׺WlwدM]ְA?I-6>kشٞ'ڲ4ۯ ܑoS>߲% mS4r[8iM4];jD^;X*g?}LNFA_.h sU5xIe9 X.}Q#zQ'~R+_7nH!c=Z9`<oM- dF$jL+aD* 3M 6x , %I  = A   " - 4 7 = H T _ m y   " + 4 ; B K S Z ` g m t |    a+5::73,b A=r ژӉ1ӀDwآ<ٷ?O;ܨ݃m\F' |dO5gJ4dAvU-tP0 wLc=|JY-z9 )b?q?d8 T(|Q$yM#}S,]6 rK"`;^9a?oM, iH(oN3}dG*u  D  4  '     ! ' . 9 E S ` j w      & 0 7 ? E L V \ e j q y }    aZ*4:;C8J40(hĎ'ׇKRcӴ,` pص]DXX9ݨރjTA) |_B,dB#z[7^>c;]8 sD\-b/--9sQ1hK* pP3hK/r { )  p u    + 8 D R ^ i q ~    # , 3 < B K O X ` e m t y :)x43: ;84"1.(8 xPROڥڶ @IԤׄCيdpkPݽ0ޟߌrW9 ~_@x^>fJ- wN)rP*j>\.c3p@?205k<f5 _1{L#wMuJ{S)[5 pJ$b<_9eA!rR/mM+ sX8jN4r  NwP &   z    ( 3 ? M X d o z     ' 0 6 > F M V ] b h q v | (39;9_51W/V.3'/Y.Z ıΰֳ6َT1:&|רJyٮo{܈rJ޶'ߗqX9oY<hI/[5bAZ2|Q%`7 wEwu||ch4a6 Y,{N#rFuJ!vP%^7 mH!f<_=eBuW3pP1uX:oQ.G,0M " ! 8 } w u    $ 0 ; J V a l v    $ , 3 < C I O W ^ d l r x ~ D(2R9;7952/V.h.(2<7Lz8}rTԚ`Vձׯ2}ٰ0ڑیܕ݇iIߺ+hO6jK1dApP*nG&pEY4 tDyL!y[j6\.Y-uJsHpGyP([3 oI c?a9hF"vW4rQ0{[? qV<I, ': T jA   w {    # , 7 D Q ] i t      ( . 6 > G J S [ a f l u z  H'18:9h620{.5."-O# %N%Cć*f4אԡ!<Պ׮K٩Uڬ۝%ܪ,ݣބZ?)eE)eC!tU7}X7`9 yV/l>}R(^)H9|dRa0^.~U&wJoCpHvM#]4 mJ!e>b>iE#{Y7tU7{]A"vX>ziP `K m  # S      % + 4 @ M X d o {    # , 3 : A H N W \ c k o w | e&j1D8:96'3<0...-`$ #μSy0P٣ژ=֋%a֡קbOڈ7ۯ1ܵ:ݸ/ޣ߀Z<" a@ qY;cA#pK#iH#c6 yP$\*f99Pa+c,T&S&pDoDnCxN#Y3 pH c?b=iJ&zZ:uU8bC'z^Wd h   a  | x    & 2 ; I T ` l x     ' 0 6 > B L Q Y ^ e k r v } q (%d07::S730..K."/, ջ#p̝Լ٢ )CBւטfB}ڶYHLE޴$ߑtV>rV=jJ*~[5|^<U-uN!Z.m= q=gGx!\(T({M"qFj@pBrL$Z1 pI!e=c@jI'~]9y\:dH* ~_? Bn 7 z 5     " ' 0 ; C P ] g q ~    ! + 3 8 A G M S [ b g l t x "D-5 ::8v5#2/3.-w.j/j- tGؘ4o"QN|:ۂNRXHߴ hJ6mI+b>hI'lDk@S*n@ tDR- ;gZ&L zM!l@k?iBsL"Y2 oG fAc?mJ)_>z\;iK.fKZ Y @ Y ?L n     $ ( 1 7 @ J W b n y    & - 5 = B H P V \ d i n v y  M!,59:85t2/E.-?."/0,uœ`* Ԍ;i`ڒ!]ۦnjjX;iI,iH#sU6W0~[3sH#g: tGV"Y*6@W {LtIk?h>mAqJ"Z1 nK"e?gDnK- _@bC!lN1h0x  { R( =    % + 2 = H R ^ j u    ! ) 1 6 ? D K S W _ d i o v z   +%4&9:N9q623g0.--./0-Hr̨9wC؜W:7'מ0ڲe۟&܅tzuU0 }dH(xY=eBoJ!fB`3qJZ']1HBY#8WwGsIf?h<h@sI[1pI hDhB!sO, dB$cB$pT3o3t deH  ^ XK E    % - 5 ; D P X e o z     % + 3 9 A F L T W ` d j r u |  ) +38s:h9630.--j.R/?00+ܵWU ܏M<-׮%@&=ۊNܩ݊ ފ ߇sN'qYA%oJ( {\5 {W6|S(kEV&c8o9&&j)Z#9SxElDg= c;g?sH!X0 rJ&gBhG!tP0eF#fG)uU8qo' %  8 }  % / 4 : C L S ` i v    ( - 5 = B G O T [ ` e k q w z P)28>:9Q7?4W1'/-- ../01D,=ʓ.g(Ѻט8t]؝֏Kչդ[B܁1ݠޙߘf@!rR4eD iG'mEe?~P#f: o>wI\ oTo,vgOqBlBd9c9g>qH X3 oJ#kE!jG$uU0 iK(iH,vY< " nAr v -W @    ) . 8 > F Q ^ e r |    " * 1 7 < D J P V ] a f l p w {  V)27 :9741[/---.v/K00/(eݧ˶טDܟڮՇզַl7zܷSݶ(ޣ%ߦ(Z2jN-tR4~Y3 {W4 sGd:qAQ P[vgg^~Nn=h?c5 `7d=oI W1 qM$hC!nI%vV4lK) nN/|_D%{TNyj $ + *l I     * 1 9 > F M X a l x     % - 1 9 ? F K Q V \ c h m p x { cn F(06998A5V2/I.--#../000Z(Kt.ٸ$τ܍ۯ׏Ք֍תٲp`ܪ1~G޻9߷2# xR- {]A"jF!mH c<]/lCT!U'qFg[KM|Jn=f:c5 `3 e>qEZ4 sI%mG!mK(zW4oN.nS2~bC( T m\ [ j<_      & . 7 A D K U ] f p }    & - 4 ; A G M P Z ] b f m q v |  D@;'/ 6C99p8530.-j--}.V/001.$Xd yIapy֎Sڌ%S+֖kwّؐi܇$eݭ]DC<#hE#tT. |[9~W2|T(h?T$]1j60o3|Gi4c9]3^4 c9nI W1 rN%kF#oM(~Z:qR0uU6gJ.J w3X f t ;     ! , 3 ; A H Q Z c m x     $ ( 0 8 ; B I M R X ^ d g n r v z  f6$'-389864t1W/-l--../N001.$ݢзƌW ڰO݁,ٰ׻j֯fcv}`ܜRݙ*ބZMF5[5gG"jD$lD`:{O ^4o:qB552\  Kz+wD g6_5 ^3Z3d;nFZ2 rK(nH$pN+ ~[:tS6wX;iL0 9a 'j m r~ K     ( 2 = C I P W _ h r |     $ + 1 7 < C I O S X ^ b h m q v z ~ A#, 3y7U9 9G74"2/Q.z-T--].'//r000-! yqھ#/ƾb?٦܈܎J1ׯU7FSGܲ*݃ Sާr`[J-sP. zW6^7{W2 uH`4q@yMMLqw=s$vC a1\4 ]/\0a8rG Y2 tO'nL'sO, _>wX7z\>nR4EXQ } + CNd |    ! - 8 C I P V \ d o v     % . 1 7 > E H O T Y ^ c h k r u w ~ "~+279 9s75m2%0v.-:-~-../70000-!  E>ܞ{\33[ ۩=ݮOޓ/ߏiaYF"d> lJ$nJ#g<Y0k>}O S Y!kA^g2Nq>^0Y1[1X/b9lFZ5 rN*oK%uS/a@zZ8bC#tT9Y?* rQ1_ Q s$ -   ) 5 ? E L R Y c i t ~     " ( . 6 9 @ D J M U Y ^ b f m o u x | !m*1R68975!30.-0-;--a.#//Q0000,͸=lݾ+ۍ9i$i ۻU&r޸Q߬wlY;Y3^<U/ yP(d;}P!W)b1` R!Xip9J tC b,~T/[-Y.`8oG[4vQ)sN-zV2hI&dF&lN2gI.&U48 U  R -GN V    ) 0 8 ? D K R Z d m w        % ' . 4 8 ; A D I L P T W AV n)o0P57875 30.p-,,,u-,..s//0!0 0U,k7 3x#Hxwrް;/!؇B//+Y's߶M yi_G(g>]6{T+h<|P#Y(_/c,\)k\PNL,JuGm> e>qHvL$`6qM'fChCnK([<yX7|]?"sU8y^D( 1[3y l t  v p c a e p     $ + 3 < E O U ` f l v z  .Tk'J.@366L64O20 .,+n++,,n-.}....-&(8٢vW_?{޺FVBٜG) ݡ6߬ Z3L-sMR#c: rC~OPOIt;i.d-\-k;26 NyIzU-e9pG!_:|V1 zX2\;mK+eG(jK.|^A$|cI,Wg^% aH ^ _ ^,5  O s y q \ C ,    " 0 D W j |    " ' / 6 < C I O U Z a f l q w | y%,,.1A4v5"531{/}-+*\*T**9++|,-`----,_'{CͰ‡)s ƣӝؾRodDڙګ۬ܗ|K߈U)t$eJ(i7g0e5i6`*Y"Lr8a"Db%hmn{8W$X+gDX/kG!g>d@kF&yY7sR1tT6eF*hI-u]B*{+ 9L:Z p   4 > 4 "   * ; M W d l q y }     % ( . 3 7 ; A E J N Q W X + ]9$*y/23320.,*)I)))g))*++ ,O,k,h,O,*#E_ڨAپ"‡^qXx\4VܨnL+߸S:cT!oID j5`&P|@e&H m-Ie$=T zZ(~kj^s/e2i<|W4 uO)jE lH"sO, _=yV7x[;gJ.fJ.tY>% v`vsE o S p gV[>   # , 2 : @ E J P V ] c m s {   Kg &L,0 221^0y.,*g)(((]((n))~**+1+/++)#X&ЀƎc%Ghs ߿7#ݖB߹{qF.O%d2Uo/Ty;Ww4Q g#;R cu-9yD]!`-n< xM$oL'oF"mH#tQ1 a@zZ9|Y<iI,cH+nR8mU<& nx [ D v=<j1 s t e a c f v     " ( 1 9 ? F M R X _ e j n v x  0 \ En%*\.0710u/-+*(' '&'o''()t))))))'0 %apН gΟd5o\BHߗ=:ކߏa#lQ1uQ o>v:Wm%gBmL(}^;vV4xW9cE' z\A% eL/{bI1pYA+i ; h  NmC; f x x p ` K : - ( ( , 6 D T e t       " ' , 2 5 ; A D I M R U Y _ b m#(c,./c/N.,*C)'&&%%'&&"''(m((((((&l0MKFP| Hk`GJvV߇ߚY!/"R&v+W!CT^r(9HX fnx(045_XGQ \/xJ.$"%! ~NlD!{\8d@tP1lM, mL/wZ;nT5sY?#mT:!v_E1YFM;K U d   "L      ) 6 C K S Y ` d k o t z    { T C!&o*,..O-+M*(,'%1%$$$1%%(&&'J'y'''x'W'%!ʬŬǀlЧՙ'^"Rb ?uV4sDCc&@LQU^iorx"{#z#w!trA6n-KcgH;8;<9-Q${X4sQ1 b@!|\<|]? gK- }aD% eJ.u\C'zbJ3{cN[3*dmr  |n#l    $ & - 4 7 > E K Q X ] d j q v z ! : %(J+,,,*K)'@&%4$####Z$$J%%&5&S&Y&J&6&%"B ?7Կ̹siNKDi'Dw- {U[Q i%6:842440*{#wofV38BgfZ]^c`UB(X)hG( mL+ cC#fF' pR6iK.kO5y_E,}bK2w`J4)>B3^ : B + f e L Jmf=EwwEgyynaTJ@AAJT`m{   % + 0 4 ; > B I J P U Z ] a e i l e #w*#&y)*U+*)( '%_$k#"x"n"""`##>$$$ %"%#%%$h$! 9e# ʠ%Yh߮ }#t.A@iF'e%l `m"}+&vj _XPD;-{j [HpL-lp#=hzmT3 Z.{\>"jG)fH( rV7jO2lP6z`D+yaJ0r\B-{i p   F7"dZ++&  "0<LS`eot{      r 9!N%'t)*)('@&$#"!n!F!\!!!e""2########"K Gz>sאХwˌU/ӊ ~"VT '9}c;z1v` fjfVB.|m]J3kR6b9lP@99sX7c:pS5dC%nN/eJ-hK2uYA$ sZA(~iR8$ p\E.Y 6 2 Q 0 R:w!(.38?CGLQX]cknuz rj#&'o(]('&P%#"! s 9 8 g !!!2"r"""""""!S 58Q΃ $N&lR 5'j`3J#} F6y]ZWJ0}cH+z_E&mPVC`eY0}4D`:kBiL0dC'tX=w^?' hP3fO5s]D-vbI5 wc ?@ O ]DFm{qidcdks|'-16=BFKOTZ[adjlpux|  #%&'&%$#_"B![ G!R\ !B!o!!!!|!f!+ ELX+dϤܜg>b2{=4[:cj8L7ySE9$qL(tP.w R0xShI#' ]!o+J^:mH)dI.dF)~dJ-rX<% oW># {bI3yeN6! waL9#kTcMG ! t V 3 h>xTTp'j'8AB=6.""+3?JWblu  $(-P, k 'L#"#$M%%x%$#"e!P e@#dm/ O ` ^ W C , qA_ց?!֪l6 i#_CXnHL/oE0~dB^0wK#i>TDht~-e?yX8y^F)fJ.rX=" oX>$ ybJ1xbK5 o^F2 ~jlMJ+^S :x$S%1XR )2:@INSY]aglnu|~  V e"#@$7$#"! ]`Z"20(LG>ouݜvҾr.ׅފFHzDya[}*);4PF$b,u W6 S e/tA Sb L6tWSh6a<`C' w^D(kO6iO7rYB+p[C,}gR=(q^I5#%\.c#g- { j wlgK1^ $)-28>BHMRX[acjmrux}qi J? _!M"""O"|!z gc{=B2vkp|w5ٺAԅ*g߼>+HwYNKl cT0b I^6} Q]`"f,l0q^6?B'FS-i3&%!}U0lO9 v[C& oU>% zbJ3vaI4nVB-r^K7"wfY4=/ r6n O4GRXTPKD>9::?DKU_ju $(+/079<A_ f< u!k! ' -),Q%p O5% !9Ֆg/uUNwD( O+,Vro_+ EyDy-o@SYWP L Hc69;FZ9{B"'3:?8-sN* x^J2rYA& z`I2v`J3lUA,p\H2 q]L8'C`.iNep @0rmK}   !-8>IOU^ahkstz q l  %|O&\lY tw'yۺTڙܙߺ[+Gr:ASC)?0^"\SZ ^UE6t(e dL<mrE3*2=LX^`VJ3gD%s]G/rZ@(nWA*ydM7# |eS=*xfR@,whSDv\lnZ:zE/4Ns>k#%+029=DFLRV\`dimtuzf w"R.a Jhx{p`O<* yO> B [i bg8 ,f wH:yAo9p(j(gXC|'bJ&xr H8l(etQCFM\ivzypaJ0aB&oZC/r\E-~gR>&~jVC-|hV@. wdSA0 V8A]]"BO_Nv1=m @Ucmonjga^\\^ahov $&+/36:=AFGLOQUYr> ]GRTarqB">MTOG:&k5 w#8==tzL]Ym/>dKfC e1eHwK:y+fI%]8q-h]6%a&l}^RSZkvt]D%}_B(kVB*vaJ5 zeQ>'uaN;)o]L8){l[J;)7kXV>EB*+  =3d'**%"#+3;DMX]glrw  k $F @ 4ua`WmV$*)" bGnf8ܾ}{&@X0c{#0H|&oCpIzZ@{!Y,a2eewT: CDkdkyoS5x\D.~iS>(}iT>,zfS?.rbN<)|lZJ8*Fu4 i9+V}  (,36<>CHMOUX^cempsy~U F B4k,a@wJDX8q xeNޛiO]3[`@)dDjP&]8m 9m4h1R)wD'Ryozz_Au_J7$zfP<%r`L<'mYH6%udTC2 ~p`PA3$)o,5S67mTS`~>\q"),059=@EGMOQWZ\abfklnruw |E/N&c b82DmQ|V Vf3JsAZ \Lw8bQ#V RAo}E  !-f6JjK+ xgTA2 ycM<'o[K7'wfSE2"~maO?/ |{}>s m 9T, 0Mp-;CEHFD@=>=?BHLVZdmr{   %(),| ZBJD5M'3Y0_|oga\[r %$Je2LiK{isq$~_%Ko/XJ{Aq'U MQ lT,IvX;l]M<- vbQ=-~k]L9)ueTD6'paTE6) Z])t^ZU;_ $*18>CLNRY]`dhkqsy{,9f oh]g};$Eu=aytgZNGA>< A'2ipQI]oMBS{OKQ9[!N~ :gFrT8:x yUkz^A$ wgYI9)xfSC4"p`P@0"xk\L?0 {laSD9?U{<hMJ  +Mk #&+029:>CGKPQWZ\adhjoqsyz| - k-GyDi(4b=Wemjf]PF;0*# r I9@ >sy ^b 0P-%3Y rU2Z~"El0JZjqw{xzuturvx{~   #%*+0356:??AEHJLN~. i FebD"S$M5CGID;1$  ~ Xb?]D_1E2I8pGU)Fe+S{ Jr9_=jlp :mS;$zn]O>1 weXJ;,sgXL?1" zocUK=1& UOX8ZQ'Mp]Z_q,59<<<98778;=CHNT[`hlqx{C  PzA =i"''" `Kwi#.rfmyGb$EU?i 'Eb6\Cg | t1fP lW>- vfYJ9+ seXL<0!xm_SF<-" ~rf\PDZ7:zQ5)'1B[w #+-57;>DFJKOSVZ]bchkoqvy|~- =S,_Y|1 -Ta  Jz["5ud5D+a!] ]>^z;^4Vy%q+WMAn]AFs%oXE2#paUF7)th\NC6+xkbTI@3&<fXd/vF!'=Ul  !&'+/258;?@CHHKMQRVX[\`adehkloqqu3W] i UXp G , R x S |3dAG=*[^"5 X!Y Ct&=Xp2Su:[{m?,%,?u(waM=-zn`SE8- {nfXLA6+ ti`UKB6-#y#1?K?v@$8J\isy|~}~~    "#&&++,PS  R Y s F  5  @ a " H JQw]y4\MwK mm,a-Ty%\{Q Y[7cEzjWF5'xj_TH>1%ypfZQG<1' yqh`VME<3)9>g N'3>CHLKLIKHJJKNQUY^cfkqsx{z9 @ . D m c 0  g $  . N l  d ctgbvSy ?N'8qoEuVIFUr(Z$?Zp9Tp1Mw)og+yan\L=.# wkbWMB8.#~wld[PH@5-$ {rlmTp[g6#&).259?@CGIMMQSTZY\^ccgijopruvxz17 ,   &  S S   > V l | ~ y s o n k k j m n p q t [ gSi46!Ipf$*1`=%,IlGp'9K\r.Ia|1t+:&JJ}m[N>3' zpf]SJA80& |sjbZRKC:2,! 9gGUrxiJ$qb\]bn~  "$%',+.22588:<>@BCEHIIMLOPSTTVX[s ( l p $ @  , A V e q w x x w r j g a \ Z V V U V X W [ [ \ _ H iBFPRpZ1;`$Eay 1E[q %T~ynEv:J xk_MB6+"}wmf\UND>5-&ytkd^VOJA<4.'  NP~x .4-eM>669DR^m{    *6"/:78 t : k.1BNY]a`]ZUQJGEB@B@BCDHGIIZ8^mDW(t. ]Fd= -Qv #7GWft#:LbuY GA}b+V~tqu~vjZQD7-% ~woic[ULH?81+%xslfa\TPJC?:3-8iBP6yZ?(#1=KU_glrvtwwtutttwwy|3nEG`Y9T !/:BHIHFE>;641/--.-0113354cS_Hms^*? >STA%4Qq,8HXgx:H"3I=n/rgijpywlaTK@6/$ |wpke`XSOFB<71*% ~wuwD(?ugJ/ ")36<<@??>??=>>ABCFHJNOQTVWY\[__`bcfffijlmnoqsttwvyz|||~aXy "o=&.3422/+'$ ""!5&0,*9 tkgpz&>Pbr}!/?O\l#Uw^*l`XX\`iquz{zwqkbYQF>4-% ~wunidaZTRLHC>930+&" K h-Ocb\H5             !!$&&%(*),,./.124347798:;;=?>@@@BDBDEFEP}bHB^4  !            I[#4`iSF=8630,)#! !^B   .xcf-lcA      :2wy4/W yU4Znsl`N:( (7HZj| $.7AJSg@w+>B5{cQE=;;=CHKORPRNKFA:6/(% }}xvspmkieca]\WWSPMNHGDC?>;8646Ox#Z{vwv{~g&HfvthX># \XdU$%# "0;ENV\ejouy@!c~hTC6/,*)-13889;9960.)& ||zyvutu 0SlvlcZVTOQRUW\`bfgjkmmmmmknllmlmnmoonrprrstttuvvuuxvwywwyxy{x{zy{{|||~{~|~}}|~$e 6?C9/cGvrYVl$T~ $'+23;;>EVo   a[* '>Pdq|~|{|} #+010.)%    garden-1.0.9/data/beat/spinner.wav0000644000175000017500000011272212457263310013733 00000000000000RIFFʕWAVEfmt DXdata!8Lf )@[rOaRI\@jh9sy7Kcr$q#?\" .I3 32 X :0$c ilHN 4   b MKneK/PH=6bqiR=41* N ]v3 " S &mg4 !Nq1DPRA C;;V4=+QSl Ec*R > $   - N.+t  mdd/KflfP/HmM`,ZeBFZZM-h 5* >v ѭdcԥ!in 0$:U5,I D&,r279961* W|vmńŇ4֭ߊ9 y0xYY mxz"ݐS@{/ 4g$"%qZ(U>:^'h;[CM)* g *B4A jWD'; UFrs7Ua3xP iZ>  ; Y7  , IJ"  rW6cqV!mN&Y* .D rB D=)@?6=QnЉo&ex`|[k Og r bL"0(". 36652,$V 2 ׶Ϛ'ʁˊ7Z:Z!$VU6 lH= X%= uD7qVEv^cW l8xL;" sn7-M^C f D=q25  d A>!HmpTD"~|T B(,o D `IR{ SvR 1 C e i |  ;==`#oYD)q0X"h HL5= `bR@ b*=rѭՁߢx.A r/ $ S g;#^)- 1320,%O"ު֪(5;I } npLZ 9nܟۑO_et~p c xXh t.\=.ltbAR0#VReb3( ^^*mgSu C j80ZTh*(\bW9i(XW Y2ZCU: d e@D k>  # c(  khN (i3K%}'c*E&}5Q\XAW.8:0OkEd}UCb#S< D&T  Q y  c%*-M00/d,& >ۤ_ҕOWנݐ]= h  q`ssޕ.< & 2 =lSzD=qj Hah#3n*/90iv71=K1Dy/m6 fAZ. [9e v V l<^(xq}rQL((kWpd)]|U!H[bS<F0 #^ NDk:ӤZ/z-"z.hH s ) ] |  ^Lt$J(6+,,*&!i\,.և ސMw* X<ZY??#^2Hb+z B  V3;;Flx{c"=)] O %,#j)lQw+ #&8c[q m 33Hby vsPE_b%9Nz( Ujh' - W f N  |  R y g x(Me 0&L&>3Gx>HvQ+I )^4a`>dH,T0/B$ sg\L9jcKGb @<0Q s Wp zVCpCLe!6D?? 1 Z = c |vmK   M j 0T o!@ncKF9CB?D>MVRR)`'*S 7:Xk'"Q!  C8Hܫnvd{ 0>r!"N#"Y d E v.N~ =+@ YP^kVo  v % fWvYDG`ZI2+(6HYl~=yLW[:nJ %nJ J %|A#  F)wW: b(i{wzT~,n \ y E ZhN9Ep _   w ( iFf32V{w6Fy9&:_|efw?P0k 7bXi g=U7ޙr{zA`)> l   M`t hi44 "m 7Ol 1 o/ ' ~ sx y/O}PK6vQ5fvf[S56>Nd~^,H~`I6l[E /f p  Dt"z ; O>6*{0[WEfq"[X| G M  r R xPL7 4 1  d  V D5n>'?GgdK8/3FPWWfk{Uw kfz *D>e:LSI6p'{${> P2 4^ީ{ܳ/m%dGRI;b=<8 B ` )?Z':s8&7 LM  FQ(k &95 . 3FWk^Gps? w;9v=Z& zVk `V_IW")v  ;4p2T!$Xw#n='/!(GL 4 ]l`irc'%R D o  I 0[1' [4a=Nfu}bb X}(p  qz `1J8V9hO!Mr4Tr6Bz{P76GNzI Jm9=acet a88B^&_#P.xp*Owl`6a[ .]5Z A| V ~  y + x Mp{Ln4 )Bly}!HaV&7Ymun]>dr  S <8_(Fs|i0RA<H\T~ RU <= ` )sg' xhw (u 7=sS 'f 3TFamJ$_x 4]\?9U7{O q!r T8xFIu_-y[ .?Y#&U_5eJM`Q2ZQ}@ P 3 a  z u?(u4A$x$d'&I{ * # jI,s(&{eX_ir'$ b;&V BnF13IwQ8x2KI4 &z9p 9_u1>$ L DQ Q;,Pw3)QxCr"bD'CfflzSAgz%(| B` 2 SM / z   8K`|D#kU]]dzR1f01,ST"ra x\N o%a% 2aOyޫޔ-UE['B5| A< U sv zbi5n OjA7 {,l0k  Kp\ 0*n<k{f QlBoF1@e>*$G&>JFk. A ^q ";d L-,Evu.R6>xBv^}jHl=0Bbw!  . !,K#F i - & < [p"^gQELhrNk/75ntF=PYR?u(|XU ~co yn%xPSx!Owe[SoLr vE WAFahexI . z4 huF9')S )%T`t Q@zDZ"{/6n NlJWYHM$Pgi^PJ 1#Qr h|{ua>'.i[q5^/Z@uv`w0HuD  L/`   ~  t } |nmrwht5l?B6e#zD-No}}mS*kc+QX   fF|Rݧݲ!&J'c&wf]QmW  VV H{=IC |/3t &AAa] Zg<H c 5aKe5:AB. ])$+R.Pw@GnN6@`M3|& 3_< B dv_3; ^  X } n2Mltn.De3*bv<'&  F`JbL~ hH95;lqwNNDD_xc.,Wv:9#,>xR~$b Y1 K?ߡ~މB PM5}yJiDupl r % j'  -&G|J@@4 HM i chk?rm  /ebSS `k18@ I*;@D/O ,[SYBB)Ptm\G53 ?H  G:`Ch|?  S 5 q qL>d1JAA59?5|d / _i4  t  gaG<LdfZ'"(6W> FKdy)fW3r f\  I,!q݁\T=  xNi>ioJ  6  !b;+DL(O7 ;6=9 {8} 3I m6^ 7 "#&43 +_fJI^W v4~s@K~_wln_  :UJ? :Yt F'dv N R :  I "j}$= jY^Z[%.D [ , GFB)  Q  Tgk#[i:X-{9]!$cg*# s 0-jܱPW)# [ > eF@Wl+U4o%V 6PIW &4 kClWJB C|( * \^ ,<-9Y^_:{2)v%`r+v@(QB^,0M x' { L Z I1 @ Wh=B$N} {[=-JUq. _ 5`~)*:3I k % qtaoPZ+ !Ct=+t+yR#i?&|##8%K =( `݇5lXW$h 5  = YY)N^,~  ` ? fw+F1 %kQ zCRr]* Z %}5yFhO: ?pU!qhd$iF ?"gkLEC#u> m^( } <_# v 3D?&o/*2pjHmd@z C9FPBBu- Q QbV;)&*DpA'i+rK"wTE!EZ]P26|6#* ? C`a9ޓx /T  d _ nKP|$%zB]) R t   x"WP$, 2J^I P | `9 *'Y%7O~Qr]6rj]1+xIH*J1cu^Ai( = ;Jg epUh+} d H  NW=Ci@79*|uPFj!5= } }!pb]n% 3 U l\lX&wOKzY2j #Qq~ye> '`~ # | xEߒܕiܿ\)|3TpcF + sg 07k2J v 5=Nh"T(u ?l_? *m" E DiP  8;@REl-V8 if?d%ntE~jlk:TVg"\Z bK 1 P%- }?  ( X)v   c+4g3%!p>V O N QTPhT!3e   ]|!{ jG",>d8;gD%d&u|9wo3<g~a[   =2l*ܻݷ&"p@ |  d,. &3@|AU7q > 5 q FRF<|6v2 F7 zxNWO"  D 0 Wf&c"4'#85-YV#QsRw+C@|j LM . @ l D KG<F @ hDBAJk  hNZMh#5)5I} ?X_&{) ' /dW  F{p~`.|^)FX`l6Fva: ) k9\*+Y>ܦe 6  \  H]MV.8uf 7e?gQ DW & oXa.5E +`M c qFO/*<C=cwy[)[<Yx 6q;llhc^q3{_8QIbTQqA[s8FUA{6pS  QR EI]d A3dfIWN!xQ1 > zK3K-hht J Um]y 4/{]vS;%iR5y,v '3&742 3A6QhC<qo P } ;sNE{ vy+b<LN|I > F&dv ,L@ caw# y nAw_>**[GfGzD{xuX5`8;GgfSB k]4 -k9>C fI>qsGW #:W5 E`)) ~+Q _ IC&U8gQJ^YA^& ܀mk~~j ]  w _rycf|G/iV8ORv!IuEpo L  q D+EmC $XJ0 { qG[Wh}RBhx;5f}H|+}<m]WS\t; H#\&.T_= *U1:qB6 Nk_$7}_@(;( Uy  bP'^S 9`I27pLqWVm%|h&yT5) &)$Nf%:<, K!6> 0e5X ߻(Ap>Yr? Y (a:< mdQ]juV: Va;! Ei+*J hUON0W~uj t^oTEF %X{4 XmXd H) El`^ WC&#J*Qe ~ X-;+M N -kJG]QkG458=IIJ=!$+8ID,2j< d|'H x@.ہڇ2=ben   X hK.RbM'u#_]Wu u +VH^ ze?#tx9w/x [Quq KJ9 <p~S{?RX\|<_&nbfcwx@C88?E1 &KB < H8rJg1y  CBe%1BXvu"B .:rg5MM &vV c2'zawA+^wqT#<fws0 ?Xq !R-oY|   VmE b )+^Pr3w" )2)-< G-#.=l'%u   ,;oZ'qg=  J *5~|F:bu<~Vg'58Hb:\*J:]S:kb->B>jQE;Zn^9JX C  C> ^]6bI hI=M74W:Q  i~Ax6 ]v ObDf3U<69IU]a_\FBH1QbZA?t @ 2 D [mVy2Jz_>i ar | -,TXDg_Iz<tM(iIU OU p@B HN9C d e P wIlu+\6NIct} _k-toyPMF~()r` /MB8w;1 z:yiH :*g[]d P zt3SS iFOb QWL&GxtH`!- n s2/߲Mښژ%d ybV % s-?Wl/ hPK y"+l : m0f q qG;&W Plz 2`1 >$/KA x,>>,;w  @~*S$Hl7=G,z7/Cl)iz \ X2Ejf BN7D iq t s$!y"iE M yoxl>U[/e)t89_sp\8g 08hA HS0I $\ܷ4ZcG R R9~nk!fhnp78QCTC6 62. 72c6+ `a l Y@a>'ums {'m "25oF +]p|6`Y%6DkV & Rv^nr6U+ .Aw(7pwv2k;GG {# OvA=YG&<5 h I2Sk\S^8O~xF`! o tޞ9ڈڙ2 y  Qcb^CwUQ@KgsWq_/&]  6({  doO^@ ,S 0S-Gmklv#:7\mhW0a!350<]EwFqZ3fy_<5!}|^ BfZI,D #*$m;w[} 6.je /gQ`! `lBGc Ix &d:w_j7]3pQ; "&)A=gyygA uCRn Dxc ?Uf^]Y x/ 2t9GK&o1R)jAl  N H [q9 \ Y@L^X pVz 8 F5-ji?\aV9*Rju{z 0t!\* de=g*i^3I`ugX45Pvt\&  n ([ {9|<6mU*}7 @Ruj5|C )]|t, _S]VFe!j^9VaW>?y  T/ kߋ6ۭۻ}{Ar G " 4IJU$uPd?n FX*$|$%ci} f W'  \VRH!  !XwI|G` XU0OXR;?}&1>Z-C{fN9:8?J\pt_IGc?}05^>q) Y;]m t a 8(4 6 Mpoid`WJ*eJLK7my rPkZO4it]6 % J@FX L~nS-[wKTSW - FuM(=03: r  ^l~ l @qNMo,C@;K\ ) y%P X HZ%`}8 6J  [-9`<4y'Q-}p)#Vv#V?k2zs6b3+>nl89j*5La?;|7 + & > ! T  pp Wbv;+T|<*I^ )Q(II!  ?fzis9;iF=@i0^xZ8<|y.kyE pQf -Z[ j.'c_E.$-G R q< % f); |vr3Vp3~-G0ZRkw P 5 z I V  Jl~}mw ; 9 n=, #TR kG{J8MzR9% !6V"(-({X]SbCE}t:%;b_7|7 5z pL"&/)rm];m K att g L!L~X% vApb.SOd7'(f{ d? m4 Mm y4W @'X   H B# n&/sLD_W^I 1 0 & Q ;'H){7F F 4 Y  ^qf,H b Iv,G P K 3 d@';y3HiC1+>V{u^FkM >(6Ui(E< % 1~zHOG%jhP 7 d1L1"r:kIo%z"Ef06h< & A  } S +zsmu~ 8 ! x#!~MqL!GankZ?j#1{%{%CY4SZ""qpA]b}ds_%lKch/f9->    n~K]Xa%Y'x|9 , {tU  - : S XY>96-=dGJKe;U<=+l5]yu^;_2QyZ  &V#LVx E r"WONz Y$]4Bp[-` 5 y_" 3z:p,U c4 l _  ?[\o&kxA{1C\MaH- --XH.U5fW&vr^"o]P."#f4c  O * NX'HEXh1 N w Q f I  o n  \|#V@K=xw|<[ePt~bk/2+~D9O u DD1/Ar y x ` s3W9PvXb3#I&e)< XcRW}!#&?Q] 6 p O,8w!RA=xTLsC Ip'Rc1l`TLNRSXmZ[6N5UB[1~fxfY=x/7;2LL 2 m* [ \P1q]:q6e X f Z 4 .  x 7g;|EFLA /@:rQuIj)' { 3 1 FI z;v-   D rd*Jc,DJmDu3 )(FqJF2ep^*  s J cO!bI)\g=;_xtZ<|EHN|P+ XfCLeP4#E7VTVGR:Z?AT   ' 8 }zz- meKw y H IF n ^s_4_F)#/Jbv>n\Q<54^wkM+o4v ) } o4Fh-UP[U  ^Ioua\V,gSzL4@zo7<R-8EYcKOe^W%=PXVO='\(IrA{_H2# 5$1.>ehc>@ve;M MSQ!_ e+Vt/-u@ ? c |  #@U[= )+$*M'%pJ:PW!wszMj*f5O3q!*.) ^1_j " c+c`P8kayu6J; , p6nd]m85+\A`bEK >gUJ#,{y \te4r>Bw^ m0EZu)CQ-NW-k9wMfRD6*(!!&,QR @&]j4+}BdKA[`y~< j W & H+fAuE$8r?o}]*WP. K)91(0]{B#3tdz14>szT. < #lR '?+g7><~84!jpqgJ+!ZZ^]R#t#;b$DRd&ZwT/X(~Y3{qieebckxA"qhIx2-7 h8{d"0[e%VJl T `RLd/Po[{Gs^DUE`y#Z V2 7`K5(y P*OpsX<aFJ;i_W cQ.nv2K`},4lvXK//Ee;AL<svn1Y1{^ YGvZ@Fd~nX<]6 mM0 {{utv{|<CmY:U"HcllfF'x(^qY'v)G2*8XN!7/or#`Wy 0w'l? DO,s9t)Hat}p^J1sOUq1o4Hkz1QY p{B"1Rg{-$W/ir:LMk`gi&B+l8N^jlme[M9 h@|]F.Tyn}tV1!/]+~8^p|zBP+8sci$8 b+^{r! 5/sKG!\!:,mj']B) )*Gk6p)hAo!-7872& wX;XHc^X\>Id]F)ICw aTFk)1ld(qSrm pbi>R.6%mt|Ao #'&" hI+ ~hN:)P}vEHR 7e.A7 :Vx8izlP7%+M$LcI_(m ps{RT JByeB~=WZ v1uY?) #2GvEw 3[    nT<"L^,Xl t=z/MeiivGDdn,"RK/WiaM."797/-3EkL,Hxs+8T||[!U2U<g"R %;*u+d@zXr3:)Sjj=/I[:8N&hAo2bZ }fPC3-"$$+0:H 8Ss 3^;YswgR@.43\f5@s$L|l@[>GY )AB4',,#&>a#y]m)R6Q %eHkDli:m4MWWY4Ndx|n`O=+tke]XTTOPNQUVX]u$'kF+ #5G\jf4Jy^P9)FVXSKFNaFVqj :2.%   g*:(h$h(G:2rb;!/8=;6,% #4Qk[)jSBAMgKxi<vX@6:Lf &(,*.,**%$! pd[Y`m&EavpS8.?O[fqvuurmke_ZSKF>5-&   "$%   garden-1.0.9/data/beat/arp.wav0000644000175000017500000042157412457263310013047 00000000000000RIFFt#WAVEfmt DdataP#US1( 68NT~xAEVRqpc`)->7wt/- 7:lgbawt~ acVYfj{sgm_^\]ty>8c`}}!$SN"&`agf69''{~.(=> gs>C |}pmnjtq (*MS`] K G N M e\OJVWV^.- zw[U>?! ' ! !!!""##$$%%&&''(())**[+[+,,,,,,++Y+[+4+/+Y+W+++-+**=*<* * *))))l)l)))(((({(|($(&(''''p'p','1'&&&&f&`&&&'&%%%%`%`%#%!%$$$$e$b$$$####c#e##!#""""g"^""%"!!!!_!a!!!! [ [ # ! []#"`b!!_b#&b`'b_$"fb!%fk'"hg+!fg+,nl(4pm%.pm01nr0.u{53|w9=wx<8~><IG L C   N I   V P   T V   \ W   `^""da"'eh+(hh%/<8}zЭ,1@@nj%"44ҲͲ]^dg۷㷎)&EGſ VV%$RSš[V›52KJ?;ƹƾ,.ɾ ʱʧʰ˹˶̴ST̀~mmHFЏыEFәԝFA֒׎JJصٳvv=8۩ܩac$&ޤߜQVFF{}56kk"(PXHAxx03di"KR <6mg$%UT <<ll#%VW  < 9 j e   HQ tw47Z^?Eok(+QR|x31_ ] !!!!""B#>###$$d%i%&"&&&''K(G(()))o*n*"+&+++|+{+**6*3*-*)*L*N***))))')))()((](X(((''''x'{'&'%'&&&&x&}&>&:&%%%%x%r%=%=%%%$$w${$>$?$$ $####B#B###""""O"Q"""!!!!\!Z!!! j e % pm.-vw57|:CKF  RRa]#!jj,&ww32{@: KLXQbc$on.4{y=?LK US`a*$ot-* x } ; :   K K  ^ [   f e + . w s ? 8 JHRSid<6Åƅ3/"&ҞӖӮih$$ORė+%ۮݮ52;<䴞V[  upԿпWTĊō ljnjLjǏ .3XT<6̶ͺ\`΂φ_X65ps!!ӱԴ\b ֵּxxA4ؔٓGH ۺv{ ݎސGF`a 2>ZZ yw.)KMgl@;TSsq((CE[_~z,,FFbb},,EBdZ} | + ) J G h]zs*+D=VW  oi#55LJ^_t u !'!!!"";#>###$$K%O%%&&&b'b'((((u)q)&*(***O*M*)) ))))6)7)((g(j(( (''''''@'<'&&&&&&n&k&&&%%%%%|%9%@%$$$${$}$Q$O$$$####Y#X#!# #""""i"f"*"/"!!!!v!u!IDMOMNRUZV X ` ` a h` gmheilopqqlkyn rr"r s !!!!q"t"####r$r$%%%%q&p&''''l(j())g)c)))J(D(''''((''?'A'&&&&&&&&'&)&%%%%%%a%Z% %%$$$$y${$:$5$######P#O###""""i"b"2"/"!!!!|!{!F!H!! ! ] e ) & {x@BYZ%(wzA;^^$uv47X]!zt6?VT sq8>WV#ty;9V\& rtDB[^"&{z?>^`)$FE  ig,) J H   l k 2 3  P P   t p ; 8  Y W # z|EC LFUXИؗۻػްPOˇ;9hj×=?.,DB&(MOXYLFš  Ƽƾ`ax|Ʃǫ ɰɯ$'%͕͗tyWQilюҌ00VXrq ת׭bf ٺٴRWڥ۩VXܝݝDKޙߚE@740+yy)'pvfiaZUSJG>8-4y{( qpb`RTEI;7,,umhmWXDI6 7 | " $ o o   WZMK59(%qpYdNF58x~#!jl  W Q !!B"C"""##'$+$$$r%o%&&&&['X'''(('' ''&&&&&&&&& &%%%%%%b%Z%$%$$$$$$<$A$######j#e#%#'#""""~"}"M"M"""!!!!k!i!4!3! ! U X " xzGB bk0,QPrv@C b_2)WQvw@= eg02PO"!|wCAlb03ZY&&~LJvv59aa$+QSuzEC gj64 a ^ & # R O   y v C < l i 8 4 X \ " $ QP1-!"BB@?y{TQΑ<śµVWfaǰǷ81żǼǭɴ}|ɝɠIK̫̯̾ ϒϕIN(р҄lq,*w~Ոփ7:ryؒٙ:9yxܜܡDE{} ߤߥHJz}ED}{LGx}IKyPJyLLyvAKyy ??ru:9mm 45ni26]`+/YW~$POFHq u  9 9 k m  11Z_"MU~~BAim$%XZGDwv  01f g !!!" """Q#L###x$~$ % %%%%%-%.%$$+$-$&$#$E$C$/$5$##j#j#$#%#####""""B"D" " "!!!!!!V!]!!! e ^ # & `\3._]+,]b31ff54in59qs;< tq??  zxFBzFI}MHRR"![Y$$fd.0ck:/mj?A p}MI~KHU\$ Z _ / * h g 9 8   l m > G  z x I F   P N  # ur"Z] [_zz\\ĶTVQPѹԸԄχϦŦἑHHkn˱ȯ;<Ź83HJέͪjg V\ʲʫBF}y)$7dc31 ~[S*-li:>ol>@ YW/2xvEDPU!!b_22v{JG _ b 2 / m l < >   S N # " m h ; :  34onًȉZad`$*VW7>,%EH>A[QNOlo  rtӅˊ@:%*NL|Ŷ##UX׫ܤ6=?8x~zvٗՖGMnj9;EO˰˪ΆьіԒ39fe<>vq8A0*zx"if22PLYOP S 5!;!!!)"#"""""a#`#####$$&$7$8$3$5$$$####1#9#""="B"!!! !} z HH00:9|y)-z}}}**>?BDLLGB78 hg!''st RMABc`%!ibDG),ru^dBA&RU!wr-/cl-(]VXWxvDC r p C I $ '   o o V S 1 1   u r G G " % v v DEFFMLvsvvfhfelm͝ǝ­ ݮٮڧ֧ܢ07|qrY\KLb`~ﯥRNįȯjiѠ՞յٹ٠ݠIHOMV\/,GI x|;:$߬߫ݢݽE=ذֶKJ ngЧЫЛИие ћљXT@Ac_ԩժ׹طv{WRSRcd]_ YZ-099-%RN%+VYrnZZ# % K K   T X p r DF88jboq@@<< %%bcHA18=?NIge  H G ;9@E9555\b | !!""##$$a%c%:&;&&&''X(V((()~)))^*^***+ +L+M++|+++++++++++++`+d+-+-+****%*%*))>)<)((!()(''&&@&B&%%$$ $ $E#B#{"}"!! '(OOw{$YRHGA>KRih50 *,KL{~ >@|/.lk('c]MI:8^_zwKN!&}|@BbjkhUS  HE n m     rn}}FGc]\bMJ&&Y\#$)&ߢݑڑ {Ձv{͐ˍ#{r-3ؽӻѻܹ,(uwܲ]`rs~~dk󨝨loRSfeӨԨ') #rr7: +2ba]bٶضdhc_%#ƾ JK~zէ׫& ][ޞZW=@oqqo8 ? <6KL!){w(%BCORPQ;<! f!`!" """# #####^$[$$$$$%%8%4%M%K%S%S%R%P%A%F%+%"%$%$$$$F$D$####7#7#""Y"T"!![!W! E < rs('z) s{ebYY\YyyVSFCGLpp   ^ Y b ` 5 3      ? ; Y ^ = ? ("?=  {~]fVXUUZU^]hkvx  ~~giFJ{{1,  h j !!N!H!t!z!!!!!!!!!!!!!""""!!!!!!!!!!q!p!?!C!!! U W   ijQS}#%*+  }|YW,,ZY!"z=>^b # L O   ` [ ??0)#!%%}  34OQ[WYW=<[[(),. gjad53poް%%]`ٙי\]ҢХDG͟ˢ nulkъ)0忝pqKF5520ADQWʶ˶~$ֳ˳giTUYSajdzvs޴pklq@8 "0+LR~ǿɿzycd~Ȃx{:5ҠԡԂ|`hIJ<7,+"" xyOQ%#kg V ^ |{hm2+|!"F@PTYVMS8: V!\!!!""&#)###$$z${$$$%#%c%_%%%%%%%%%%%%%%%%%%%d%h%6%3%$$$$X$W$#$##>#=#""]"_"!!i!n! h b MO.- usFL#klYVOPTXog @CBAxu25klWT=?/,&(!$!!-.8:MLefyy56a^96sv30ns9=VV('oq97|y05nj ?@ro/)GOf_yzlsZW78tt<C  TQ<<HE:6y~TMA=gb4/ R R s t   " & N I W W  ^_b\ w} bc [Q CEtt#'UP܁ڀڭخJPӓъut<@ɧǫ()ƴıKJaa-+ 72_i{y󵇵/+񴴴5/srcf/-,.XVB>ðı&"Ƥǫ>;|~2.Ϭѩ{}MH).޿~jqa^CF&%rl+*7 8 c ] be9; OKswrpFF y!w!""""2#3###$$p$s$$$% %@%A%g%m%%%%%%%%%%%%%Z%[%,%(%$$$$l$p$$$##_#]#""""""!!!!   vxNL}9Aa]#(YU:5!#.2XXB?__~~XZ56 99XQ||10bcZ^'.y}ZXGO;<*-x|V_55xt59nn  ::hj %%68HFNOYX]YYYUZIEC?/2ttMOs{;4df{#*ww\X*+VT '2NP`d z v % $ D A Z Z : <  22DHHE<9 #|}+#ceuw`b*+-/xvHNQNޒܔ !fk׺շ ld72Ϟͥ""̦ʤ/0qv)+úº–zϼм\]-'KCzwX\PIQYpo׸׸./($׻Իb_CA.710=@^Y†Ê `\05ʭ˫21ͽο`^ѥө^^ؠڛip<: e_BG-"kn@C VR ee% ) $ - `^.6e`|OO! 46W ] I!G!!! ""M"V"""""""####!#+#/#(#)#####""""""A"?""!!!_!\! ! 2 4 CGTQII,' mm=;{uEM""}ypr~()kj  np*, z | H H  "  " G G r k 7:vr56|xXRFC9>;>/6"&urZY+*feXT9,SWtxqrNL'.rp:?>:_[ _[LK##ST8=YPvu " > ; ] ] s u _ ` BEfh~fd67ywVQjhd]A; jk'+8@YVݸ۵ډ؇jidczwγ̽iaȰǴnjƊwwlqvmŌ­!msԾѾIKͽʽ_` żehRNPRe_}LK.,SNYXA?75;=MMsnǖȠ$ ml2.ϠУҠӠ+%վ[X٣ۡHG߯ik#&`b(%gh&'IKVO1/D;::  u s  KHys797:WU@;JH  * $ 1 1 0 4 - ,  z{8<UW89VZnlmtc`MM65rs_^PNSQ]^sw KK G L  ~ K M     s v l g g i k h y w } }  3 1 ^ b > < z y  EJ/3($yz$%|)))1.4%$s| ZP%$][ A>ei"85IIX[fhqpww{qwmldaVW=<*' s}GFib!(OO]\QR31jl1+YSy}  ,) J J m k   A 5 Q K $%xt76=BGD8;^[ _h79MSTZORKI@A;;߼9?NLmnףէIJҪѢih/0̼˶ʯʭɴɵȳ$&ffźĸāт VT,+>DiiII¸º50þüZXĵż{vIO13!$0.XVxwέϲ7<҇ӉGMֺ׭%+ٟڜ #ܦݦ*-߽OM}~TR*+eh*+PJWVKK'&;E  D @ i k zQN#HKso*$pq90NJVY\a^VJH5=VR rr" di*+ACMKQWQWOPOQHRZQc`t:9  ~ # ) 8 ;  T K  %   C F g l ? ; x { @ ? "#jf  Z_Z][[^]WTBD%!kh22nq>Esn 38LIXRbfnqxpnuvsifZ`HF?<#' ywKJqs12bdzz+(||%ii?@wx @6lj ' & M U y ~   : > k j kh52##>>VQUVVYIA+7 wu6~{GHzwJJߎ62ܕې;Fغ׸ׂքOS&%%)`Z˝ʞB?ɤȬțǚ/.z|94Žżž/3mt!ǏǐȐȐ*%|{=;ͬβέϨϪЬо#)VT֚ח)$y.3ޕߔejQMDA57000-"" ~YW~ olOQo s fiB: ,*lm|}ji*)z{37b^~if<;]\xs#(he 3<\^yw0-A=UYuv  14 m i   \ _  r o / 1 N Q . ,     6 8 d ]   T Y  S W + , z w be ^XUTNUDD1+|| SLJKGDto  +2A4ENJJLGIKA=;?-- if76  mh30kg*+CEJK46"``5/ g j  5 2 b d  7 3 o l   NRAEid{olQS0/ lm-2ki?>e_LO ߞޟnoDF <>swжϲUZͿ/.̯ͪ95os(#ʪʭʉʈlhcccfsnʎʔʾʺ:8ˌˍYVXZ͊Ί87ϬЬwxVR31$#(*?Baaڈۉ۷ܱ($``;:41BDTYigflKO 25cg z { O T   ?Buv ih(&us%HHdavx~}wxljNO70  mp*(PI>:sw>>jk % J N ~   _ ^  h c   `d51,-ef. 6 F G   y  |  /0FJ_\oqwyqt[X12KG).ig)'.12*$$ WX~~QRgemmXW43 rv@?tw I E * ,     ?Cwy}54`e>8  .(JGtr BB}IN&,tp  F M } s r " %  >CTO8<')@>UQVWKJ5:("VXܥک٢ס>Assς14LNϯϫ??88Ֆ֝ء١?@ܾ޺ފ`^><TR BD(+02.161afKE9;{w%[Wke%(OKC@ >;yz} GA  32vqqrD< 8;c]#pn?B"42`^ORBDdf g b   G G XW-345 h^,-SUtuxuhiV]HG;4$( x|\V>=!|y\]69~gdHK/2st]`PN=>1-z{c_PP2/$ } } [ a H @ ( ,  p t X W F F 1 0    m m W [ I F 5 2    m l U S : ; ! ! v q U Y E @ * )  usdd" ^`50<<hfFNqk_aml!"pmU\|qxa^sw>A55(')+ \\A;zv jfGHޓޓOTrm}}{yNTb_|QW KHlqz "GH*(<@lp&->>64 :3WW.2($69nm1-KK:?hiOT*+983130+.!#(57MTvsIK {v][2/3/hm66QPptPO'"tvvodd-*afVS, ) q u ; G   [ _   S T 2 ( X ^ IN GI KL66ywy|65Z^{{KMunY[WSDJDFLDCIC?67*%   e f L I 1 1     x u a ^ F B ( )   w x b i X U D G 2 4 !   s  h e M K @ ? , (    { w ] ` P I 7 < ( *   xv`eKI@>!&95NL37rsjdۖݖDClku}W[(-TX59?9/2;6KV>H)# RQPL,-toaiyw7<^[OP03ys"SS}~46~B=muQPMN98oo+$biPSA?{~4/pn ]] LO97wq*(\aZU A>y~07ql#"[ZQN9<su)&egUZ E E } 5 5 j j & % Z `  Q H  < 9 { y ,&kiWU  F@~(,C:&^a][mp{ovSKz}fd\[PRDF.0rpU[QJ7;&( n q ^ ` E I : 9    w u ^ Y J L 3 4 & &  p n a ^ G M 0 1 !   r n [ ] I D 7 2   k m Z Z G D 3 6     hgZ[FF62-.$ޘLIID93 # xx@@B:""&"\Z QH')TL~US\ZkkUVQTSN0+==NQ<:RNݤܥZYٱج؃׉}|vsdg]Zwyҥѥe`ϳεΠϢύЊggBH#!կ֨֊׋ojMS5/ ܳݳݒލppQT14rpTV..rpPS-*mpLI+) ]eBG }|SY97imL J , - y`^;8hlMJ#)}uV[3.  !!b"b":#8#$$$$%%&&''i(l(F)G)"**++++,,--q.p.H/L/%0!010112233p4s4N5M5%6)67777a7`766555555555544w4z4g4c4"4433>3<3 33222242521111j1g11100l0p000,0////N/K///..w.t./.-.----I-A---,,m,d,,,++++B+A+****f*c***))))9)>)((((d(_(((''''6'8'&&&&W&Y&&&%%{%%4%3%$$$$Z$[$$ $##v#v#8#5#""""S"R" " "!!u!|!/!-! T Q  {v',QPwr')JTvn+*UTrr..վԾ#ws֟ԿпUXӿֿ+/}{廝ê 9@YZwsMK bg}|xzw©·÷Çĉcaaa}{vxb^CD==JKBD20ؽٻٵڸڭ۩ۤܧܕݒݐޑހ߆zqqbfa\PSKH>B61'%" |{rr_e[WQQEB46,) $ t v k o Z\VRGH22+,#" nse d X!Y!K"O"7#8#0$,$%"%&&''''(())**++,,--..//y0y0k1g1\2_2G3N3E4>4-50566{6t65544_4d44444%4(4j3n3332222s2s21111a1a1-1.100^0Y0/0////./*/..w.r./.3.----.-2-,,,,L,K,++++K+Q++***\*Y***))m)k)))((z(y(%(!(''''/'-'&&&&>&>&%%%%P%J%$$$$X$W$ $ $##d#b###""r"r""%"!!!!.!2! B ? LKYVjlzy&%49 旸ĵlf16stؒ׈nnlme_ɗȄ+%us{Ą!"VSˆݾ⾮ʿʿ }+.FK46 iiĺżƛǛUXȃ̮ͮ #"=9TSFHGFR[ttڃۃۃ}܄݂ݑޕަߧ߷!#)(48GEMIMWcYhkvnz}   , + 4 8 ; : E A I K VW\]earqtv} !!""##%%&&' ' (())!*'*$+!+-,,,2-4-=.8.C/C/G0G0N1L1T2T2Y3\3b4`43535@5A5m4m4~3x32383_3_3?3>322111111V1Y100T0L0/0//////..K.O...--\-V-,,,,U,R,+,++=+>+****A*?*))))+),)((((+(*(''y'u''''&&n&r&&&%%j%n%%%$$_$]$ $$##Z#[#"#""U"M"!!!!M!L! E F 9<871(})*yw <@ {((nl@;؆Épq¾йвϴcd"6: ɽ¸QO Ϳӿ%Öfffjut95uv徐 …*-ȅɀɎʕz{ˋ̋ $#,A;rtӢԩԺն8;\Rhm܉݅ݭ޵'%HLmm> k f &&W]@?r|0+[ \ !!""##%%A&D&t's'(())**(,.,\-T-..//002233o3x322{1y1001"1$11|0|0//3/4/$/%/..i.i.--Z-V--$-,,_,b,++o+k+%+!+**[*\*))x){)))()(([(\(''''(')'&&@&H&%%d%d%%$$$$&$##D#?#""m"k"!"!!!! H A ij"FHni" ƒ(/\Q~il ©04۩کFJ@>ŎҐ~уѝŚŘGIŞ̠}ˌĊ$%\aIEBH##óĽvuZa ԎՔժ֫XM 56ݯޱ2+_^purqjh10tvUMfb&&jo22z|JE  W T TY $dk.'gm32r u !!""=$:$x%{%&&('6)A)**++--A.D.//001222>25200//00U0O0//..+.*.. ...--,,;,=,++++R+K+**9*=*))))')&)(('()(''u'v'&&&&&&%%S%Q%$$n$m$$$##4#7#""V"U"!!!!!! ; < gk+&OP}}?A./66>?wxHGffęĜܝ# WV*-#vyǟ%'[^=?lkCI hisuilĈǁ1552qp "rrgj# УѠwӁԤէ՛֚؜٠.'ݙޛ[]3-_ee_B@12zqckSQ73 kg   O Q 42biJF..v|!!V"]"##$$:&4&''((**g+a+,,--H/I/00111100//6/4/h/l/M/R/..--G-G-1-4-,,Q,R,++<+:+******)))()((m(i(''o'm'&'&&?&?&%%G%H%$$y$z$$$##,###""P"S"!!p!r!!! ' ' NNnk#&KOokӥҥA=ʍcdST13ȘȊՆz{=?õȱȷϾϤΠǤĮǷuxvyvyƋċ38 ˌ15ޙ˗98faX^PMгɵxvyw+)78HJ]^ ɜƛ41ȉˋ jcѼҽ" Ӏ}lm״ط|pfmێ݈EFCA93X].0or#&mp"jb#%be**ab & f ^ "!W\RYPN  FE !!?#<#z$y$%%&&-(-(o)m)**++-%-].Z.//0000u/v/d.`.!.$.S.O..#.T-K-,,;,8,-,',++4+5+**A*D***))))((5(:(''''' '&&-&1&%%k%p%$$$$#$"$##U#V#""s"r"""!!?!E! h k  0,WS$$OMz{CB͚uă *'[^Xbͣ~zx|Y\Ǖ̑PSAA˸ȶȧˤ6=EBloʞȚ630.Ȱǯǥȥop̦ͫ΄Ѕ>9է֩/(vq12_d*+VW GC||+&kmIJ-+qnIH)0ne  I H | ()__;<vvUW.!)!c"a"##$$& &>';'m(u())**,,E-H-}.}.//"0!0p/p/.!.|------#-(-<,:,++++++*+M*K*))))\)`)((S(T(''''H'D'&&P&S&%%%%5%3%$$M$P$####)#%#""P"L"!!!!!! I J ~zAAztD@^c('gi\Y̷ hfϚŚŶθڰٱ{yɽμ[c;8LOPNЅ̿^Z!KNɮʧns=Akm83͊ύDC~UPՖ֝LSA@ة٪;4nn]\ik޿$(ZZkcJNlmEFtkEDko <@jh85jf*&`b % # T T BH|} ;3hj(*] Z !!""##%%E&H&r'o'(())++4,5,e-e-..b/d/%/(/.---,,)-2-,,,,X+S+++++*** *)~).).)))((((''A'7'&&&& &&%%?%F%$$$$$$##L#O#"""""" "!!U!S! ( ( \\*0\^01QFRWȑhdjiфѫ23@?PVѡǛ55ۥЧWROT՚ϞϞ̟rkGB΁̅ Ͻι̺̣ˣdb),uqV^ {}-)!֏׎IGKH96#% RN >F/$hjHFoo"DNvr IEqoDJq p JGkr?@mn ;<a] !!##,$*$W%W%|&|&''(()) ++H,D,o-o-q.r...--,,K,K,y,,t,o,+++*****P*J*))$)$)((((H(C(''>'>'&&&&A&>&%%X%Z%$$$$M$G$##m#l# # #""W"U"!!!! ! ! e b 51nqCK~\]GD ʶ~ BDUSMR;7ܧҦrtQWҡ؟إפןѡѺεusOSМΝ Ϳ|΀>8ϞΟ<;!,)ӋӉA@>?hhسٯ)+ݱ޲ެߨll|65A@QT LFz}50SYqo.(ONop # H E o p  B9ce 05[Xsw! "!"C#D#d$k$%%&&''((**)+*+O,K,l-t-&..--~,|,++++++++****))))t)p)((P(J(((''w'x'&&}&{&/&1&%%%% % %$$M$S$####'#(#""k"f"""!!D!E! - 1 ggCF""ge7 6 id14ʯʄQT}|MP40@@/2߸ޱxΚӕba^b98a]֟զ 66ХѤhkҿ҉ЏheXT~z Ј}DFԥԤC:ْڑnjݧާrweZAJ>=KN]]GG[[y +(EHij   + . I I mi,3AHi_y  # $ @!>!V"U"y#v#$$%%&&''((**0+/+K,I,(-&->->-W,W,V+W+++:+6+++f*c*))Z)X)K)H) ) )z(|(''''`'c'''&&!&"&%%%~%/%1%$$M$P$####M#G#""w"}"$"!"!!k!o!! ! B G 4/tqW[ABpjΥYUֻͽվ'-365,`g 36\_VRҴӺXS՝ԠԆ҇Ҁ54QQEBШШЬѰ<:FJ04IBzzث٧ټڿڻ 25>:SUsu !95ORhg~% ;>YQgo~  7<QKgeyx *,@;PNbe{{!94DLa X s!u!""##$$%%&&''((**#+%+1,0,,,),',**M*P*p*q*****E)?)((((((%("(z''''&&&&?&C&%%]%Y% %%$$j$c$####H#B#""""("0"!!z!w!!!"! [ [   SR:6*%mg  ؝ؖЮؙȓktةϧפlr 64Ӻ׾ןݙݫܱ`_ ::JFԫճ;;׏֑zt}Ӂ'/NKLIҊҐҪҥ,-԰֮֫׳VM܏ݑxq޻ HDZ`WXXRpo/5KCX[iest %//H@O O _ a l m y z  )*76CASOZdllzu !!""##$$%%&&''(())**++ ,,O+T+1*9*T)N))")U)O)f)h)))E(K(''/'1'''''&&7&6&%%2%1%$$$$x$w$$$##.#.#""""J"G"!!!!!! t r " & kkTXOL8;RL"-^_ӴSSԾ30on-2+(7/!&%Ԧөӯֱ֡ڕڣܭܴ۸ې؍^^ql>Bב֔֡ԟ*+VU38 պ־IFje]_DI97::W[} %&0069?9@GOJYajcptu}} #1).2:87<BAHHON]]_agfvrppzx}  !!""##$$%%&&''(())**m+q+++++))((''i'l'w'r'''''''M'K'&&%%+%/%$$$$$$$$L$N$##P#Z#""S"T"!!!!t!u!I!K!!! Y U {x  TP |1/}ytt Ѫѻ Ӕyxvw˼˺˯Ѷџژb`E="Ұշ ڎ݌ AAތې׫Ԭԗґ%&RP17א׏װسVPED/5uy30jeroY\ PL|Z]63"'89OUuny s ` f W Q M L K R TMhciq}}ypjoegfcbbihlgcgfe_cY P S!Q!K"N"H#J#J$K$J%M%J&K&O'P'S(Q(S)O)C*D*++++++++5*8* ) )''&&%%$$x$v$Q$N$q$o$$$$$&%-%F%E%%%$$:$:$##""""X!R! R V   vs 94$!*%ܬDH&(彣â]b֋GA##utcdܮ`[ՇϊϦˣ ʝʝ&"!omBEd`df׷ӭӷоЮΪ>Aϰҵ2:/+**=;+30/&& **ss*.yx!!=*>***U+Y+k+g+)+)+**))((}'|'5&4&$$##""!!;!=! q u K K V Y z v !!^!W!!!!!" " " "!!!!m!g! _ _ 9;tw`[xzGH$<9ji˄ćݽֽܽܽؿøc_X^օ}]bGMFDvy  z~))"!˅́FHX[Ӓ֍&"IPJCVTIJ :9VV $,,QRvq zt$& "CATS=:}  V Y   y |   61|/+9=> D a!^!n"t"v#p#f$g$I%K%&&&&''](b() ))):*:*****5+5+>+E+,+&+******g)i)((''&&%%$$##""!! 4:YVY[53&)%&:=ZW{xkh  0.RZCAXUSSGKQW*$1: FIpoɮ͹Ͱѭhe23A@IK>?A;ovYY ݽݛ۝۹ټ('֛՛ՐՍչֹٺڹڑ܏ܥޤ\ZvuWU6;%! ?>-&delmN V  r w _e9;ifox_Y-1('RO{{(&WUxxFH0-?=bf10]\.!0!""$$&&w(w(+*)*++a-^-..00F1G1D2G23333N4S44444444|44433221100//U.R.,,c+d+))"($(d&g&$$""!!XV8882tsOW p|  ܾٔՌIK=Avu\_!%(_b+(˜œÜƎNJ*(ʦ̡̃Ήmkcfee`fognqpplljhYZ;=SW]c2504"$qu JK GFro 22c`BA18mnioA>|xPP/ +       $&C<beFE/6AE  a!h!""&$*$%%&&.(.(v)s)**++-- .. / ///0011.2,222630333333344333333=3;322J2K2110000/0^/Y/}.~.--,,++}**m)h)@(C(''%%$$E"J"J J >? `f  5/1*)&uz=A !WO˞ȢƣãVZ;5>DqoDK̵ƵʹϴQS޲۲beed~12 #$YZ!HL !a\̵θэӋؚ֞=:}:;mo1*oo''83glo y FD33GNIG53!!""z$|$&&''))l*m*++,,--////0011O2P222t3y333X4Z44455M5J55}5555555555555555555h5f525354444j4b44433Q3V322p2n211p1s100\0X0//)/&/..--,-)-u,y,+++*<*?*u)u)((''''7&7&a%a%$$##""!!!!+ ) 51"RUW[NT}w ruSP#$|8@>@@<@/B+BDDEE~GG*I,IJJ)L(LMMNN P P'Q%Q-R0RSSSSTTZUTUUURV[VVVVVWW)W.W,W$WWWVVxV{VVVUUTTKTETSSRRQQqPqPOOMMKK9J6JFHKH6F4F DDAABʃE@ѹԶ:DrqJMytFF li&&-.""R&N&))E-C-0033?7@7q:n:==@@CCpFyF?IAIKKNNQQSSUUXWZZ\\]]__AaAabbddSeSeofrfegfgAh8hhhiiijNjOjjjjjzj~jMjJjiiiihh=h;hoglgxf|fheke&d)dbbaaZ_Z_`]b]=[=[XXVyVSS(Q#Q@N>N2K4KH HDDXA^A==3:0:{6|622..**&&""nq:5Q N 34pqkr&'ݳݐَrytrzz͓ɖ lgrlܰ­Ūߧ$" |{ڕIG蒤NQ㍣\TSW畘mlrt۟ܟLJϤΤKD1469]ZY[mo ˤϪϊӅpojknhst -.SRrs  $$^(Y(,",//s3q367~:{:==3A3AjDkDGGJJMMlPmP&S*SUUWXPXZZ]]1_7_>annnmmpmumllDlClzkvkjjiiWh_hg geecc bb`"`]][[*Y%YV~VSSPPMMJJ0G5GCC7@4@<<884411 --(($$ ]ajk  EH%%|~57ߝۢۏ׊׆ӆәϘϳ˳56ėPW# 40svܤߤde ۝֛כ44)+˒ɒӑؑgnŏ #\U-+14VVfcop[Z秙a`GEIHiiGMIKʒΎIOݱ olTT)& q$j$ ((++#/%/2255>9?9}<7zxҤդTP𧦩}ɱ± ywA;" ad֪٦Z_01  n l 62C!J!m$m$''**--n0p0G3G36688X;V;==Q@V@BBDD-G1GDIFIKKOK7M/MOOPP^R\RSSDUHUVVWWXXYYZZV[W[[[y\w\\\$]!]D]H][]V]I]F]]]\\h\k\[[L[K[ZZYYXXWWV{VUUSSQQPPNNKLIIjGlGDD_BbB??<<:9773300--G*E*&&v#p# vqNH R \ KFLG߳ۯbd'&,3Äjg~nksw۬@;ũĩfg)* ::88'(a^ŢĢDH죲ЧЧy jiMI>BZU˹ʹ)',*ƁFD" 6>jgޘ`^RWOQ? > ~ "%GJe[nus"n"_%c%K(K(++--00>3>355Q8U8::==[?]?AACCEEGGpIpI.K*KLLbN`NOO&Q(QnRkRSSTTUU`VaVWWWW-X3XXXXXY YYYYYXXXXSXRXWWMWKWVVUUTTSSRRLQQQOO.N/NiLlLJJ|HHXFTFDDAA0?1?<<99!7'7B4D4P1N1D.M./+)+(($$}!|!$*]cuw u p jh^^af}pq,0ٽֳ֩ӮӾлNSȮŬæKKعչǷʷ͵ɵ0/PR/.%";9ktƧŧDE٦զupinʦ˦)(MM FK_`%$LGTOklΎяaaBF312820BCURqo7:ie    00A@BDDB24$ ##&&<);)++o.k.00b3c35588L:H:p>@@nBhBLDGDFFGG6I9IJJLL]MdMNNOOPPQQQRSRSRSSTTtTsTTTTTTTTTTTTTz>>@~@AAwxqq$(66E@ , . OU]_@< @#A#%}%''))++--//1133M5H56688+:#:;; = =[>_>??@@AABBCCDD|E{E'F"FFFEGBGGG H HAHCHwHuHHHHHnHlHAHBHHHGG8G=GFFFF7E2ENDGD=CFCBB@@v?w?==fovĸ¸//MLλϻо˾FE¥đō-.ȒʒihGF>@B;MPqq֟؞ii$'uuts~ 1(06 ( "  fg\_ ##(%-%+'*'!)) ++,,..[0c0 2 23325/56688j9i9::;;=<>>?>??@@qAwABBBB0C)CCCCC1D1DZD[DzDvD}D}DiDjDBDU>==;;\:a:88;7>7553311//--++P)S)&'$$%"&"pkXU --ZXNT%{|NLTOސܗNG(,hf34ɾTT kgҾѾTOz|TS̾˾kg'* =@Éćuv$!̳̿η,-}~YTvwrr)0PKlp%$   =8to  ""$ $%%''^)i)**t,u,--3/7/a0g01122p3l3D4F4445566666677D7D7@7@727876666D6A6555 5e4f433221100h/g/(.(.,,w+z+*)((&&`%e%##""j k D> !  76IKZY+)][6=#)'4;jduwܯڹyrYYWXyp֧ձ{} ԼӛӕӔӓӾvv շնՌ֋׀׎؏رٮKPܷݳ0-߻PPURon((uzDFHJfi RSkj E I j i q s Y U & ) nm"&vsRP$(`cy:;  ::IB@?|v!#} { ] ] E D 3 7 / ) &)/)35<>KK\apnz|rnOQ72=<- , W O f g [ b C E :=MNY V ? D CE.0 &&y{^]UQ۸ܵܶݷEHtx/3 X\rw  PRysrS[ ga kl_ewv19B?)*#)2*;<C=cc7 8 v z|/07>VZQS*(}:<  !!eh<<qt/,61ytnoC>qs ` b ) & c]~xnpϴԴ"Ϋҫ۬լ %ƷȷŴʃЉ&"W[CFVTSVsq-0ZWkm1.?Dmq@?KE  $ (# ##a&Z&((**,,3...`/b/H0H000Z1W111111111f1o1]1]1_1\11111120222334455f7d799::<<??RAUACCFF{HzHJJMM&O-OQP{RRSSHTGTaTaTSSRRmQmQOOOMMMJJ9H:HEEBBe@b@>>/;/;662.1.$$ 66ԨԉɏBB+'UUNLA@Բݺxw km ݀|qs'%˷ƿYZ ֿտƿĿ10om#!20fcjm B?vz&'ro-,б̶̙ɐpnû¾¯éQ\ŻǷʼCI()--ޥADRP|| IE44im<>4l>_5[5$$pq34ʽYR KPƥլr o YVM K ܧlmyʁͤӥSQ?D*2PKMRpn٫ԫzzІ҇CBՉ،" WWohahmi|sЊҊNS16׸ֲ֊ՌЄΌtsFGIEаҳҶԱԭֲ֓ؐ57ژۓۯܰܓݖPO߭ vx ::'#hq%$~}SPZV GAlj7 6 86 5:dZ}XW/3tx !!##F$H$u%u%&&''))]*^*++,,.$.]/T/001122-4/4f5c5667799N:L:;;<<==7?9?d@j@AABBDDFEHEzF}FGGHHIIyJlJ[JeJIIrHsHFFEE]DeDCCXCZCrCnCCCDD8D9DDDCCBBAA99 47 Յ빸ȵfh;?" ϷԲ21ilCA݅v{^`%x:>??@@BB'C#C?D;y|CE$ uz ~EG!!FF46(&HH" "& y}CFqr7:FE86ci߆߂ߋߐijGGݴݳ݅݀ݚܛ0+۪ۨUOty! نن!ٽؿcc׿ccװֲjg qqԈԄ87ӎӎ<<ҠҤҀӍԓ(!'׬׫LKmqۢܞ]^\dޑ߉ߡZ[RPccxyffBE:7HMLM?=%%!"!&' vztpijaaYYPOD E > ; 9 6 ) 2 '   |ypph h ]!_!T"V"J#I#>$@$2%2%(&,&'!'(())*)**++,,--..//00112233445{5n6v6j7k7X8U8U9U9>:C:=;:;2<-<==>> ? ???@@AABBCCDDEEFFGGFFxEEDDEE+E.EDDCCCCCCbCcCBBpBqBB BAAAAUAIA@@66$$^a-/"43lndg^_2-kqRQ>@<;12il3.V`!;;!"pe>; ehz29wz14ߞߝJMަަecij܁܇44۔ۖGCڥڨ[Wڽپjj؄؃/+וו@E֦֧YW ֹչnmԁ|fl ZZ֞ף\Xؽؼ؂٥ڟڴ۶u}ߦ][-,' upV[A=vtJEWP-+`e=8smCH {wOU'&\Y1, c ^ 7 5  e`>< fh==ieCDl j =!>!""""##$$a%i%;&:&''''(())c*e*7+8+ , ,,,--..\/]/10/0111122}3{3Z4Y4'5'5556677u8x8K9M9::::;;<?>????@@AA\B^B2C5CDDDDxErEjEnEDDCDCCCCCCDCBCBBBB~BzBFBFBAAlAeA2A5A A A@@m@l@@ @^(^(ǹ#"EEFDGJDK[XRV|{FE796>CGE<= {} v|utopca <99=LGpi73VTFC;:jk"'ߟߢXZޓދGKy݀78ܱܵng$)۞ۡXaڎڍOR ٜٕ_b$خةnp8=׀JG ֜֗և։-.AH>@ۿܾdhݘޘtsLIEC95kn$ GBgq% OO}w15RQ 54\]|?9_]8=e^5;[Z  ~  : 3 [ ] x~13TQt{,'OEjh!$F?]^ 5!/!!!""P#V#$$$$o%q%#&$&&&''D(B((())_*c*++++,{,*-1---..F/O/0/00f1h122223354644455Q6O67777o8m8#9999:::;:;;;<>>>j?j?@@@@AA9B5BBBCCCCCCBB\BYBpBwBBB-B3BAAOAQANAHA1A4A@@@@8@9@@@????^?c?((*/˯ kg __  _`# VU#$?< 6:~YVegsv}~ytv0.fd-+@FGFG>BA$# me(0LItv))VY"%TR!|JNyt>@ pl49ef0/[\&,VV"$߽߹߀߇QOޯ޲|HFݬݯzuEC ܧܣqm>C ۤۡkn94ڜژgi30ٞٛ_`//؏ٔٽڷڌۋ54ݔޗނz%&&,\\NTB:xz_^;<+.kg OO5+lr MO12vtLR19vtZ\97vvUZ26vr  M O , . p n JM*(df@B][8AsuJJ*,ci  =!9!!!z"y"####T$U$$$%%+&,&&&d'h'((((>);)))x*x*++++S,S,,,--'.'...b/i/0/00;18111v2q23333G4J44455 6666W7V77788(9/999g:`::;;;7<=<< >>>J?G???z@|@AAAAAA@@w@v@P@U@n@g@D@J@????V?V?O?N?#? ?>>>>W>Y>:>3>>>;;""?<оSS=BGAQRXYrtRO.)ho" llIN,4?>JHQKUV"$VT+%\a&'_\+/b_..be00if4:fn89 kn<> ssCAzyFF }zLH߸߷}߀TK!޻޶ވއVT'ݾݿݓݐWZ+*ܒܓba2+ۜۛai83 ܋ݑ@Dy~`b nkxx lk&*lm41mn91ol<8or<:ts ?8qv =Aup >:ss ;>sk  ==ok88ki3 2 a _ 2 + \ Z %(OUJGC@nu :>hh.1`d$"Q U ~!!""""D#D###p$r$%%%%1&4&&&a'c'''((%)!)))R*U***}+|+,,,,B-=---i.i./////01000Z1]111223333E4F444t5p56666572777^8]88899: :::G;H;;;p1>>>,?(???l>l>==== > >==p=p===<<<<<BVVE?''.3pu VWut56UV;9Y\<BUWlg>@ US%+so=>Z_(%nqDC\_10tzMIdg85 }TP%)ljEC^Z20xxKMhc>; ߵ߰߆߄ZZ)*GK vt33(& ZXWXz{<7XWnh-.NO_ez{"53TTfh| %!;>RTmk~~%$37NVln73N I a a w p     )-=?VRhg} ,0@EVYjg{.-=@ROj\s x !!""""&#!###6$9$$$C%D%%%^&V&&&f'j'''}(|())))****%+&+++6,3,,,C-H---V.Z...g/f///u0t000112 2223333.4/444?58555M6I666\7Y777a8e888t9r9994:3:99M9O988999988q8k82818)8*888$$36+({~%"(}{RQy~5*KJ(qz'fj<:`b__fccd''vu87[Yv}C@bg;9 ZX89 ZZ0*PK#(ptFEpq>Ee`<= _b72 ]_-+ PR//SP%#yrJO#$yuHLqsEHto?AXV01`]~PLpp v}&$% OH^Vddts~|'$0/:6CKNLYR^amqtu~ " '%.-857<D D G N U V X ] e d mkrqyt &')*(2278>:?@GFNON N V!S!!!S"W"""V#W###_$a$$$c%c%%%j&a&&&h'j'''m(h(((n)r)))t*o***q+p+++t,x,,,x-y---{.z...|/{///}0~00011112}2333~334445555666677q7u777A7I766666666M6K65555##14ٰ٘WY!#VV)(ijZclsbb}sy<=+-lhQVAEQSNN}zX[lvSP$% WU17_h=<jg>?plvuLJ&&`[=>qrJH$#[b86 nqLL \b77 ruMJ$"``95yyKN' de<=y|TR/, mlEF!`]02 rtKL)$QO(( A@xaY77OL$$|}jmTPLP02"!z}kk[[KE=:-.~zkl_\JG;7&"uucbQO>A%'   z v h _ U P = @ '+pv^Y@?0+xrd`NM23"fhNL9=""~g g S!N!!!6";""""# ### $$x$~$$$k%b%%%H&L&&&/'3'''((((((s)o)))U*Y***C+>+++%,%,,, - -----d.`...C/F///#0(000 111111`2`222p2m2 2 2~1~1;*8*vx߷ߞݢݥ>?a _  '!^Z$.?;RW;<LM41MI2B*(|DBacMI==,*MM#hj42 {qVY;7rlIL)(rtFI(#mpIN&&llCF%&khKI&oiIE!ieDK!hkKH#nlFI$#zBG ^YGEMI |wlq0/ 3*61BD |zkbdeRR4.kpG? kkNM##ikQL44c`: =   a e 8 9   ~ Y[=>okKP,$kmIJ$%nnRO', ouJO&(mnLM%% p p L!L!!!$"&"""""f#f###?$>$$$%%%%%%b&\&&&4'>'''((s(n(((F)D)))******a+_+++7,8,,,------b.c...5/6///00;0905/5/**"" {z߄܃ܱܲ.* & % GP'" CAXX&(`^7:AD |^cnnFE:<+&~.+#"=Z^?BKA@<67ZWhgklTW5/jo JM-/YU-&  `Z!)jf')qn@: qxcbZT@D;<(-# |`jCAaf gk+'LNACYO9948ytNM;@72pnso*.FISWJG'+KMHF7822:6YV'+  { s _ ^ L F < 8 # _b7<sn84TU jj#$}AA]h++nkABed=>UT" ( S!Q!!!""|"y"""6#?#####Q$U$$$% %m%p%%%-&*&&&&&J'P'''((t(r(((>)9)))**n*q***<+?+++ ,,x,y,,,D,G,++5)2)&&y#t#!  !66"!+3ߦ)# "fhp o 5 3 |!$  b Y rsde/2MKZW//& QR2-98||mkb`R[jh/0 --MJDJ43X^97}_[ '%64;>,/ !tpQO69$%&".1ST/5"kq+0%!IIkglg!"st18ib*(8ARJZ^hetr|| -/VYz}RX02BAyy~ $)PP&[X98rk ;<eg !   e i : 6  N V Y Y BHOXKF0)fd DAzy&0ed$"a`85!nokiyx54RW! XY+.wwTW; 6 !!!!" "v"{"""`#_###O$J$$$0%/%%%"&&&&&'u'q'''U(Y(((,)3)})z)))))))G)B)((W(Z(''&&%&%%##""H!K!RT9<ji |ymrpl_elabjvp%(sp&$CCnjii߀}ޚݛwzqp ڷٵw~TL=;27NMgk٤ٟJBڪگ,'۷۶INܱݯqoDF$02OQts )1VS{('00?=>B<=06%RW gj!|v &ok       lm.-!%C@;;  fh  TP-2XPxz &$53;?GHUR]akhvwBorSR QH  LD. 7 f b  49SNiky{~ps_\54xw.- 6!;!!!n"p"""~#~#$#v$u$$$R%J%%%%&T&T&&&&&''H'J'v'p'''''''''''''''''''''''''}''S'T'2'4'' '&&&&v&v&8&>&%&%%%%E%F% %%$$$$>$A$$$##}#u#2#6#""""t"o"4"<"!!!!!!R!M!!! A C sqrmD= &^^m m E D   \],)\Z01Z`C;&" (+OK|/-uz)){}ag`d>7  9=faJIBC zt`^WZgiHFw{ZW39vvHJzt ()=CBC/5~x6?56~23X[WV-+{{0/;?"HHdgohgf_ZNJ78$$ } KF~%#{/1xzFI''YU ]V lfJC<:OMxyhiDD mlAEsx^XB?*/p n Q Y > ; !   x{QP&&OT97??}z38E>9;  P!H!!!!!N"F"""""##[#]#######$$C$>$d$f$|$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$w$x$c$d$R$U$:$9$($$$$$####n#j###""N"P"!!R!K!   ik#AFc^ns~~zzvvhbSR.3 KN  L N {t0/]Z^d((suS[@=(' " ))C?XXx| afwq[]plQS jdFI/1 #(#10JNnn MLIM|~ ;;usee dgy}'$86>C:4wxC?\\baQP73PP8@}t57YXtomiVU68uz>;X\ECwz jiCA !fkEE,5 $DDss_ePPxvvu CCb]iihk\\ gh^\&'meJGglNH52 s t P O . *  _b'+~EAicin CB`aqkkbIG{y) ! q x !!J!G!~!!!!!!"";">"^"f"""""""""""""""""""""""""""""""""""""e"o"["S"9";" """"!!!!!!8!=!   87.3SRroprXT9: y v JLZW*,\aAB*%  ,(KLyx%"dn|yccliDBji<7 +%UYZ\ hmBA'+.+A>ac($dk LP>@+ pl ACnj ll52.1x82lh  WW!#gi!"{)$lj*(?BHIBH58%, koWUIL?DONfb%"da ie!'qpCC 64[_]T[\.-00_^HI_]VT|zGN!hk7:ie25  u q : <  IDxz&(/+pj  74LFKL@@CB>9  MH  3,TVjpkl^`DD2+^\om_` R[2*MOlr qtddUVED,3%!.0PJrvVWDE {vy##mn%"qjDC/-OQxu*(mqfn($tq_c`bji{ 2,VUv{ 74VTlq  w|a`52MM;:}/0[`   TY!){w56LPJGuy?<[^jitrwwxz~w%#FFouTS_`]\,$yzmjsqnt|}LQ [[da./ =FWTnq))ZV UTED xvaakm2564Y].0()GLss NM.)<8diED+- # {yVT#*KLVP*5umCKroSQ'*MH}{-.-1v{FFvs '"?=SZli ,+NOzVSLLae&'}LP'$"*UN~65~~w{::u||} !(RQ48{(,34JKfjA7V] g g   l n   _ ` 88aa~w    b`-3SRFJV[% KRvq#$&*0*12-23($& !gkE;  |z#)WXifPS |{dnUM|~   9 3 O Q ip%!CEXZ{x 71ea MN52LO(,(.TZQO Z[.* BJvqaXG>TY"emPOA?3901+-)/1*&" |ac46743:ba}qoPPAC2,$ $(?>DERQD>$-uw~#!B:/3psߵ:2ݿZT؉׋0,ԓӔW\&#*%baɩȩnmx}ŊŒgaQL@GVSlqŨŨJJƵƴ62hl"ʮ˯˯̪̺ͺJIѓҏ\ac_ٔ۔EDeaHH,/!" %"<9FEaaxy $@ @ T S i l |ydjJF#!*!""$$|&&/(1())++--..001122S4S455668!8L9L9e:g:|;r;yY>6?8?@@@@A{A+B&BBBTCXCCCQDIDDDEEqEsEEEEE.F0FVFUFwFxFFFFFFFFFFFoFsFLFNF)F$FEEEEEEVEOE E EDDpDtD(D%DCCuCzCCCBBaBbBBBAADAKA@@@@(@(@??j?g???>>f>i>>>===|=5===<<<<<޵߳ߞ}ptGHBH/-;A*,9=}&'509<00`age ff&ql56lm #72GFXOZfdfoovosswvqs|wqv{wxsuywv}1-UY܎ۋMLؙٜQT׶ֹ#$֙՜գԠ/7qmҐҍNSѾѴѶѫѩѪѧѯѵ!EKҀyҲҳ46xwok!|}@@֦֥ {v[S?;ٻٿ<=ںF?ZX܁}ެޮLNߋ0300>8SK np))IIhd" |}46380/svLIy~.(V]nl"{53B B V Y  l v ' $ B A __FEnu@D upE<zzPN(!ff=> |RV01 xuNN## a _ 9!8!!! ""o"u""">#>###$ $t$q$$$8%:%%%%%\&Z&&&''}'}'''?(A((((([)X)))**k*t***)+*+++++>,8,,,,,]-T---..j.q...//*/////F0B00011c1e111(2.22222S3O333!444444S5R5556 66666c7e777;80888 9 9u9z999K:K:::; ;;;;;]<[<<<&=&=====\>\>>>#?#?????M@H@@@ A AjAiAAA(B(BBBBBBCDCCCCCRDZDDDE EoElEEEEE EECCAA8?SWSTIG;67;LGZWYWZVNJJSa^jebb  WXZU`_ ^ e  g e \ X  Y X  [ a ^V_\ \[WTPWXTOSTQLILMJNPWOP@D=??B>>672 4 )!-!!!!!+")"y""""%#(#w#{###$!$t$p$$$%%k%m%%%&&f&g&&&''_'b''' ( (\(]((()(R)Y)))))Q*R*****I+M+++++D,>,,,,,?-=-----<.A.....8/8/////(0)00000&1!1y1}1112"2r2n22233g3c333 4 4b4X4445 5[5Z55566N6R66666G7F77777B8<8888889799999+:-:}:y:::;#;r;t;;;<>Z>X>>>>>M?N?????p@r@;;(( Џл̻<> @AAAYRgec f J N !tvIFcbYS247;jrKGdg)+LK)&)*B>fk8<(#RSW_*'nr21  :8?=$sqW]]YURHJ,-xv^b@C|~\\=>f^GF(,pjTX57! yb]EI-'mhST43zrU`AB*  lnQG21zu[^DF"hkOJ63|xYZGI(' koRV@4 zg]EG-,srZVAA"# ifKR:1~{_fI@,,qp]Y;=!( mfMP99{f_OM+-{v\`?>-+ pr\X==$"lqRU79"moNL4/meFM2/yedCI3.zz`_GE-/u}`^IC)+~|``CF((tw_aCB.'{r]`GJ+)|}{z :4]a00',vv!%wx ^[ NUJH42((yzda SWLF6<,&vxhk VQIG65"#wqabOP=?--{{ll YVDH98%#pn^[NK85"nt[\KI82!!rqbZF F / .   k h   U S A > *%v{faFN1/mgXW;<)$vs[\HE11}y\gPN0/lkJN77ih  R P 2!3!!!!!""k"q""""#M#R#####4$3$$$$$%%h%k%%%&%J&M&&&&&0'4'}''''(([(`(((((J)H)))))**)*z*v***++^+]+++++@,?,,,,,%-#-q-o--- ..S.S.....5/;/////00h0h00000H1H11111.2-2z2w2223 3\3\33333<4>44444 5"5e5l55566G6M66666.727x7v77788Z8^88888A9>99999::$$ͫ]\:<JGpoFFGJ58tqOO?>;847ddZVYYLKbe +.pl#'!$fg:>*0ccIM3- ngLO51$ hlTT7>"!spS[C<%) }wZ\CC4-}{_cLK23lhPT77 otZV;;&#tvbbHD,.|iiON76rsWWBA)(~|ccFH51ipURBB${u_bLI04hhUS:>' w~_^IK-.snVR;@&' v|d_QR72sq^\GA')rnTS:=$# vyhbMR74uy\bKB'*krYUB@$+biVU<:#  {ceMK2: zvcgOI12ywY_LH12tv`^ID02qp_^=E0,no`^EC,.~ )+45hjTUwuIR05|z VO/(zz XZ2.{ TW54z~ WV5-~~TS63{x[X0/tuUW2,qy RN*'tqMJ!!ooEE#be<@`e75~WT15wwON%%imAIdd< 7   U Z 0 3 r o  H M  # h i 5<UR,0vpJI!ff8:~  QU+ jm@E]^1/wrHC]_15y  JH!f^6:~}  IM  e d 2!5!|!z!!!" "J"J"""""# #`#`#####,$0$w$z$$$%%G%I%%%%%&&b&b&&&&&-'1't'l''''(E(F((((())Z)V)))))#*#*k*p*****;+7+|++++ ,,O,T,,,,,--a-_-----3...q.w.....@/@///// 00W0W00000$1%1i1d111118252x2w22233G3E3333344;5=5~#}#^Z-3%-0+(tu~./ehjaHJljGJTVcdjk{t`Y{.*EBFJ2-$ MN.*  jpMP@A1.hkZ\LB)-qr]^LF.1vzeaJN63! |heOU:;% mnZZA?*(xzZ_EE21|fhLI<:!$ qpWV@B*'xzacCO<2 kj[W;;$+}}[]MI12$"nmSVD>*,{`ePM7:# tq\[HG-3{nmRR;?('zxfeLN;8"" psaaKG.1  snZ^C?/0kkUY)(zzjfNU=<(,ijTW>?0,~pmYXFC.1qnlmvx jl$(gd8<|yMG XQXU!gf/*qv57xxAAIMSRZZ&$fa+.pm3/wz97~B= LH OQVRZa&a_ "ie &rq2/uo53tu87v|=:|y:<@=} BE  H F   J D  H J   L M  J L PL RMORLJ OMMN KH  FJJFFIAC:A~=:z~=7x{1;wt55np*0lh-(dg  ` a $!!U![!!!!!""U"V"""""##T#Q#####$$I$G$$$$$%%H%A%%%%%%&<&@&&y&&&&&6'8'u'o'''''0(.(h(i((((()+)d)c)))))**\*`*****++Q+O+++++ ,,F,M,,,,,--?-C-}-|-----3.4.y.s.""75ޮZa  DHkfOJW\LIwy&#<@rwAE@B7/41Vd'pzOOJHE?khDEdhnsJI1,!&y|ddX]C>37xt\\KF04 zvghQO:<')orVWFD/2 xz`cPP=7%'hi[]DF2/#!{beTR?B'(wqabJI.3%#nkY_CE12 gaNTBC.'xudfPJ8@&+svdbMI65'%nr[`NP:8!$qp^^MH:>#& su`_LL63%%xvdaOO;;('tzeeNP<>/*|koTYE?1+" okZXGE29&$ xu__KO88,%}jgVX@D.*  lqbaGK77&%ytjmZU@C--  wr\^QN8:%(zli[]OBPU MPop//ro RQ=6|(+beZW HF4=wo+(a`KR@@vv,-gfSO@B{{/-dhVYA?w{0.bbPR<@yr'&adFH56mjY`DEuv&'dgJK.2kiTO:<uq ! ] Z   E D x u ' & ] d   A B * ( c a JL}20ef NO.-igLN-1fi JJ)-hd MF},,^a  CG{v&#]]=9qwUS20kkKM~.*_c BEww  W Z -!4!l!l!!!!!" "K"O"}""""""%#(#]#Z######$@$7$o$u$$$$$%%M%O%%%%%%%*&&&b&d&&&&&''>'A'v'r'''''((P(S(((((((!"ٺK N rx79OJ~XW!"yw24b_~JI;8OM>?97UUCC"&vsjnhmSU98y}dl[VKO<2!_hZWH>06#|hiTOGH/.# ~~lgVSEK31 y~rh[_IF72"(os_bOL7:/1 {zaaWVGD35}iofaIL:@)%!xyokY]LF67'{wgfSTL@.<%  wwacXREC(2%+ tzjcPVII5, ( }xffW]EC88(#~nq`]GL;826 {{cfQPHH3,"%npg^EQB91/#zzoiXZHR962*"{}mc\_@LA;%%! ||kl^VMR==.($ z|up``JNDH/.&#yt_m[SEI><&+ ok!#gf*-cf*/jg-3kb2.nj)4ln6/ii1+bd+)jf/-^c)&b\&!\X#TVMO{DJ{x =@ux ;>ff-.cc'(WTKH~ ;Atr76ci&#WUJKx{  :=so/-V^  S K u ~ < @ e l ) % X c   J M u y  4 6 h ] NP| <@mf+(UR>6fl(&PW >Agk#$PO84hi#ID}z /4]^A=up(#RUx 7<XfCBqr)!OV~}3/Y]  ==lfIHpw% $ X N x v !&!(! T M jf97 ]\UW`Y}ws=G`ZXS/7! B@op_a  Z\t 79 y8;dbB>VQBK&' BI`W rv[PSUMLWTVaSJA@&*zz`YLU>9*)$$}zkofhW[FG;>4&$tjfa]NP@<'+ }|ktfdSRBG50&& yzol[`PI;G>5$% v|jpZWNMAD0/""x|dl]_TQ@>36'#{lldbPPGB:=%'" x~mi[YQVDB4-&}tcdX`KNA=3+) pykk\ZIL>919- uyle]aSQ?D152-pkgkXSHKA>59"$ pnfeZXFE>>.-&! }}tpa^VYLJ=7/3$*smqqYXRVFB;8). ~u{klfmhgu{SZ=>%\e%#D@Yapm=9cg"%\] >Azx ACjm:=aZz~#>:cf::pg)'[X~61WY 17TTxw -0YU~~?Cnl<2cb+0[W~~?@ig%LJos*-NUy8:dg&(UMxu  < 9 ] ]   : ; f i   > : a c  ! @ 9 a g  " B = f e )-JJws ..^Y~w 37XZ .3Z`zw 0,VXsz),SNsx'&NLpo"JEeh;<bY .1QZwu )/QIpp*&HLmp2 6 : 6 xvz}mw}t37URX[gjILIM %$ ? < kh,*FH/+95cggeSO' & < A wv HBf`CF.(23DEvtqyIP (a`;=ea03ko@8 PRLPe]ABKG_W_kd^JD!_Z &*$# lk13GQ vmEB.359POC@vvSR)-&#IHjm LU58-39;ORRL73~x1(YY  gkHC]Sc_$$W^F<qt..mo0,LLed;@"!zrvxpqopomtxzz,3PLfi~ )&>>[\tv)#4?PIVWhmsrxz{kqfeXVJE/4!" xy][<8%$u~[T78ca:< shQR2- z~fc@E1,ora[RMCE:8*+"$  !-&686:HHMKY\j\ostz13LAZ^ot22ILmn@<[]#(MJy{&#WW@Bmf13^b,'\_!VRIK|y >6hgEMxw!$KDtr1/a\z~ $'NFil77RUin-.AAVTtj~  23@BTNbiwz&.:7IGaelp  55KK^^ns   0 4 J H f a z }  ' 7 ? W W } y  + 3 L K j o   / 4 \ T q x   . O G j m MDac"=Dba9;\Z .%HLpj01TRmq %&II^f~~  "'66A;3<) @?NKy{w}OJ   u l  f ] 10pp*+ggVQUT-1x}&)~GF#! <4utCH pn^XPRFJOKMVic|}"YO'!pu*%x|LL() -0HEe`}y #48A:AC=A,2uNH ]d  R R   B N   4 7 F G W Y e e o l e c h i W [ N J 9 :  %   e m 0 . ~ > > \clkWY65gf*-PV~y 67^aLS~$fdOXX\u~41vuF@PW33~~z} &D@f^+)XZ!$TR-6jgPU 3=|u"TT2.UWB7di47TPjk{}zfgKM31nqHI"!vwJF Y\,$e]"+\Y#&`^+'cf<; cd67{af=>*$ {klU\IG7=3-!  %"%+76ACNH\^hizv $9>JGkcvv20QOjm"'>@_b/1SKtx("IHqt'+MLsq('FLqi <>ff)#ILhk">9SWrw +*D?WZnr.,FHRXlix #(52DEVOccil},/B>FG\[fgxv"+<4IF\_ij~|).=<QXji{..FG]W{x""98WWnl (*=AWUss  ' 0 L I _ b } z   6 6 J M f m y   7 8 M P g k   ) * I B ^ ` o q   + ( : ; O K g l x w  4,=BXXfjykhFC P U  S X ' ) O P ^ c [YPU7=hd@;\[<@&"97h`KHXT `S(1vx|v{| 0-\ZDC%ptwz91ii9;fcIL51 `X66 jt5-MCAI(#_hUL  0 5 S U a _ p u   } ~ s s ` b G I 6 3   ZX)&BC;;X^  kfonhf TW OSFJHADO[e =:yu89]Y"+Z_?B " "!??WYsx((QRzz/*YZJExy <53$(VYil~HE&#}|(*QQrr=Cqrdi_XYZWXY\_]hlzy3.W[ 29rmK@?={vHM).tohnnj&#EJ qj=<}Z_C?&!myabWZDJ=A45*)# me]XLG(0 ]c53 }{AFki14H G S U S X G K 6 2 b[22v|?D}?:|58xw+'ciHN64ml \[ KC@@|~?3w}=ATX)-tsQP27"*pn  g j !!h!g!!!""k"m"""##r#o###)$#$$$$$8%:%%%%%L&N&&& ' 'g'q'''("(n(m(((((((((~(v(>(?('''' ''x&y&%%&%)%f$f$##""!! |yNP0,fi  s m [bNJEFUPqtYZnh@G-+%,(54RYUT/(38{99OUOZ89F>vn @? ~}]`CC''nnW]D<%&IU  4 :    3 3 ,(a_<;nrgd#+JG  - ) " Y ]   ]^3-gpC@ki 0/RXzv++XO~|:4oq!"ffKV gi:6&";Aor gk mj<6<;jeCB} R[FJRQ lb'HD qk,0DBW] adjjqnlq_h X_EN@:.2~})smcaWVMVSQSS km#|?Baf40]_22ssPR/1 v u d i W N K F @ < ;<032-2*3*/470;549:?==BG?@EE7A>=<>23% * !!!!" """""i#k###V$Z$$$<%<%%%%%&&+&4&:&7&*&(& &&%%%%5%:%$$K$J$## #"#z"q"!! )'70-;/.mq/0YV i `   b l vx+%_`%&kkZZROWQ[]ll MLLO'*11c` wyEBADtuHF^U37(+43UW%%hgihnq~u-+(,yx[Z44>7$#^gdc/0fg  sn=:xw1/|MLfdqjUW<1 rk-/0.+(zu\_@B-.vv$y=9ihHG12*+97]V:<_a!zsgjjoqq"&ggZb/.$+9?x{"(ZP qmiiY`[U]\]brq~ +)OPvs!$OIy~  J K tq ,*9:@>FGHDBF::). !!h"b"+#.###$$m%d%&#&&&p'k'((((8)9)))O*Q***E+C+++*,",,,,,F-E-----..6.:.B.@./.....--q-t--,},,++;+C+**))((''&&%%$${#~#B"D" IEvj{~nmPS&( h i BG00+%?=jh`azzWYEF4784C:?;{ po   BA~x  }y}| %rq,)#*zz-,(#kqHBih~}GFik6:/.cgZ^RTlh99]^stDwpEFHK --|}&$!%'+ XYDA\_HECFYRtrKM RS<8y|33(00.),?Cmp%)USXSXV`_,,62 #  ` \   > B ]bSS,/   +&QVecgc\[U Q il_\HK    r s  nk !"GM9:lgrn !im  IFjkcadc*3JH LJNR42DHwx-)C:rmdaacqrwvus]a94``uu_`SN@AddMTY_^[[Zkj96TSytCHkl>Bih::cg70ca27b\37 Y]21 a`07 ^c,-'&^a%&Z_JOPLcbQSed]\a_bhaciiclije d d g e b d _ c _ [fcZZ\XVPSUO a^ILXUll ,-,+GG FFqu RT)0IP$#34wp!MO}|16ysLMqo2.c]=7mhLO%+~WT.1]h;3 kjED"{yPT)$]c7< knMJ !}~W^a_Zecd [avxehLIVV5224% speeXTOK7 6 ) -     { y j h UWHJ-6!  22hhWTw~rq64:=BA\Y_]RWLFBE<DbaXV,+uq?D,. gjLO _\8< zzOM--pnDH!`cAD_\36}tQ\2. xtLO+/#`e ,+jjWZV\"[ZQS,/giPN39kfAC&* w | ^ \ 6 ;   e g GC!&jo YXHFKJ8=^]PPKN><54/)#su WVno@<tuZ_khXU(&DDlj@<W\EC17suUN#!pqLM'% xwOT,/{~VR.3[_<<gjDH$qvON+.}VV@9ie!&03LJCGjiVV/)mn7; {zNK!#^\(/jf9 = x t B E   | L L OP mn9:B=(*OMXV<;AC^\ejZZ+( rs_`:8 edB=!"~xS[<9qoMK'0 |ehC@"$~XY;<qqZS/3mqOI05 xr YVpvKIaf12YT(xzCIpk58YY""LD mm0.T T   | v A <  ] \    <D-'Y[hiC;,,BC8>olSVsu69C?DG{}QP@?~WX}|   w|aZ`gWW'"MO03"&^fHE}dgGG%(onMK1- woVU66}^fG= 'njNS0-}Y[A?(,GLcb8:)(!~XNV[ rq();=ST \axw.%D>KN ^ Z  j j # ! r x 0 -  rlv|;<0-#~bdSR(!%,ppDIy};:A<tq;> iisrnr<=uxYTJJ00 x}WV7=$ pq]U58rrTS35foXP54kqSS:4muXW:6 #1/``^c KL mq[Xge ci bZ `f^] ZaUXTVOTP G I I C A l`FGuxjjFF<4cd#`\VZ*$[^A<qp ;@8;  25tr1:mqWY,( xsT^I=! ejPJ.0sqbcB?*, qoUW97&*ohOT<5&ei`[|t4,OJ!!^_ ZZF=4+w|khVV=<&(uzSWC@) ) u u  ` \ LM97?8cc02SUF=UYBAJQwt1.4:OK!LNlj*) "''cmB@.2" heKT<7 ot[W;?)){z_bJG-1liQUA=$! ~|^]KQ30tq]\FC&-C<$(OJtu3+<8)#edSR ojA?!d`A>^Y00vv MK"gg; = ~ ""tt#88z{CAibLRrjgi`^  TP%(!hgOO8;*)~hcZZ>;'*ko[YDD/)zrbdLJ01 }}jrSQ>7+)vuccII83 oomjldXY b_12ovGCKHJJXX!ch&(cb'*pl30kp/3qmmr42ckNPrr&,''^bUQBFXZxwTWY_mjty)%  >B>: mo_a_]GM++  xlUX>?1)toY[FK24 zwbfOR;:(%~oq\]IE27!! ij[TBD,2 CB7: EKyx GD~{88vr&%hdSQ BH51mt"*d^ML85w| ..fg+)`]'"MJLNQUom\]<706TW|{$HE98jc*+4*jkYYZZOO'/pmQT?D98  wr_dLN@7#'klZ[IK26&#mi[[EB.7&# {mj\ZWb:;`]}HBquVW**fd><xST,)ed78xyKLz WVio$z#]aXRBA)(DHsv4153(*W]Y[VWEC%& |veeZUGI46'! {vbiYRFH.4&}}ffZ]FF43(+ sm]]LN@@-2! %nt"(gh"``"[VRQGIuv>>kn24`["#WSee#"). b`19 TIUWOOQW{uUWmh)(JM4/oi]_TOGJ79! tsgg[TFA2>)${pnZ_NKDC00 "wph\\ONbb71RWyt#MQzvtucgjgz5/ QM}\VrpHOHFGD7:@>ts^Ukquqpghjx{uvRS;74:=755  r|ohaaVWJH>A34+.svfib\TUIL?;47)'$  {qnkd[XQUHI@C4.)/-#;Btu88QZoi#*LNhm(!9Bb\||9:OOqk &@C`_w{~RX3.'%%#so ts>DNQ*)"*==%(%#<?mkfiMGKIUZPM66#"  }ztzhffbTYTL?C<<34,&# |yjpge]\LSJPD?9;,-%& wtknuw#EAhg '(?ARUqm+,GIee}z5*INic:;WX')13tnpuIO ^]}|yv!"*./(67PW^^WT?<  {rxqnfhd^V[ULHI=@063/*' }|{lnlf\d]ZNNLNCB9983-($' %!DK\\jlqq} 4/=>YYtw "#;<TPpq 11FHc`svy| '(z spx{HO~wEF<>nn,&,$ea]\~GMGE3586'#     u}wrqnhdajb\\aRNGF>@;9-70'!#xyspnobf[YZ[NPKIFB?=8:02,+#$#  00QOuv %:5NNkn(#55GL_\rs"!qs z}jdgh^\('!AI7/OUce8- JD| @Ausy~bd96d]KK<@JHWXwynlTN3;''()1+=8@?DEEHBI@;.,$' yxmqrnhjfbej^aa^`aZZ]YTUILHG=A;8/2+)$ ! 21>D^Z|u $42BASSV]b]keomnuuw3.B>\^hh}{;4#%sy>=>:_b`^+-41%(vy,+qnIH>;@DXSy{!#heROxyurFH RZ1) !#BCTVvpflSO87wteg^_Z\KNHDGHC@>;AKDAMVMWYfekm~}31C?SXhgzw   w~;9chYW+( :7rp*%nn78{w<@_]wxrp`dLF*-onRR20   %*76>?OPVU`dlftrswwy}xy|yvxmnkecaWUJN;=33%"{||y||!!0.FEQOd]jpnkCD#"~zUZ4. w{vprryyx}97ZXx|++TKmt,)BGWTmmxzw|il`ZJE39!}eaFK,,qvcgTXLJ;=:5++&*$!!#(*)+3/::D=ELTU^amjtr #&"*&)),-,,)&).).,#$((%#"         "()**4238:;<76=;;8;86462.,-''   #'));88?NHOS^_gbjktx|zynrmk\a^YUVHIB?6=./,)" ~v{ytsplpeiidcacc^\[]XZ]X]YU^WSXY^_^[b^cbablimoqsvv{r~ !% %(&+0-00/342237::889?9<?;@<=@?A;>CAB==CD;8@DA?<>?>@=>;;<:@;;;8>::87=87<62459;943377211265-05..30-0/0**0+)0,*,#),'*%&' *%##!$#"                                   garden-1.0.9/data/beat/stage4.wav0000644000175000017500000024065012457263310013446 00000000000000RIFFAWAVEfmt Ddata|A   " %'*),31579@=@DFHLMSRYZc^g]o^n]p`rasexk|owy{ (0=IRcq(y9EP=`da_!_ _[fy#7KW^_^V^]glomc[WX[ksye[RK6qvcUuIm>_,<01+I;bUtWTC, O{y~ukWHy:$+'.9CSW^]ebf lh-b4U6D-5("!-;KV^$hi):fk%!E6gVftSIIl)A>jCs+s~pGV+0^d6#V7zQn!Ab$Eh)lU y,4:CJ*Z:dPwn$Py6]& G |~f3yp %/7& V5{\Wp~cqI_d]UQW,gBGD:=OvC#o=Rm!A a'|.1<Vq;U7rh*2#8++C%; H=~<\ll q^ Ww),HZz8r#A[{3Y>l:f PL~Ag4l .K0rTzF u" J G$q`=Z 9 1 ^   ~ H * >  % H  \ @ | i $ 3 l G ; b D  @LfP-Bv  tlygi  7h ; \ t ^ i 3 Q{g]}Ft1o)q*@MV I  P  1 7 C U r 6 Z  v ; ^ " l o U , \  $ 8 c  B c  ~ ] ~ # ] " N ~ = #3y@aemVGjn;`/[\bl~|K7 "rf%h d)W)yiYb3v51E"CUY' )Yy|/:uh Ay8HsFqM1mAmCMxPk;&OMohGqU;T-Yl8{g}L&3.t8 uWK?4% <&5/Pg/wVt^;8#Vq dL&6Bj#;\;|w CObnx.j.Mbr9}w2n5sGo)g.o7W%Gb]&r5F~8qb'l$-<q an$ lQ  c { 9 e  F  D v ( q SdpC V7G* R:3jB#WkcHf,~"/"P?JCh 2     1 W 2 }  D OJ }  8  = L $  N ko xOUF%b9 zg.l! I=y7bP< U | Bfj1Cf36dL4l\_+rPjlO c2c NZj6 'LSlzB   s _  S =  ` _  N> g ) %JYEG6e1{LZBg r=lXu3abSS*>ozz! smbI[u,qbdzykmrZa9QsaD:g9"b'R%Eg-vJ=1@9|Y>x: 6Y o   [8 p  r 2 ? ~  ' 1 X | / > z X  >cMh."jre4V"IFܟ|ϽcVMٮu-EѴх\j~!ͪJkR̳ ,<;>l̑˘uP>UQޜ˕ˁݶˈ݁˞d˨ݐ˴{ Puަ߲͟dg޼(c#+LOLr#Β͇ͨN+; ܐ 6|NϾwݹH{%Iіގ߼Ѩ(ф2l,V҄ӳ E3M-eԍ wt*~V50י?rzSؽKg٨4 Cڀ-۾L[ܚB6ݔ;/RI " 5  X  saE0I>S    m gM  6/       gEM@fy CtlXG! +&*Fsdxp2 i ?m  !   Lo  h E xoo!c, <  s X f lt`A[        oaNKyt>J0F  ]c  `Y  1 Z{5TIi"&U#W:n<EJ/o:~v"ui2fgG'AxI3oDK/lD vr1S:5>Q1ZPO9$)9VL^sF! T` M U   I [ Y R6 X m    ]E  f }"Ugn?&E23WP %hL)Z+KOM)';@}I+T ze)9nlKRCP5J.u_s^ZwX j79o}MF#:`aj["!j8y2 g A v <   FG ~ # )  m  l  y v s R 8)*G(4.nB e- @ TX)'/./3p13242536465Q8!68B6857754=52415262738495: 6\;6-w/5).$)"'2#'O#E'"&"'"b'*")"+m#).$/$0%01%&h/"&.N&-U&l-&-Z'k.1(.(.q).).).) /)w/)0p*0 &k2YD<4)oo%&YIZu ,P{oPJy;Jfu f:(OCs Pv&EA Q j  )?!_!h < rR+;W!(  J 8 %l El   J #  J +/ e +~{ ]$  *3 ]+u 2H:A>uC9b2VejqfB;vJ!H5\r4dN)\!UZVr2.~xceMq&sx|;SߌL^ڡ׿טgN `L"]5mi͑RkFkвОޱl>l>byy .͙vރͿ=lJ)L`iʬڴ ۼr/?ɛlɷ(ɔU~ݠknʁɏɇsi!Zݘc5ޔ˹ޜDߒߤ2˗ \5ߝܹ̈̕+ܵPF@L+ܤ/DWΎܲs] C Єkޛ9а*јQ1%G\jҘ+:fӡV(qP?ջ@2֗RKנ\Xؿ"yLپ.IfڡNE۞NPv(b6 5 o  $}5pmPN,   oJ D]  ")     "' F 9 2Hbrx |J A>G2 ,PC } jh[n8L>#:_ X  $H*>.eD !i   s B 7  a)  0   E s l(+n&D&Z3cR V n % Yhpw$3/^NODBW%&w4S !+tH$9c;I),OYZ[dt4%\<'#pX0;:'7>VrU  t$  - u -  `P  K;R/"},! Z|lc.fB9[O)&gT> OI71\A(/N[Vr-$VMm_n  pk@v1!=+2 N"G5F}F40:Y ]  ]    t0 h [  s E l >  =z  u- z   b1yj2-kcI-APZ |('.9-2{0`31 41 525 3i63h554;52414q1I40404515162.836949F5:!6Y;6@<7=09?:.@;AAM>2Bp>Bd49,Y1:'.i$l-R$.Y$/#/J$0u$1=$1 %f3&5'U6)7+9,f93-9-7-l5-3.3U._3s.:3.2I.2D&*! QU`,}r1x H!!W!{ V`~hxRx5kPUh'D;=Mn0V\%=chi (M*Qyr x! Wk22\.!VS; t *  D A   ;L  ]   jK h9  j M z]f7(e0 lBHNW!+DuXk) C 5N~[}6c[L4vOE3@6Su`SCg!}!wehAZ,4֥')˨ դ˓@Vμz`ݦu[ΘN pLθ^DTn>\ޤYDr~Mޢ̸R̯#߁ [ɆySKtݖaȕ2IA*8>5:fBȚJȳP܄ 7<Ɂݯ"diޣj"nJ˨qQ˄;ލ0ݪo#~i̤۳%Eaܙ͎\_"πu,߱ϫ [3Ђ^К O@omy}цMҚ|Ӆ?nN]ջ.֟Z!֙ hT׳=hh؞ cT&ڜ#pwk1ZvgIO !  cwNfs3G-. m 8 P h 5lo4Uf   U Q   3$3TCW: Mk |M\YO H(P _7\  3 )a  !*  " /)?n(aB1M"pZ "1 NP  IIg   MR?|A@0\<+0a  NAnJwHy lc[Lnn_$'G4<mT+JU8!5wkt(*[\, Rc;gj|G-$DHRs$P;UIGimc^x$m d3  V9  u    >- ql   <B?OwKiFSFXM`g/I 2;%WMtbV=X#iUX:6X?F};M0 d!(8Kgn KzK(--x7kJgQRmMfsk>#IY?%Q~ I G{    /  A  9  $ X 8   J+ g   T  (Ji~C6,'%s-+1 /1/2N0S311211l2713,131w31T302/2/i3&0d4051627384E925:5:r6A<7=8>:?@;)@B>B>C?)E1?Hk?J?Ls@MYAO8E1>=,x9*s7q*7+U84+[8,8j,M8:,7,58-&9J.8:P/;y0=0=1=(1=0=0B ~tNodlvD?~wL !|$5''5w7%zQ"hSX@kjl}#zkE;@Wm6ewK7&C.۫Ewͨ.EW.Ӑʗtk˨ag׸?ٯFκݨ̷͛_h\=ˬ,G9ݬhkɭۗ@HS˳ۿM=܅̒ݤ̓_5߁γv̂6\_%Yv]ƎiZY%%#Nۥ+U NXZ-ʢIbq0_N;}Dv7<ʩʤʋD˞ܬ_&ڰCLͲ76οܧFݶκ΂Rω!9[ϮrСАtz^jV\Dӈcwԭ^$Cբ`3R%Bm֔uZh-e^v:ZK c 4vFQZ JOsWy05e# Sl 4 ~ @  4<0H1o.$ ^ 0 0 ; O  ' ~g<0{&[Fih{^'~)Av( 5 !# B^ F% . )S  M Y ? 7 QFrU%io^?$Z6l`yQ/DQ[JWjK oI{VG=]ggK C48:dqb[Cn5,!.\9Yg0- XMePt$p] x)=;whJdiI.k_l+.uD1=dc8;\blrrE ro7ylY}R:#- +\%hv9!SqRi ?{tu$ GV o !j s J  n ( eu  B *   l ?  : 7q  E g  r-   Y7%bABW&$,+0;./.].j/-J0W-0-1x/2!0220z2D0X2/1.1 /2/3t04163737&4i84894$:w5j;6<7=29>e:9?(;M?o;J?;x?;?;4@3<@<=A=A>Ax>B>B>PC>EF?H?K@MAOBOCPhDSQD$RES'FSF?TGvTLC3O:Ft4C?]0f;.:.;.c; /;z/!0?1Af3C4D8+:#2Ig,>K)C)N>(%v#c!g  + v"$$T%%%ZC&''Ma((t.(D'Ra&% %.%3$>#!U LUYR L$!i8"C##$) #+  s ) (z x cQ  R Z  S [ T D  t / m N Tw  l Z!"fG^dFtiAXt=/ RCvBoO+d=+`xc0s:'X[j3ow~w8r@XqQsZor&B-~e1#m%xٽۯ,̽ґə҇dɎ)җҕ8ygRD^)&̓5ۇ͍͝ބR޻˲Dˌˇ~^ʴɓ=ܑMN(گj:2[ܼxkKLkߠQHi̙ɿv?ņ+  C J'ajizɎߋɱߕ ~_C:3CAD($z5KSsʞFW}̇ V݁%ͭ#͢ 8Gͷ2+΂oΧΫ]ϞυЌѷ9z҉F2ӂ1d=PԊbԌ0Nxigֱd"Geُ g1VVd-j48;17lAlOR(x/ ^   ) 02.;h n| ^ e q  [% @  C K a b `1} snN<l5";53KT-r"b h!#M'$ %%{8&b H% A& : V 8  d S ] [X X$J3V2U    yexXSu"r=M& mkn?sr&!K>3 J%& c H`j pq6eIG aF^ck{- FU QYHZqW1RTW 63nt2K0]D+< # < no  #   >: i  0 oA  :v.%}^@)`Hpid!'GWr$#(**U-*-*.+q/Y,/'-0{.1.1.1 /l1.0l.0.1/2,03*15)2626)373O8@4A94:6;D7=K8=F9U>9f>@:g>:>:>";R?;?;iC>E?I[@K?AMBNBO}C_PD4QDRkER.FwSFSGSMHSHSITdITIWUJ"VJVKWKGXAN@:G4B]2'A2B33Bt3B<4zC4RC|4B63A^*'9#~2.)-V,^,Y+%+&*V*h+,6-+x &*e ((d(4((KZ) ) P)i)(r(($),)*OK*G*?)]o' .   4t 0 y  N z |  I  R  9 0 |  ,V   e[D;=ly?SdE9?~8'kYxV Bx}>vOzYyJN W~j6zI(KzsM4@Lu IOsѭџ U:ɾ҉ɏӚɢ.ʵ6dےckܡ4U܇۰N7۲ȊT:uـ-Xۡܰmݖݣ8ʠF ߭̇YcUƂsĻ*9SZş#hdzȎKPǞ+U3\}C %4 _-yɺH x$˜YmT_߹"-@Kb[603:j!ϼ (WвLZHTU GBӠfNӅJԾ'WY~֡~^x4uS 1NY4djqvb+`rnDupSaIR[amK& : g l v 28H5_Y Y  E }/ c ,    \ ={*U'h.x- im4 !"8#$Q%>%+&& 'v'B kQ t h+P^ K +.    v  D<!(A #q,6N%65^x-k9FW\=::M90!6q8lAQ`U ZYcLYK4z[1[}!oSM0K I4S4/fs J U  b  H?   kq '^)W]mY#&NFQ+02K{&>E/u'MuotVDkbUyPxETDSV\:pZXWA '093>c{\P\3A  F l 3 b:c)cC3UWO  c.  [ X G @  ^ 3  _0 q  < o  Q3   a -|Iv #&J)t),'*-*-w+.+ /Z,/-0j.1.0.0./-/-0_.1.2/4 1#515f26 3`73\8#49)5(;U6?<{7=8=|9=9=B:=u:>:x>:?v;n?;?vDFR GSG"SK@ i=YYN{n<>>]O(?yq3E Fx/tk*$  I* w  j O l  4 5 l J  `1dQ3}aBJ[+N-cNRE !"#EI$ $s%~%D&&&S'#''XR( Ea%$.kBO$q r   KR5mVU@r|bC1./Lye (;u[n~X(wqAEP8wt[5x$@I@_S?.2,A,=W]H,SeO6"qvW&%-'qX:Nl=22X1 %;Lb6L m O S  {& Q>(SpZ-YqPO7toVY imXAai* rukcWInZ NH%0@XG >=Z#NZa";[ljwWN<B]$= |  3 \ xB  rY-"xk<8UY} {>  v ( G  I " W /   X?   ?  ) l l1 J :4"$x({(+K)X,)-*-v+B.Z,+/-60.;0./././=-.-/t-0-1.-3 01404151{6 27283V:V5v;6M<8<9<9<9<:+=E:=:$>8;>;>,<?m<@?~D ?E@G@JAM`BNCPCPDjQEQFQOGARGRFHRHSHSHS0I}TI5U JU}JVJWGKXKYLZL[iM\AN]&O<^ P^Pl_Q_GRB`R`S`T3aTaLUaUybKX:Gq,9#1 / 0 0 V0!0] 0E0 1!3#5`&7&8%8#U7":6!L5 !,5+"2eyu1` P`| W;tkM,oVco[=*S;tj) +hBx*yEaM(%/Wp/o:" kUoYal@Ov8tQ$Ua7Fh[h!f*o٧ـk]|ҿn*&҂ŃҏǜסXٷəڳ!ۗɑAEٌنXɩ/ȗO.ںƵ[7Z3ٮƷbY6ەuǜaȼܤLʟݾB4ߜY^+2#ʙ~ ȑ*1"u§¼(ߟFmpn#ſ~6DŽ^Ǿ*ǀa50 rƒƙƘƟ`j9pȟQʴ'ʨ;9?/̎e 4jmảO+Ή5uFІ шyNѠ3_6]uҋ&өbr2Z'Y,T-nG%1~J8yR?ZUS#s*V@uD  >TV& ^\ } Y -$    ` J P $ [ p}P1*5*9[f}]H !_E"(##f$%%1%2&or&&&h''($ )V )?D d#C#h8o-BSHMc<4Um/<>=+PMc y<^ e ZQ2h,+Bi5xC 9!i <oh_Q;$?;4@;]A=&E?EG@F@HAK`BNECO:D5P1EhPFPFPGWQfGQGRGS7HSHSI]TIUIV6JWJHXJ^YwKFZ!L[L[MJ\N\vO]1Pf^P^~Qf_)R_R_|S0`T`TaUawUobU&cVcbV}dV1e9WetM\EcU@xP*>tN04D,< '6$4$94"3- 34e5+1$ -bQ pS4oJY%F.L\47~-3]fE7@8D1m@%&^'hFxqfW'f:#v]Y(!gr{ct7[#)L o}`m#ETh}~(pV`lG`YKQ&}T47xԵwDOАƞЩƪ$ƀϝ^DZ.PɔyNȼ'Wھ^ڳǭڒc/qۀ6bj>ŎwƂTT&țm#;ɜۢVN4ރVߩh_/MRȸiȝށȰކKsGâsނX |~u3:ŗ Œјҳ]Ҳ\ ӘwclԟZ^ՇfWPh5j>"I4h^P+::16s^ ku!S dA^ ^  " 9 . d & ]HG,:kc O` D!!h"x#)#a$f$ D%%O%&c&9''H(|Z)) *a T+ ,E!,s#A + Y,N- 1 q5Rbh c_X tHb"xofw-oQ*\gVW.N=(13pQ4z$l_lr03'Z@THdZUq-QOc>P5U=Hn#k8@}aQVkO6#o:|EMs8 [  [ ABWxiUfpK|Os%95:E]29>+a*ido} Jvi|de 6P *jkJs;J{=aW]l D9r<EQ@I@ ) xm !  K, w    nH ) = "E+1  $ S  p  _ } :\ O & G t ' + 1 G|"&%])&)'*(+) ,*,, ., .y,-,-,, -+,+-E,.,/-1{.2.2A/c3/F4>0F506+28w3'9495d:6r:27y:7:7:M8w;8:z?5;@;AID>D?EG@F@MGAIBLCNcDO!EOEO"FVPtFPFQG]RiGRGmSJHSHuTI&U|IVI,WMJ9XJ3YKZVLZ%M.[M[N^\nO]P]PQ^^Q^Q$_Ru_:S_SD`5T`TaT\bAUcUcVpd}VeWeWfX}gXPhN^GZW`BR?O ?O=P1E)<>#X8+A## 2QmIl<f\A J6v L-ecp^~pr 'vJ.J0baMZ^*p>9)Z]` d++XAq/1\ZB*2w01(:X3_AncRAN/x=IC1A] > ]7av=Oasz֨ٵ .ѫƉЀƧЯm=ƓϬp-zнǂenٍK+ǦƺƓڅƲ5ņļő׃BNǞhwHڴǂڄ8ȥݒOȡ޼ǣސdޔ"޷.D>gݮݨĀP^wčq&tğ cIzCzG0Ņ ŴŸPŧŎň4Ɵc]ǡr,]ȅȁ"%Efuj#IiaʵOʏC˿u#S͞n$ΔΛL7YxόL6Ћ2vtl҈<-<k}Ԝ߯&!XiEzx @L\=IpkDzjo%,LVRVG+%k^/C[/G? 4  O W &%eDmg(pTBR 5*o+H  U!o!"%#$#D$$e%m%)%zp&''Z(=))* 7+ +6!,!u-w"..#.#e/%xk|u4lnkE=8;WQ9WB51i r{C Ha=;t&8Do(zfe9TSFc[@{2H=au#P}:\ 4hs!KX:6me ?*PCjqnkvt>mCAvPlk ko">oGjrRz3~,Pcyf^9N[|G(b0ZY2$TT| :;J7"{k8t'hYtAnQLkh0"pv11 o  e :( z :% ^ <  ; Z  3d z * v2   * k)   i %e  V n q ""O%&(y')')(*(!+C) ,*-;+!-V+,+,D+(,*,x*,*-J+/G,\0-F1l.1&/2/~3c04051J73T8G495y9{6~979G79q7:7:7;8;8;9;m9F<9<9= :>X:?:A;A(Dw?D/@E@nF~A G6BIBKC{MiDtNDNkEXOEPEPFhQGF/RFRG>SGS*H}THLU)IKVIMWGJ9XJ YKYL=Z{MZON^[ O[O\DPD]P]PQ8^Q^YR^Ry_LS`S`TaLTKbTbUcUSdVeVeVWfWWgXhDYhYEiYP_FW5SH)=q#h8 5r 5 5d 54~5H5>7V]/N)d $#l:<T # J]wwu@3=.`yJ8f-N _|mHiBϨƕGǶGקȁYk/7ǧƛƥƻٚ Iڡńؠ׊.ZšVUخ)ƺ F\ڮǰ-w۩܇ȓ>+xވ`RLǸWkhRlXmupDŽݔǁ%fLFHtuݼãn4e5u,ďj7/ TV9ƣ}D;ǛxB tȱaȖ Jaxɱ6zʺR2^Ip̛sC͵s1ͳ,2xη,<6jA02ЉYлѣlfѶNeZӓ(\Cih;+}F }8xf|I.),=; g%kB%IIco w`Z}KR9nqi + J  < s W c j}j o4MgXMQDVS`&v !S!$"k"N#e#4$T$%%]N&''p(v))ap*+~ +!,!=-;"-9$=7 G4' g]K6.oL9c^f_&RkEE:+D1,u4T=x] H3 ;z;^HQ{T`&]%Y8jdJEZoqLQO sX:uRAu1e7j:+]`5P[:1}fwtSY(DX!S#!z>9-IP78J=C0b>[= (%?cRg@YKax&UtJS$)M'@rxT@ h{nFlb1c{H  L d " b k  ^E  H t  pAlr8`  }A-[-.N{    B  (<#p$}&''@(R'(()l(I*2);+*N,0+N,+ ,*+6*M+G)<+!),)-L*6.~+/,s0-1N.1.2j/3'05T1r62x7'4;8w58_686868699697K:|7:7:m8";8q;8;8<8=79?93@:"A;AD?D2@E@0FAFB*G^CIDKDWMD`NEN$EO:EnPyE QEQLFRFBSPGSGT8HUHIVWIWJWJXKAYLYM^Z}NZO|[O\8P\P#]GQ]Q6^FR^R[_R`>S`zSjaS"b%TbTc6UDdUd}Ve WKfWf*NT]FUAP=;Nz:N:*O; O&0DU3&6U[E|tI ;!Z  V 3Y (6SKjgdoISO=<X:g!fXdz&z"Kc"JvN.es lFRQߖzH B pb`%"T.L! c *jTߦ%߁5y{߄ߐpco!J!upN;*!pF+c#OѦā@РĈЅŶgWѾӱȃ&ٔvkǍؼǻ`9Ɯn JĕñS]4ؓŨ&MڢeL~ǬڏdܵXJSݞ'oP( VݚƒݟƽHs;küނSr>q$~_Ĥ_zeeăcđkēĢN\ŵbYƤ&JǸ)6bJ+~ ,YTɫ|Jɗ;=aw< ̍[lJIι'c%϶SϒSK^`щѽ3 ӏ,Jx"{}gOfX,XQ:3Q{a4 * omG;k?-O+ } )  P    c6  p)xunzaW?P*Om"(  J$!!2""&-##_$u$%B&S&'Z(r))v* +"v qLBFZ: / C!Z@%a^t ~C[bu@V(&y-im8 MS:5#[(TwT(a"4E#h`CuI )M7:KU`h\D<3l:c-&/K,vUVf)`Kv f'kM.&:~MJl#9nlVb8,[]7{xW{:b|-R ub9=4$Vd1tRZVHp(3aB0{& _q,lCZ% cT`'Ox@d=j q,u j  q P % z -& e `"  -%  B4TH  f \  f}+ui/9  g @!|#W%&.&Q'&(')(s)(v*)+*+d*f+P*4+)*)*(c+L)^,){-*.+/,$0T-0.1.2]/4051633Y7s47l5757/68U6~8o696979y7+:7e:8:981;?8 <]8=8=>09U?:@@:ACU?D@YE@EA FB5FNC{GCJ>D)LwDMDNDzOD+PNEPEQ(FlRFYS G*T}GTGUH3VEIVJnWKXKXLsYMZBNZNZyOr[P[P\Q=]Q]R^YRQ_R_R`-SDaSaSbzTvcU/dmKZCS>Mh~`Qt@5d  C6rP&WDN5 O m w 5 4 q p # ;+=ie+fSQcJAx++D g !!=""5#H$$%8&+&u'8(;(mu c=8619 x!D[,-ZRR[0m2 j?q=G>wB-umn> J#b?2ECxY: 1uqg<MX>8vl9% zDs23oBllm}u ;W$ #Hr 1W$ St5 vmbq~q V9 SwRc+p/)dxD|"AE` Tju`=[DsnM=`Q ^ )k)2 r8!sYsH&0skWmX[81wdg ITd \g VD O # t< ` K 6  f;   AS  Y CL  "X  W \   m % sB ? J 5 "#%$k&%%0'4&(&(')?)*)*)*)h*))()(*~)+*,+#. ,.,t/-&0-0-1}.W3/4052k6L36346464B7157p5:858x6097n979798:$8j;>8t<8=9>9w?:-@;@`C>uD?D@$EuASEFBEBEXCoHCKC$M"DN~DAODOfEPEvQ\FtRFS*GcTGUHUHVpIgVHJVKWKKXLY;MYMZiNkZOZOl[8P)\P\GQ]Q^ RU_]R_R`S0aSaIaXUBQ%=K:I:I!1?4)z7$#2 F/./O0Bg15F22[83445 Y6!6N!E6o!5*h!0i: ^@f'K;y5Fl:bnzIabg,[\.i~3vZ9 =(D%v`Pu6n o# 9]IV(tqGS S~?tmMeEs,:sd wg<{8QdPBu$jwF!&3 042  p , [ j k 3 )n  MA  mEf4)&mya.k_b5}  '*!!<"# $^O%%&$ ^D9p8,^k1%;lC>F%[^vH~&r(l PZ{; qv 497\EZ<mROK''>8!EVPqSr4Q)hQ x0^{H_q1+aC%gw6N:7r,D#>h "y=#^zxCq&J8J^cTc_4Y :' ^UjD*?$:IU"B']Gt1&X7Q7,F ([g>7#@QQQ'L;~@pk:,6 P`J)dn"-u&^RE%"04Hh$ zM r 6  r |  9Jgn>)Zt x 7 ]  Fb  Db  : I g QC!a!#$#%5$%%&Q%'&$(Q'@)'P)'")D()+(('(7()(*x)+s*,+-,O.,/2-/-0/.2/i30]41 51b52g535k353;636V4l747}586`8686Q9 77:p7D;7b:>:?;=@O<@C>nCZ?C@C@DJAzDADBEhBFBI!CGLCN(D3OD PDEPEREFRFSQGTGUHsUcIUJVJVvK,W LWL]XMXMUY.NYNlZCO&[O \:P\P] Q^yQr_GU'@TN:)I%.03\2p2v22J2B 2Z\10/w/./-/%&Y3oW_Mjxv;h"q ?!C10gTw`V/*tdMA"usqt[@[c<kh+Y;-y*T,;Bv#qp -=m^oЫ7ДgϐXϙƍzDŽѪȽBɁȖMȄ׹LJ$,ء'ٽMM\]aņרDրƛ(ūE٦ƒA}(usܽƣpRLܞXgodlܠ`Lܝ@[sȠܥȬM]n2ߢBÜkg#a}e{i)`xd{ĮD.t ƹN qhyobctƒƛ ;a]ǰ~BljQ6-Pq3ʘom?`˴C9̄auk9Q<ΣjKϸ %^ЬEM #s%-y 4Y^,zIU oT? *  ' jJh#O]#Tv]UX]v6x%KT  7D   S O 6 M i      _X=O)>C11 #lpP](l01S7  !"#6f$0 ~6Q    >  w n |D }Kg\iS+Vv$ &krh82P e" /blwOH1x'[zx:%dxW##jd#n|R2~__F5O.I--s )w*|per5JyLN@\|Ul&kX7Q[&A`G!-?|~H3$bh _kt6zn59Mh)UhMF +JuWYm#y#&EA) jk[uh(L8y)tA+S0igtl$a1Mp XgfK X J ?P}nMx,Pr y  j q h  o 9 \w KYo% (#q)y$X(+%' &%l&%g'&q('t('A('(''&'&(V')(*]);,*-+-,X. -./N-.0-1X.2k/30Z41424 34<3433b5&35L3636{40705757=68r6u96:6;g7<.8=09C>C:><;?B>B>Bq?B1@8C@CBADADAeEA;F+BHB{K*CMCOwD'PE+QE-RFSFS.GvTGTH5UIUQJU K8VKVL?WLWLRXuMXMzYN4Z OZO[ER3+AB&46,))6)o)j)6(('5*n+!-\/Y&0/*/#W. - .o.x.6.^-I1,\d+H/+L+,w-.j//00a1zS2)A u!\+z!8]O6y{u:HQ5)k >-@;C ia P ] V"jm0P/4y#;O|b*foO.fOt| x Rh&-GZV%P0 68t`I>qz(xfCb$#z07ٍчxwФ$СЈȍ_Ȳϰȧ4ϊUGyG0ʨnՀɉ6G;#٨tHDzƌ)j,\ę!qr 9LpLwkqis.ȯܺC*ǜݲƦledqƢ܅Oܒ ܋܊۱ۊǝ$ȗ۲ȹWɭu_}-Ɣ!ÑYd$odb‹ƒcv0z j@Ń>"{Ƅƃf#@ ƀ'"9ƭb|Q3cȎȰI)~ʑAJˬkd*|xT<̧&̖`{4 r$A\:K KLї4i`gQRQg+u}riha=pUX)EO>2k^: lj y  1 G ) h ( : l_k " < /  !  r ] ( _ N x   hGa= WU^`3XR_?n>  !zz z D H =   U .  FL=g P-:|*Z3 }M'pM'~E$mdbczhtV"aSGj.=GT/YD/bL:qU:[h0ti1352ypbrJx:,2zV< &Z $"O":H2IoSo] "N`%MiPMjQ,26~ *Owb?.jElV4bN\z.NvV+2]~r ^VZjZ!z._:dYE/w #u b"AgzR8=~lYiA#M5'Qsc(:%d$QJ;tG^wJ"tB:  A x    T  A$# ':#(#(p$)Q%J*%%+&,'R-'+p'f)P''&&&o&'&('*(r+)D,y*,*-+j.+l/,0-2*/2d0313l23232*434+3%5|35 464W646Q57p57t58595:u6;K7):>:?;D@6<@AN?(B @^B@B@HC9AC[ADA1EAF3BIBL*CNC^OD[PDXQD4RER-FSF#TG{THTIUDJoUJUzKRV LVLbW&MXrCfN;F],7!-(L&yg&&G&"0&&'(Z*ZC,0%-a- , +'+~*****z4)i('VL(I:)\*+, -v--B.W/&00j0h0s/6G/x.E..$  XNRLd(AcGns %F)AO}H\ t <  U 7<  H L IK(y  P6Q_N[ 9tig3:LN\rH4>)awmC ۉsMҷdd6?OXuыƆѭPrvH 'zy͹=μ#eЯ )-4]A M&~ HSZ6)$0o.7ej, .  4  R  9c n  DSseqN ~;99#L_1@X8A wrQ4VJ)*x3ERn2qq1uC|qeJ[y 0y5rb;VU\n^@=hJTy-0ZZ$fz7_=7)"Ci|"*6 iNYiy :F YGR6rN?BfH 21x~P&n}oE0WZ7(k#TxJc =NO]rci_GMM0K{^`a;tF.Oyg+K-~z^pdb 0 sR  y  md  H\YZ#q&{"{'"(#!)v$)$*%+,&,&"-&L-|& - &w,*&{,*'n+C()})O)*s)+) ,E*,*-+.+0j,T1-82.203A12232U323(3[4t343P5\4545H5K656575 95>:5H;t6<47< 8X=8>9>:u?+;@;@<@a=!AF>IA#?A?A@~B@(CIACArDA EBEeBHBK?CMCODtPkDMQD RRERE/SFSG-TTHT%IT?JJ8B,3=0^;&1:)2$ " "]!" $$&&'ut(6)B)<)i])m&)(W' 2'&a%j]%$%L$B%%&p'~(q)d*PV+,,(-L[-\-}5-,kq,,+_+<+FD+d++B>, ,-.m/ &GVrL9e<-|O=b >Z ? J \~ ( + 7 O ~g  o L < ]    ZE   '  A 9 B"   &  G@m 9P&rW!UDd8UE)ldEm O|L>؟Զ6SJD| fx}qPғנR(مɨ=lٺ/b>Uƴ !Wǵǫֶ'^؀ɯjvhڋdۤɾۥ܁ɑ݁}Ƕtǫ)[9IUq|ۑb۪k~JȟȹNo0*ʸʆPɃ.J rݼkã|HH'-DUŞNo_o^_TƍE$<ƾ';Ƙ0 t-@_\sTȓȢ!Ƀɧ3ʰܻ݅ʦy5ʟ˨RuA̍pNW=/p(@l;hWMNp R!G]z1<!{G"x^oZ )ZD[^q Go ? w s    4  CB  gm pc0<nk>  i  < L, K Z@^u!W:#rc4y .qpN" ,T %>   m   a  h v A7 o  !-y e.Ef{>Ei2:OS~> cSEk!G)3 ~Y[ 9IG[0L E+xH,fN#Q '8B8S)MO7xR67Ptc1s1oQu^QT9l/hh07&PGN rZ'#surQ~ijCb)sbh#C;cU1 Um U >1~>%s##FPn p ,g<{+Y;_fb #^3zixv#v 83_}v<+l|Cz=Ae3 aT p < 84Q"%!&="Q'"e(#($)%M+#&,,!&q,%,%,U%,v%+z&a,',(-)*.*R/{+g-1,,-!+.*^/+0,x1 .2P/82Q0'207241212132.4_34444*5%55R5L6D5M7K5r8w595:a6\;7<7<8:=#9=9> :T?:?;!@a@?+A?A @iBg@C@C!AUDADBEBeH CaKeCMCOCnPSDQDQ;G3c@.9;^,8,8_-8w-j8#_.9&+: h!,"KF#"0}" &#$# %&B'&%%$l=#B"#M###g#z###d$1&i'v((((M )Y)) * *A)r)y(#(3((&H))jl*P*u(++'k,K-3.I.d/ /w/=%-0^@ m ~ B T!   N  # , }  2 | W B^ K $ )7 2 T   s H9  6 c 9    } ~  z B \?   :PA:QN 0#I$qf g}ks؟bxNh(ҋyLdSѭ(ҽӔkՀՑ3tԷӊHi*ݡҬݠX>e"UCٟ;ʳFڢ*;G|ھ6͗U͏͚{̄7N˂~ߐOBt ȔBE݈m+4ݰ0|dݭ̝=BdQiICc'~ņV>IXdţ ƉƐmǛ<ȳ,_g'jyrsɌp1J{|}Y`;ȩȐo SH5޷B̖}.Ͳzݙ7ޞͷޗEߍͽߐIXHͭmIzWϑϧoЭШkѥѰ7EUv^HuO!]s3&@~chX'@K!Da9SSF>&nW5w * xq ,  {P   \O$~FY<wAE  %| o  ?k  PSIgo sGW2b} Q}/. cmt     ~ nU g c < 5;/K}*H l 0 n [6  ^ipW,^L@ Ts rUPNi0_a8:0 EI% h;}e"8B"uS9V>/D6HeN*tX@B7' Z*T?TU\H5?: ZjL5am;M6i>`L$*! aSZ^)>lfW%3Obuar)5hU 3,JNWod?8PXSUluph/AuM7;l%Lo]]4T^0~IW;@_YziD "_z"%Vd Av je}Py&m (!y"W"#3$$ <&! '!I'!'d!n'!&#!&"H'#'3$(l%)*&g*&*P'j+(+(6,)*-F+.,-, -,,,',,&,,a,I-,-,].<-.-. .F/./.S0=/A1/I2/P3_034041y5=26263,7(474b8.585 9<6496Z9a7979S8:8;9;a9H<9<:o=:>:>l;?;A3!;B,5'20%70t%~0&03&0&18'1' UH9#;9/z&%NO? |K=m{7p~?   !sH!IW!k!!l"{"uU#e#L#""z""@'##x#k $$$*_$$l%& &Y''H''~ (,G(((&)*$)0 )S;(k .D  HmB:i[l T Z F } O | + ; pV cT;PxJ i  Ce   ! tu u " ^ @ 2 H 0      K   N   E y/6dD!/K^ >woylۮlk۪ ؾإج(Mںw`?מh֢sֹֻ޿N>kz{դRY*jޞލRJׯ߻֭B׈}Ԧ э-Z2*sQ% V}y >   W $ J K W1)g8 A)T1  9 V  V b J$BfkN  3G  {}o/ $ L ]0R9O75%j0 v  8 > #R ; ;oJL5/ (Mm [)ym~%T{[G(+9zt*;Q:[LYPbNIpGFH7"\3 H. !""w"]""&!G""# $!I%"%"9&`#&-$&B%'>&(&)P'*n'+Y'5,l',',(+}()((<)(|)()i)&*)*)+),)j-)6.*.B+S/-,/.-S0-0.r1/1/G2/|2_021212B2W3232[434 3j535*$.$ (i $V"#4$&Z'(P()VX"l+]f`.) & 4< [FK E":r1 +L|   ) U  \ v V   [  G   , &f?5|b N   tY!!:"="K"Y"lv" w5@|^x _- S;9:G+ X J T~?Iv9"^+BaS^GQ I  .! _y   . ,      & }8 N   q     ^  =Cd߆|ݙ+݊}ެ܋ޚܹ۷ ܮ&*_߉6z.h1BsݖT;7 rؑة%99ۉ ܿA*b&݈ݷ)Dކ>/U}ڷlxOڝY?M<`7O%ִUׅyب,WءEPئ},cvgёыj:%tV6bBՍ`ջ651y*7Ԗ|Iw?Ӝ Ԇw5;8- [Aף#לh*]Ogkxז9ה"5v2+k)BwZ۪"u uW,5Rl!;|U@7 :#b; X MA lY c ~ p ,XCLEMgVc  3 1  z5    !u2`T`di|` ,B   <g ] w ^V{lIw. #, @|?)8*SXZ+HoZoA'~[;- n  t 8 u  B cV Ga 2k B f -  (LwyI )H$_Y)<em *(w=n-gmmBN msB o5J mfOz.hjcqT;c%H_[qI >{HIy|n-!8nW"$4 t@ !x q.G<L OG!{QiTh:"~$?Zx">Zolf1wn QB0&>fIgT{DGkz%~55~gLA"Gz]rSPswW* ^E{@P!#Fjd!U ,-/hs0Kbm!9n;X  //!x!! "_!n#!`$N"X%c".&P"&Z"&"'"-'K#W'#'#($A(Z$&$%@%$&s$&$'$](&%(%Y)o&)&;*'*0(<+(+N)+),*3,=+L,+,E,,+%% xIblr=0J ?#)$cZ a J    z!  /  { :* d h  ? V Q    9 ~ ^  I   N9 X   4 ^  Z   g  % e   " ` (     H Km  B   k  39 b   =p411DZc!{Vu 5=/  - rX1>ls3SvrM5f #4v  QY6!`jfzy=9x 0 Q :. oa Jw 8u 9g Qm f  S   Q x P'\q (dvvT^P>9_6OC@t ݷD lZٿ'^g)2>^ؐd. 0jDڟiڵkYڙ3u.Cڜz1g(ۏ8ۖ@ۇVۅuۭ%:pjܟxܮܰܝܖܭ3^kxݲCIjޮR%ߞPnm(n[s.GL!-nZ =;e_X40GbJKW 0k %i @ f  " jA7u | q   8 G ZO ~ & U mV A +I c  g -n"  i I(L1.=;_mBiHFsnk}7#S ,'}s3O.G{s B ? = ( ( Fr  hk  & 8 I V }.L_}Q #O T ' *o n bXhD U0rEZe|X#a:!t-V$<Y]|5)V7l@2 i,>KV-)1wa3cOrc9>6AU?S%Omm]Q5,XMEw3YM-k/4k~p W$B1DeZ$ sF+'oTf>ARK#$o z!Z!!!G!"o"" #j6#F# Q#K!e#!#""#s!z#W!#!H$""$".%"%[#%TAi9ys7-u Np   \ d4 c 3   V L|:*Zw y   Q 9 ; p  h   rj  =[: k v#  m)g5g  x ' D Q< & # q 0 v \  .] H   d 3 x   3O @r O :  4   :1 _    2 { L,> OnOKpn_e[BZ .U $,fEVSZh!IBr|mB%" #9]\Dx@17E51G:4`]4<^} =gnFd^AP)QfU.GXI";t3|ZkV%na%X9b@Y%2/K߮wIEoߵJ@ߌ-ra}=~ ߇U7E! <g%TK7x<4`gy~vm7avaawKs^!*f,j2i|fzOGu?1qw]b>c|Fg3l6<  ntK@U ` u G  . >  4   T- T Kv K=?AD~cV@~ x WS=8K9y@dE! 6U3UL6XtS?wD>P~] 9%Ua#cuDlSq IuP_JXK`# _ " E; }  0 D V q/ e   91 9n     ^ 8 }  E Dn z   Oq   v* F g Knu*I$B*9N#!WK6B.T y1|'5phD1%+$0 :89135|9gGKal~r(m )hAcgD`\ ^/0-|6f8'0(>OwID-pM4;q*Hp5gGP .LPlhs1 l &>Vm&_Ek"jJEu G|Gz1n(E # qpkM5fqW7n>^ lrFLf^G*u7rGRwJ|<^) 6kX3H,_7TCVk952 > , 4C?9 Q P    4 l W! i  / `k   r wr   'D w ;   5w ` xt$K/)$,;<f2A$@*aMQvDg|s >-pJ\nSPb% tq    Z g }  y u - O j    - KG s  2 n   ) _  >w}SUR2 4]iM8 4#7_z[oma:h,v8y.9zB,C /B4;!7!V_uxQxfKy U*!nRX"q.wStWD-{R&NzS(T!y-D-~6IXFy< V&J(pzgHh-%I ] #*D"ct k;U]@t?|?A%L=x[gi 5!TY}ky &c.3Ja{z +e]E-p7[jRi e;cqm~ 9SnB|xHa*]1PLc-FZ8wOl4h;dF>vs(5I_  61 _ ;J  PF   A%6/u@)D~3aVf?r2mE }:lS!U $ e s  Y  c  s  jl~d   mDY0( # 0 ,dAHI.?, @ _ >  _   K 9 B f;    )  n M < 31 5i "  U   J 9 t q  L p G = $* _!  " A |   q    D    -/ J0 "   G > i  1 _  " M    F  ]  r $  5 z jrzvl:@91Bz*ZWibBh>.`a Z)r%.[>+H`l[yqrW'[ 7|_WXdT'ThgI~(]dJUi^ 'Y{}JE:N>y5LdsvbpVP1 Ejisf2P3<C>oZ!bA^`cp"F eq   7y*A\b^=go;]:k#LUG7D%$"'DhmdV@ e   9 % 1     P a 0 % / l o O ; Z l :;vZo\Mh@olJ*Mt{vaZs }cQ]VOY0BGM2c!q*S>"0 s   AJ $D;l&k , hX ` cv2@Z-[~  )C 1j / 1 ' "   ) @ f   " A #3>RuWyLoYfLNu-8ylMt(B-2JBJWG5(c{(2ZJvqK Mcvyc  I\`'t1sW$(x1 O4bD+-Y-h3{cuoiYE2Kyz `or-1d$#'$M"wG9cwo!5@P iRk5" & & S!! gf>faclc^ZQJU,bKoh (c/ 7H{0gW{jQs-f,?A{<kFjaN^e\M<EVRgfflj"* 9RZO9a'[-:4c&HPD`f}&,^r{ozez-P:z_"!f-O5i}C !!d! 7!e;Ss3m 3Q0hYleYF>@N>e ,7)Dmb?<^}5V})>%S.n@Lh -S1wE7NWZiR->d<Gvwbdzy\P;ge M71,.AowIc*;Hv[~ t!r*r qiM1&!oo6O&RMH~@Ca$Ieosu>~Ww .FUYcu |2O t,AUd+'49TEuXt05FNTjh"9Y0tNjgaO)zEtF =| 0  u B + #E k_   4 8 V g  q  X   A  p   3  k#+'&He"frW #:Z6=T?`l.[1D_Oo'M0kv,X%12@><+|D6)YwT=s%BE8 E`vPN>!4C&#i/TRyEy0r"2Rt!:4\[s-;GQT[`hm}8W~6Ut+K iIUVJTALI3P-$BedW[i|mNKyUZu=7H].L\|yeV ':KWx}m[tn/s]^qw ?`hdx$->N+W1h7yAMx)zI-t M|snmu~{WQMRSk %/<H[v &@\'ZX` d*nHrfrzt|Xp=*%) % %[%h70` =_`eY$M7N9]9o<~Ou2Oj1j(!G b&0DQ `BQUXZFaajUWSQOQdYvsQu{ , I%]=i\h_]TXbmz.(Ry+Pv ,#@,W;tHNURSM-OOWaeqbjpy} Bb|*DYmx 2%@8UXfx &&3:\nbZ_NVR14V{`:~M}fpkiZw\gqoL@d;LM,kJ 7Racx[?NdGwfnpe^R|}.#7Uo" $ ?Uiyyl#`=MKBK@JGOUTcnqv9J\hnv.@,a\esz}$wo$2ACEJ S^s"%0BSj(4:JX$d/u<AKVdx. [(u3V`~# 1`+Si~)i3hei^j|go2 :FNZm|3X7Kc,ra*\}xmVKPj6Mh|6{S~pz}{yl^VPX_(*0t *>Scpx{tlf)a@bMfRgqu.5FTZ'd4m7tH{Sw\zdyk}ekkr0BR%d2n9yCLQZdna/f;"(5@ 4:/V\v {k`avj9SE>RIYjYtRhgd~1Q\Z?ptoqih]^`{oxu|(Y-15:Nd{wi"Y1SA~Iq>\'_n-C]js %Jjy{2}=GJLS_ku{~z{,ALYj|*9:x- ;e22,-?MF?3*9Kbv  * < H WZ\Z#Y"X+]:fMgbn~0 $08GNeqx&2AUewS/ $,9 JW"c(q/u<@KNSSXZ`eqt~uXD)A2L=TI\UdZiaoiovw{ RaRe]fYdikmiaibmxD5ultu! 5HI>8 CM]w%06.)1AGNPU _fg,o8m olijoqygK5.3@IW cik!v/x6|@BEMPVY]ddgmou{%%-l!  &*G S TYTFEMQ(d9x>CRZwY'*,==/,-=M"f%y'~(*~1n;kGlJvIDC@HMWbcWI )..0/2)2B N^+p4z.v+ssk0hTpnp~w`{Bv w "*/47>GRZcjmhgbccaecdedP8.#)2=?EFMQW]bkgjhdeddiipmtq{}!%(*0277:7<@F C H NNRVXf*nTVYSV!ST\#c)n5z?}IO|QxNvFvFwC|FvGuhEt@x@}>DHI~IUXgnz~y}aj'B "&) 4;CHKIGDGBDE?C=?; ;'@)D,H1N4T4Y<[?^AdGhClCoHpCuEtHvI} "!'&)&('%-',//,012 19 7: <:=garden-1.0.9/data/beat/long.wav0000644000175000017500000154266012457263310013225 00000000000000RIFFWAVEfmt DdataXX$%~DE TS_^!"hg)*pp11zw::ECKK TS\\de&&kl/0vu77|?@GG PPXX_a"!kj*+pq45xz<9CCLMTT]^de'(mo0.vw77NM--~oo`^PQ A@53'(((019:AA  FGJJMLMMMNLLIHFEBC>>99  33/.++'&"!""##$$%&%%%&$$#"#!                                   ))<:./7844329900<=.-??,-BB,,FE)+FE)*IH))II++HI-,GG.-HJ/.HH12GE23FF56ED88BC;:BC<B@?@B@ACA@CD@@ED??EG@?FGB@GI@AJHBAHIAAJJACKICEJHDEJJEELJFGJKHFIKIIMLHHLMJILLLMLKKLLLNNNLNNLMPOMMPONNPPNOPQQPPQPPRRPQTRQRRSPQUTRQTUTRTVUSTVUUVVVTUXWVXWVUWWVWZYXWXYYWYYYYXY[[YZ[[[Z[[Z]][\]\\^\]^\\^^^]^__^^_`^ab]^aa```ba`bbbab`bdbbdbbcddcddcfdceefgcdfffffgfhgggghhiggiihghijjjhijjjikljkkkklmkkklmmmlmnmnnnmoononooopoopppppqpqqpprsrsrqrststtrsrsutuusvvuuttvwvvwvvwywvwvxzwxxxyxzzyyz{yzzy{|zz||{{{}|{{|}}|~|}}}~}}~~~''*+>>CC99%%&'WYNODDcbii?@ !  ##{|10no=;aaHHTTRRJJZ[BAbc:8ii12ml--qp)(sr))rq&(rp&&no()nl(*ij,+ee0.`a22^\46YY89TQ;=OO?>KLCAGHEECBFH?>II==JJ;;JJ:9JL87LK67KJ67JI57JJ35HH54GG66ED66CD76BB76AA58@=79=>87<;79;9898:987689768;44:8447:32981199227701651065/2451/35//210021./12//.0/--//-//,--..--.--++++-+*,**+*+++)**))())*)())&&)(&'()'%&&&%%'%$$'%$$$%%$$"!$%""$$"""!!##! "!  ! !                                   ((@@\\zyjjNN54)*;9DENOUWYYZZY[WWRRMNGF@@9911))""  ## &())--./.001/. 0/ ./ ,.,-()')&&%%"" !!##!"!$$ &( ()!'**+ ,, +,!!--!!..!!.."#..%$--%%//('./((/.((0.++-/,+..---/0.--///.00./21.030.033//341/44115522443246446622674477567765888788789968:999:999;::9:<;:;=<;;<=;;=>==<>?><??=?A?@@@@@BB@>@CBAABDB@BCBDCBCEECDDCDDFFEEEDEFFGGEEGHHGHHFGIGGIHIIJIIIHIJKKJKJKJLMKKKKLMMMLLNMLNNMNNNNOOPONNOOQQOPPOQQQQPRQPRTRQSSSSSTSRTTUTSUUUVTTVVTUXVTWXWVWVXXYYWWZYWWZYXZYZZYZ[ZZ[[\Z[\Z[\\]\\\\]]^^\^`^^^]__^_``_^`aa`_`aaaaabbabbbbcbcdccdcecdedefddgffgfgffhhfgihgih xw_bDE*) !">=VWnovteeWWMMFD??==<<?>BBGFMLRRYZcaihpnvv|{}yzttooklhhegdfcdcdccfdeehhhf|}jk|{jkyxmltumnsrnnoqqolnrpjlqqiirqhiqsffqqedoofeopddpnbbmndcmmablkcbjkbaijbbhgacfgcadea`dcbbbcabaaba_``_`__a]^a^\^_^\\__[[^^ZZ]]YX\\Y[\[XX[[XWZ[UUXXWXXYVTWYVUWWTTTUUTUUTSSTTRQSRRRSPRSQQQPQOQPNQPMMNPNMOMNMMMLNMMMKKLKKLLJIJKJIIIIIIJIHGGFHHHFGGFEEFFDEFECCDFDCCBDDCDBBBBBA@BAA??BA>?@@>>@@=??>=><;>==>:<=<;<::<;:98:::8:98987888788766655665654544354243232322211122/1100000//..//-...,,..-,+,-,+,+*++*,))((+*(*(()'''&''(((&%%%''%%$%$$$##$##$$"!#!!"" !"!  !! &'66##&';=>?>>@>?@@@?AAA?AB@BCBBACCBBCDBDDCDDFFDDEEFGGDFGFGGGGHJGGJJHHHHJKIIKKJJKLJLMKLLLNMMLMMNNNONONNQONOPPQQQPRRRQSTRRRSTRSTSSTUSUUTUVWTVVUVVVWXVVYYWWYXYZZZZZ[YZ[ZZZ\][[\Z[]_][\^`^]^_^^^``_``___bb``abab~~~}~}||~{z}~{z|~z{}|yxz{xz{zxwz{wvxzvuxyutyxtvvvutuutsttttttrssrrrqqsqrspopppqqoonnpopolmnnnklmnlmljlljklkkjkihkihhijjghhghfghgggheeeefgeeeedddccdcdccaabbbab`ab__ab```^__``^]^_]]]]^^\][Z]][[[[[[Y[YXZZYZYXXYYXUVYXWVWXVUVVVWTTUVVTTTRRTTTSRRRSSRRPQRQRPOOQQONPNOPPMNONMLMMLMMKKMLJKLJJKLJIKJIHJIHIHIGIHGHGHHEFHHEDGGEDDDDEDBDDCDCCBBCCABBAAA@AAA??>A??@>>?>>>>==;<==<<==:<;:;;9::9;:99::7998768967757876655656455235433234321241/22000001//0////....-.-,--..,,+*,-+)*+)*+*)*())*)(()((&&(&('%'%&&&&$#%&$$&$#"#$#VW``^_^]_^bb[[ggVXpoMOyxFE:9+,               ! !! "" ""$"""!#$""%%$%#$%$$&&&'''%%((&&(()())(((*))+*+*++)*,+,,*,,,...,./--/....//./11/121//132210332543333465345754578656757878877988:99;;:9;:99<<<:;<===<;<>?=>>=>=>?>??@?@A?@ABA@AB@BBBCCBBCCDDCDCDFFDDFFEFGEEFGHHGFHGIJIHHHIJJJJJJJJKJJKKLLLKLLNMLMOMNNNPONOQQONNPQRPQQQQQRRRQQSTTSRTTRSTTUUTVVUVWUVXVVWVWYYWWZXWy|qoonwv~^_??21QPmotuefXVMMEEBB??B@DDJIPPXX^_ihqpxx}~zzvwsqrpqpooooppprttuuxxyz{|}}}}~||z{vxvustutstts~tr}rq}|qs}|pq{zqrxxsrwxrrwwrqttqqtuqpprrsqqqqopqqooqpomnomnpnkmmnkkomkklmjhkmihlmghljggjjggijhhigefghffefdcffdeddcbeebcdbbbbbbba`aa`aa`_`b`]^^^`^]_]]^]^]]\[]\Z\]Z[\ZZ[YZ[YXXZZYWXXXXXXUVYVVXVVVTVWUTUUTSSTTUTSSTRQRSRQQRQPSQOPQQONOPOOPONLLOOLMNKMLLNLKKJLKJKKJIIKKIHGHJHHIHFIHGGEFGFEEGFFEEDDDDEECCCDCCBB@BCBB@@AAA@A@>>@@??@>=??=?=<>><==<<;<=;;9;:::;:98:;8899978788766774665664555344443335422231120220021.00000/...0.,.., ;;GHrr75gfZ\-, tqkl55pqJLefQPlkBC-.       ! !! !!!#$! !####$"#$&$$$%&%#%&%'&$''&'(((((('(('*)**)))+*)+*,,,,++-,.-,.--.-/....00////011011013311123313444542476446635756778779867:878:89;9:99;<;:<<;;;<==<;>><=>>>=>@>>?@@@?>@@ABA@BBAACCCCAACDDDCDDDEEDDEFFDFGFDFHGFFGHHIHHHHJJJIJJJKJJKLIKKKLLLLLNNKM$"~}:7gfTTEFllBB_`mkiiX[]^po~~~}}~~~}|}}|{|||}{z|zz{{zyyz{yxyyxxyyxvxwvwxwutvwvuuuuuttussssttrsrrsrrrprqqrqoopppoponoponnllmnookmllmlmljklkijjjkjkihjihhjhfhhhheehhegefeefegeccefcccddbbdcaabbb`aa_aa````^`a_^_^^^]]^]]\^]]\\\]][Z[ZZ\\YZZXYYYYWYZWXYXXVWWVWVUWWWUTTUUVUTSTSTTRTTQRRRSRRPPQPRPOQPPOPPNPNNOOLMNONLMLLMMLJKMKKMIJLJJJIIIIHIHHIHGIIFGGFHGGFFEDEEEFCCFDCDCCDBBEDBABBA@@BA@B@@@?@??@>>=??>>=<=>><;>=<<:<;9<;9<]\yxol/187xxPQ ~()zy%&       """!"#!"""!!$#!"#$$$%#$#&'%&%%%%'&'&&&'(((()(((())++*+()+)*,,,,*,-+--,..-.,-.-/.//.0/10/101111112212421232433544455456766557767766888779;979::;99;;:9;<=<:;<===<=>=>=>>=??>@|y%'88ll|{xy~~~}}~~}~~}{|}}|{z|{z||yyyzzyzzyxxxxywxywwxwuvxvuxvsvvutttvtsttttrrrrrrrsrqprrqpooqppoppommnnoommmommnklnkjlljjjjkkiikjhijjihgghhhhggfgfhgedeggcfeeecedcdcccadcbcaabba`_b`_a`aa^^^__^]^^]]]^^]\[[^^[Z\\[[[\ZYZ[YZYXZXWZYWXYXWWWVVVWVWWVUTVVTSTUTUTRRTTSRSQSRRSQPQPQQRQOPPNOPPNNONLMNNNMMLLLLLLLLLJJMKIKJIJJ57HFNMxwMMKLkm ec'(>>UU     ! "!!"" "#! """$%##$"#%%%$#&&$%&$&&&'''&&())(('''(*)(*)++)+,*+*,,*+.-+-.,-,-.-...$$pp=>  ]^  a`Z[))wx""ll87JJcc~}~~~~|}~}|}}}}{{{{|{{{y|{y{{xyzxyyxyxwywwxuwxuvxwvvutuutuutvtstsurrrqtsqprrqroqrnoroopopoopnnlmonllnnllmnkkklllkjjkkjjihijiihhihhgihhffhgfefffhedceecdeddecccabccbbabaaba``_`a`__`_^``_]]]^]]\^^\[^\[[[RR`_HIOO~}uu||       \]nn /11/yz$%./]]1144('~}~~}|~}|~}||||{||z{{y{{zzz{yyxyyyxxxywwxvvxwvvvvwwutuvuststvtssrrttqrrqqsrqqqpqqqYWIHhhqs)(;<~}\[56wxst\\WYb_rpvua^mn0.  NLkm{znmVX87    FHll !PR]\wy><--++54BCyyRSjjbb^_jjWXppURrrRUrpVXnl[[hja_deda`bgd`agh__hia^gh_`ggb`debbddbcdbeecddecceddbdfcdfedcefecdecdfddfdceffedeedfeceefgedefgddgfddfffffeefefgffeffefeegffgffedfgheeghfeggfffghefgfggfggghgffhhfffigfhghhggggfhhggghggghhhggjigghggiihggihhjhhhgjhgihijighjhiighjjhhihhkihjjihhijihjiijihijjjjiiijjjhkkhjjikjjiikiikkijkjlkhikjlliikljjlkjjklkkkjljjkjklkkjjlkllkkjklkklmlkkjlllmmkkkklmllklklnlklmllmmkknmkmnlllmnllmmllnmlnnlkmnmmnmnnmmkmnmmnnmnmmonmnonnmnmmomnpnmmnnnmoomoonomnponmmnpompononopnmponpoponponopnooooooopooopopqnopoqpnoqqooqqoopqrppnprooqpppoqqqqppqpqpoqrpoqrqqrppqqqrpqqrqprqprrrrprsqqrqrrsrqrrrpqsqr mmwwCBSShh$%`` BBIKWWXX,,HF*)GG{zA@!$#::UTmnqqed\[Z]`_efmm{ztstuxzqp|{oo}}pp}|oq|{rrzyttxxvuuvyxuvywtuzyuuyyuvxxvvxywwwxywvxyxvxzwwxxxwyyywxxxyxwwxywwywyxwxyyxxyxwzyyxxyzzxwyyyxxyyzzxyzxxyyzzwx{{xxyyzyyyxyz{zyxyzzz{yzzxz|yyzzz{zyy{{zyz{{y{zyzz{{|zz{zz|{yz||{zy||{{y{||||{{{{{{|{z{}|z{|{|}{z}|||||{}|z||}}||{}}{}}}|||}|||{}~||~~}}|{{~~~}}||~~}|~~}~||}~~|}~~~~~||}~~~~~~||~~ \]vxdeJIRPhhNN  LMfhKK@@CBPSbdvtwwponlnosrxx~~{|zzzxyz|||}}~}{{||}}~||~}|~~}~~}}}{~~}||~}}|}~~}}~|}~}||~||~|}|}}||{|~}{}~}|{}}| YYllRSHJMM[Zjj||{|vwtsvw{{vuKMZYuv77%&"#,+<:xxLKee[[YZffPOlmLKooMKkmOOhfSTdcXW\_][[\_^WYb`WW`bXW__XY__[Y\]ZZ[\][ZZ\[[[[]ZY]\XY]]ZZ\[Z[\Z\[Y[[Z\][YX[\YYZ[ZZ[ZZ[[ZZ[ZYZ[ZYZZZZ[Z[YYZ[ZXZ[YYYZZXZZY[YWZ[[XYZXYYX[ZXXYZXXYZYXYXXXYZXW ut()sr++:9CA-,79cc~~giVVNLHITSTUon56sp~ TU11//OO`^ce`_VV# HI--==:933@@-/DB,-CD--AA0.?@11;;659:776699449;44:943::548967776686567689547876775676765457756655787556667647756555765665455556664553666445435564(*jibb&%+,1/HGWWhj }}|VUEFwx22DC[Z__SUCA,-  #$)'*($$!     )) \\XW ('?@CB77!                     35kkVV02xx EFbc~~dcOO22     ,+!!ddJM 77YZce]^MK55 "!(*,+()#$        !  !!!   !  !  !  !! !! ! !!!" !"!"! " "! ! !!"!!#"!!!"!!"!!"!!""#! #"""!!"#"!"#"""""!""##"#""""#$"!##!"#""$$"####"#$#$$!##$$#"$%####%"#$#$$$###$$#$$$%##$$$#%%#$%$%%#%%#$$%%%$$$%%$$%&&$$%&%$#$&&$%&&%%$%&$%%&&&%$'&$%&%&&&&$%&&&%%&''$&(&%&'%''&(&&'%''%(&%'&'(&((&&&&(''&&'&(((''('&('&('()&''((&'()''((')('((')('())'(('()*)'))('')**(())(())))())))))()+)(*))))*))**))*(**(*))***+***(),*)++)***+))+,*)*+***+,*)+,+*++++)++*,,++**+-++-*+++,+*+-,,*+,++,,--*+,,,++,.,+,,,-,,,+--,,,.,+-.+---,,---.,+..+,.,-.--..,-.,-.,.--.,..---/.--//.-..-...--0..//.-/.-0.-.//0/-./0/.//.-.//00/../00/0//.00.01./1..01//0.00/110/.//01/0001/00/021/00020/01101011/1112\\~GF.-~}onKIfe__pqabUV413664LL ||;>45@>46@?54>?77<>97:;;::::;9:<:9:<=:9;;9:<=;9;=;:=<::<;<<;;<;;<=<;=<<:;<>=<<;<;;<<==<:<=:;=<<<==<=<;<==<<=<<=>==<;====<><=><==<>><<=>>=>>=<<>=>><>>=>>><>>>><>>>?>>=>?=>>??=>@?=>>=?>=?@>??>>>@>?@???>?@>=?@?@?>?A@>>@@>?A@???AA@@>?@@A@??@AA@>@A@@@AA??@@@@B@?A@@ABA@@BA@A@?ABAAABA@BBB?ABABAAAAABBBAA@ABBABBBBABBABBBAADCBBBABCBBABDDABCBADCADCBCCCCCBCBBCBDDCBCCCCCDCCCCCDDBBDDCEDCCCDDDEDCCDDCCDDDEDDEBCDDFECCEEDDCEFDEEDDEEEDCEEDFFDEEEDEEEEDFFEGEDGEDEEFGFDEGFDFEFGEEFFFFFEGGFEFFGGFFFFHFFFFGGGFEGHHEFGHHGEFGFGHHFGGGHGHGFHHGFGGHIFGIHGFFIHGGHIGGHHHHGHJIHGGIIHHHHHHIHHIHHHHHIJIIIHIIHIIHHJJHHKJHHIIIJHIIIIIIJKIIKIIIIKJIIIJKIIKIJKIIKLJIJJIKJIKKJLJKLIIKKLLJKKKJJLLIKKJLJKMLJJLKKKKLKLLLKJMLJMMKJLMKLLKMMKLNKKMLKMMLLMMLKLMLLMMLLMLKMMMMLKMNMNNMLLLMNMLMMMNNLMMMNMNNLLONMMMONNNLNONNNNMMNOONNNOMNOMNPNMPONNOOOONNMNOPPNNPONONNPNOPPOOPONPQOONPPOOOPONOPPPQONORPNPQPQPPQNPRPOOPRQOOPQRQOORQPOQQPRQPRPPRPRSQORQPRRQQRPQRQQQPRQRRPQRRRSQQRRRQRRQRSSRQRSRQRSRRTRQSRSSRRRTRRSSSSSQRTRRRTTSSRRSTSSSTSRSTSSSTURTTSTUSSTRTTTTTUTTSSUSTUUUTTTUTUTSTVTTVUT[\12##RQSSUSqs$$[YhgpqcbdesrHI]]pq!#XW-,vwSTUUpp>=3343<=IJvuVUhjb`^`iiZXmoUUpnTWnmXXjk\[hf__bbbb``de^]de^^de^^ee]^cb_`ca_`bba`_`bba```a``ba^ab__ab^_a```b`_`aa____`a_`a___a```__`_^__```___]_`__`___^`_]``__^]^`^__^___^]_^`_]]__]jj@?]]32CA9:vvzxUV IIklfgoo}~  ,,|~_^ /1  [Z8833YYll  pr  kj_`$#RR12DD>>8:GF21KL0.KL10IK32GF68A@<<==?>9:AA98@B97@A:9@@99?>:<><:<<<==<:>=;<<=<:<><:;==;;<<::<=<;;:=;:;<;:=<::;::;:<=:;<9;<;::<<9:;;;;<<::9::::;;;EE{|OOTRjkoq9965xxkj  33PQ<; "87??NOignobbNN68 "#!+,3322//  ))#"!"!     RSff// !! IJdd<;noJI /1sr]\"#;9A>67&$        {{^_DDhide;<,,756700&'      !   !  !! ! !! !! ""!!!!!"! "! "!! !" ! !""!!!!"!!! "!!#!!!#" #!"#"!!!!""##!"#"!"""##""!"""##"##"##"$#"!"#$"##"##$#""$#$$$#"$#"##$$$$$$##$$$%###$%$$$##$$$$$%%##$%%%%#$&%$$$$&$$%%%%%#%%&$#%%&'%%$$&&&&#$%'&&&%$%&'&%$'&%&%&&&&%''%&&'&%(&&&'&&'''&&'('%''''%((&&'(''&&((((&&(('()'('&('&((''((''')((('(*)''()'((((()()(')))('*))((*)')*('**(((*/.DD()_]00`a]]FGefOOROlm-,35;9ZXdeVV##;;##TTnm01KKmlxwvuff SS@A/0/.>=%&DE HI FG$$AA)(;=0.6752236710990/:;/0990198225643774453474476436733775565457655457567764568668558965676786567766766765578766676667767877579776578768877886789767887779878788798889978:8798887:978::889999799988:89:989:89989::9::::9:89:999:::9::;::::::9:;9:;:::98:;;:9:;::::;<::;;::<<;::::=:;<;;;;::;;<<:<<:;;:;=<;<<;<<<;;;<==;;<=<:<=<;=><;<=<<><<=<<===<<>;=>=<=><<=>=<>=;>==?<<>==?><=>==?==>?====>>?==?>>>=>>=?>=>=????==@??>??=>@>>?>>?@??>>?@@>?A=>?@@?>?A???>?@@@@@?>@A@@@>>A@?@BA???@A@?@AA?@A@A@?@BA?AB@AA@AB@@B@@B@AA@ABA?BB@BAABBA@CBBA@ABABBABBBCAABADAABABBBBCDABCACCCCABBDDBACCACDCBBCDCBCCACDDBCDDDBBCDECCDDDDBCEDDBBEDDEBBEEDCDEDCEDCEDEDDDDDDEDDEDEFDCEFDDFDEEDDEEFEEDEFEEDFFEEDGFDFEEFFFEFFEEGFEEEEFGGEFFDGGEFGFGFFEGFEGFFGGFGGFGFEGHHFFGHFFHHGFGGEHHGFFGGIHGFFHGGHHIHGFFIIGFFHJIHGGHIHHHIIGHIGHIHIGGJJHGHHIJHHIHIIGIJJIHHIJJHIIIIIJHIKJHIJJIHKJIIJJIIJKHJKIJJJJJJIJJJJKKJIJKJJKJKKJLKJJIKKKLLJKJJMKJJKLLLLJKKIKMLKKLKKKLLJJMLJLMLKKLMLKLKKMMMMKLLLLJMMMMKKNMLMLKMMMMXX//!!NMHG,,)(PR} uvki >=DE89dfVULLhh?>rs88vu:8pq@AiiIH`aQPZZXXRR]]OP`_ON^aQN^^PS^\SS\[WVXXWYWW[ZWUY\VTZZVW[YUVZ[XWZYXWXXYYYYYXWYZYWX[ZWX[ZXXY[YXYXXZZZXY[XY[YYYYXY[YZ[XZ[YZZXYZ[ZY[[[ZXZZ[[ZZZ\ZYZ\[Z[ZZZ[[[[[\YZ[[[[Z]\Z[[[\[Z\\Z[]\\[Y]]\[Z[\][[\[\]][\[\][[\]\\]Z[]]\]\]]\]\\]\]^\\^]]\\]]_\\^^\\^^\\]]]^^]\^_\]]]__\]^]_]]^]_^]^^_]^_]]_^]]_`]]_`^^^^^__^_^^__^^_``]^_^____``_^^`_^___`_`_`````___``_aa^`a_^`a``__`_aa``````ba```ba```ba`ab``aaaa`ba`abb``aaaaba`bcaaba`baaaabcabcbaabbbccaabcbacabdbbcaabdbcdbbbcddabcbccbcdccbcccdcbddacdcdccddccddbdedcbcddcdeddecbddffccdeedeeddddeeeddddeedeeeecceffedffeeeddefegfeddfgeffefefeeedgffefgffeggegffhdeggggffffffggeggfhffhhgefgghffhhgffgfhghghhghfhghigghgghghiifgigghigghhihhigihhjhhhhhhhiihihihiihhiijiiihhijhhkihjiijjiiihjjiiikkjhjjhkkhijjjijjikkiikkjkkjjkjjjilkjkjjlkjjjlkjljjllkjkkjlkilljlmlkkkkklkjlkllllkkmljmmlljknlknlllkmmlklnmllmklnllnmllkknnmmlllmmnnmmmmmmmllomlnnnmmonmlmnmmoomlmnpmmpnnonnnmmonnpomnonmmoponnpononnponooppnoonoonooopooponopqooopooqonppqpopopopppqoqqoqqppoppqrpqollQO "!YYutDC_`OPVV}|_aTSTU`_qq~~z||}::JJ~qpvuA@"!ggpqFF211/<89==HHTTxxbajjmob`tu]\ww\\ww\[tt_`poddlmghhhjjfgmleejleemleekjffjkggiiiihghigfhjgfgigfjjffhihhgghfghhgfghigfggeghgeghggfghgfhffgggegghgegfegfggefgfgfeefffgeegedgfeeefgedfgeffdfgeddgeefdeeffddeeeddeedfecefecdedefddeeccfdcedddedefdcdecbbeee1/NMtuz|!!,,HIa`!!=<tv`_[Zcctskjpn79CB^]$$ut}}zyml')`^79NNFDACQO9;TT97VU89TS;;PO?@JLCBGGEGDEIGBBJJBBIIABIIBBIGDDFGECFFEEDDFGEEGGCAFGDCDFECEGECEDDFFDDECDDDDCEEBCDEDDDDECCEEBDDBCFFCDCCEDDCDDCCCCCDECBDCBBCDDCBCBDCBDBACCDCACCBCCBBCBCCAABBDDBABCAAACBBCBBA@CDA@BABCAABAABBBA@AABABC@@BBA@AAAAABAB@@BAA@A@AB@@A?@A@@A?@A@@?@@A@?BA> FG{z65kh34==LN65EEJJ('nmoo:;mn""mk!UTa`<<75DFJIFF>< 01((!! (),,,.,,((&%"$    "# #$$#$$## !!   ! !!!  !    ! !  !! ! !!!             >=A@68('    ,,`_:;=<yyxx`^kjik::-.898://#"                              ! ! !  ! ! !! ! !" " "! !!!! !!!! ! !"!! !!#! #" !#!!! #"!!"#!!"!!"!#" !$" "#"##!!"$#!"$""# "$#"#$!!#$$"#$#"!$$"#%#"$$"""###$#12ab~~&'"!ac~}10EE]\vwccyy[\+)CD \\ffdcWV FG97++)*66##;=?>=>"!8:&$66)+10./,,20+,34)*43+,33-+01.-01..10-/0.00..10..01000//000//110000010.12./21/121010012/02/120//210111011112210/230120220032011221311311222123321222322122133112332322333223342244224433343232343323434543333344453334433532444453464453455445435643564543665544664545664555466555665576664576556756766556766566676666776667678667678568787676886777867965789777977878878978967987888988889978888898:977::7888:989:99989:889999:88;97;:9:9:;89:9::9:99:::9::9::;;:8:<:9:;:9:::<::;;::::;<::;:<::=<:;;;;:;<<9<<:<;;<;;<:;=<<<<<:<=;<=:;=<;<=<:<=;=><<<;;=>=;<><;=>=;<=>>=<;====<<==>==><<>>>==?==>>=><=?=<>===>>><<>?>=??>>>=>>??=>?>????>>>>@?>@???>>>@?>>@A@>>@???????@@A>?A@?@?>@@?A??@@@A?@@?AA?AA?AAA?@B@@AA@@AAA?@A@@@BA@@BAA@@CC?@CB@BBA@@BBBAABBABCAAABBCBACCB@ABBBABBACBADBACCADCAACCBBCDBBDCCCCBCDBCCABDDCACECBDEBCDCDCCECBEDDEBBEDDDCCDDDDDCDDDEDDEDDECDFEDEEEDDDDFEEDDDEFEEEDEFDEFDEEDFFEDDGEDDFEGGEFDEFFGEFFEGFFGFFFFFEGFEFFFGFEGGFEEHGEFGGFFHGFFGGGHGGFGHGGHVX>> zzqpvv)*]_VU99sq$%!"zz+,om9:__IIRRTTHH[\CD`^BB_`CB\]HHWXMLUTOPQQTRNPTUNLUVMNVUONSUPQSRQRTSPPSTRRSQRTQQTTQQTRQSSRQRSSSSRSQRTRRSSSTTRSTSSTTSSRRSTSTTRTURRUTRTTSTSUTSSTTTRSUVSSUTTTTUUSSTTUUUTTTUTTUUUTTUUTUVUUTTVVUTTTVVVUTWUUUTWVUVVVVUUVWTTVWUVWUUWVVVVUUWVUWWVVVUWXVVVVUWWWWVVVWXVVWWUVXXWVWXWVVXWWWVXWXWVYXXWVWYXVYXWXWXYXXXWWXYZXWXXYXXYVXYYXXYXWYXXYXXYZYXWYZXYXYYXYZZYXYZYZXY[XYZZYZZYXZ[XYZZZY[[YZY[[YZYZZZZX\ZYZ\ZZ[Y[[Z[\[ZZZ[\YZ[Z\ZY[\\[\ZY[\[[[\[Z[\\[[\Z[]]\\Z[^\\[[\[\\[]\[\\\]\\][[\\\]\\\]\[]^]\\]]\]\\]^\\]]^\\]^_\]^]\]^]^\^^^^^\\^_^]^_]]]^^]]^]^^^^\__^___^]]_^__]^_^^_^^_`_]^`_^`_^_`_]``____^_``__^_`a__`___``_``^_aa`__a``````a``__aa```ba`_aa`ba``_``aca`a``abaaaaaaaaaaacc_`ccabba`abaacbabaccabbbbabcccbbbbbabccbcbbaddbcbcbbccbccadcbdcadedacecccccdbbdccdccccdedbddcdddedcceecceedccdfeccfdcdeeedcfededdeddffcdeeeeeeedfeeddegfefefedfffeefffefgddgfffdgfeggfba/-MLbeef_`<<11@?XXtu|{|z! " NO||&'vvDD86\\}||}aaTTOPRS[]eh~rqttzznn}llklln~}no{{srwyuvwtvxvuxxtsyztuyytszyttyxvwwwvvvwwwvxywvvwwwvxyvuxwxxxxvxwwyywwvyxxxvxxxxxywxxwxyxxyywxyyxxwwzxwyyyyxwyxyzwyzyyyyyxyzxxzxyzyxyyzzzyzyyzyzzyyyzzyz{zyzzy{zxx{{xzzz{y{{zzz{yzzy|{zz{{y{{y{|{{{zz||z{|z{|{{||{z{||{{|{{|z|}|{z}{{|||}}z{}{||}}{|~||{|}|~|||}~}{{}}||~||~~|}|}~}||}~}|}}|}~~~||~~}}}}~~}}~~~}~~~}}~}|~}~}}~~~~~~~~~~~~~~~~~~]^  HHTRCAGG[\xw{{tucb''43st]\88+)/-=>QQegyyxwijaa^_`bee~ljzyoqsruvpoywlnyxnmwxonuwonuvppurrrrrsrqqtsprtspqtsppssppsrrsqqrrqpqrqqprrpqrqprppqpqrppqrrqqppprqorrqpqqppqrppppqrpppppnoqpoppprpoqppoopqppoooponpoppoponoppnoooonpoonooooonnoooopnmmooooomnnonnonnnnmnomnnnomlponnmnonlnnlmmonmmmmnommnmllnnllmnnmlmmlmmlmmknmkmlmmkmllmlmmmllkkmllklmljlmlkmmkkmlkkmkkkjlllkklkjkllkkkkkkkkjlljjkkjllkkjjjjkljiikkijkkjiilkjjiikijjijiijkjijjjihjjiiijih/+.1TTkh$&21wzkkSTNPYZlkCE0/iib`""  *)jkEDQS[Z@@gh75mm34mk79gf>?_]HFTWNNPPSSKLVVJHXYGGXXIIUULKRSNNOPQPMNQQNMPRMKRRMLPQMMQQMMPPONNPOMONOPNMOOMLOPNNNNMOOMONNNNOMONMOMLNOONLLNNNMOOLLMONLNMLMMNMMNNLLMNMLNMLMLLNNLMLLMLMMLKMLMMLMKLMLLKLLLLLLKMMKLMJKMKJLLMLJMKKMKKKKLKKLJJKLKJKKKJKKJLMIKKKKKJIJKKJKKJJLKIJJJKJJIKKIIKKIIIKKIIJJJIJKJIHHJJJIHIKIIJIHJJHHIJIIIIKHIIHHIIIHIJHGHJJGFIIHIHGHHIIGIIGGIHFIHGHHGGIHFIHGIGFHGHHFGHHFGGGIHEGHGGFHHFFGHGGFEHHGGGFEGGFGGFFEFGGFGFEFFFFGGEEFFFFFFEEEGGFFEvuSTbcHHqsYY!!WWji24lj::%#CCus@?57]_prqqffTUA@#%/.12"#>=@@?=<< 66%%00-++---*)01&&32&&01'(1/)*..+),--,++,+)*--))--*+-,)+-,+)*-+(*,++++**+**)*++*)+***)++*)**))++)*+*)****(**)**)))*+*((*+*())))(+)((**((+*())))(*(')))*)())('))()'')((())(''(()((('))&')(''((((&'('''((&'''''(&'((&''''&'''&%(('&%&('%'&%(&&(&%%%&&'&''%%''&%$&&%'&&&%&%%&&%&&$$&'$$%'%%&$%%&%#$%&&$$&%$%%#%%#&&##$%&%##$%&$#$%%%$"$$$$#%$"#$$##$%$"$##$$##%$""#$$"###%""#$$#""$""#$!##!"#""""###""#"#"!"$! "#""!!""$" FFTU%&ab b`RQ%'``QQLKkkZZ%%()<;?@88+*                    no54'%@@##77ji~}=?56A@@@35#"                                         !ooPO34AAij{zGFKLssjkKK  SR``??0/VVvvHI"#;; NMTWQSIH ::..('$%/. 445334 10##-,&()*)'((**&&,-&&,-&%.,&&+,''*+*((***)(,*)*)+*)+*)****(),***)++****),,*****++*,**,+*+*)+,,)*,*+,+,+++*+,++*+,-,*+-,,++-+*,,+,--+,,,,-,,-+,,-.,,-,+--,-,,--+,--.,-,+..,.-,.,,.-..---..--,.--/..--.....-.-./..,-.0/,-...//.///-..//-/.-00.-00-.0/.../0/.0////0-/1..11//10/0////0000//10/000110/01001000/2100/11/1100211100023011021122011132/032031121321212330132222233112112431144122242223421332432431432324324334424343353422345534435434445344444345454434555435545545456545565366466545656544566545666566655666566556766566677667666776656886666786578778678787777678866887788787778779987777899888977:88:87899899898789:989:978:99:888;89;88899:99:9:9::999:;8::9;:89;:::9;999<:::::9:::<;::9;<:9<;:;:;;:;<9:;<:<<:<;:;;;<<:;<<<;<;:=;;<;;<<==<;;;<=<<;<<<<<;=<;<<<=<==;=<==;==>=;;==>]^10HIb`!"~ {y"#ji56WVFHHGSS?=Y[:9]]:8[\;=XWAARSGENNJKJJNNHIOPHFPQGHQOGIOOJILNKJLMMLKKMMLLMNJKNLKKPOKLLMMLLNMMMLLNMMMMNMMNMLNONNNMMNMNLMONNMLLONLNNMMOONNMNOMMONMNONNONNNNNNOMNOOONPONMOOOOMOONQOMOOOOOOOPOOONQONPPPPOOOPPOOPQQNOPPPOOPQPPPOPQPPPPRQOPQQPOQQPPRPPRQQOORQPPQSROQQQRRQQQQQQRRQQQQQSSQQPSSPQSRQQQRRSSQQRRQTRQRSSQSSQQSSRSSSRRSSRRTSQSUSQRSSRSTSRTTTTSRRTSSUUSRSUSTTSSTURTSSTTSTUTUTTTTSSUUSUUTTTUSSVVSSUUUUTUUUUUUTUUVVUUTUVUUUTUVTUWUSUVVVVUUUVVUVVVUUWWUUWVUWWVVVUVVVWXWVUUWXWUVVVVXXVUVXWWVVXVVXWWWWWVYXWWXVVYXVXWXXWWXYWWXWWWYXWXWYXXXXXXYYXYXYXXXWXZYXXYXXYYYYYWYYXYZYXYZWWZYXYZZYZXYYYZXZZYZZYXZZYZ[YXZZYZZZ[[ZYZ[ZZ[ZZ[ZZZYY[\[[ZZZ[\[[[Y[\[ZY\\Z[[[[ZZ[\[\\[[[Z[\\[[\\\[[[\][[\\][\]\Z[\\^][[\\\]\\\^][\\]^\]\[]^]\]\\^]]^\]^]\\\__\]_]\]^\]]^_]]_^]^^\]_]]^]^^__]]^_^^^_^^^^___^]^^^__^^_``_^_____^_`_]_`_^^`__`_^_a__^_a^_`^`a`^``^`aa___`a__a`__``a``aa`_`b`_bb```qrKL<<mo56%&<=10  DEpq{|qqqrz{ hiJHWWYWYZ22}{,, ,,UXusyyXXHGACGIRR__xymmnmttgizzde}{de{zdgywjjuulltsnoqprsmnusnmttlmssnnstqoqsqnqrqqqrsroqsroosspotrpqsrqstrprrqsrrqrsqqttqqttrrqqtsqrsssrrtrrrsusrssssrsrtrrurrtsrtsstsssttstursusrtusrtussuttvtsusstutstvusuutstvtuttutttuvuuuutstvvvstuuuvwuttvuuwttuvwwtuvvvtuvtvvvwvtuxxuvvvuuwvvwwwvuvxvvwvvvwvuxxvvwvvxwuwxwwwwxvvwywwywwxwwxxwxwwxxxxwvxxwxxwxxwyxwwxzzwxyxwyywwzyxyxyyyyxxxyyxxyxyzyxyxyyyzzyzyxxyz{yyyzzzzyxz{zxxz{zzzyy{zy{zy{z|{zyzzz{{z{{zzzzz{{zz{|zz|{zz|{{}{yz|z||{{z{{|}|zz||}{||{{}{||{{||}|z|}~|{{}||||}}||}}|}|||}|||}}|~~||}}~~}||~~}|~~|~~}}}~~}~}|}~~~~}}~~~~~~~}}~}~~}~}~~~~}~~~~~~~~~~~~~~~~K K RTSSdeMM$"76"!QP}}edMMCEGFRSaapq||}|rrkjjjjkpprq|}vvyyy|wu{zvv{}ut{|ut{{wvyzwxyxxwxyyxxwwyvuxyxwwywwxwvxwwwuwyxvwwwxvwwvvvvwxvvvxxuwwvvwwvwvuxxuwwuxvuvxvuwwvvwvvutvwwvtvwvuvvvutvvtuvvvvuuttuvvttvutuvusttvvtutsvuuvstttuuuttvssvursvtsstuuttttttssutsusrussurststsrstusrsssrturrsrrsstrrssrrtrssrrssqrssqssrsqpssqsqpssrrqqrsrprrrqprrssqprqqqqrqqqrpprrpqrqrpppqqqrqoprqqpqpoqqqqppppppqqoppqporqooqpoqoppnopopopqonnoqqnoooppnmpponpon,- vvOP,+..JJFH$$NNqqba__gfvsUWCCCBQRus))0/suCCcaTTRS`aHGhiCDiiCBhhIHbcMM^\QRVWVVTRZ[PQ][OQ[[QPZZRPYYSTXUSUUVVUUTTUTTWVSSWURTWUSTUVTSTUUTUTTUSSTSTTUTSSRTTTSTSTURTSSUTSUSSSSURSURSUSSSSRTUSRSSRSTRRUTRRQSSSRRSTSRSSTRPQSSSRQSRRSSPRTQQSRRRRRPPSSQQRQQQSQPRSRQPQQSQPRQPRQQRPQQPRRPQQPPQQPPQQOOQPPQRPPPOPQQPPOOPQQPOOOPQPOPONPQPPONPQNNPPOPONOPONOOPONNPOOOPPNNNOONOONNOOMNONONMPOMNOMMONMNOONMMMOOMNOMNNLNMNONLNONNMMLLNOMMLLMMMMNMMMLMNLLNLMMLLKLMMMNMLKLMKLMLKMMKLNLKMLKKLNMKKKMLJMLJLLKKLKMLKJKLJLL43 !cbss&'FEjkgi@Ahg  ddQQ32#"XZnlrrij[ZIK))8878.,@?%'FD"#GE$%AA)'<?,,982244462077//79/-780077016424433323442343126311352035303323212232132022112211221022111222123112122021021110230/1201101211210100110/2200/0100.12//0120/0/.11.00/0/01000.00.//1//0.//00.///00/.0/-/0.///0....00.-/0.-/0,-...00.,-//.--.-./...--/.--.,,..,//-,,.-,.-,./.--,--+.-,,-..,+-.,,.,+-,,-++--,--,,,+,-+,,,,+*+--,+*,-+++,++,+++,,*+,+,+*+,,)*,++**,+++*++*++**+)*,+)*+*++*)****+**+))+)**)*+****))(***()*))**())))**()*(**'()(*)(*))*)('*(()((*)'((')((('*)('&))'(('()''('()'&((()(kk(' cb/0}|88~----jk54//BCa_|{]]77+*4232,-#$                                                                                                                                                                                                                   NMvu df,,())( "#[Y;;65CB@?23                                      WYtrrthiqnxzTU00  ]]VW^^ NNtt~vwbaGF .- !11 ;9 <= 9812++%$!" )',+**)*&&!%%"###%$""%%"!%'# $%##%%!"%%$##&$"%%$$$$$%##&%##%$%$$$%$%&$%&$%%#$&$%%#$%$$%&%&&$#%%''$$%%&&$%'&%%%&&%'$%'%$&&%'&&&&'%&%&%%'&''''&'&&'&&&'''(&')%&''(&''%')(%''&(('()&&'(((((('&&))&(*(''''))(('())''((()*'((()()('(*)'()**()))))*()*(()()+*())**()*+**)))*+()+)))***+)(+*++*(**++*+*)*,+*++))*++**,,*)+,*++)++++*,+++*,-++**++,-,*,,*,-+++-,+,,+,+,-*-.+,,,,-,,-,-,,,-,,--.,+.-,--,,-----.,,-,-.-,..,-../-,/--.-/--/-./,-/.-..-./.-/.-.-./..0.-.0.-0..0/-0/.//..0/-////.///0/000/./01//100/../11/0/00/1//00000/010011100//02101//221/12/1111011010032100133003211101221231112222231142221212331232331044332112343222342223422333432442344124533334432543345434344345445345433464454454554BAQQ'(@?JINNffpo86GIgeUXsr%%ccrp56<;ab|{sq""`_45NNDE??QQ77WW43WX55VW88PQ>JIYYsvfehhpqa`vw^\wz^\vx_^utccoohhmljkjjlmihnnggoohgnoihmnijllkkmljlmlklljmmklmmkjmnkknmjjnmlllmmlklmlmmllmnmlnmlmllnnmmlnnllnnmmlmnnlmonmlmnmnmlnnnmmnonmmnnmmnommonmnnoonnomloonnnopmnonnoonnooonopmoponmooooppnopoppopoppoppqoopnpqqpoopopqpopqopqooqrporqpppppqqpqrpporrqpqrppqrpqsqppqrrqppqsqqspqsqqqpssppssqqrsqqtsrspqstqqsrrrqstrrsssrrrrtsssssqssrtrqttssrttrsstssustusstssusstssutstuttststtsuuuttttsttuttuttuvtssuutuvttvtuvsuvvuuvvutuutuuuvvtuvvwuvutuvwvvvuwuuvuvwwuuwvvwvuuwxwvuvwvwvuwwvvwwvvwwwywvwvvwwxwwwvwyxvwwxwvxyywwwwxxxxxvwxxxxwyywxxxywxxzywxxyyxyxxxwyyyyyyyxzzwyyyzyxyyyzzzxyzzyzxx{yyzzzxxzz{{zxz{yy{yzzz{y{{zzzy{{{yz{zyy{|zy||{y{{zz{|{zz{{|{{{{{{|{zz|z{{{||{{{||{{{}|z||{}|z{}||~{{~||\YLKvwfeXVVW^_iiuv~xxvuvwxx||~~~~~~~~~~~~~~~}}~~~}~}~~~~~~~~}~~|}||~}}|~~}~}~~|~~}|}}|}~}}||~}}~}||}}~|{||}~|{}|}|}}}||||~|||{{{}|{}|||z|}{{}|{||{z|}{z||{}{z|||zz{{||{z||y{|zz{{{{{zy{{yz||zyzz{|yy{zy{{z{zzzzzzyx{zyzyzyyzyyzxz{yxyzzyyzyzzzxyzxyxzyyxwzywzyxyyxxzywxzyyxxxxyxxyxxywwxwxzwvxywxwwxxxwwxyyvxxvxyvvxxvuwxwvxxwvvvxxvuwwuwxwvwvuxwwwuvwxuuvwvvvuwwtvvtvvvwuuxutvvvuvwvvuuuuttuuwwtuutuuuuvtuuutuuttuvvusuu,-67""ED78 0.ZZqqeeddijwv KL9932][::rrYYYXopEE|}?>~?>}~CBsvMLkkTUca]_[ZcdUVghSSggUTfeUVddYX``Z[^]^^[[__ZZ_`[Y__YZ__ZZ_^\[]][Z]]][[]]\[]]\[\^][\]]Z[][[[[\\[][\\Z\\[[Z[\\[[[Z[\[Z\[ZZZ\\ZZ\\Z[[Y\\ZYY\[YZZZ\ZZZZ\ZX[[Z[ZYZZY[YZ[ZYYZZZ[[YXZZX[ZYYXZZZYXZYZYXZXYYXYZYYYXYXXYYYZYXXXYXYXWYYYXWYXYZVXZWWYYXWYYWVWYWWXXWXYXVWXWWWWWWYWWXWXUWXWXWVVXWVWWWWXWUUWXVVWVWVUWVWWVWWVVVUWWUVWUUWUVWUUUWUUWVUUUUWWUTVUUVVTUUTVUUVTTVWTTUVTTUTUUTTVUUVSUUTTUTTTTVSSTUVTTSSSSTUTSTTTSSTTUSRTUTSRTTRRSUTSSRSTTSRSRTTSQRTSRSSSSQRSSSRRSTRRRQSSRRPQSSSRQQSSRRRRQRRQRRRRRRPPSRQRPRQPSRPQRQQQRQPQQPQQQPQRwwuw~}g g x w  DB{yccuuvv  QP:='&^^  oqrskm\[  KL1/===>11GG*+KJ()KI*+HG//AB44=>7898<<65<>55==54=?44==55;;78:87989;8789968;9769:879869:87788778978768887776896777876788777788766966877657778667866767766775677667676555876645776556556576655745556554665455556455455554643566355443454444454345652365434533453235443334324345324422343432342244333234113422233133113311331232112322212201321212300330111113300320110121100101100210110/11/11/010/010/0011100000//011//000/0///./00/00/./0//./1..0./0/--/00.../0/.-//-////-..////.-.../.-.-./--.//-,..--/.-,-.--,..-,---. JKfh34YZ^]DCddLNMMmm((,,QPHJ32NMWYSREE44"!"   '&((((##                                                                                                                                                            NNFGUT "!yy]]JL_`NO !"))''                JI&&RR{z=>000/%%DDpnji0/ FGYX[ZPP?@-- )* .- /- ++$% !! " !#!$              ! !    !  !!!! ! !! !!!!!!!" !!""! ""!""!!# "#"! ""!"! "#!""!""!""!!"""""#""#!##!"##"""#"!##"""###$#!#$""$#!$$!"%$!"#$%##$"$$"#$$%$#$#$#$%$$#$$$%%#"#%$$%#$$$$$%%%%%#%&#$%$%$%%#$%&%%%$$&%$&&%$$&%&&%&%$%%$&''%$$&&%&'&$&&%&%&&''&%%'&%&(&%('&%%&((&&'&%''&'%''''&'(''''('&'(&&'((&((')('(('((('(('&))'((&(('))(()(()((((((*(())'())*)(')))*''+*(()**)))))*))*))))*+)(*)**(*+)*+((**++*)++)*+****++)++*,****)++++*+++,,*+**++-,*+,+*+++,++-,**--**,,,+,-*,-,*,,*-,,-,+,-,,,,+-,--,,-.,+,-,+..+,.-,.--.-,----.--.-,.-,./.-,---/-,-./...,-/.....,-//..-.0.-//.////./..0.././0..0...01.-/1./0./0/00..10.10/10./00000///000001/11//001101100010/021/21/22012/11011121033100132013211221220111<<21 ##tv%#}}IGqrYYDDkj89'&pqwv^],.IICC55PR++XW')YW(*VT//NN56FG==BABB>=EF<;FG;:HI;9FG<>EC?@DB?BB@BC@@DC>?ED@@DC?@CCB@BB@BDCABCCDBBCCBBCCAACCCBADDCBBDCCCBCCBCCCACDCBCECCCCBDDDCCDDBCECCDDDEDCDDDCDEDDBDEECDDDECDDEEDDEEFCEEDFDDEDDEEFFCDEFEEEEFDFFEDEFDEFDFEEGEEFEFGDEFFFEEFGGEEGGFGFEFGGEFHGFEEFHFFGEGHGEFHGEHHFHGEHGFHGGGGGGGHGFGGGHHGHHGHGHGHIGGHGIHHHGGHJHGHIHGHJIGIHHIIIHHGIJIHIIGHJJHJJHHJIHIJJHIIIJHIJIHJJIJIJIIIJJIKJJKJHIJJLIHKKIIJJKJIJJKLJIJKIJKLJKLJIKLKJKKKKKJJJKJKLKJLMLIJKMLKKKLKKMMKKLLLKLLMKJMLMLLMKLLKLLMLKLNLLNKLNMLLLLNNMLLLLMMMMNMMNMLLMNNLNNMMLMNNMMMMNMONMONONMLNNNNMMMONONLOPMMONNNNONOONONOONNONNOOOOOOOPNMOPPONPPMOQONOPPNPONPPPQPOOOPPOPQPOPQNPQQOOPRQOOPPPQRPPPQQPQRPPPPRRQQPPPPRQQQQRQPQQPRQRQQRPRRPRRQQRRSQQQQSSPQRRRQRRSRQRRSSSRQRSRSSRQRSRRSTRSTRRTTRRTRRTTSSSSSRUTRSUSSTRSSSTTUSSSSUUTSSTTTTRTTTUVSTTTUSTTTUUSTUTUUUUUUSTTTVUUTTUUUTUUVWUTTVVUUVVTUUUVnn~bc  -.EBvuomttABWWln #99XY;:== JJddwx=>))$&./<@?<;@B98AB89AA:8?B:9A?;;=><=<;=>=<=>;:>>;<?=:;=>;;<<==;=<;=<;=;<=;;;<<:;;;;;;==;:;<;<;;=;:;:<;:;<;;<:;;;;:;<;9:;;:9;<9::::::;<:9::;<:99;:9::;::8:<99::999::8999:88;:9:88:9999:998899998799987:978987899988897789987797898778768988777677787697786777967757778867777577766667667876666666766766556677466576566456755754665546765446636645456455455645436633654443463244453454334543444423453332333442333543313333343234213431 23\]?>BClk++nn8:TS^_)( g f > = v u   sqQRzzTT/...;=?@;<22)(  "%$#$":;xy-/sqZ[vuxxjkut||ZZ55      ..   TSOOLL}~ZX\\yy`_30 "!"`^')BCLLHH>>/0 #$ $%$% !       !    !  !  ! !!   !! !!!  "! ! "! """" !!!! !!!"!!""!""!"" #" "#" "!!#!!#"!#"#"!"""#$! $#!#"##"!##"#"##!"#"###"##$$#$""####%$"#$$#$##$$$$%$$##$##$$%##$#%$#%%$$$%%%$#$%#$%%%$%%$&$%%%%#%%$%%%&%%%$&&$$%&&&&$%&&&&$&&&%%&&$''$%(&%%%'(%%&&&''%&('$&''&''%''&''&&'&('&(&%()'&'('&''((&'('(''(''&'))'''(()''(()((''(((((((*'()((())((())'()((*((**(()())()))*))*))**())*+*))))*+)))*+*()++)*)+,((,*)*++)++))++**++***,+***+**+-+*,++++,,*++,,+++,-++,++++,,+++-,,++-+,-++,+,-tuNN<;    kk xxbcRQabGE_`'&>>DD&%WW``^^XW$#MM.,DE87::=?64DD11EF20EE22CD47B>78>><:9=@=9;>>99?@:9@>9:?>:;>===<=<<==>>;;?>;?<==>>=><=>=>=>=<>??=>>>>==>>=>=<=??==>??>=>>>@>>=?>>@?=>@>?>>?=@@>=>@@?>>??@?>=@@>@A>?A>????@@??@@@??A???@@@B@@@?@@A@@A@@@@A?@AAA??BBA@@A@A@AA?AAABB??AABB@@AABBBBAAAABCA@ACABBBBA@BBABACDB@BCC@BCBCCABCBBABCDBBDAACCDCBBBDBBDDCCCCBBECCCBCDCCDDDDBCDDDECBCDECECCEDDBBDEDCEECCFDCDDCDFEEDDEDFEEDCDEEDEEFFDEDEEEEEFEFDDFDEFFFGEEGFEEEGGEDFFFGDEFGFEGEEHGEEFGFFGHEEGFGGEHGEHGGGFFFGHFEHGGHFGGFHFGIHFGHGHGFHHGGHHHHHFHIHGHHGHGJHFHJIGHHHIIGGIJHIHGHHHIIHIIHIIHIIIIHJJIIIIJIHIJJIHIJJHJKIHJKHIKJIIJIJJJIKJIJJKJIIJKIJKJKKIIJJKLJIJKKKKJJKKLJKKKLJJLJJMLJKLLLKKLLLJJKMLKMLJLMLKKKMMLKJLMKLMLKLNMKMMKKMNKLLLNKLMMMMLLMMLNMMMMNLLNMLMMNNLMNLLNMLNNMNNNNNMNMMNONMONNNNNMONNNNOOMONOPMNOOPMMOONOOMOOONPPOPMOONPNNOOPPOOPPNOPOOPPPONNOQPOOPPNQPO    QO99fd^^ih|{~}==!!{{JJ]_po>>.-+-23?@uvOOii[\\\ffTTllPQnnRQmlSTiiXXed[\ba_`_]ac][bd]]dc\]dc]]aa_^bb`_`b_``_`b`_ca^abb`^acaaaa`_bca``aacb`ababa`ccbb`abababaabaaccabbaabcbaacb`bcbaacdbabcbccabbcdccabcbccccbddacdbbcdccbcdcccddbbdcdebbedcdccddeddcccceeeddeccddfecffdddddedcdffecdeefeededcfedfffedeeffeddgfdefgeegfeeefefgeefgedggffefgggfeggfggfegggfefggggffgihefghieghfghghhgfhgggfghigfhhhhgggighigghihhigghiighhhihgiiiighijihiighiijhjjihhjjhhjjiiiiijhiihjjiijjjiikjikjijjhijjkjkkiilkijkjikjjlkkikkjkkjkkikjjllkjjklkkjjlllkjklljklljjkklmlkkklmmkjlmmlkklkmnlkknnlkkmmlmmlmlklmmlmnlklmmmmmmoklmmonllnnllnolmommnlmnmmomlnomlonnommoomnonnmnoonmnoooonmonnnopnoomopooooonnppooponooppnopppoooooppoooqpopppopqpppqqonqppqooqqpqqpqpppqqqrpppprqoqqqrqpqqqpqqrqqqrrqqqqqrrrqqrrrrqrrpsrpssqsspqtrrrrsrssqrsrqrsssqqttsrrrssrssqtsssssrtsstrrtutssssrtttsttts ed ==    ccfh AA ZZ GG XXwx\\PPRR`^oo{{yyz|}~ 54TTkiPPIHLLXZhiyxyxsssrrswx}{~~~~Z [ ]]  44zztuAB!"10GG|}]]jgnoYYzyQR}~QO~}RTxwYXqr^alkddggihablkaall__llabjjdahjedfeegffeefeehecghddgecdghecffdedeegedeecceeedegddfddedddededcedcdeddedcdddeccddeebbefcbbdecbdebcdbccbdcbccccddcbbdbaccdcbccccbccbbbaccbbaaccbbcbacaacbabbbcbacaababcb``bcaabb``bba`aa`abb``aabb``aaa`a`aaab`a`_a`_aa`a``a_^bb_^aa^_``aa_``^^a`_a_^`_a`_``_^_^^_^___`^_`^^``_]^___^____^]_`^\]_^^__^^^_^]^_^^_^]^^]__^^]]]]^_^]]]^^\\^]^^]^\\]]^]\^_\\^^\\]]\]^\]]]\[[^]\\]][[^\[\\]\[87gg XZghXWZYjh}  z {  QP a a  ~ }  | |   YY@@--eewvzz  qrdc%&TS75DDBC88ML10PP00OQ/1OK44HH9:DD><>@A@>=AC;;DC:<CB;:AD=<A?<>@?>>?>??>=?A<=A@<<A?<=?@<=>??>=<?>=>>>=>===<<=>==?>;<?=<>><=>><==<=<==<==>==>=<;<>>;<==<<=;<=<;>><<<;<<;<;<=<<;;=;<<;=;:;==;:;;<;<=:;;;<::=<9;;;<;<;9:;:;;;:9;;;;;;;9:;::::;;;:::89;:::;:9::;:9:;989;9::9::99999999::879::88:::99888989:87:9789989:87897fh&&+*tuIIgg[YjlAA56zy34   O P  wx 0/*+ WW ji jk ]] HH 21%%.. 4332 /,''! ##""##!!JJ dcCBA>PTMM89 d f ? ? F G j j qp 9:   .. .. &%         QOxv~rpUU67%&/-..+*"$           ! !  ! ! ! !  ! ! ! !! ! !" ! ! !!!! "! " !!!"!!!! "! #!!" !!!#"!!!"#!""""!!"#!"###"!!##!"#""""!!"#$#"#!#$"!$#"###$#""###$##""$##$#"$#"$$"#%#"%%"$$#%$$%$##$%$%$#%%#"$&$$$$$$%#&$$&%$$$%%%%&&$$$%&%&&$%%%%&'%%%%$%&&%$'&%&&%%'&$%&'&&&%&%%&&&(&%''&%%'(%&'%'&&(&'&&((&&&'&'(''&&&('''('&((('&&'(('(('(('''')((((('&(*)'('))'()(()())((')*((()((**'')))))*)LM    ab & & >? o o VVH F ikD E `]\ ^ <=  -.<=2244:;/.>?,,BA)+A@,-==00;<3387655787359854:;23::33:964797676877877658:76896688787886699867888887989779799788996898898779:97987:989:89:8889:988:9::89989::999::89;999:99::::99;:9::99;;:9:::;:;:9;:;;9:<;;::<;;:9:;:;<<;;9;<:<;;=::<:<;;<;;<;;<<:<=;<;<<<<<:<<;<;<<==<;<>;<<;==<<><<=;==;=>====<<>===<=>=<>===>><==>?===<>>>>=>>>=>>=@=>?>=>=>>>?>>??>>?=>@>=>?@?>>??>???@@==?@??@>@>>@??@?>?@@??@???@@>AA@??@@>?@?@A??AA@@@@A@AA@@@@@@@A@?AB?AA@@AB@?ABAAA@@@AA@ABA@ABCBAAAAABBBAABACCABAABBABCBBACDAACBBCBABBCCBCCCBBBBDCBBCCBBCDDBCDACCCEDBBDCDDCDCCDCDCCDDCDDBCDDEDBDEEDBCEEDDEEDEECDFEDEDDDDECDEFEDEFEDEFECDEEFDFFDFFEDEGEEFEFEDGEEGFDFFEFEDGFFFFGFFEEGGFFFGFEFGGFFFFGGHGEGGGFHGFHFEGIHFEHHGHFFHHFGGGGGGGIHGGGIGGIGGIGGIHHGHHFHIHGGHHJIHHIHHIGIHIHHIHIIHIHIJJHHHJKIHIHJIIKJHHIJIJJIIIHIKJJJIIIIJKKIIIJJJKHIKKKJJJIKKIKJIJKKJJJKKLJKKJKJJKLLJJIKLLKIKKKLJKLMJKLKLKJKKMLKKKLLLKMKLMKLLKKMNKKMKKMMMLLLKMNLJMMLNMKMMLLLLge  BAP P  ef= = T S ##8 8 /.; < U U w w ,,FH__zz -/spMNVVghA@uv87{|67wx==pqFFgfPP]_XYWU__QQbcPPcbONbcRRb_TU^]WY\\YYXX[\WX]\YY]\VX^]XX[\ZYZ[[[ZZ[[ZY[]ZX[[\ZZ][YZ]\Y[\\[Z[\Z[\[\[[][[[\\[]\[]\\][\\\\Z]][\[]\]][]]\]]]\[\]\\]\]^\[^]]^\\^]]]]^\]]]^\]]^]]_]\]]__]]\]_]]_]^^^^]_^\^_^^^^_^^^^^]^_^_`]^`_^`_]^``^^^__^_`_____^^a__`_^`a`^_`_`__`a`_`__`_aa_`a`_`a^_`b`_a``b``a`__`ba`abaa`_aaa`aa_ba_babbab`a`abacaabaaacbabcba`bccbbaacbbccaabbbccaaccbbcbbccbcdaccccbcdcbbdecacdccccbbeccccddcdecbcedbbdddceebdddeccddeddddddedddeecdedddfdeedeecegecfedeeeefffeeeeedeeffegeeeegedgfffedegfffeeggfggeefggfgheeggfgffgfgeggfigfgggggfghggfhgghfghhfgggighgghgfhighigfiighhgihhihhgghhiiiighihiiihhihghihjiijihhiihjjihijihjjijihkjhhjikkhijjjiijijjijjjjiljjiikkikkkjikjkkijjlljjlkkkjjkkljklkjjjkklmkkljkmlkklkjlllmkklllklllllllkklmkknnkjllnmlmmlmmkknmmnllmmmlmnnnmllmmmmmommmmnlmommnmmnmlmonmoolnomonmnnnonnomnpnmonooomnooomnooomnnppnmpooonpponpooonqpnppoonoooqopponppopppoppqpqppopqnprrooqqqqopqqq ~ ~ i h ^ ] a a k k y w ;;``kl[\WUZZbcklxv}}vtsqpqqsuuzy~{}}|}~{|zzyz|{~}z}~}~|}~}}}|~~|}|~~}~~}~~~~~~~}}~~}~}~~}}}~~~~~~~~&%   \ ] >= G F ` a     $ $ F H } } h e a d | | Q P G I H J O O  X Z v t b c m l i k e e p q b ` r s ` ` r r ` a r q b a o n e e l l f h i h k j g g i k f e l l f e i k g g i j h e h i g g i i g h i g h i g h h h g f h h g g i i f f g h h g g g f g h i h e f h h h f g g f g h f f g f f h g f g f e h h e e g h g f f f g f g g f g g e e f f h f e g g e e e f h e e e e f g f e e g g d d e e g f d e f f d e f e f e f d d f e e e e e e e f e c d f f d d e d d f e c e e d e e d d e e d c d d e e d c c d d c d d d d d e c c d e c b d e e d c b c e d c c b c e c c d b c d b a c c c c c c b c c c c c c b b b d b b d c c b a b c b c c b b a ` b d b b b b b a b a a b c b b b b a a a NOPORR PO~|OQ@?EEYYst?>V X  ' &   6 7 % $ | z % ( U U J G 5 8 a ` % $ m m   o o !  h i ) ( ] ^ 3 5 Q R ? > I H G G A @ N N ; < P Q : 8 R R ; ; N N = = K K A A H H C E F E E E C B F G C B H G @ B H G A A G H C C E D C E F D D E E D E E D C D E B C C E D D E D C D D D C C D C C C D D C C C E C C D B C D B B D D B C C C D C B B C E A B D C A D D B C B A B C D D B A A C D C C A B C B B B A B B C B B C C @ A C B C B B A B B A C B @ A C A @ A B A B A A A @ B B @ B B A A A @ A @ @ C @ A B ? @ B B @ @ @ A B A @ A @ ? A A @ @ @ B @ ? @ A @ @ @ @ @ @ A @ @ @ @ ? ? @ @ @ @ @ > @ B @ > ? ? @ A ? ? @ ? ? @ @ @ > > A > ? @ > > ? @ @ ? ? @ ? = ? ? ? @ > > @ ? = ? ? > ? > > ? = > ? > ? ? > = = ? @ = > > = ? > = ? > > = = }~rubaoq<;11eebb//GFUV   J L     9 9  O N X V U S H H   : :   + + " "   + *   1 0   2 0   0 /   - -   ' '  " $ " # !  % &   & %   ' %   & $  $ $   " # " ! ! # "  ! " ! ! ! # !  " " ! !  ! # !   ! ! " " !   " !  "   ! !  !    !   !   ! !   !                                                                                                                                                                                                <;45XX^\') `a& '     P O D D     9 8 G F D D 6 8 " #                     ;;~sq..34LLQRJJ99$$                            !    !! "! !!!! ! !! ! !" !! !" !! "! " !"!!! "! !"! !##! "#!"!!!!!""!"!##"!"# !"""""!"$#!"""#$#""$#!!$$"#"###"!#%"#$!#%"#$"#$###$###"##"%%"#$$$##$%"$$$$$%#$%$$#$%%#$&%##%%$$$#%%%%%%%$%&%%$&&$%$%%%&&$#&&%%&'$$'%%&$&'&%$&&%'&&&$$'(%%'%%''&&&&%&'&&''&&&&'('%'(%&((&'''''&''&((&''((''((('&'')(&))(''((')''')('))((*('))(()((*(()(()(((*))*()))(()*)()*)))())**   {|} ~   @ A e d b b : ; v v : 8 g h R T D C ~ ~     ` ] :<`^%&RRGFZY12==ST[\[Z PSDE!89+-/.65(':;##<>%#:;''99((67,-2210//33.-34/-35//35.-44./420101320/240/241/320122232103421212323233223312432122331232333333323333333433244324335224435435424435335345353454345444344356434544555554555555555356456655655556446745657545566766854765776676656766677555877766765688667787775787777778778877789678787788879769977888:868:97887989989878::9778::889:97::88::8998::9:88:98;:9989;;8::::8:;9:;9::9;::;:9::;:::9<;::::;:9<:;::;;;9:<::;;:<;:=;:<;;<;;<<;;<<;:;=;;<;<<<<;;=<<<<<=<;<<<;<=><<=<<>=;<<==<>?<<><=><==;>><;>><<=>?=<<>?>><=?>=<>?>>?>>>=?>>><=>?>>?=>??>?>=?@=??>?>=??>?@>@?????>@???>?A@>@?>@@@??@@@@?@??A>?AA@?@@@??AA@A@??@BA?@B@@A@@@@AAA@AB?@AAA@AAAABB@@BAABA@BA@BABCA@AACBABBBABBBCCAABCB@CBABCBACCBBBBACDCCBABDBBCBCCCCBBBCCCDCCCBDDBCEDBCCDECDCCDDCCEDCCDECDDDDCDCCDDDDDDDDEFDDDDCDEDFEDEEDEDDECEEEEDEFFDDDDEEGFEFDFEEGEEEEEFGDEGEEFEGGFEEFGFFFFFFGEEGGFFGGGEFHFEFHHGFGGGGEFIHEFGHGFHHFGGHHGGFFIGFHHGHGHHGGHIHGFHHGIHHIGHIHHHGHIGGIIIIHGHIHIJHHGHJIGIJIHHJIHIIJIIJHHIIKKIHIIHJJJJIHJKJHJJJIJIJLIHJKJJIHLJHJKKJJJJLIILLIILKKLIJKJJLKKLJKLJILKILLKLKJKLKKMLKKLKKLLJJLLKLKLLKMMLLKJMMKLMLLLLLKKNMKLLLMMKLMLLMNMMMKMMMNNMLLMM w w   . , e f g h V W [ \ o n ik ..QS||.0POst|}75bdOMMO`_@?kk9:lm;9ik?>ffEE^]KNXVRTSPXXMN[ZLN\ZMN\ZNNWWPQWVSTTTUTRSVVSTUUSSWXSSVUTUVVTTVVTTVUTUVUUVTTWVSUVUVUUWUTWWVUVTUWUVWUVTVWVVUUVUVVWWUVWVWVVVVVXWUWWWWWVUWXWVVXWWXWWUVWXXXWVWXWWYXWWVWXWXWWYXWXWXXXYYWWXWWYYXWXXYYXWYYWYYWXYYYXZZXXXYZXYZXXYZYXZYYYY[YXYYZZZXXZ[[XYZY[YZYY[YZZYZZYZZY[ZYZZ[ZY[[[[ZZ[ZZ[ZZZZZ[[[\Z[[Z[[ZY\\ZZ[\Z\[Z\[\\ZZ[\\][\\[[[[\\[[]][\[]\[]\\^\\[\]\\\]]\\\\]\\\\]]\\\]]]^^\[]]]^]\^^]\]]^]\]^]\^^^^]^^^^\^^^^\]^_`^^]\^^^^_^]_]_`^^^]^_^^_^_^^_____^^``_^`^^___a__`_`_^_``___``__a_^aa^_``a`^`aa`_``a`_aa__a``aa``a``bbaa`_`a``ba`abaab`aa_bbab`ab``bca`ababaacaaca`acabdabbacaabcbbbcdacbabdcbdbacccbbdcacbbcbddcccbbcddccceccdccccccdbcedcccdddceebdddeddccddedcedfeceecdfdeeceefedeeddeffedeffddeddfeggdefdefffffeffeeeffgeefgfeefeefehffgeeggefhgefggfeghhfffghgffhgffhhfghghgfhhgfgghhhhhghhfhhhifhihhghighhgihgijhhggiighjiihhiiihhhhjihjjihhjhijhhijijjiihikihkihjjjjhhjjjkhhjlkhjjkkjhijikkijkjjjkjijlljjkjjjlkikljjkkkljjljkkkkklklkjjmmkjjlllklllllklmlklmmkkmllnmkklnlllkllmnnlmnmkkmmlmmllmnmklnmnllnlmonlmmmnnnmnmnmnmmnnonnlnnnplnplnonnonmoonmoponnnnnononnpoonoonppnnoonoqoopoonopopopppnopooppqqonpopppqpnqqqonpqpporppqpopqprrppopqprrqqpqqklU S 2 1 + , 6 7 P O m k { { s s q r w w ~ ~ &%++DEaa~xxkj^]ZZ\]ddkj~~rrwwzyqr}|oq~ooqp}}qr{|utyzwuvxzyuuyzvuyyuw{yvwyyvxyyyvxyxywxzyxwxzwwyyxyxwxy{xxyxzzxxzyyyxyyyyyzyyzyyzyyzzzyyxz{xzzxy{zyzzz{zzzyxz{{{yzzz{zyy{|zzzz{z{|zy{|zz||zz|{{}{z{|{{y{{{}{{{|{z}|{{{}{{}{{|{{||||}|}}{{|}}|{{~}{{|}}|}|{}}}}}|||}~}{|~{|}~~|}~~|}}~~}|~~||}|}}}}~~}~|}|~~}~~}~}~~~}}}~~~~~}~~~~~~    o q . , I H a b ! !  + , J I { { g f b c | { P R J J L J P Q ~ ~ Y [ t s c c k m k i f f o p ` a q r a ` q r a ` r p a a n n d e l l h g i h h i g g j i e f j j f f j j f g j h f g j h f g i j g f h i g g h h h g g g i g f h j g f i JKll0/7778=<^^'(!!< < K L @ @ F F E E C C F G B B G F C C G G @ B I G @ @ H H A A F F C B E E D F C C D E C C E C B C E D B C E E B B E C  ?@qrDDuuyx IH?>9;< @   D D   A C  9 :   3 0   ' ( " "  ) )   + +   , +   * +   ( '   % % !  " # ! " # " $  % %   $ %   # " # # ! # " ! " ! " " !  ! #   " ! ! ! " ! !  ! ! ! " !  !  !  !  !    ,+ ss - , ) ( 5 6 H F   H G V V Q Q ? ? & '                         66edxx$&;=VX[[ON9:!!                                                      !   ! !   "  !!  "!!! ! !" !! !" !!!! !"! !"!! !!"! #! ""#!!"! ##!#" "#!!"## "#"""!#""#"""#!##"#!"$#!#$"##"""#$##$#""$##$"#$$#$$#$#"$$$##$##$% ,-   u w G F . - a b r p 8 9 5 6 v t R S M O       "!+.A?\\@@@AFFvwMK)(88LLSTQRHI<<12)'()0/!!557665!!32%&//((,,*+*).-('/0((//''.-**,.*),,+*,--+*,-,*+..+*,.++-,-,,,,,-,--+,-,+--,..,,-,-.,,..,..---.---,-.-----.,,./--.--/.-..-...--//.,-../.-.0.-../...0/.//.-////-/00.-00.00..0/-01/.00.0000/.00.000/./10/0/0/11.011/10/1002/01001001001110121/0112110002201320021121220121222113211221122233111223312331342221333311233323324423422453312432433454335324543443444433445634346434534644455455336545554563465456455455566546655466446755754677654775567766776556775776757777765767876686678766876896797687797778877877998777887897888879889888:88988:9889:8888::88989::::988:98:88:99:9::9:989:9;:8:;99::::::::;;;99;::;;:;:9;<;::<;;::;;;::;<;;<;::;:;=;:;<;;<;<<;;<<;;<<;<<;;;;<>=::==<<<<<<;<<<><==<===<<<==<==<=>===<>=<==<>>=><<>=>?<=?>>><=><>>>?>>><<>?>>>>?==>>??>>?>>?>=>>?>>@?=@?=@?>????@>?>?A???>@@>>?@@>>@@@A??A@??@A???@A??A??@?@B@?AA??@AA@@@A@@BA@??ABBA@?AAAAA@AA@BB?ABA@@BBBB@BAABABBAAABABA@BCABBABCBBACCABBBBCCACCBBBCCCBABCCCBBDCBBDDAACDCDCBCCDDCCCDDDCBCDCCEDCDCCEDDDDDBCDCEDDECDDEECDEDCDEECDEEDEEEEDDCEFDEECEEFFDEEDEEFEDDGEDGGEFFDEEFGFEFEEGDFGEDFGEEFGFEFFFFFFEGFFGGGFEGGFFGFFGFGHFEHGGFHGFHGHGFGHHHGGGHHGGHH  ~ D D L M    v v | | mj))[\OP;9kl$$zz{{!!ts*-ih78[[GEMNQPFGXWAAY[A?ZZC@VYEEUTIIPQNLLNPPKJPSJISRJJQQKMPPLLPPMNPOOMMOPPNMOPMNQPMOOPPMOQPNPONNOPOPQNPQOONOQOPQNPPPPOPQPPQOPPPPQQOPQPQOPROPRPQPOPPPQRQPRPPQQQRPRQPQPRRQPPRQQQQQRRRQRSQPRSRQRRRRPRRRRRSQQRQSSRRRSQRRRSSRRQQSSRRSSRRSRTTSRSSSTQRTSRTTSTRSSSSRTUTRTSSTSTSTTSTRTUSSUUSSUTRTUUTRTUTSTVTTTTUUUTUTSUUUUTUUTTVUTVUTUVUTVVTTVUUVVTTVVVVVUTUWVTVVUVVVWVUVUUVUWWWUVWUVVWWVVUVWXWVUXXVWWUVWXXWVWWVXWVXWWXWVVXXXXWWWWXXWWYYVXYXWWYVWYWYYXYXWXXYYWXXXXXYYWYXYZWXYWZYWZYXYXYZYYYYZXYZYYYXYZXXZ[YXYZZZ[ZYYZYZZYYZZZ\ZYZZZZ[[ZYZZZ[ZZ[[ZZ[[Z[Z[ZZ][ZZZ[\\Z[[[[ZZ\][Z[\\[[\\[Z[[[[\\\Z\][Z\]\Z[\]\[\]\\\[]\\]]\\[[^\\\\\]\\]\\]]\]]\\^]]^[]^]^]\\^^\]_]]^^]]]]]]]__]^^]^]^^]`_\]^_^_^^_^^^^__]^_]__]^__^_`_^^____`^^___`_^___a_^``^^_`a_^`a^^`aa`_`````b__`_`aa_^`aa`aa_```aaa`aa``a`aaa``ba`b``ababaaabb``bbabba`aacca`acbbca`ccbabb`bdaabccacbbdabdcbabccbddabcbcdccbbcdcbddbbcdccdbcdcccdbcecbddcdddcbdedbcedcceebdeeddecdfcdedfdcdeeedeecefddfededdgedffdefeeeeffeedffgfdegfefefffgefgefgfefgeegfghfeefghgffggeehgehgehhffgghhghggfghgfggghggghggggiihghghihgihfhigihhghhghhihhiiigghhijiihhgijighjhgjihjihijihjjihjijjijjhikijkhikiiijkijjkkijjkjiijkjjjjjkljikjjjjkjjlljkljjkljjlkkljkjjllljkNN  % % 2 1     J H v u  n n f h k j u t  ;;ddjjQREFEFMKXWddywormlxygg~}ed~ef}}ggyyklvwporrrspqutmovvnnwvonuvpptspqrtsrsqrsrrstsstrrstsrqstssstsssrrsttssssttussuttusssuusuusssuussuussttttutstttuvuttuvutsstvuuvuuutuutuvvtuwttwusvvvvuuttwwuuvuuvuxuuvuwvvwuuvwwvuvvwvuvvwwvvwxvvvvxwvvvwwwxxwvwvvwwwvwwwxwvvxxxwwywvxxwxxwxxywxxwwxyxxwxyvxxwxxxxxyyxxyzwxyxyyyxxyywxyxzzxxyyz{yyyyyxyyzyyyz{zxyyz{yyy{zyzzyzzzyzzy{zz{zzy{{yz{y{|zz{zzz{{y{|{zz}{y||y{{z{{||{{z|{{{{||{||{|{{{{}||{{}}{||{}}|{|}{{}{|}||}}{{}~||||~||}}}|~}|||~~~{|~}}~}}}}~}}~}}~}}}~~}}~}}~}~}~}~}~~}~~~}~}~~~~~~~}~~~~~~~+ ,   ~  4 3 g h [ \      8 : \ \ y z i i [ \ T S V U ^ ] f g q p x y y y r q | ~ o l  l k n n ~ } o q | { r s w w u v v v x v r t z x s s v x t s w w t t w w t t w w t u v v v u u u v v s u v u u s u v t t u v u t u v v r s u t t t u u t u t s u t t u u t s t u s t u s t u t s u t t t s t t u s s s s t t t t r t u r r s s s t t t s r t r s s t t s r q t s s t r r s s s r s s s t q q t s r r s s r r r s r r q q t s q r r r r q r r r s s p q r r s r p q q r r r r p r s r q o q s p p q q q r r q o q r r p q r o p s o p q p p q q o r q p p p r p p p q q o p q q q o o p p p r p n p q q o o o o o p q p n p p p q n o q p o o n n o p p p o o p o n p p m n p o o o o o o n n o o p n n o n o o m m p o m n o o n m m n o n n n n o n m m n o n m n o n m m m o n l n m m n m n m m n n l l n m n m l m l m o l l n m ! ihEC7855RP!32Z[}~pommtq|{   v w G H Q Q h g 6 6 | z * ) & ( ~ | / / t u 9 : i g F G \ [ Q S Q P Z Z K K ^ ` I G _ ` I G ^ ^ K I Z ] M L W Y R O R V S Q R S V U P P V W O O U V Q P U V Q P U U P Q S S R Q S R S S P R T R Q R S S R Q R T R Q R Q O Q S S Q Q S R Q Q R Q P Q Q Q R R Q P Q Q P Q Q R Q R P P R R R P P P Q Q P Q Q P Q R O Q P O Q Q Q P Q Q P P P Q P P P O P Q P P Q Q N O R P O P P N P Q P O P P N P Q O O P N N P Q O O O O O P P O O P P N O P M N Q P N N O O O P N N O P O M O O M O P N M O P P N M N P M L O P M N N N O N L L N O N N O N M N M N M M N M O N M L L N M N N M M L O N M M M M M L M M M N L M L L N M K M N M M L K M N M L K L L M L M N K K N M L M K K L K L L M L L L L L J K L L L L L K L L J K L K K L L L K K K L L J J K L K K L K J L L J J K L I K K J K J I K K J K K J J K J K K I J L K J J I J J J J K J I J K I H I K K J I I I I K I I K I I J I H J J I I I I J J J I I H H ONJJjl ferr))u u   Y V   g h k l   6 5 A B   _ ` m l k l ` `  O N   > > ) + / . 7 8 % $ ? ?   @ B   ? @ ! ! = < $ & 8 5 ) + 2 2 / / . , 1 2 - * 2 4 + + 4 4 * * 4 3 + + 2 1 , - / 1 - - 0 / . - . - 0 1 - + . 0 - , / 0 . , / 0 + , / . - . / - - - - / . . + , / . - - . . , , . . , - - - - - - . - + - - - - . - + - / , + . . - , , , - . , + , , - - + , . . + + , + , - , , . + + - , , , , , + , + + + , - + * , , + + + - * + + + - + + + * * , + * + + * + + * + - , * + + ) * * + + + + * * + + + + ) * , * * * + * * + * + + * * ) ( * + ) ) + * * * ( * * ( * * ) + + ) ) ) ) ( ) * ) * * ) ) ( ) ) * ) ( + * ' ( * * ) ( ( ) ( ( ) ) ) ' ' * * ) ' ' ) ) ( ) ' ( ( ( ) ( ' ) * ( ' ( ' ( ( ( ( ' ( ( ' ( ( ( ' ' ' ( ' ( ( & ( ) ( & & ' ' ( ' & ( ' ' ( ' ' ' ( & & ' ' ' & & & ' ' ' ' ' ( & % ' ' & & ' ( ' % ' ' % ' ( % % ' & % ' ' % & & ' & & ' % % % % ' & & ' $ % & & % % & % $ & ' & IJ,.53()  6 7   3 4 ^ _ r p Z Z t s r s w v J K  ! & ' 5 4 : 8 2 3 ' (                                                                                                                                                                                                                                                                                                               AB=<[\22RQzzAA^]c`PR:9                                             J J m k 0 .   # % $ $   xzqr10>@{{~^_?="#21 >?EDBE <<33))$#"#**-.../.,+ ))$%&$$%%%'&#$'(#")(##)*#"&'%%&'&'&&&&%%'%&'''$%((&'&%'&')&'(&%'('&''%&)'&'((&')''''(&')'''''')(&((()'&')())'&'())(&(((*)(('(*)()((()*)')*'(*(((()**'))())*)(*)))()+))+)(+*)+**)(+*)+**)*+**)+**))+,*)*+*)++++*),,**,+)*,,)*,**+,+,*+,++++,,+*,++,,++,+-,,,++*,,,-,,,,,+,,,,,,,+,.-+,-,+-,,.--.+,.----,-.,,--,-,-.--..,-../--.-,-.-.../.----.//-..--/.-//./...--/..00--0.-//0///-//.1/./0//0///.////1000/..000//0/00/010/0/0011/011//1/0101000011/120021/12//22100102212101112101211322122002222131132222123113422222132242242143223333252243333441351233444423433333444434424534435444355434435555345455543564553665544663566555555654556655556645655766864576755776566566687567656776777758856966768756878878668877779876698877889768976987889779:8799988889989879:989889999;978:9:89:98::8999:9;99:99;;98:;9:;88;;9 v w   p q   { y   kk00OPIH:<\Y-.cd()dd+,`^23XW9;QPBAHHJJCDMMA?OP?@OOAAMMCDMLDFIJHFIIIHFFJJGEJKGGJJFGLIFIKIGHIHJJIGHKIHHHJJIJJHHJJHJJHIJKIIIJKIIJIKKHIJKJIJLJHJLKIIJJKKIJKIJLKIIKJJLJILLJIJKLKKLJKKJKMLKKIJLLJKMKJLLJJMKKLKKLMLJLMKKMLKKLMLLLKLLLLLMMLNMKKLMMNKKMNMMLLNMKNNLMOMLLMNMMMMNKNONNMNLMNLMOMMNOOMLMOOMMONLOOMNNLNPOMLOONNMNNNPNNONOOOOOONNPONOPOOOPOMNOOQOMQONQONQQONOOOQPPONPPQPOQPOPPQPOPQQNOPPQPOOQRQQQPPQPQQPQRQQQPQRPQQRSPQRQPRRQPQRQQSRQQPQSRPPSSQQQSRQRQRRRRRRRRQRRSSSRQSSRQSTSQSSSRQTSSSRTSSSQRUSSSTTSSRSSRTSSTTRTURSUSRSUTSTSSTSUTSUSSTTUTTUTTUTTUTSUTUTTUUUUTSUUTVTUVTTUUVUTUVTUUUVTUVTVWTUVUVUUVVTUVWWUUUVVVWWUVVVWUTWXWUUWXVUUXVUWWVWWVWVWWWXWVUXYVWWUWXWXYWWXWVWXXXWVXYXWWWYXVWXYZWWXWXXXYYWWXWXYYXWYYXYXYXWZYWYXXYXZZXXYZYYZXY[ZXYZYZYYZZYYYYZZXYYZ[YXYZY[ZZYYZZ[ZZZZZY[ZZZZZZ[ZZ[Z[ZZ\[Z[[ZZ[Z\[Z[[\[[\Z[\[\[YZ]]ZZ[\\[[[\[\\[\\[\[Z\]]\\\[[\]\][[]\[]]\][\]]\\\[\\^^\\]\\\]\]]]^\\\]^\]^]]^^\\]^^^]\]__]]^^^^/ . 1 0   " ! D E c c   R R   3 2   0 2 D E c a \[`azzbc]\,*lkPP,, #$34IG^]ooooba{}XWVVWW}}^^wxecpriillpoghsreetregstgfrqhjooljnnlnmknnmlnnlloojlppklnonlnomloonlloomnmnmlmpolnpnmmonnomopnmnnoooooonmnpomnomppnoomoooonoppnopooooponpponopqpoppnprpoopqpppoppqqpopqpoqqoqpprqoqqpqprqpqoqsqqqpqrqqqqppqrsrppsrprsppqrrprrrrrqqrrsqprrrsrrrrqrtsqprsssrrrrssrsrqtsrsttrrrssssssstrqsuusrtssurrtttttsrutstsutstttstutrtutstuutstuuuustuuuttuttuuuutuwvttuuuutuvvttvvvtvvtvuuvuwtuwvuuuwwvvvuuxvvwuuvvuwvvwwuvwwvvwwvwwuwxwwvwvvxwwvwwuwywvxwvyyvwwwxxxxvvyxwxxxwwxywwxxwwxxxxyzxxwwyzywwzywxyyyxxyyxyxxyyxyyyzyyzxy{wy{xyyyzyzyx{zxyzzzzzyyyzz{z{yzzz{zzzy{zxzz{{z{yy{{z{zy||yy||{zy|{z{||zy|{z{||{{z{|{||{{|z||{z{}|z{}|}|{||||{{|||}|{||~|||}~|{}}|||}}||}|||}}}~}|}~~}}|~}}}}~~}}~}}|~}~}|~~}}}}~~}}~~}}}~~}~~~~}~~~}~~~~~~~~ 7 8 m n e e   # % v z c b 4 5 " ! $ $ 4 5 O P k i  r r f g b b d d j j q q x x } ~  ~ w x u u s u v u w v x y } ~ { { { { } } { y |  { y } } y x | } y z } } z z { { { { | | { z { | z z | z { | z y z | { z z y { z z z z z z z z z z { | { z y z z z z y { y x { { { y x z { y x z z z y x z { z x y { y x { y w y { y x x x { z x x y z x y x x z y y z x x y x x y z z x w w y y y y x w x x x y y w w w x y x w y w x y w w w x x x y x w w w x w w w w x x w v x y w v v x w v y v u x x v w w v x x v v w w u w v w w u v v w x v v w u u v w x v u u v v v u t v v v w v u u u v v v v u u v w t t w v u v v u u v t u t t u u v w t s u u u u u v u s u u t u u t t t t u v u t s u u s t t t t u t s t u u s s u u s u t r s t t t t s t s s u t r s u t s t s s s t t s s s s r s t s s r r s t s s r r t t r q s s r r s s r s s VU@AA@KL 87^\xxmmjkppy{ i j \ Z N M q s = : | ~ 4 5 7 6 z y > @ p p I G f f T S [ \ [ [ U V ` ` P P c e P N d e Q N b c Q R _ _ V T [ ] W X Z X Z \ V W [ [ W V \ \ V U [ \ V V \ Z W X Y Z X W Z Y W W Y X W Z Y X X X X W X Z W W X X X V Y Y V V Y X V X X V X Y W V X W X W W W X W V W W X W V V X X V V W W X X V U X W W V V X W W V W W V V U W W V V V U V W W W U V U U X W V U U W U U V V W U V W U U V V V V V T U W T U U V W T U W U T U V V T U T T U U U V U U V T U U T T T T U T T U U T U V R S V U T T T T T U S S T U U T T T U U T S S S T S R U T R S U T R T S S T T S T S S T T S R R T S R R T S R T S S T T R S S R T R R S R S S R S S R Q S S Q Q S S R R R Q R S R Q Q S S S R Q R Q R S Q Q S R P R R R Q Q S R Q R Q Q Q Q R Q P R R P P R Q Q R P Q R R P O Q Q Q Q P P Q R P P P Q R Q P Q O P P P P P Q O P P O P Q P O Q P Q Q O O P P O Q P O P P O P Q N N P O P P P O N P P N P P O O N M P O O O N P O N P O N N O P N pqqtHI67prz|zyDD  u v n m   . . i j | |   / / [ \ v x   ] \   B D 3 1 . 0 D C " " N L   O O   K L ! G E & ) ? > / . 6 7 6 5 3 3 9 9 . . ; < - - = ; - / < : / / 7 9 1 1 8 6 2 3 5 4 3 4 3 3 7 4 1 3 5 4 1 2 7 5 1 3 5 5 2 3 4 3 3 3 4 3 2 3 3 2 3 5 2 2 4 3 3 3 4 4 1 1 3 4 2 3 4 4 3 1 2 4 3 2 3 1 2 3 3 4 2 2 2 3 1 1 3 3 1 1 2 2 2 3 3 2 2 1 2 3 2 2 1 1 3 1 1 3 1 1 2 1 1 2 1 1 1 2 2 1 2 2 2 3 1 0 0 2 2 1 1 0 0 2 2 / 1 2 0 0 2 1 0 1 2 0 / 1 1 1 1 1 0 / 0 0 1 2 0 / / 0 0 1 0 0 0 2 2 / 0 1 0 0 0 0 0 . / 1 / / 1 1 / 0 1 / / / / / 0 0 0 / . / 0 0 0 / . / 0 0 . . 0 0 - / 0 / / / / / . / . / 0 - . / . . . 0 / - . . / / / . . / - - / . / . - / . . / . - . / / - . . - / - - . - . . , - . . - - . , . . , - . - , - / . , , - - , - - - , + - . - - - - , , - - , + - , , . - , , + - , + - . , + , , * , . . + , , + + - - , + * , , + - , * + , , * + - , , * + , ) + , ) * + , , , >>CAUU^_MMZW]^=>77b b F F * +   "   . - 3 2 0 / ) (   !                                                                                                                                                                                                                                                                                                                                                   ACWWvt+,RQts}|tu^_?>                              J J u v - - . + 9 8 5 6 % &         lm:9vtYZ78WYddbbSR>= ++)(/0 24 02-+&' !""%$%$%%#""! ! !"""""" ! ! !! ! ! "!! !!! ! !"" !!!! #" !#! "#! !!""!#" ""!!"!#$ """"""!!!"#""#"$"!"$"""##"#"!##"####"$""$"##"$##$#$"#$##$$#$"#$$%""$$$$$$$#$$$##$&#$%$$#$%%#$%$%$$%$$%%$$&$#&&##%&$$&%$%&&&%%%$&%%'&%%%$&&%'&$&&%%&''&&&%&'&%&'&%$&'&'(&'%%('&(%&('&%'&''('&''&((&&('((&&&)(&(''(('('&)''('()(('(''))('((')((((()((('*((*(')(()(())())(*)()*)(**)(((*)()*+)))*)(******()*)+*))**+**)**),+*))+*++*+)**+,+***++++*++*+++,***+-**,-+*+++++++-+*,,,+-,,-*+,,+--,++-,+,,-,,,+-.,*,.,--,-,+-.-,--,--,-,---..--,,..,-.-..--.-,..-..,..-/.,.//-./-./.-,///.-/..0-./...///0/.-0/.0..//0////..//010/.//0///010//00/01////100//11//120/0010010000010/120/013100021111111112112011131| | $$b b ab   L J   s u ; ; W V G I X V ; ; m n   24BAMM*+]\ cedb"$[Z.-QR66FGA??@GF9:LJ89LK67LK99HH>>FF>?CCCA@CEC@@DEA@DE@@FE?@EEAACCCCCBCDBCEBBCEDBBDDBBDDDCCDBCEDCCCEDBEECEEBCFDBEDDDEEDEDCEECDEEDEEDDDDDFEDEEFDEEEEEECDFEFFEFEEFEDEEDFFGEEFEEFGFEEGFFGFEEFFEEFFFGGFFFFGFGFFFGGHGGGGHFFGFEHGGHGFGHGFGGFGGGGIHGHGFGHGIHFIIGHGFIHHGHHFGIIGHIHHHHIIGHJGHHGIIHHHHIHIIIIIIIGHJIHHHJIHJJGHKJIJHIIHJJIHJJKJIIJIHJKJIIJJIKKJHKKJJKIHLLJIJKJKKJKKJJIJKKJJKLKKKKKLLJKKJKLKLKJMLKJJLLLKLKJKKMMKKKMLKLMLLLKMKKNLKLMMMKKNLLMLMLLNLMMMKKMMMMLNMNOMLMNMMMLMMLMNMLNNMMNMMNMMNMMMOOLMONMNMOOMNMNONONNNMNPONNOPONMNNPOMOPNMOPPNNOOOOPOPOMOQPNOPOPPNOQPNPOOOOPPPOPPPQNNRQOPQPPOPQPQOOQQPQQQPPPQRPPQQPRQPQQPPRSQQPPRQQQQRQQQRQQRQRPRRQSRPRRPRTQQSRPQSSRSQRRQTSQQSSRSSRRRRTSSSQRSTTQRSRSTRRTSSSSTSRSTTTSSTTRRUTRSTTTTRSUTTTSTTTSTSTUTTUUSRVUTTTVSTUSUUTUUTUUSUVTUVUUTTTVUUVSggj i O N     R R y | s s z y UV{z87@?or{z('#%lk@A))?A~ZXijklWXywQP}~MN}QQyyUWts]^lkccfgihdbkna_mna_lm`bljdckkechhgffghiggjieeijfgjhfghhhfiihgfihfhihhiiigfiihhgijhhgijghiiiihijiighihjkihkiiiihiijkgijhkkjhhjjiijkkjhjkiijkjiijjijkkjkkiikljjiijkkjlljkkjjkkjjkklljjkmjjllkjlmjjklllkkllkjlllllkjmkkmlmmlljjnlkmlkmmlnmllllmnmlmllmmmmllmnmmllmmnmlnnmmlmmnmmmmnnmmnmnnmmmlnnomlonmmopnnmmnonnooonnnnnnoonnnoopomnpnoonppnnppnponpnpppoopppooooppooopoopppoqpopppqpoopqqpoqropqqppqooqrqppqpprpppqqrqqqrpqrpppsrqqqqqrqrsqqqrqrrprssrqqssrqqqrsrrqqtrrrqrssqtsqsrssstrrsrrrssssssstsrssrstsststtrssstttssttrtusstttuttutsstustssvutttuvtsuusvvuttvtttvvtsvuutuuuvtuuvutvvuwuvuuvvvuuuvuvvuvvwvuvwvuvvvwvtwvvwuuwxwwxwuvwvwxvvwwxxwvwwwxvwxwxwvvyxwxvxxvxwwyxvwxyxvvxxwwxyyxwvxyxwxxzywwyyxxyywxxyzyywwzywyyx{yw! !     % % H H l n v u g g c b f e k l x w | | { z ~ | ~ }         ~    ~     ~ ~       } ~   ~  ~ ~  ~ ~ ~     ~   } }   ~ ~   } }   ~ } ~ ~ } ~  } ~  } ~ ~ ~ } } ~ ~  | ~ ~ ~ } }  | | } ~ ~ } } | } ~ ~ | |  | } } |  ~ { } } } } | } ~ } | { } } } } { } ~ | { } ~ { { } | { } } } } | | | z | ~ { | | | { { { | { | | | } z z } | | { z | { z | | { { { | { z | z { { z { | { { z { | z z z | | z y z z { z y { { { { y z { z z { y y { { { x y { | z x z { y z y z { x z { y y z { y y z x y y z z y y x { y y z x x z y x y z y x y y x x z z w y y w y z x x y x y x y x x y x w x y x y v w x x nn!"<;WXQSQS--#$/.FGed~wwoomlqqxz   hg" $  I H Q Q       # # C C r r ` ` X X v u F G B B B A } ~ H I v v Q S m k Z [ c e d a \ ] g g X Y k j X X j i W Y j g Y [ f f \ [ d d _ ^ ` a b ` _ ` c b ] ] b c ] ] c c ^ _ a b ^ ^ b a _ _ _ _ ` ` _ a ` _ ` _ ` a ] ^ ` _ ^ _ a ` ^ _ ` _ _ _ _ _ ^ ^ ` _ _ _ ^ ` ^ ^ ^ ` ` ] ] _ _ ^ ] _ ` ] ^ _ ] _ ` ^ ^ _ ^ ] ] ^ _ _ _ ^ \ ^ ` ] ] _ ] ] _ ^ \ ^ ^ ] _ ^ ] ] ] ] ^ ^ ^ ^ ] ] ] ] ^ ] \ _ ^ \ ] \ ] ^ ] ] ^ \ ] \ [ ^ ] ] ^ \ [ ] ] ] ^ \ [ ] ^ ] [ \ ] [ \ ] ] \ [ ^ ] \ \ ] ] \ \ [ Z \ \ \ ] \ [ \ \ [ ] \ [ \ \ [ \ \ [ [ \ \ Z [ [ [ ] \ [ Z Z [ [ [ Z \ [ [ [ Z [ [ \ [ Z Z Z \ [ [ [ [ \ [ Y Y [ Z Y Z [ Z \ [ Y Y Z Z \ Z Y [ [ Y Z Z Z [ Y Y Z Z Z Z Z X Z [ Y Y Y Y [ Z Y Z Y Y Z Y X [ Y X Z X Y Y Y Z Z X X Y Y Y Y Z X W Z Y X Y X Y Y Y Y Y X Y Y X V X X Y Z W W Y Y W W Y Z X W Y W X Z W X Z W V W X X X X X Y W W Y V V Y Y W V W W V X W X W W W V Y X V V V W X V V X V W X W V V W X W V U U V W X W V V V W X V T W V V V V W U U X U U W U W V U W U U V V W W T T V W W U V T T V U V U V V U U T T U V V T T U V V U T U V T U V S S U V U U U S T U T T U T T U ffYY, . YY      Y Y A A ' & h i      y x h g  ! S S 2 2 B A A B 4 5 L M . - Q Q * * P P . - K L 1 1 H H 7 7 C B : : = = @ @ : 9 A B 9 8 B C 7 7 C A 8 9 @ @ : : @ @ < : > = < > ; < > = ; ; ? > : < @ = ; ; < = < < = > ; : = > ; ; = = ; ; < = < < : ; = = < ; < < ; < < ; ; ; = < : < ; ; ; ; ; : ; ; < ; ; = : : < < ; 9 < ; : < < ; ; : 9 ; < 9 : < : ; : 8 < < : : : : < ; 8 : < 9 : ; 9 : : 9 9 : : ; : : ; 9 9 : 9 9 : : 9 9 : ; 9 8 : 9 9 ; : 9 9 9 8 8 ; : 9 8 8 ; 9 9 9 8 9 9 9 9 : : 7 8 9 8 9 9 9 8 8 9 9 7 8 9 8 9 8 8 9 9 8 8 9 8 8 7 7 8 9 8 8 8 8 9 7 7 8 8 8 9 7 7 9 7 6 9 7 7 8 7 7 6 9 8 6 8 9 7 6 7 7 6 9 8 7 6 5 7 7 7 7 7 8 6 5 6 6 7 8 7 6 7 6 6 7 7 6 6 6 7 6 6 8 5 5 7 7 6 6 7 6 6 5 5 6 6 6 7 7 6 5 6 5 6 7 4 5 6 7 6 5 6 4 5 5 5 5 5 6 6 6 4 4 7 5 5 5 4 4 6 6 4 5 6 6 4 4 6 6 5 5 4 4 6 4 3 5 5 6 4 4 5 4 4 4 5 4 4 4 5 4 4 5 3 3 4 4 4 3 5 5 4 4 4 3 4 5 3 2 3 5 4 3 3 4 3 3 5 3 2 4 3 2 3 4 5 3 3 4 3 2 2 4 3 3 3 2 4 4 1 4 4 1 4 4 3 3 1 2 3 3 3 2 3 3 1 1 4 1 2 3 3 3 1 2 2 2 4 1 2 2 2 2 1 1 3 2 2 2 2 2 3 2 2 2 2 0 0 2 2 2 2 2 1 1 1 3 1 0 2 1 2 2 0 2 0 0 2 0 1 1 1 2 1 0 1 0 1 1 1 1 1 1 0 0 0 2 1 kj$# tu==LMmk S T c d _ a Q S ? =   * )     # & , ,   0 /   . . ) (   $ #                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            /0HHvv#" OPqpstqr\\9:         CC 4 2   < < G G C B 1 1             ggkj98 //CEIJEF;:-,   %% '& $%#"     ! !  !! ! " !!!! ! ! ""  !"!  !" ! !"! "" !"!!! "#! !!"#"!!!"" """"!"!"#!"""#"! !##"!#$#!!###!!$""#"###$"!$#""$$###!##"##$#"##$$"$$$##$$$##"&%$"#$$#$$$%#$$$#$%$%$$$$%##&%$$%$$%%$$%%&%#%%%%$$&&#$&%&&$&'$%%%%%&&%&&$''%&&$%''&%%&&''%&&&&&&%''&%&('&&''(%%'(&'&%&''((%'('('&((&&'''(('''''&((&((')''((('''()(()('(('*)&)*)(())('(((()*()))(()((()))**)((*)()**))))*)(++)*((+))+((++*)*+)))++**))**++*+*)+,**)*++*+**+++*+,+*+,+*,,*),,*,,+,,+*+,++,++,,+++,-,13# "   c e ss    * ) uv3 2 ww) )   usTR3586IJ%&XW\^Z[!TT(+LJ32@A<=9:BA46FD24GE45FE55CB8:A@;:>?><:=@?;9@A;:A@:;?@=;>?>==?>=<>>=>>??==@><>?>=>A?=>>??>?@?>?>>>@??>?@?>?@@??>@@?@??>@@>?A??A??@@??A@@@>@A?@A?@@?@@?A?@B@?@@@AB@@A??@BBA@?@B@@AABB@@ABBAA@@AABBAB@@BBBAACAAABBACA@BCABABBABACBBCBABCACCABCCBBDCBAADCACCBCBDDABDBCCBDDDCBCBCECDCADDDEBCCDDBCDDDCEDDDCDDDCDFEDCDDEDDDCEFCDFEEDEDCEFDDEEEDEEDEFDEFEFEEEEFFEEEDFGEDEFEEGFFFDFEGGFFEEEFFGFEEGGFGEEGGEEGGFGGGGEEHHGGGEGHFFHGEGHGGHHFGGFFHIHGFGHGGGHHGGHIGHHGGIHGHHHHHIHHHIIHHHIHHHHGIIHJHHJIIJGIJHHIHIJHIHIJIHIKIHIKJIIJJHJJIJIIIJJJJIJKHIKJIIIJKJIJJKKJKKIJJJLLJJJJJKKJKJJKKKKJLLKIIKLLJLLKJLMJJLKKMJJLLLMLKJLKKLMLLLKLLLLMLLLLMKLNMKLMMLLNMKMNLLLLMNLKMMMLLMNNMLMMMOMMNMMNMLMMMMOOMLLMOOMNNMOOMNNMMNOOMNOOOMNONNONMOONNMONOPMOOOPNOONONOPPPNMPOOPOOOPNNPQNOPOP//zzDDGGywpp.-45||SSaahiONxxCE}CB}GEvwOMooVWfg^]__ee\\hhYXjkXWjj[[hf]]de__dcbb_bdb``cea`cc``cd``deaabbcbdbaccacbbbccaddccbccbbbddbbddbddbcdcdcbddcdcdddccdedbcdecddceedccdeedccddddedcfeccdeeeedddddefeddeefedddeefedfeeffedfdffeeffdegffgddfffgfdfhfeggdeffhhfeefgffghgeffghhffhgfgffggfggfghgfhhehiggghhghgfhihhfgihgghghhhihfgihhhihhiggihiiighjgiighhijiiiihgjjhjhhijihjjhijiijjjjhhjijjhjjjijkjiijjjjjjjjjjijkjkijljijlkikjiklkjilljjkjllkjkkkklllkkkkkkkjlmkjllkkkmkklkkllmmkkklmlkmllnllmkkmlmllllmnmkkmnmmllmmmlmmmmmmllnmmmmnnmmlnommmmnnnnnmmmnnnonlmnnnoonmmnonnonoonnnoommnppmnpnnooooponoopoopooonooqqnoonopoopqooopoooopppprpopqppqpnpporpproorqopqpoqqqqpqrqqoprppqprsqoqqorrprqprsqqqprrrqpsrpsrrspqsrsrqrsqqtsprtrrssrqrsrrsssrrsrrtussrrsssrstsssrtsstrtstsrtttstusssutstturstuustussttvursuttvvstuutttuttuttutuvuttuttuvutwttvuuuvutvuuvv?@baKKGFOP_`rr~}wxvwzy~~~~~~~~~~~~~~~~}}}~~}}~~~}}}~~}}~||uv__^^WX==68?BSShj}}vunpnnrsww~~A@ *) RRV W OO[\'( 34NMrscc^^ssRR}|LM~LL{{RRusXYmm_`hhedacki]^kk_^kj]^kk^_ii``ffbcedcedbdeccdea`gebbdfcadebcecaddbcdbbccccbdcbbdcaceaadcabdaacbbcccabbabbc`bc`acbbbabcba`bbaaaaccaa`acaacaaa`abb``bb`a`abaa```aba`_aaaa__aba_a`_aa``_``_``_a`___a`__```````_^___a`_a___^``^____``^__]__`_^`^_`^^]__^^]]^^_^__^^]]^^^__\]__^^^\]^^]^_\\_]]_]]]]]]^^]\^^]\]]\]]]\]]]]\\^^[[]^\[]]]\\[\]\]]\\[][\][Z\\\][Z\^\Z\][[[[\\[Z\\\[Z\[\[Z\[\Z[[[\Z[[Y[\Z[\Z[\YY[[\[YXZZ\[ZZZYY\ZYZY[[Z{ }  e f >?! sr77-.qq|{bb,.JLCB97QS-,X[*(YY*+VV//PO65II<=BBCB=?FE::GH88HG;:EF==CC>>BA?@A@?B?>B@>@A@>>BB>=BB>?A??>@??@A?@?>@@?>@?>>?@??>??=>@@=?@>>>?>>@?==@>=>>=>??=>@>==>>>>>>=>=>>>?=<>>>=<>>===>><>>===><<>>>=;<==>==<<==;<==<==<>;<<<<=><;=<;<<<=;;=<<=<<<;:;<<<;<;;<=<::<=::;<<9;;<;:;<<;;:;:9;<;::;9:;<:::::<;::9;;99::;:::9:;;99;;:8::9:99:;89:9:88;99:99:88::98999;88989:989988999778888:98887988967997789977898779877777789876687876977966766875778765677667777667678645kjppIK'% --\]GF10''11  65 52  /.'(!" "#"%##$!" @@kjEG1/DDAA32EE0/EDtufe*++*4412$$    tt[X:9''/211-.#$              !!! !! ! ! !!  ! !! "!!! !!" !! !!"! "!"! !#" !!!!!"#"!!"! ""#!"#!!"""!""!#"##"#!!!$$!"#""""##!##"$$"""##"#$""#$$"""$$#""%##$#$##$##%##%##$"%$#&$#$$$#%$#%%%$%$"$&&$##&%$%%#%&%$#%%$&%$$%%%&%$&&%$$&&$%'&%&&%$$&&'&$%&&&&'&%%&&'&%&'%&(&&%&'&&'&%''&&&('&('&&''&%(('&''%''')(&&'()(&(&'((('&))'&('()''))''()(()('()('*)'0 /     rpno/-vw99yw./_^vv KJ33**MN^^ `a \[RQ!"FF-.;98812>?--DB+*CE+,AA./?>21;;659789669965:<45<946:;65:;67:988889979:976:;77:889989988999999889998;:89:9:999:::;8:;9:99:9:;:::8::::::;:9:;;9;<9:<:9;;;;;::;:;:;<99;<;:;:<;;<9;<;<;;;:<<;;=;;<<;:<=<;:<=:;<==;=<<=;;<==<=<:<=<<><=><<==<==<==<====<>=>=<>>=<>>=>=<=>>>==>==>?>=<=>??>>>>><=>>?>>?=>>>?>??==>@?>????>>?@>>>@A>>???A@>>???@A>>@@>??@A@>@@?A@?@@??@@A@??@A@@@??AA??@BB@@@@@A@@A?@ABAAA@@AAB@@ABB@?ABA@AB@AABC@@BCA@ACBAABBBCABBACABDABBBBACBADCBCBBACCCCBACCCDACCCDCCCBBCDDABDCCCCCBCDDCCCCCDDCCCCDECBCDDDDDCDDDCEDCEDCEEDDEECDEDDECEEDEEDEEDFEDDDFFDEEEFEEEDDFFFFEDEGFDDFGGEEFEEGFEEFGEFGEFFFFEHGEFFFFGGFFHGFFFHGGHEFGFFGGGGHGGGHGGIFFFGGHHHGHHGGHFHIHHGHHHIGHGHJGGHHHGGJIHHHHGHHJIHHGIIIIHIIGHHIJIIIJHHIJIHIJIJIHIJIJHHJJIIIKIJKJIIJKJJHIKIJJIKKJJIJJJKJJIKKJJIIKLJKLIJKJLKJJLKJKJKLJKLJJMKKLJLKLKJKMLKLKLKKLMKKMLKKLMLKLMKLLK  TTno>>@@oqmm%$//vvLL[\deJHrt?>xy<;xxABrpIHhkQQaaXW[Z`_UUcdSSceRRddUTaaXY__YX^_[[[[^_ZZ^^ZY^_ZZ_`Z[_][\__[Z]]^^\\^][]^^]\^^]\]\\]^]]_\\^_\]^]\^`]]^\^^]^^^_^]^__]_^]^_]]`^^^_^^___]]____^_`^________^___`_``^``^``_`^^_a`_a`_^``___b_^aa_^_aaa__``aa_`b``````baa_ab`_a`ab```bb``abaacaab_`baaca`bbaaabbbba`bccbaaabccaaccbaabccbbbbccbbbbcccbccbccbbccbbcedbcbddbcdbbdddcbcdccddccedbdebdecdeddbbeeecdeddeddddeddcceeffcdfddeddefeeedeedeedeffffddeefgdegddfgeefeefgffffgfdfffedghfefhffhgefgeggefhgffghhgfffggghgfehhghgghggghhfhhgghhfhgghhigfhhgiihhghhfhihhhhhijggihiighjhiigiihjihhijjgiiijihhjjiijjhhijjjjijiikhjkiijjjjjjijijkjiijjklikkhkkikkjlkkkijkjlliiklkllijklkkkklkkjkkkkklkkkkkmmkklklmlkllkmllmllkklllmlkllmmllnlkmmmmmnkkmnmklnolkmmlmmmmnmmnmlmonnmlmoomlmonmmmoonnnnlnpmnnnonmmonnpnnnnpnmopommoopnnnppnonoponpooomppppnnooppppppooppopppopo??)+-/DD_^{{vvrsuv{z#$ "#NNtsww`^TTSU]\hgss}zztvssstvuzx{}}~|}||{|~}}~~~~~ll:;'&TR`_WW^\*+ !98TSvwjjdc{{UVPRQRXWzz]_stfdllklfgonceqqdbqqcbnqedmmhgklgijiijihjjhilkgeilghlihijihhihhhhjkiggijhhhhhgiiighiihgiihhhgggihgihghgggigghfghghigfhihgffghhhhggfgghfggfgfhgghgfeggeggegffffhheffdffgffgeffgfffdeffgfeeefeefgfdeegeefedeeefcdffeddfdeedeffceededdddedfecdecceecddceddebddbeddeccedcdcceccdcbddbddccbbbcdccbbbcccbccccbbcdaacbbdcabbcdabcaaabccbabbabbdb`aabbcbabbbbaaaba`abbaa`bb``bb_`cb``aa`aa``ba_``ab`_a```aa````_a`^```b`_a__a_^a``__\[CD<=KJcc~]]JH46ji{z}}vu !gh//XW?>JJIJ@@QR:;VT8:UU:8RS><NPBAJIEFFEGHDCJKCBKKBBJJCBGIECHHEEEFGDDFFFFEFHDBGHDDGGDCFGEDEFFEEFCDFFEECDFECEFEECCEFDCFEDECCEECEFDCCEDCDDEDDECCDDDDCCDEDDCBDEBCCBDCDDCCCDCBBECCDBBCCDCCCBDCACDBBCBDDBBBCBBBBBCCABBBCBBBCBBB@ACBA@BBBA@CBABBB@ACBABA@@@@BAA@BB@@AB@AA?@A@@A@@AAAAA?@A?@@AA@?@B@??AA@@?@A?@@?@@@?@??@@@>@@??>???@>?@>???@>??>?>@?=?@>=>>>@>=??>???==???==>>=?><@?===>>>==>=>>=>><=??===>=<>>=><<==??<==;<>=<=>><;==<=<<>=;=<<<==;<=;<=<;;=<;==<<;pnAB!"yy~~uuZZ=>!$%45A? ED  BA;<53,,&&%$,,! /////.!",,""()%&''&&&%)'$%()##*)#$'(%$('%%&%%%'&%&'&$&&%%$&&%&&%%%%%%&%$%&$$&%$$$%&$"%&%#$&$##$%$%%#%%#%%#$&$"$%#$$%$"#%%$"$##$$$"$%"#$#$"#$#"#####$""####""#$$"""##"#"##"$"#$!!#""#!!##"!#"!#""!!!!"## ""!#!!!""!!!"#" "! #"   ""! ! !!!!    """"  ! !  !!   !    !  !!    !     !   MKef$&((&( {|stQQ*(""**)("!        !"%%&%                   88''~st76C@97"!}ZZba}{DB66ZXljmlcdUTCB('3347('>?"!CB!BB"!@@&'::,+66011155./66..65./76..56//651022342244123322541334323322453344424343245422552463235643443544554434555444444564465435654457556356357545547546575466566576676448657665666566577668757656687676787676567788578687786886787788778977878779877888999679:9779778999899978:999987::988;889::8999:7::8::9:8899;:9::9:::98:;:::8:::;:;::;:;;:9;<:9;<;:9;;9:;;;9;;;;:<;;;:<<::<<:;<:;;;<<:<=;;;;;;=<;;;;===<;<;;==;;<=<<<;<><<==<;=<=<====<<>><=<<>==>>><<>===>===<>>>?=<>><<>?>>==?>=?==?==??>?>>?>>?>==@@>>>>=??@@==@????>=?@?>@?>>@@@???@@>>@@>??@@?A@>>@@?AA?@@??A@>@BA??@AAAA?>@AAB@@AAA?@A@A@AB@A@AA@BB@BA@BA@BBAA@AABBAAABAAACCBAAABBABBCBABACBCDABCBBCCBABCBDBBDDBABDCBCCCBCpojkWX54//bcPQ//uwA@MK~~"#`afd(+ 57hhMKTS^]FFhh>?mm>>kjACegHF`aNMZZTUUUZZPP[[PP]\OO\\OQ\[QQYYUUWWWWVTWWTVXXVTWZVUXWTVZYTVXWWWWWVWXWXWWWWXXVVWXXYWUXYXXWWWWYYWXYWWXWXXZZWWXYYWYYXYYYWXZXYZXXYYXXXZYXYYYXZYZYYYXZZYYXXY[ZXYYYZ[[ZXX[ZY[ZYZ[YXZZZZY[[YZ[[[ZZZY[[ZZ[[YZ\ZZ[[[ZZ[[[[\[Z[\[[\Z[\[\Z[\[[Z[][[\\[\\\[Z\]\Z[\\]\[][\\Z]^\[\\[\^\[^]\\\[]^]][]^]\]]\]\\]]]]]^_][^^[_][_^^]]^]^^^^]^]^^\_^^_]]_^^_]]^__^^^]_^___^^]^^_`_]_`^]____^``]^a`__^_`_`_____`__a`^^`aa_^_a`_a`aa`^_`_a`aa__ba````aa``_`aba_aaaaab_ab`abba``baaaabba`bca`bbbaabcb`bbbbbbaabbbbaabccccaacdcbcbaccabbbbcdbbbdcccbbcddbccaddccbbcdedbbecbecdcddcdcddddddbbddeecddeccddedddddeddfeecceedeeeedcdeffdeedeeefeefdefeeedeffffeeeegfdefeghffeefefggffhgeeghfeehffhhfghfg{|hhfelmzy01IJddyxmmbb^^_`ffllttzzz{ts~rpprrrsu~}uv}{xyxx{|xv{|wx}zwx{|yvz{xyz|zyzyz{zzzzyz{zzz||yzzz{{{yz{{|{zz{{zz||{zy||z{{{}{{{||z{z{|{|{}}{|zz||||}{z}}{}|{}}{}|{}|{|||~~{{}~|{~}|}{}~||~|}~}~||}}~~|}~}|}}}}~}|~|~}}~}}}~~~|}~}~~}~~~|~|~~~~}~~~~~~~~~~~~~hf^]/.##eemlDD2101=:NNcc}}ttnmee`_aaddkjzyoputttprxxnmyymnyxmmxypotvrotuqrrstsqttsqqttqprsqrttrqrrqrrrsqpsrrsqqsrqqrqprsqpsrqpqsppqsqorsqpqpqrpqpprpqrqpoqrpppprqpqqppopqppqqopppqppronpqooqqnopooqooppoopoopnoooooooonoponnnnppnnpononnnnooommopnnonmonnnnonmnonlmoomnmmomnnnmmlmommomlmmmmmmnnmlmmnnkmnmlknnklnmllnmjlmlnnlllkkmlkmmmlklkjlmlkkmllklklmkjklmkjlkkllklkkjjkklkikljkklkjlkjkjijkkjkkjkkjkjjijkjiikkijjijkjiihjkjjjijiijiikkihijhijhjihijijigijhihiigijjgihgihhijhgiigihhhgjhhihggiighigggggigghghhggffhhhhggffhhggfgghhffgggffggffhgfggfegggffegffffggfdghdeggfffedefeggdffdggeeeffedefeef$#!! 65WUyxyyz{  lmMMAAqq&%%%us55cdEEUTTSHH][BD`_@Aa_@C^]DCXYIITUNMQOQQLNSQLLTUIKUTKKSRKMQPMNPPPONPQNNMOPNNOONNOONMOQLMQOMONMNONNNNMNOMMONNONMMNNMMMNONMMMMMNNMNLKOOLLNMLMNNMLMNLMLMMLMKKMMMMLMLMLLMLLMLKMMMLKLLLLLKKLKLKKKKMLJKMMLJKKKLKLLKLLKKLJKLJKKLLKKKLJJKKIKKJJLJIKKJJJJKJKKKJHJLJIIIKLJIIJKIJJIJKIHIKJHIJIJKJHIKIHIIIIJJHIJIIIIHHIIJIGIIHJIHHGJIHHHHHJIHGHIIHHHGGJIHHHFFHIHGIGGGHHHGIHFHHFGGGIFFHGGGFHGGHFGFEHGHGFFFGFFHGEFFFGHFEGFEGFEFFFEFGGEEEGFDEGFEEFGFDEFFDEGFDEDEGFDDFFDEEEEEDFFEEFEDDEEDEECDEDDDFEEDDDCEECCCDFEDECBDEDCCDECCDDDBDCDDCDCBCCDCBDCBDCCECCCBCCCDADCBDACDACCABCCCBBBBCCBBB@CCBBBBAABBACB@ACAACAAB@ABBAACz}0."#qqfgoo!"\[ JK;;((,.45"!=;?==>!99##54&(01-+,-.0*)10((12''02*(//**-.,*+--,,,,-+*-.*+.+*+,-,*,,+,,+*,+,+*+,+-,+*+**-,)+,*+,++*++)),++,+**)*+*+*)++)**),+****(*+*****))+*())++))))(**))**(****'))()**((**'())+')*((')(()'))))(')(')((())''((')(()'''((((&(((('''('&''''((&&&((&('&''&&((&&('&''&&&&'(&&&%'&%'&'(%%'&&%%&'&&&&'%$%&%&%&'&&%&&%$&&$%%%%&%&&#%%$%&$#&&%$$%&%$$$%%$#$$$%$#&%#%%$$"$$$$#$%%###$%%$"##$%$####"####%$#$""##$###"#$##"""$#!#""""""$##""!!#""#""#!"#"!!"!!#"!!"""""!!"!"!""!""! !! "" !! !!""! !  !" !  !  !!  !      !! ! !             !       z{ljTV|{<=qq~Y\..  ,.5332))               ;;"#4355//#%                                   $$  LMZZ  ('//)&POYYtu::33UUggii_^OM;=$",-01!!9:<=>=:: 64%'0/++*+//**/1)'02)(11'(10*+/.,+-.,-.,.-*../,+//---/-,.0-+..-..//..,-/...-/.-0/-.0..../--00...-/.-//0/-/0/.////0.-00../00.///1///./1/0//00/00000000/0//10/10/01000/22/0001012//220/111201001112011032011031121132220122212203311310421322333212421332224313332343322333442333323543433332444324344453444334544434554534544554553464445554465554565546653565547666456754665566567546865666776676666775576677686666776786657768867767687697776977888777888698697798898878989888877:97788:97998:9899988:99:9899:98::9:88:99:989;9::::89;:::9:;:9999;:9:9;<:::9::;;:9;::<:;:;::<;9:;;;:<<;;::;;<=;;;:;=<:;<<:<<;=;;;;==<<:;==<<<<<=;:<==;=>;;><<=;==;=><<<>==<<=<==<>==>==<>>==<=>>>===><>?=>?<<>>>?>>>=>>>??=<=@?=>>>??=>??>>@=>@>=?>>@@???>>>>?@?=??@@>?A?>>>A@???A???@A>>B@?A??@A@?@A?@B?>@B@@?@A@B??BBA?@BA@@BA@AAAA@ABAAA@@BB@@BCAAB@AA@BCA@CBAABBABBAACCBAAACBBBABCBBCBBBCBB66qolmHIII}~JK~65QR^]02xv ~"#wv.0gh>=XXKLNLVWEE\[BB]^@A^]CDZZGGVUKMQQQOOPQRMKSUMLUTLLUTMOSSNNRRPOQQQQPOQRPPSSOPRRPPRQPQSRQQRSPORRRQRPQSRQRSQPRRRSRRQQSSRRQRTQRRRSQRSSSRSSRQRSSSSSSRRRTTRSSTSQTTRTTSSRRUTSRRTSTTTTRRTUTTTSSTTSVTSTTTUTSTUTUTSUTTUTTVTUTSVVUSSUVTUWTTVUVUTUUUWVSTWUUVTUUVVUVTUVUUUVVWVTTWVVVVUVWVUVWVVVVWVUVVVWWXVVWWVUVXXVVVWWWXWVWXVWXVWXWVVYXWWVXYWWWWYXVWXWXXWXXXYWWYXXXXXXYWXYXWYYXYXXXXZYWYZWXZYXYZYWXYYZXXZZYZZYXXZZYXXY[ZXYYY[[YZYXZZ[ZYY[ZZ[YXZ\ZYY[[[ZZ[[[ZZZZ[Z[[ZZZ[\\[[[[[Y[[[\[\ZZ\Z\]Z[\Z[[[\[]\[\Z\]\[[[[\]\\]Z[]]]\\\[]\]][]]\\]\[\\]^\[^^[\]\]^][\]^^\[_^\\^_]]^]\\_^\^_\\^^]^^\]_^]_`]]^^]]^____^]^^^_____]__^_^^__^`^__^^``_`^^_^``^`^_`^_`a__`__`_`a__a_`a``_`a`^^`a`_aaa`_`b```__aaaa``aaa`_a`_aaabb`ab`a``abbaaa`ac``cbaca`cc`acaabcb`accabcbbbbcc`bcbcbbcbadbbcbccccacdcbcdbcdbadcbcddddcdcbcccdccdcdcbedbceecdddecbcefdcedeccddefdcdddefcdeeddedfeeedeeddeffeecdfeeffefddgfddfefgeeefffffefgedeffgffffggffKKoo_`01! Z[kl_]``jizzijrqyxee_^^__bfg{znmtvrrsqtuoowvnmxzmmyvmowwppvvrqrutrttsssstusrtttstutssussuusrtuustuttttttttvtssuvutvustuutttvvutuvuutuvuuvuuuvvvttuwutvuvvvvuwuuwvuwwuvwuvvwvuvvvuwwvuvvuwxvuwxvwxvvwvvwvxwwxvvwwwwwwwxwwxwwvwwxxwwyxwwwyxwxxwxxvyxwwyxwxyzwxyxywxxwyzxwxyyzywyzwxzxyxxyyyyzyxyyyzxzzxzxy{yyzyxzyxz{zyyz{zxy{{zzyyz{{yzzx{zyz{|zyzzy{|{y{{{{zzz|zz|z{|zz{|||z{{{{z|}{{{{}{{|z{}|{|}{z|{|~{{}||}{|}|||{}}{}~{|}}}|{|~}}||~|}}}||}{}}~}|||}~}~~}}|~~|}~~~}}~~}~}}~|~~}}~~~}~}~~~}~}~~}~~~~~~~~TTccqsusz}kjggegigml{|poxwtvttvwqqzyopyypqyxrruvsrvvstutstttstttutrsvwrqtvtrsssststsrttsssttttsrstrssstsrssrsssqqstsrrrrssqrrsrqrsrrrqsrrsrqqrrqsrqqrrrsqqqqqqrrqqqpqrrqqqqpqroqqprropqqrqooqqpqqqqopropqpqrpnpqopopqrpopooqooqpoooqpnopppoopoooponpponopooonoononoooonponnnnonoononomnpnmopmnnmnonnnoommonmonnmmonnmmmmnmmmmnnmlmmnmknnmmmllmlnmlllmmlkmmllknlmlllllkmlmlllklkmmkklmkkllkjlkkllllljklkjkkjlmlkkjjlkjkllii !!))MNttvuooqr{z  ''mlEDRS[[AAgg87lo63mn67hi??__HFVXNNPOSVKJXWIIXZHHXYHHXVJMUTMMQQPQNOQQONQRNNRRNLRRMMQQNOQOOPNOPOPPPPMMOPOOOPONPNNONOPOONMOOOOOMMPNNNNNNNOONNMNNNNMOONNLNNMNMONMONMMNOMLMMONMMLNNLNNMMLLMNLMNMLLNNMKKMMMMMKKMMMKLNMLKLLLLLLKLLMLLLKMLLKKMKJMMKLKKLKKKLLJKJLKKMLKJKKKJJLKIKKKKLJILKJJKJILKIKKJKKIIKLJJKIJJIKJJJIJJJJIIJJIIKJHJIJIJKIIHHHJIIKHIIIIHIIIKJHGIHJIGIJIHIHGIHHJHHHGHIHHHHHHHGIIHGGIGFHIGFGHIHHHFHGHGFGGHGHHGFGGGIFKM~~CBRRyw8:10--##PQ\[  !"QQmpxwpq^^IK54--'(:9A@BB??;9#$32()/-,-+*0/&'13&&31&&/1((0/)).-)+-+--)+.+)+.-)).,)+-,*(*-**-,*)+,)++*,+**+,**+*)),*)*++)*++*)***+)(*****+*)*+))*)*+*))(**))**(()*))())))*((+)(''))))('))(()(('()''**'('&)*('(('&(()('')('''(''()&&('))'%&(('('%()'&%''&''''&&&'((&%&('%%('&'&'%%&'&&(&%'&&&%&&&&%%&&&%%&&%%&&%&&$$&%%&&%$$%&&%$%%%$$$$&$%%%%$#%%#%%#$$$%%%##$%%##%$#$$%%$$$#""$##%$###$#"$#$#"#PO A@mm`_IF**&$%%                           (*UTcbZ[EF)*                                op%$**!"POQO[[ki43.. OP_a``VVEG55(&+,43776623./! **%%&&)($$++!#-, #-*#$**$$)*'%'(''('((''()&%))'&)*'')''(()&'()*(&'**('(()('*)()()())(*('(*+*())((*))))*()+)))**(+*)*)+*()*+*)++((*+***)+,*(*+++)()+*++*++*)*+,+),**++,)+,**,+*-+*+++,,++*,-*+,,,+++-++,+-,+-+,+*,--+,,,,+-,+-----,--+-.-+,--.-+,.,,-,.-,-.-,-...---,..--,--//-.-,./.....-..,././/-/...--//./-/0-.00-.0--//0//./0.//.0///.1/.0///10.11./0/00..00/00011//0110000/11000000120000111001001111201311002211012211102211122210122331032133222212222312411322323332144213335234322333443335325323343343543443443245445433454344464554335434654556344455653564566446655456447656567566565567656646756657666666775687657856777768677577787877658768977767897687788976997787898769:8888977:88:888889789898889:8989:88::899999:9:9998:;:988:;::9:8::9;9:;99;9:<99::;;:9;:;<::;;:9<::<;9:;:;<;;;;<;:;<:;<::;<;:<;:<=<::<<<<<;<<;<;<=<<<;<=;<>;:<><<=<=;;>=<=<<==<<<==<=<=<=;==<<<>=<<<=<=<;====<<===>=<>?<=>;<>>?<=?<=><>>====<=>>?>=>>>><=@?==>==??>>==?????>>>=?@>????=>@???>>?@??@>>@?@@>?@@?@@?@?@@?@@@?@A@??AA@??@@?@A@?@@@@@@@A@B@@A?AAA}~qodd*)TU79HFED==NN77PR55RQ66NP;8JL?=HHAAEDCEBCGFBAGIA>IJ??IHBBEFCDGEDDEDCFDCGGDDEECDFGDEGEDCEFFDDEFEEFEFFFEFEEHFEDFHEEGFEEEFFGGFFEFFFFEGHFFFFGFGGGGFFFFHGEGHHFFGGHGGHGFGHFFHHHFFIHHHFGHIIFGIGGHGHHGHJHGIGHJIHHGGIIIHGHHIJHIHHJGGIIIJHHJJHHIIHIIIIIKIHHIJIIJJIIJHIJIIIJIJKJIJJJIKJJJIKJHKKIKJJJKKIKLJIKLKIJJJLKJKJKLLIKLKKKJJLLJJLKLLLLIKLLLKKKKMLLKKMMJKLLLKLLKLMMMLJLMKKLMNNLKKLNMLLMMLLMMLMOLLNMLKMMOOLLNNMMMMLNNLMMMMNONLNNNMNNNNLOOMNMMOONONMONNNMNOOPMNPNNOONNNOOOONOONPONOOOPPOONOQOONOPOPOOPPPPNOPOPOPQNPRONOQQPOPPQQQQPPPPOPQQPQPQQPPQQORQPPQPQRPQQQPPRQRQQQPQRRRQQRRQQRQRRRRQQQRSRPSTQRRQRRRSQQSSRRSRSSRRSRSTRRSSTSRSSSSQTSRSSSRSSRTSSTTTSSTTRSSSSUSSUSRSTUSTUSSUTTTTTSUTSVUTUTSUVTTTTUTSVVSUVTSUVVUTUTUUSUWVUTTUUUWUVVUUTVVVVUVTUVVVVUVVUVWVVWVUUVVVXVVVUWVWWVXVUWXWVWWWWVVWWVWWVVWVWXXXWXWWWWXVXXWWWWXXWWWYYWWWWYYXWXYWXXWYXWXXXYXXZYWXYXXYZYWXYYXYXY[YXYYYYXYZYWXZZZZXYYYYZZZZYXZZYZZZYXZ[YZ[YY[ZYZZZZZYZZZ\ZYZZ[[Y[\[ZYZ\ZY[[[Z[[ZZ[[[\Z[]Y[[Z[\[[]Z[[\][Z\][[\\[[\][\\Z\\\]\[\[\^]\]\\\\]^\[^][[]^\\]]]]]\]]]\]^]]\]^\]^]]]^^\^^\^]^_^]]]\^`^^^^]]]^_^^^]`^\_`^^]^_^^_^_]^^_`^__]^_`^]_`_^a_^``____`_^```^^```_`____``a````^_a`__a`_aa_``_`bb`__`ba_aaa````aaaba_ab__abca`baab``bbabaaaabaaaabb`bcbaacbaccabbacaadbbbabcccabdcabcbbbcccccbcccbcebbcccabdedbcebcdbdbcedcbddccedddbcdcefccdddedcdcfdbdeeIJ>AII__yy""7766>>KL}{WZoneeddnn\]usZYuuY[st\]pqb_lldfiiihfhjjedklddmleekkefjihfikghiihgiiijgfjkhgjjhijjggjjihhjjjhiiikjijijiijjjhjiikkkhikikkiikkkkjijljikkjkijljkljijjklkjklkjjkjjllkkkkikljlmkkjjlmlkkjlllllklllmlkkmlllmmjkmnmklnllllmmllmlkknmknmlmmlnmmmmmllnmlnollnnmllnnmllnommnnnlmonmmnnonlnnnonomnooomnooommopnonnpnoooooononoonppnoooopqnooopoopoponqponpppqonqpprpopqooqpopoqqpqpopqrppqprqoqrqporroqqprqprppqqrrqpqqpqrqrrqsqqrqqrrrrqqsrprssrrqqrrssrrrqrtrqtsrrrrstrssrrrttrqstrsttrstsrstsrrtsttrtttttsttsttssttstuutttttssstvutssuutussuutuutvttvuuttvtuvtuutuvtvvtuvuuwwtuuvvuutvvvvuvwutvwwvuwvuuvwvvwtvwuvwxwuvvuwxxwvvwvwxvuxyuvywvwxxvwwvyxwwwxxxwwxywwwwyyxxwvxyxwxyywwxyxxyyxwyyxxxxzyywxyyxwyyyxyzyyxxxxzzxyzyyyzzxyzyzxxzzyzzzzyzzy{zxyzzzz{zzyy{{{zzzzz{|z{zyz{|zz|zz|{z|zz{{|{yz{||{z{|zz|}|{zz||z{||}}z{|{}||{z}||}{|}|z{}~}z|}{|~~{|||~|{~|{|}}}~}{|}}}}|~}|}~~}|}}|~}}~|}~~~}~}|~}}~}~}}}~~~~~~~~}~~}~~}~~~~~~~~~~~~~npIIqpnmYWMLNLTSa`km{{vvss}kmjjkjmn}  #$ GGprutcea_eeoo{zst+*xw75kkCD^^OOSSZYJL__GE`aFF_`GH^\JKZYOQUTSRRRSVQNUWPPVVMOVUPPVVOPTSQQXYabvxmlklbbSRA@&'3145&%<<!B@@A ><#&97)*22,./.21+,22+*43)+22++22||tt{{SQ((!"418752*)  TTcejiWV::                                 dc]]zxpq[[11   KIvvYY;9!! 11979842+) !"#$$"$!"     !  !!   !!  ! " !"! !"! !"! !! ! !! !!!! "!!" !#"!! !""!""!! ## "# ##"! "#!!""!#"""!$$"!##"#""#!"""##"#$"$#!"$#"$$!$#"##$##$$$#####$%$#"$#"%%$##$%$$$$#"$$$%#$%#$%$$$#%%%$#$&%#%&$%%$%'$#%%%'&#$&'$%&#%&&&%$%''$%&%$&%&&%'&%&'%&&%''&&&&%''&'&&%%((&'&&(&'&%'(&&'''&((&'&'''('(''&'('(('('&((&'())'&))(('&(*(''(((('))(()('*(()(()((*()*('*)())')*'(*)((***))*(()***)))++))**(*+))*))+***))**++))**+,**,+**)**+,*++++*+*+**,,+**,,+*++,,*+*++,,,,*+-++*,,,,,+*,-,,,,,,,,-,*---,+-,,-,-,--,,---,+,--,-..,,.,+..-,..--,---.,-.,/.-/.,-//---.-//,,...//.-.0-..-././0.-...////..///0.-/00//..////0/0//1./0..011./00//0110/01//0000/02//111/11/10/2101000131//22011/01122110011210221122122110123212103222122233211331\\GGSTCBbe*)))NN1/FF78???>:;AB97EE65DE77ED89CA:<@?=>????<=@><=@A<;A@>=??=>B@>>>???@???>??@?>@@@????>@A>>@@@?>@@?@@@@?@@?@@A@>?A@@A??BA@@@B@@@@@A@AA?@ABA?AA@BAA@@A@BC@A@@BCA?ACC@A@AABBABAABCBB@BCBAACABC@BDBBAADDBBBCCBACDCBBBCDBBACCBECBDDCBBBCDDCBCECCDCCDEBDCCECCBCEDCDCDEDCDDCEDDECDFCCEDDEDEFDDDEEDEDCDFEDEEDEEDDFFEEEDEEEFDEEEFEEDEFEEGFDGFEFGEEDFGFFFFDFGFFDFHHGEFHFEFFGHFFGFEFGHGGEGHGFGGEHGFHGFHIFFGGGGGHHGGHIGGHHGHHFHIHGGIGFIHGIIGHHHHIIHGIHIIHIIHHHJJGIIHIHIJHHIIHHJJHIJHIJIIIJHIIIKIIIJJJJIJJIJJJJIJJIJKJJJJKIJKJKKKHILLKIJJKLJJJKLIKLKKKJJJLLKJKLKKLLJKLJLMLJKMJKLLKKKMLLLKMKKMMKJLNLLMLKLMLKKLLLMLMMLMMLLNLMLLLNNKMNMMNMKMOMMMMLLNNMNMMNNMMONMLNOMNNNONLMNNNNNMOPOMNOOONMMNNOOOONNOOMNNOOOOMNPPOPONOOMOOPPPONOOOPOOONPQOOOQPPPNPQOPPOQQPPOOOPPQROPPOQQQPOPQQPPRPOQQQPPRRQOQSQPRQQQPQQPRRQQQQQQRQPRSSQQQQRRQRSRPQSRRQSRQSSRQRRQSRSSRRRRRTSRQRSSSRRTSRSSQSTSRQSUTRSUSSTSTTSSSTSTTRTTSTUTTSTURTTTTSUTSTVTSTTTTUTVUTUTSSUVUSTTUUTUTUUSUVVUTUVTUUUVUUUVVUVUVVTUVUVUUUUVVWWTVVUWVVhhtsmn ! ++>>z{QQhibb[[mmQSsrNPutPPrrSSmnYXhg^`dccd`_ff]]ff]^hg^^gg_^ef`acddabcbdcacebbecacfebbcecacddcdecccedddcddddeddceebdfeddccddefedfddddeeffccfeeeeddffeeeefedeeefffedeedfgefefgefeefefgefgffeefeggffffgeegfehgfgeegffhhfeghfggffghgfffgggghgfigfhhhfghgghhgghhhghhhhihgghjggiiggiiihiiggiihiighjhhiijiihijhiihjjiiiihijjihkkihjjijjhhjkiijjiijkiijjkijkjiiljjljjjjjkkkiiljkljikkikljklkjlkkikkjljjlllllljjlmkjmmkkmllkkmlkklmlkkllmllmklmllmkmmlllknmkmnllnmmlmnklnnlmnnlmnlmnnnkmollnmmmoomlmoonlmommnonnnmmonmnoommoooonoonnnmppmnooonoonoooonpqmnpooopponppnopnopqoopqponpppqpppopopqqqpnoqpqppqqpqqqqoppqqqpoqqrrooqqprspprqprrqqpqrsqqrrqpsqrsprsrqqqqrrssqqrsrqsrrsrrrrrrstrrssqqrstsssssrqstsrrsssssutsrqsttttsstutrtsstttttsstutssuustsuutstustvstvtstvvsstuvvtuutvutuutuututvvuuvvuttuvuuvvvtuwuuuuvwvvvvuvvuvvvvwvuvxvvwuvxvuvwvwxvuvwvwxuwwuwwwxwwxvwwvwxyvwywvxxxxvxyvwyywwyxwwyxxywwyxwwwxxyxwwxyxxyxxyzyxwxyzxxyyxxyxyzyxyyyyz{xwxyyz{yyzyyzyzyyzzyx{{yyz{{ztsqqsuyy~~~~~~~~}~~~~~}~~}}~~}|~~~}}~~}}~||~}~~}}}}}~~}}}}||}~}|}||~}|}}}}}{|}||}}|}||{|~}{||}|||{|}|{||}|z||}}{||{|{|CA55STtsuuhkggjjrpyz}~}nm !22GGqs\\a_ilUTssLNxvKLuuPQpoVVjk[Zcfb_^_de^]fe[\fg[[gf[Zff]]cb_^bb``_``a``ba^_a`^_aa`__a``a`____``^```_^``_``__^_```_^_^_`__^]`_^_^^_`^]__^__]]`^^^^^^^^^_^]^^]]_^^]^`]\]^_^\]]^^]]\]^]]^]]^]]^]\[^^]\]]\]\]]]\\]^]\\\]\[^]\\[^][[]\\][\\\[\]]ZZ\[[\\]\[\\[[[Z[[[\\\\\Z[[Z[[[[Y[\ZZ[[\[[\ZY\[Z[[[ZYZ[YY[Z[[ZZ[YZ[YYZ[[[YYZZZZZYZYZ[XYZZYXYZZYZZYXZYYXXZYXYYYYZZYXXYZYXWYXWYZZXXXYXXXXYZWXYXYWWXYXVYYjk{ySRz|  bd&&MK:<98IJ-,US%'WU%'SR+,NM20EH98>??<9<BB88CC66DD76BB88B@::>?<;==<=<=?=9<?=:;=>;;?<9=>;:<=;:=<<>;;;<<:<==;::=;9==::;=;:<;<<;;;::;;;;;:;<:9:;:;:;<:;:::9<;9;:9:;:::9:;;99;9:;:88::;98::999;:98:98:9999989:9:879999899988:978:89978989:88879988689799788896897776798798767878678778567778875687677866577875677765786665764676676566465774577457555565664565554556545555653565355365455544445456336524 ++ &%!FDIL<=''          '(')OMCC::/.  !"""         !    !  !!  "!  "! "" !"" ! !"! !!!! "!! !#! !""""!!"" !"!#"""!"#"! "#"!!!#""#"#"!""""!$#""!"#"$$!"$$""###$#""#%$#"#$#""$###$%##$###%$###$%#$$#%$#"%%$"%%$$#%$#&$#%&%$$#$&&%%%$$%&%$%&&#$%&%$%%'&%$&'$$&%$%%&&%&&&&&'%&&%&&'%%&&''%&(&%'&&'''&&%%&''('&'&''''')'&&&')(&&&&(((('&()(&''&(('))'((''('')())&'())((((()(')(')))')*)('')*())()()*('***)((**)))))+)()+*)))*)*))+***)***)*))***+**+**)*+*),+***+++*)*,,*),+*,*+,+*+,+**-+*+++-+*+,,+++-+*,-,+-*,-++,,,-*+--++-,,,,-,,-+,-,---,-.}~.-xy*)^_??,-ED)*FF*)ED+.B?12=;558:9956;<53=<56;;55<;67;;669;878999:99:98:;97:<87;:889;:::::9899:;;9:;:8::9:::9:;;99;<9:<99;<::::<;9:<<;9;;9<;:<;;=::;:<=<;;<::<;:=<:;=;:<;<=;;<<<<;<<=<:<=<;><<=;;=<<==><<==<<<<===><<>=<==<====<=>><=>==?=>=>><=?>>=>?>=>>=?>>>=?==@@=>=>?=>@>=>@??>>@?>>???>>?>>@??A>??>??@A@>?A>??>?AA?>?AA???@@??B@?A?@@@B@?@@@@@@@@@@AB@AA@A@AAAB@?BB@@AABA@@@BAAA@ABBABB@BB@ACA@CCAABAAACC@BCABCBBACBAABCBBCBACBCCBDCBBCDCBCCCBCCBCCCCCCCCCCCCCDDBDCCECCCCDEDBDCDDCDCCDDCECEECEECCCEEDEEDCEECEEDFFEDCEEEEFECEEEFDEFEEEEEFFDFEDEFFFDEFEFEFEDEGHEEGFEEEFGGEEFGFFFFFFGGFFFFFGGEFGFHGEFHGFHGGHFGGGHGHGGGGGFHGHHHHGHGFHHFHIHFHIGGGGHIIHGHIHGHIGHHHHIIGHIIHGIIHHJJHHJJHHJJHHHJJIIJIJIHIIIJKIIJHIJJKIIJHJKJHIJJJKIIKKIIJKJJLIIKJJJJKJJLKILLKJILKJLKJJJLLJJMLJKKJKLKJMLKLJKLKLJJMMJLMJLKLMKKLLLLMLLMLLLMLKMLKNNMKKNMKMMMMMKKMMNNLMKKMONMMMLLNMMMMMNOLMNNNLNNMNNONMNMMNNOMMOOMMONLNPNNNNONNMONNPNMOONNOOPPOOOMNPPOONOONPPNOQNNPOPONQONQOPPPQOOPOPPOPOPQPPPOPQQPOOOPQQPOPlk('))43||AColORa_]^WUefPNikMNkjNOhiSQdeWV_a[Y\^]]Y[`aZXbaXWa`Z[`_Z\__\[]^^^\]_]]^__[[_`][_`]\]_^]^]]^_^]^^^_^__^]]^`_]]`a]]__^]^__^_a_^`^_`_^^_`_^_`_____^`a`^^``a__``_``___a``aa__aa`__`aa_aa_`a``aa``aa```ab`ab``bb`_aa`cc`ab`aabbaa`bbaaabaaabbaccaababcb``cbcbbcabbbcaacdabcbcbccbbcccccdbbcccccacecbdbcdbcdbcdcdbbdcddcdedccedceddddcddedcceedcdddeddfecdfeceeceefedeeefdeffedfedfffeegfdegeeefedeggddggeeggfdefffefggfgfdghggffefhffhfeggggfgfggggghggffihggfghhgfgigghghgghiihffhiggigfhiihgiihhghiihhiihiihhiihghjihiihiihijhiihhjjiiihjjjhhjjijijjhkkijhijjkjjijkhikkkijiikkjijkiilljjjkkjjkljkkkjkkkkijmljjlljjkklkklkklkjlkjlmlklkkmklmkkkkmmklmllklnmllklmmmmlllmnmklnmmlkmmmnlmnmlnmnnmlmmnnlnnnmmnmmnmnnmlmoommnmnonnnnonmonmonmonmopnmoonponppnmppnoonoonoonoqonppoonopoppnponppoqpoqponqpoooqppqppqqppopqpqqoopqqprpppqqqpqrrqpppqqqrppsqpqqprsqqqprrqrqrsrrpqrqsrqsrrqrsrrrsrqrrqtrrrqsrssqssssrrrsrssrtrrtsstsrssstrsutrstsssststussttssttrsuussttutttttuz{wvwx{|EFIJUVgfvwyyqqoprruuxz~~||}z}}~}PPooJLrpLMnmPPikVUcdYY``^^[Zabpqmn  bbST)(CC6886AB0.FHef330/()"  %&(&                                        !  !!! "!!!  !! ! " !! !"! """"!! "" !" !#"!" !#" !#" "#!"!!#!!#"""!!#""#!!"""!"""""##"""##"!$##"!#$$""#"###$"#%$#######$%#"#%$"#$#$%$###$$#$$%%$"$$$%$%%$%%#$&##%$%%$%%#$&$#%$$%#&%%&$$%%$%%%'%$%&&$$%'%%'&%%%%&&&&'&%%%&'(%%&'&&(&&&&&&(&%'(&%&'''&&'(''&&(''(''&&()'''&('&)(''&(''()'&((&')(())&'))'('((')''**''()((*)')*))'((**'()*))*)())((++)))(**((**))))**))))+*)*+*)(+****+**))+*(++*+++*)++**)+***+*+-*)++*,++**-*+-+*+++,**+,+,,*,-+*+,-+*--*+,+,--,,+,-,-+,+,-,--,,+,..-,,,,-,,-,,.,-..--+,-.-,.--.,.--.,--./-..,-0/-..--/.-//--...-///.././/-..//-.00../-.0///-//10/-./11./0..00//1/.001..10/0///011/11//00/10/1100/12//221//011200200131wx99CC DC BB$%><)*:9-.54230076.-78.,78//66/06512531234343244335303554333434434453254354354246544434454464355445555545545665456555447556555654564565676556567665676667545876666657776776767877557887667787678767868878777779877777877897996799788997889989789999978889::78:98:88;88;:88999889::9::9:::9899::::9:;99::99:;;:89<;:::<;9:<::9::<:9;<<;:;;9:;:;;;:<<:;<;;;;<;;<;<:;<;;<=;<<:<=;:<;<=;;<<=<;<;<<<><;==;<=<==<<==<=<<===<>>=;=====>=<==<>><=?=<>=<>?=>?=<>>?=<>>>??>?>=>>>>=?@>=>?>??>@???>?=>@@>?@?>>?>????@@@?@?>@??AA>>??@?@A??A@?@@@@@@??@A@@@??AA@@@@AB@?A@ABAA?@B@@AAAAAAAA@A@@C@ABAAB@AB@ABA@BBAAACBA@ACAACCABB@BCABCBBBBBADCAADDBBBCBCAACCCCCBCBBCDDBBCCDCDDBBDCCECBDDCDDCDCEEDDBBDEDCEDDCDEBCFECCDDDDFCDDCDFEEECEFEFEDCDFDEFDFEDEEEEFFDEFDEFFEFEDEGGEEFFDEGEDGGFFFEEEFFGGEEGGEFGFEFFHHEFFEHGGFFHGGFGFGGFGGGGGHGGGGGGGFHHGHFFHIGHIFGHFHIIGGHHGHIIIGFHHIHHIHHGIJHHIHGIIHHHJJIIGIJHIIHIJJJIHGJJHJJIIIHIIKIIKHHJKIIJIJJIJJJKJIJJJKJJJJKKIJJIKKIJKJKKKKIJKKJJKLKJJJKKKKLLJJKLLJKLMJKKJLLKLKLLKLKKKLMKJKLMMLLKLLLMLKMLKKLMLLKLNNLLLKKNMMMKMNMLMMMMMMLLNMNNLLMNNLNMMNLNOLMOMLMNOMMOMNOMNNNMMNNNOOMMPNLOPMOONOMOPNNOONOONPOPNOPOOONNPPPPNOPOONOQOPPOQONOOQQNOQPPOOQQOOPQPOPPQQPPOPQPQQPQPPQQOPQPPPRQPPPSQPQQQQQRPPQRQQRQQQRRQQRSPPRQRSQPSSPRSPSRQRRRSRSQRSRSQSTQRTQQSTSRQSTQRTSQSTQSSSSSSSTRSTSQSURRTTTTTTSRSSTUTSSSUTSTTTSSUSSTTUUTUTTTTTSUTTTTUUTUUTTffxy21yw35ut;=kjFGb_PRWWWYQQ^^NL`aLLaaMM_^PP[[SSYYVVUVZZSTZYTTZ[UTYYUU[ZUUXYWVWYWWXWXXVWYYWXYYXVYYWXXXXXXYWXYXZXWXYYXXYXYXXYXXXYYZZXYYXYYZZXYZYZZXXYZZYZZZZYYZYYZZYZ[ZYYZZZZZZ[[ZYZZZZZ[Z[[ZZZZZZ\\Z[ZY\[Z\\[[[Z[[Z][Z[\[[\[\[Z[][[\][[\\\ZZ\\\][\]ZZ]^[[]][\\\]][\]\]^\[\\]^]]]\]\]]]]\^]]\]^\]^\]]]^^^]]]^^^]]_]^^\_^^^]^__^]^^]^_^^__\]^_`_]]___^^^``^^_^^__`_____]_a_]___a^^_``^``_``_`__````^````_a`_```a`_`ba`````aa``aa_`a__aa``aaab```bca``bbaaaa``aaabbb`abbbbaaaabbaacabbacbacbabbabccbca`cbcccbacbcccccbbcbdccdcabdccdbbcddcbdebcedcbceecccccddbbcddedcedddcdeecdeeddeddddedefdceeeedcffdefdddffddffefcefffdeffeffeefffeegfegeefeggdfgffefffgggeffegffffgfhgfggfghggfeghefihfhifghgffhhhfghgghgghhgghhggghhhhhghihghjhgjighihihhihhihhjjghjjigiiiihhhijjhiiiiijiiijihkiijhkkhijjjjijjhjkkjijjihjlkijkjikjjjjljjjjkjkkjjlljjljjklkkmkjkkjkkkkkkmmjjlkkllljkmkklklmmklllljkmllmmllkllnlkmmmmklmmnlknmmllnmlnmmlmnmmlmnnmlmmmmnnlnnnonmmnnnnlmnmoomnnommomnnnoommnoonmpnmnoppooomnpoooopponmppnooopnnoqooopooppponqpoooppppqpoooqqppppppqpoopqrqppqpopporqpqpqpprpprpqsqqqqqqqrqqrqqrrqrrqrsqpqrqqrrrprsrssqrsqqrssrqrrqsssrrrrstrrsssrrrsttsrrtsrtstsssrttrttsrstsrstsstuusturstttruvssssuuusuustuttuutstutvttutuuttutuvuuustvuuvvvutvvvvuuutwvuvvttvvvvvvvvuvwvuvuvwvvuwvuxvuvwwuxxuvvvwxwvvxwuvwxywvvxxvxywwwvvwyxwxwwwyxvxyvxyvxxxwwxxxxwyxwyxwxyxwwyzxwyyklmnqqtu}}yxxy{|xy}|ww}vu~~wv}~xy}{xy|}{yz{z|{z}{y{}{zz|}zz{|{z|{{|z|}{z||{{z}|z{}}{||||||z}}{{}||}|||{{|}||}|||}}||}~}}||~}|||}~}|}}~~}}}}}}~}}~}~}|}}~}|}~|~~}~}}~~}~~}}~~~~~~~~~~}~~~~~~~~~~\]lk[\lm[\ki^]gia_deccbdedabde42LN44LK44IJ89GE<<AA>?@@BB;<CC&'garden-1.0.9/data/beat/piano.wav0000644000175000017500000014135212457263310013364 00000000000000RIFFWAVEfmt DXdataIR z 9CZ "X$&'m)+,F./O1214568P9s:;<=h>??@@??H>q=<;;>:988|76X65g554i4-443333334C4m444555_55555555555=54w43W3210/w.-d+)o'%h"jfM E؝ҥ1^J><޶@Ŋ|9oNJ]d¼ dػr<=x춒e\k˶޶Ͷtrk‚ǢBn5K"*18=A%DTFGH/I[IYI;IIHHHHI#I=ILIBIIH0HkGmF:ECJB@>L=;M:9087V7z778':;=?ACE!GRHHILHFjD7A6=}8 3A-&{ > v~B2>JަM .Qwˢ:k̜2CKJ>K=<;U;:L:9z9)988{8X8A87838:8H8]8|8888)9`999:`:::>;;;%d>> ?a?? @Z@@@PAAA@BBB#ClCCC8DyDDDEOE}EEEEEF F FFEEEE[EEDD%DCMCBNBA&A@?-?{>=<:43'32?211C1 100000000 111^11112?2a2222222w2J221^10[0/..-+*)r'%_# 6+ e >b40rƻߺ)*U=6'ƁbˤˈL@Ǎia ֽݼ# (HY^V=o)`5J:Gݯb0 W%'&<-I3F8E =u;9a8754@433b4"5<67J9; =>@`BC^DD DB@=h:!6=1+&l |kez{98qցJ;Q҆A[ΒoVOP_tΎδ5hϗ9WjuukT5π.^_5̓8ʅ OǏ[ģD£oavaۼ~[B0+*2?Rn޼By4vQ6(z rpjľ bŲQƢ:DŽWȕ Duɢ *0*ɵ}8ȁȘ}-sĶ$Zпnڽ^˼6Liy&ԟT܄1A]sag))ީن{̥ʦ>،aX, #G۾WzNŎGʃKѢՄ.W&!w&9+o/3368:<>"??@@IAAAAAAwAEA@@%@?>=<; :c864]20-&+( &# !nXsX*AJ<~V" #%[( +-W02C5}79h; =t>?@DAABBBAZA@A@?>>O=<;:8:98;87$76=655H5544444444445C5m5556O6667Z77728}889c999M:::8;;;$x>>?E????7@k@@@@A9ASAjAxAAA}AsA\AAAA@@s@(@?u? ?>">==<;A;:95987 7Q654.4{32-210r0/|//.f..----~-------.H.t..../2/J/Z/a/_/P/6//..?.-V-,,L+b*W)((&F%#!^  <gh??C@N@?@@????? @&@;@=@%@??>->4=<:\97l643210000n1a23568f: <=>? @?> =:k73&/4*$A| TypB(rٝvm֊ԌӫWѿѩќќѦѶ>hҕ>azӐӜӝӗӅkA Ҁ(VY5ϙO͠?ˍ+{,NJ\KYŒ6d1)R|P‰ LÓ!kIJIŗ1iǹTȡ:ɉiʯ=ˀ@x̰=g͆͡ͶͿ͎ͫg4̫R˂~Iɢ8{ƿKĠm[HY¿¤ƥh\z)ҟ)׷@ܿ$nL'7u HV9Qى1л˒1"qo«‘³/Ú-7D'Ќz>1 1"?'M+.1c4}6289:l; S_[L4 =ĵČl/l؉}E>d$*.2589:b;;;;;;m;\;_;k;;;;;;y;&;:9 9865I421P05/F.----@--./02+45~783:;|;X;:+97G40,a(#V;%oM kܰۓڙپ^[էf4 .Ou՝Bfֆַָ֠֞{MՂ(U[BҬq,φ=͙^6ʬ&ɪ4bDzh%źŎoWD<5;FSgŁŢFxƮYǗZȟ)pɶEʌf˰B̉`ͦ1rθ7uϰ!TІб.m,*r(T&$$!yyXR-{- 0k!$W&(*,.024T5q6X7 8889988187'765;5432321U10B0/Z/..T..---t-d-^-^-c-p-----.,.Z....)/b///0W0001\111"2h22203s333:4|445>555536n6667A7o7777 8(8C8X8f8r8w8s8j8^8G8)8877i7"766#65P54^43P32/210[0//y.-<-, ,|+*n*)))(c((''r'R'<'/'+'-';'L'f'''''(5(Y(y(((((((((m(6(''='&:&%$$#! V'[F %"Bxuel#hWURȼi͎{ҲӬ`QեԾӯҀ@ν͓̇˜JȞȁxȇȞȸȼȣȑȎȱ ɼv̾κц(ڛ3 9 %S*.1]3566 7A7;7$7 7666667&7-7)776U6554 310[/.,+*E*)))%**+,S./`12T45l666]605g30-f*X&!7ORYz Eo KS߿ޫݿ7ۜڣEص؃_D626CTp؊دHiٍ٫ٱًY؆.]k^=ԪxFѳЌ{|͛3{-ʧo@9^ʄʮ >w˫[̘U͕\Ν#hϫ/vз;zѾ:yҶ)`ӗ(RyԞԻԛl1ӜCmpPеv5͝ ̈˽}[XʀJϋ"0]EHQ3L(,UK Lq|rhafځض Հ[fˣˆupvˍ˰3̠0%вѓՎخCDz  ) Y#&^)+-T/01o23z334'4;4B4>4-4433S32g2110 /-{,*W)'%#!((Hmsem "$&(*,%./012v33R4|44f4(43f32[21(10/E/..--,,+P+**v*>**))))))))) *,*N*s****%+Y++++5,m,,,-[---.Q... /G///0;0x000'1_111282k22223D3e33333333333333h3:33223211 10C0/O/.H.-,-,,t+*K*)+)(('!'&A&%%1%$$z$N$-$$$$$ $$3$M$g$$$$$%.%G%`%n%z%}%z%m%U%1%%$$)$#F#""O!w ~b!MI  YX1{DhӞΒ*CЬ$ӓ ׶(W@X؏ן֎mC'ns. 3MZ^YE-)pA1"x]?s!%)},.[0t1)222222s2b2]2e2r222222U21z100/ .,+*|)y('&u&;&D&&!''(2*+,b./01Q2m221/-*'$$% jG i;G+ 1E.R2iT܋A۬ەۅ~ۀۈۛۯ *Otܔܵܝe)ۏ9kنى{dM;Դ5Ӹ?`ЛBϣb)Ο΂hXLFGKWizΕΰAnϟ3gПKхѿ7tұ.jө$_ԠSՏ*v***+X++++3,i,,,-<-n----+.S.z....//5/G/U/a/e/e/c/X/J/1//...e.'.--G-,,(,+I+*Y*)X)(O('?'&5&%2%$>$#c#""N""!!Q!(!! !/!L!h!!!!!!""","2"."%""!!!Z!! G 8.] a$v?&@hڙJՂBҊQщ$/tUoW ܅ܿܺwXہړً{mkԫmҼѕшэћѴѸѢњѦF([ޘ~ q zb!%'*+,--(.3.#..------.. . .--/-,++'*()( '&%?$##""#z#)$ %&V'()%+>, ----,+)'$!-XP-  b9b6*߉O! "Ab߁ߢ'4?@=0߭w7ޡK݈ݮ9EJLTbւֳVԫaӤsJ% *CcӇӫ)TԃԴJՁն"Z֏:q׫Q؈.dٛ5jژ#Ksۗۻ #.9A>7(ۦt8ڠI~ٔؕ׊փ՘1ӛqcsӥu6ٜ ܾr8gC<k R=qܪtYc،8ֽVԝjcapԅԬ-՘#Y$ލW|Pp  (8!X##%&'()*** +/+C+O+Q+F+4++**`*))(=(l'{&o%:$"! o p  ^<Bo W   o } {i+m!"0$%&'()V**,+b+u+j+D++*T*)k)(h('_'&[&%q%%$K$##m#5##""""""""""""" #)#N#p####$D$q$$$%2%b%%%%,&^&&&&+'\''''"(T(((()<)f))))*%*G*d*~**************\*3*)))M))(`(('?'&f&%~% %$$##"2"!K! w  bV(+Idi4CUX~k,2oxI @`Gt1a,)p3-K}ڰݺg%.Zކݟܪ۵(؁֓M!0EV\]QB."'L֡7'؁]y|O zm r#%'>((e)))))y)h)`)^)i)u)))))m)0)(_('';&T%d$m#"! 5 r\m 2!"/#R$%&'()`)E)('@&O$!"N -U4J'| P6hkJ.&6J`{ %;N]hjg]O5LhMz ߛ*޸Edی!_ڮ]،U!ש׏xg^TVW`iz׊ע׺;^؃د/]ىٻJ}ڰEzۭCvܨ >kݞ'Uި<]yߔߩ߽ߺߥ߅_2|/~ݮ>Reٹh)\Nma2ir GK)m aH1ߋމݣ/۠'|A?فNڬۧ]!8fuyX[| XRHF W"{#`$%%&[&&&&&&&&&&h&(&%o%$W$#"! |%KEGx2 E 5  @;k[ !"#$% &&&/'H'H')'&&a&&%#%$4$#H#"i""!D! b ( o_SOPS]j} $ I p !>!g!!!!"N"}""" #8#f####"$P$~$$$%/%Z%%%%%&B&c&&&&&&&'''''' ''&&&&f&8&&%%B%$$R$##7#"e"!!! @ c0t!G jUC<:>FRgw)=NYbb^S@#P.mr v 6GJLqLݛVڅ#&~#1B<;{)N}ߛ޷ I۩#ڼqD,)1CRaikaR@1.JوۊݣQhLD| Pc y"$0%%l&&&&&&&&&&&&&&&&r&&&%4%$##'">!_ ,cEY  !"#$%L&&&:&h%$$n"L ~   G%[qN_t[a ArG# %=VoP>6o2WށްNܐ9ۘM ڔ`3 ٵ٣َٔهًُٗ٣ٳ,Nmڑڶ-Wۂۭ5b܏K{ݩ8eޒHuߡDh5FV^gfaXI6`߅,iޏݪ7WڔAٺٷ d~=#F߈LTqxA<2k}aSkf?Iax i89p0ܸTڛzdVTWh~ڦ)ےܳ,pg  rv ""#C$$%>%e%%%%%%q%T%'%$$A$#B#"!  {%L^0  c u z ;  #[&)3 Y!`"H# $$0%%%%%%%t%&%$g$###"/"!V! 7 Xx^PD<>@ISey$Hn 9 e !B!o!!!!&"R""""#2#`#### $1$X$$$$$ %)%E%_%u%%%%%%%%%%%%%i%G%!%$$$N$ $#w#'#"u""!P!  ?i=5]"|fWLJMT^p,?R]egg\M1r%b_7N@G eQ/x8ۇrڶG #*}IICuݻ܍%ڣډڀڅڒڦڴڿڼڬڛډچږ2N8:Wn  y"#~$%I%i%i%]%J%:%-%+%1%;%K%]%e%e%P%(%$$$v#"!,!O sCmDLS9= J!V"S#-$$>%S% %Y$;#!`F +2YThuvhO1x8N-Zރ޶\ ܒsdrܚ?e( '_kP) $%Z731PGL8|݁R*4]ݜ`ޯߜ(_vJY ~" w!!E"""""""""""n"0"!!!u  2>0 >+]=7 L U  } j:'Z{|d *!!Z""#4#C#;##""Y"!!8! b (k|<y^B/!)3D[o!Ck-T%Mz# K v !@!e!!!!!";"Y"t"""""""#######"""""g"=" "!!Y!! | , |_5o UV L|qhinx2BWemrtjaM3kYW6JF\ d.( oEs`#:ݞAti|(gJdݠeC02+k I//ߛWޥpEݳݤݚݓݒݓݘݠݫݼ-Ihއީ9_߉߯)S}'Qz Ms6\~8PcyiP/g%5xI|n+ݿvށ5'bh1#SkfEgs,(uJl^?19\Wq!ޫކjXQOVd|ޤ$ߊo ?  p V h {  !fu2d W!!!!!!!g!! q ?rVm-nJ4   ->SjAf#Iq;c-W} : _ !!9!Q!g!}!!!!!!!!!!!!}!c!E!! _ ! R\K-p]h`0zy|5FZfqxwvjZA"C`)  _%'6ހރa!]YJS4q\^ޞތމޒޠޭ޻޺ޮޜޒޏަLZ*{Ne8  !O!c!_!S!?!1!,!(!0!:!L!W!^!X!B!! }  {$b'L4E@t E!B! / "o  {`XJX#I{H#0Iaw}W)B]YC.z%7l3ߡyZ:! 1E]wߔ߱4Uz7](QwAh+Pr-G^tlN+Vsb;}!ߎV.2b߮H "[K?xH_?Qnra:H I9|;߰ߥߡߦ߱]-f#Fi&U X B? & 7 C G F : ( u"D LwnGS P _   + y ;   0gK3mO? s [ # ;{V@\^>&%9Pg;_;b&Ls3X -Pl " 6 C Q Z c d f c \ R @ -  V"i";6%ndv,sB #7K]jr{~zsgP1jXV;XV3 - ?&i7Qc+ J6DMeDd:k)"|.KQ6 I?T(B   DY_7 U0<lPiAC M+BwI>NIzH" #9Oh|wT+Q|**ynnAW&hYKFA?FMUao5St$Im0U{?dDd$?ZpnL#D` R35uoL_Jd/BVGG)@;)l; Q/b73\QpX#5C %  Ev,G%mr9#PsEfX [ |  z   i ^ B ; Kp"k8G=39. US4*K tO2 4Ia|5Ux-Ru 2V~2Sx9Tl  jAr6ctpjj<W+'=N^nx{q\B"A h S 6 irH6q'6>L)PTw2?{+-(u-.\D8;HUbiojbSE>Gj5q3 hkH|R 4ZF\30Uq=|qcft ; {>p~`50CuJzF )=Uj|rS.c"KWVWiTU/(E]{=a:^>e<^8SjiGw7NF8S-}!+f 1IQDxXjr8r_OKKSa|{e] ~4kn=fGnw[/eQa= 0 i 1 uG;R_ n k =qyu]|$oe|7hB!-D\v +In>c6^~)Ik/G[ou^A"q::Wa dlK j?,?Rbo{yiP3gX\Nps[  7 }+')J:w&g1Ne), 7^ P.;*XmM '}[,P[SG9,)'0:HTSM8 u PQ*e6)Bz%XE,N! x Bl7'DD!3i GyG /EXj}mN-o4h1;Kk(n7hK4 &6G]u;[z%GkDf6W{1Md}iBl)??BwK.#>p 8(S|h!D UCtbap\RMT`F[..L   ? ]i/@IKG>+4eJ%   u u!hb  Ad~{QDMwqLHGIh%V3&<Vn!A`)Jo6\z7Ur(6COU[^]YSG8&b5Q8N[ n$X{P-  2DUhus^E#B%x  * sh~;+\#&AX "|h r.mO 3#&J:8$ c Czq=dDZ9p6"3kBW"9 ?hX0 "CNe!!Y DxG 5GYkzzeK+|C@_t%At5Z-zh\QLLKNS_hw 'B_|:]}%Ji3Tu )G_ve> `8>WzzRQiak| m?is\*f5y W&BoC" -W@g40_gCW^> [wXkw X}DF@%MamibUI@@ J c ( 'Mf  ,9B7QN-0 Zr {*OqH!5Mi2Oq1Rt4Qp7QjoG Z \8Sp)a%c>$5IZjx~lT7hbk/o e  =VJ u 4^"2@4jaMp2H!W^{XE@ER\inpkbUKHS|A h,Se.  wvb}{wG<0cGz> 'RFy/?Y 1 `n7 Fw>uD%4IYku{p^F)R\>`AJ_<':Um8Uq4Tt6St$A[r  d7W0Es8 9mtL6-1=L[jrq_>\GQo+g[ {GzcSJDGR_xjs,$l|;v " / ADE8c{`8 }!2?t  8 MB&!>x?n & JxGWAX {7_7+E^u!?[|4Tp$Baz*>Sdto]A#V#u8i"Gp,n1sQ1 *>M`l{zcG$G31  : A ( qZ s6'b$FfQhA4al4%?R Ao#4LRJ<1(%(-:EKIB*waO@?d]Z#=2ivU K`S1m;qD'7IUemxy{wqcT?$])y9i$P H e2q[?.,:M]t;Ut$De9Yw"=Wo ^3O |3UiE/&/M{o6^,.(sw"Z /c\[Y G-{JGqq R^P (=HOQL?/JO  0=K b } ) /O3s 7 t6'YyzeAY}3`yM#"<Sl,Fd0Oi,Gaz ,6AIOUUTOJ<3  uHJ L 9o,s> bB)#2BTcssV:q&p T  /FG*x_"*w =>A|Zo6&"u< E) r8Yg#K 5 y.;xybZG-d/WUg|}  lj}xq`0oA&8DS\dkjidXJ7!h:VRJ TY/ ui]YUQVU^hq{-F`|;[w'A`|"WkqT0 Pj0l*i+|GrV<% ,;KXhweJ*RH P  X c.Ot?B}`ArQ?noh&sWOIO\doqrocYRRaL0dt  g {21q{z}j?Od]`N!Lz MWCA 9!ihZN~*j;&5@LRZ\ZUO?0uFq9@J e5b@% !3G`s#=Xt4Qi $=Vo*2M\mx}mXE) xLIWd)NfN7&   )6DQan{u]@|7  = I9]4tSK[FkJ_07H6t e!/*  8 T8IGA5,$$%/5?DA5z#LTaS%9vCY)1 [ ^+r@+2V@7'zR$Xo5MS$z`M8)  $.?L\l/F_x,F`y*AZr".auxqW;q4y>f7~m_WPIJJPV]gs&>Vj+BYu1F^t -6?DGLMKG?6) b>X {C ]&V+y^H:)" *5>K[fsmQ2 b  f ~ U zDLHO1Of@z/k ;Y-  P(} kBi  T=c@.FaZ& &Z *,jv @  c)W"b#'a\1 ,16;;83( \4t? e.Y'tP* vic^][^`gnx-AZm)DZr3Iaw$4BJY]gikihaXI9%^2[r= Lei44x{4s[NCLZA F}O/ EskWAV1a U W<{j3EcHP  ` M%:hMGV|ifS Z # Q ^" m7PzI!m_ND<888;?HP[fu(@Vm 4Ley#9K`mz_D!Z,_*S]2  o Z J ; 1 + ) ) + / 6 @ J U a n | ~ b H # L  H Z , uEh6!zo;cBSUae;R7[^-`.k?|^A&+9L_r2H_t)AUj~ ):ES]hqx{||zuocUB-c7h2c:F8'S_JHc:?n_$whnJUHiWGA<LZgrzxkYD1yR&sBzI a 9  k [ O B ; : 7 9 ? C K W _ k w s Z ;  { 7 . 8 Oh&]M&tXh~qg6q'oEOu]?{2XD \ k7A>7.&""$*39<8*;#\ b . / h xe(%3= p lOSbD;Krd]<~N" kJ$|P!c4Y2zeT?4& *1>JWfu-@Vk~%:Pcw .@LZipzyo]K5lA}KsUD89Ha_6E$/#D1GbgX:mSl+6X"!]/&\?_ - -  \B8JQW[YRG:( NJ e R < l`1 V #U K B u RHbnpcR5^-g> r \ J 8 + !        # , 4 A K Y h v #6I\o.BTgy&,5;>CCCA=7.%~`?zM" k ;  c ?  | k a S K L H H M Q Y _ h u ~ o P 1  i " z  /hXsJ,Vp3LL=qE$ ! )Vs6/P6:  & 7L f  P g /    L H *^_3[ Z 3 1R@#j3:y(pD sS/mCh@|X<vngfbbgiou|!3EXh|(=Pav(7FSdlzziT@$ wM#i>?J>Y0p .&:vy>3@,kD2C|,uN-7^/'nq42aq ~  =zT 8 j r ^ 2  {n*`=,.=^%pN  ; 4 NT' o E  u ] H 7 &        & 2 ? K W c t   ( ; L ` n !.<O_kyoW=! x P * V +  f A  { q d ^ Z X Z Z ` d m u }  f I % \  j |"Zzf5[f. 0xXM_<y2zk)2Bi_[]djpvtwokcaew;|gx9"*:LN.k W +`|xtyyv^;  A E g 4 6 n  q A Cm|c& ' m d +G_LNd$Zc6uZ;f?xM*kO7$+7HVfw"4EXi{#1AP]ktu_I1b9 hH% C{d=>W} ##J#v'd{sbUXyp1iVI@768=CPbzQ(`( .fqC ? B ' S s | c D  o # l  st"{9XU9@Wv  S 7 i ~ b =  p G z _ H 3 #    ! / 9 G P a l |   % 7 I X h y   + 7 A N [ d k x } } t g [ L < &  k G %  i D  d C &  v n j h g i m q w z ` B Rau!\qDuXI[Ri&5{M p%Y%es>9kYy6;u  U v  & 4 9 3 . ) ! !  # ) . 1 3 - #  ]  5 d 4   P 2 N  #   r \*'uBO=S)xaC' b>hF'xdSG80#  &/4?GQ\js'4FUgv!2?P\fv~mT;"yS,~gRGACPi4C%#-0&\*WrtV-` 8MXayQyB7x.?[Ge  S 7 I T Y _ _ \ X O A 3   J  d  5 ISa~btkvckghd F  [  4 Q a h e ^ I 6  f B  z ] G 1      ) 3 A J W e r ~   , ; G W d r     ( , 2 5 : 9 > 9 9 5 0 ) #  n Q 5  t P + e F +  zzwyzv\?K _}1uzt~5S!UA;}r4g%|S5 #"/[z'5[M@:   n [ & h ! a 3   7 l M E ] l &2kcn@}~z|~zdM3dA"hM3~vsnmmnnsv|&4CP_k} '6AP\juybK2sP1 )aOkV@qQq5JAe2M O   S " Z  O8cIR."?e"v7 dE n  Q     v S 4  t \ F ,     * 4 ? K X b o }  / : F R ^ j u  o ^ I 0  r S 4  `H-tY<O h\3GR_do%wWVlcC[#h2xlecejosyyvrokio.{M  K n | y t r v v } z l \ ?  G \.!P Z % T o q Y " Z !`&Ve^ n7r73z(:A9* {9D%dSu9w_QC<55145=GVi V)bC63;DNOG1 y 5 ^ { x ` C  Ie O/x&U R)|8f,7 7 ` k S 7  mU>&%0:DP[er{   ( 4 = E M W ^ e l t w | ~ z q k b U F 8 *  fL0w]D/t\;Y{@3:z.W hj INOyM$MhED^,|wm & / . . ( "    $ ) * * &  V%V+ 2_X  D;P}MM4OKd;xtroprxx}ygXF2x]C+yf[OE;2,(#! #(*15=CKS\dnw "-:BO\cpxu_G.m^RJILYj8v ] fobIkyZ3CX\ p%tE 7qy$d=p/{>+=OW^bdbb]UMA1i6r(5;`#v]UPXiDmnnH +BS[_^RG6%x^I/  %.7?KR\gpx "&,-02123/.($ zgQ;$lW@/ x\B!j.BwZZ/{1"k3 $M|)_vIuT>( "$%"#5T$4?euR(tJ& ?nEviK+#rj6-QPkExsokkjlppvzvj\K;,s_K8#||wvtuvv{}$/7?JT\fnz  |iR=' ._ Q/}\SU#h$NF_?( #@gjBUTR ^bH|    oGz=q+_T34U d6SCsr^H2  (18=IPUaenwrdTD2t`P<-iK. N |$[iX-bJdj]^rCpvP)uomnorvx|zzvtrpz;K a-D`r}~|vvrrrvvzywsh]K4`< #Fr#C]hgQ-KdO)xx5Di@ztkjgdehfjnowz~}si_SC6& o^OC4& %15?DNU\emr~ $"%'%"!}jZF6% -FeN@2i-CQY\XM9 T s;b3q`OF=60/.,116?GRb{!d seRL ;]{qX@ ~Jm7c6"O~[ B{/Nln]M:+{~}~ !%-37<DJOVY]chlpswy}~~|zvomc]WNC<-# scVD6(v_D#H z)m!-9WM=d_E'&\j%L`{F #'%$!"! iH-'CiA)E]{O`!W5wpjhdc^``cdhhlory|~|une]UI@2( ulbYRID<:4/,('%&%'$)*,006;=AHKPU]`gksx$%++13658868550-(" xlb\TRSS]gu'P} ;n=`{zb@yL!wR0 4e0N2"N>z1BOX^chgigec^XTI=2! {T/V+}hTE;55;DUf.X7a1AKRUXSNF=4'|uspmkkkjjlnpptvy}~ "$$)))+++'(&% ti]PE81#wbG+ c)eo^X Z6!:Nl~iVF9-% ! "$&%%""$$+3E`A(}W~o[A/6Qk^-dllNX3zsned_^[Y\Y[\aadeikqquwy{{z~~|z{rsmie\VPH@8-$}~~ $&--34:<>BAGGKJJKIJIDCB=92.'! >Wy$Ef z]>nT?( 1Lm2t YWF:g  uX>oQ9"0E_|2Ojytmhga_^YXYXWXWZZ[[__adghkprtwz}}wog_UOF?5.& ubK0}Lt5Krhcio~ |vtutvyz|{z||{{{})eHQK >VclvwuwtsrppoosqsnnidZQE:+  +=IW_a_WF-^*QpN/}xnkd`]YXUUUUVVWXZY\``dbehkkmnknmmikied^]XSNJE?;3.)#  "'),-166:;@BDHIMOPTUTYY[[]]^_]\\[YYUOOLIB?94.(#  !*:GXg{-;KVbiruxytqjcXK@0ueZPH>;40.+))*)((,-027=ER[n|)wukic^]XXTTRPQPPPPPPQPQRVTVVWZZY][]\^_^_Z\]YXZYUTRRMNKJFEB?A>:9873432.00,.--.,-.+--1.0115447599:=>@@BBEFFJIKLNPQSSUXVYZ\\``acceeigijkknkpoonprqprrprnpnklkjggfbc`_]]\\ZXYZ[^_bfjlrw}(.4:<ADFFGIGJIGHEGCDCB>@<>:97632/,+''#    garden-1.0.9/data/beat/line1.wav0000644000175000017500000003574012457263310013271 00000000000000RIFF;WAVEfmt DXdata; -5KZpKdZ4r2Ya^K  u a  I B?x7p0g$bYQ IB};t2k(d"\UMDZ    0 4 *  0aQ C|g43Tlqb`^ahruhXG4$ .{l^Q!D-89.D%MU[^abca`\ Y#W&T*R1K6I9H=CC@E>H=M:M;P;Q;Q:S;T@@>@=?==>;=<=;<;;9;8;99vRIAS@QGE[.ux7Pa),u7l=iAiBj@m=t4*!VH??@KTfy~hS>) &+,0,+(# w8,.2-06'BSjl U$?:,M] ku|{u mh_&X.R4K=mZ2:YrtgZI=2'$,3 6<>@B>?<:41, ( "!                       &09961(#     "#"!" $!##&"%$'$&$&%''(&*'*()(+***,+*,-.*....--/04cA[D];g+}(XP0u pg(_*[-[*\&agr z 9p#aR& %9Oemu`ZX[^ezlvroxnzm{n|pzryuwvwxxzxzx{x|y|z}||||}}}}~ Q)hj!$  @nkG3+/:}ImX^bTiNmMiOfRbT^YY[V\T[SZUYUWUWTTUSTTTRUQTPSQPRPPNPOONPLNNMMKMLKJLIKIIHJHIGIGHGFGFEFDECECEBDBBBB@AAA??A>?@=>?=;><;<<;;;9:;9997:7967J L1mj*Vj `&5,_$,L[1JhpfMg,ayLm5^"Mp8a&Ns;b'Ow;d'Qw=d(Pw<d(Qx8b"Hn / U }  ; b H m  * S x  7 \ >d"El&Kq+Qu.Vw/X{2Y| 5W 3X| 0Wz .Rw i2e7_]:B^J>v~ic ?_Oh.T{<_"Bm(Mw 0U~8]b 1 R v B f  0 U v @ f  - P q =[~'Ei/Pr8Z{ =c%Fe,Jk+Pl .OOtuA8iB,("M`4b_P-Zg74{8`{1Lt>d 1Pt@a .Ns;^%Hj0Rt=]{$Cd*Ll0Oq3Tt7Wv4Yx6Wx4Vv2Sq,Mn&Gf!>`~6Ut,Jj " ? ] {  1 Q k  # ? _ |  0 P j   : [ u (Fc/Nj8To;Ww!?Zy$?\x@N1m>[D4VE2o[:q` 5Fz/BjBX6Ro 'Fd9Ww *Hf6Wt'Da1Pl7Wt$@\| (De} -Hg/Hf-Jd,Fd 'Daz#<]s7Sm.Fd!=Vt0Jg <Xq , E a |  4 N h  9 R m " < W q % > X p #=Xo#9Sm5Pf,Ga"9u R/=pmLR|=Ls.Fd} ?Ws/Jd;Sn(D]v0Jd|5Ng8Qj8Pk6Nh2Jd~+D]v #=Un2Kc{&=Up/H`w7Ne~ !<Ri %<Uk#;Sj $7Mhz  1 I _ v  * @ V l   5 L ` y  ( < T i |  , A X m /CZmb=#Bo:)Zi~ ;6jk :Hkw %=Rm*?Xo)CZn)AWm&>Qj 8Ldz,E\o "9Le}+AUm0E[p2I[r1H[o/AWl';Qcy 2E[n$9Kau(<Qdv';Raz%:M_r 3EYk~  ' < O a r   . ? S e v  . A T c w   , < P a s 9@g;56fD^2)O_n 5:Yf7E\p$:K`q&8Lcs#5J]p 1EUi}%:Mar,?Sfv -CSfv -?Rav'9I\n .?Rcr1DSft1@Rar*;J[m|0?Q_p0@Oao ,<J[jy!3@P`m}  ! 2 B O ] n {   + : I X g t f|cfA7++Bi ,??lY{ )=F`h$6FWhy -P_o.GT^t5$dN>C;n;[0uPq,0GK`iy %1>MXgq'5APZgu #.>HSclz "0:HQ_lw%2>IU_lw "*7CLXcny'2<HSZgq} "/5CLUait~ '1:EOX`lu~ '1<EKX`ir} &08BIR\dmw~ )08@JRYvQ .n$Ly&5.CJSbdzw"*8?LR`gt{",7@IR]eoz"(3BHJOSV\^bfknruy} !$&(-/1588>@AEGKMPRTWY\^bcfikmpquwxbZj &&/189AEIMRV[_cimrt{} %)+1369>BDHJPRTZZ`bghlpswy} "#&&*+..2256:9<>@ACFEHIMLOPQSUVXYZ\]_`cbedghilknnnpqstuwwvzz{|}~}u~zgarden-1.0.9/data/beat/blip.wav0000644000175000017500000004264412457263310013210 00000000000000RIFFEWAVEfmt DXdataxE|HK8\eR&.wRdeBr@\-|Nޛj9ېc6آs?ժ{Mҭѐ-H3.4/5072839496:8w;9?>??fA@BvA9DzBECFDHEJIFJJGJYHKHKHK5IJiIJIJI~JIZJ J8J(JJDJIZJInJIyJIJIJIJIJIJI}Ja̱'R}Y?Q`)#vOص1b+3дA̴EϴBٴ4" C϶dpεS6 %;Obڵoӵt͵}͵JHJHJHJHJHJHJI~J,IbJGIBJcI%JyI JIIIIIIIIIIIIIIIzIJrIJpIJpIIqIIrIIwII|IIIIIIIIIIIIIIIIIIIIIIIIIIIIIII%ͷطз%@_rN+ӵ!EhfP?˶2ٶ)%"%%.5?ضKѶVƶep{c=EMDMDMDMDM)EXMzELELNFLFK?GKGJ.H+JHIIWI^IIIHItH)JAHPJHmJH{JGJG}JGpJHYJH@J7H JSHIsHIHIHIHqIHPII4I*II=IITIHaIHlIHrIHxIHwI˹йHq3ʹnLõah#([eK;ͷ1ط.۷2ط;ηI÷Ypt`жJ7& 2@IPZZHIH IHIHIHIHIHIH IHIHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH%ѴôʹֹFr6ȵZe"(dqCǷ "ֶ4ʶ<Ŷ@˶=Ҷ7ڶ,(:ٷRŷfyyrȷmϷmӷmC MxC]MLCnMOCXMtCMCLDdL}DKDiKEJFTJFIGJIGHH]HgHGHG IbGDI)GsIGIFIFIFIFIF~IGbIG?I?GIaGHGHGHG~HGYHH9H/HHGHH[HGlHGxHGHGHGH\qJ}G}Prd[Bɶϸ$P{|P,η η,EUdlrqtng`U÷LϷA޷5," #*05;<?GH(GHGHGHGHGH#GH/GuH@G`HRGJHeG4HxGHGHGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGa6ջĴ68ôRTz-ǹLb a_#Om~qno{n[Eط)7ոRp}o¸aѸX۸RRO1JCJCJCJCJ DJND?JDIDIQE&IEHFaHqFHFGG\G`GGGFGFHFHbF7HKFAHCFDH?F@HDF6HNF#H_FHsFGFGFGFGFGFjGGPGG8G3G#GCGGRGGZGFfGFkGFnGFlGysFwF{@;5.%Ǹ Ӹ߸ ܸܸ޸޸۸߸       )EHEHDHDHDH EH*ExHQEIHEHEGEGFtGLF@G}FGFFFFFFGvF)GaF9GMFFG@FNG9FPG5FMG6FHGEGG^浳MIջ4c"[[ ϸ5irXIEHUiu[:(۹FeygƹW׹LHBB H6DH$DH$DH6D~HSDXH|D'HDGDGEwGWE;GEFEFFF4FVF`F*FFFFEFEFEFEFEFEFEFEFEFEFEFEFE}FEmF FXFFGF)F7F5F-F?FFFFFMF FRFFTFFSFETF' Ĺ ʹϹٹ޹  mCHBIB IBIBHBH1CkHuC!HCGDvGhD!GDF ExFZE(FEEEEFoEFFCEkFEFEFDFDFDFDFDFE}FEfF$EOF7E6FQEFgEFEEEEEEEEEEEEEEEyEEqEEmEEcj2':nf6f)ԷHJܻ,n\S ͹/[w}[PMQ]nfLù.%ԺFescVѺJٺGA@WFxD^FoD_FrDUFyDIFD5FDFDFDEDEDEEE(EE;EhEMEQE`E>EoE.E{E EEEEEEEEEEEEEEEE E{EEuEEiEE_E EYE(EME-EGE1E>E6E:E7E1E>E,E?E'E?E"EBEEDEEAEE?E*.) ѻ)KmqJ' ٺֺú"5AKTUUTSJD<ɺ5պ*$ &)+N AH@#I@0I@I@H@HGAQHAG BzG~BGBFbCFCE8DFEDDDD9ELDyEDECECECECECECECECECECEDcE.D@EPDElDDDDDDDDDDDDDtDDhDE]DEXDEmخ&%ḻ`:C]ۺλ\Y&ƻ޺ Ǻ"3;<:3ú'Ժݻ,ʻCYkzle\[ŻYǻY:DCDCDDDDDDDDDDD-DD6DD@DwDJDiDTD`D[DXDaDMDiDEDkD?DmD9DsD4DqD2DoD.DpD.DmD.DjD0DdD/DaD1D[D4DWD4DRD6DND9DID=DED;DAD=D;D?D8D?D4D?D2D=D.D>D.D=D+D;D,D:D)D8D2#}>]TQW\Gw(ӹɽ PM ںƼ_Jջ 5WsvWKBܻ@ܻ?gHT?H/?H1?HQ?dH?H?GK@FG@F9AIFAE;BDEBD,CVDCCCCGDACDBDBDBEBE}B E{BEBEBDBDBDBDCvD$CQDEC-DgCDCCCCCCCCCCCpCDcC DZCDUCDQȽպԽҺԽںǽ캵'{LVu0ʻ󻼼?xa[A,μռڼܼټ ؼѼ ȼ)¼4AR]jt|vsonnnBDB!DB(DB(DB$DBDB DBCBCBCBC CC#CC2C~CDCmCRC\C]CKCkC?CtC6C{C+CC$CC CCCCCCC~CCxCCuC"ClC#CgC(C`C*CXC/CSC2CLC8CCC:C@CDACBCaB9CBBBB+CqB[CBBCBCACACACACACACACB}C$BdC=BICUB-CnBCBBBBBBBBBBBBBBBBBxBBsBBZBTGVF^?n.ʼؽ缿;xPdeSzG:/,%'%(.4;DMV_hov{zwuttuw@4D@KD@TD@MD@7D@D@C@C$ACQAcCA.CABABBBBIB3BRB*BUB!B[BB]BB\BB[:wȹʹ9DﺉYȻ8F۾zqͽɽ_IǾټ˼ ȼ ̼ ׼Ծ=]|bG*׽ !ٽ3˽@LSX C? D?D?D?C@C,@CU@iC@0C@B@B1ABdAKBABAAAABA0B~AIBdAZBTAhBFAmB@AmB@AjBCA`BIAWBQALBZA=BgA,BwABA BAAAAAAAAAAAAAAAAAAAAAAAS6e(t!)3z?pIlRd[`_\gZlXqVwWxWyYz\{^{`{eyhzlxpwsxuvyv|x~zz{~D[? CI@$BA^AA@UBN@B @B?B?B@BP@PB@ B@AAAPALAA#AAAA@A@A AAA{A1AdACAQATA@A]A6AdA0AaA/AaA0A\A2ASA:AIA>AEA?A>ABA:AEA5ACA4ABAЪȵI︗m5xN߼Tl?TbW꾖QM4AshF;о ¾ξݾ#E=B@CA/AI@A?PB?SB?B?A\@GA@@A@9A@KA@FA@/A@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ۻN'% .'bJ]7ʾzSD#(>yUieYuUwT{Vz]ubrinomslykxpwqwuzxv{||{~}'Ϋ7I6I48G:EE=YB?@A>B=$C=B8>OB>A?@\@2@@?A?(A?A?@@@8@o@c@F@@-@@$@@%@@1@x@>@e@L@W@V@L@^@C@a@A@_@@@Z@C@U@D@N@I@G@K@E@K@@@J@B@G@>@G@=@C@?@A@?@v˷yGC0Ćrؽd Kÿeb:|:oSN"ڿ׿ dr99A 2Uq$f&iSP55C! Y  h p)w3y<EK  R!""#X$%%&`'(()a*&++,h-*../o0-112s33445z67778|9=::;~<@=>>"xOἄɋ9 (<wϼ̹Сѥҫӗ_O׉SSܡܳG߆x{ym5h@oA|@AD M ORWV  \  ]_b"c d"c& f!%""#f$%%%&e'%(()h*#++,e-&../c0"112b3#445b6 778b9::;]<==>byǥǎR( ʇ͊J%4 VҊӤDHBa٫ ܙt1VKSFc7p+u%t)k,j,i,f(f&a!a\ [  U RP I FA}: v!6""#q$/%%&j',(()d*$++,`-../W0112R3445I6778A99:{;:<<=)ĺw~o`ʾʻEnˈͰ Ϟ*zCj;~ ֬0(ىd(޹ހUUlS[g7t!uhZNF A}7q1h(b Z  M E}8r/f'[P !E"##|$:%%&q'-(()d*"++,W-../L0112<334s5/667f8 99:X;<<=1BTƾj5ȋO)ͳ(ce'Йҙ8Հ>vجېwݪO+="; :m4a(VJ@q2d#XH~9p,a  P As2eUDu3g !S"##$B%%&u'/(()b*++,O- ../>001n2*334Z5667F899y:3;;<`6|¸ιXv5Ǚ$B<ʃT7ϥӈAuف1mxݦ'?]K&2\1E:t/[I 6k$Q?p* [  E t0^Iy1_Kz2 !c"##$H%&&w'/(()`*++,D--.t/,001Y2334@556l7(889S: ;;~< (9Ɲȣ 7Rʊ̘IVuѼ1_Ա5-׽׌@ٿc9ܯJ#߾ߕ7r,U=r#S;l$Q ~6dKu1^Bn& R ~ 5aCq'T ~6_C !l"%##$O%&&w'0(()[*++,;--.b/001F223k4%556O788u9+::;U<ĹFۻ2σo92 ̨8̦͏6CԋՑzhبf۞کFߛY6 ;| zfz,isK_&Gl-L y/Y4_>c  B k Iq%Ot(Ot,P !!w".##$S% &&w'0(()S* ++x,/--.T/ 00w1.223P4 55x6,778O9::s; ?4Rǎ˫δdNоӑ'AZׂ֔ D|۴/Aްޜ2\'/ wDfGa#>e=e=c:[~6 Y  y 1 Sv+Mq!Fi>_ !!"4##$S% &&v'*(()K*++j,"--.@//0^12236445U677s8)99:G;㫽ʹKRɡ̺Bm"Ѫ}XρKWR,K!1sOٯ[:އ|_RM r4? xA`{7P t&Gg:X t, H e 9U q(Db}2Nj !!":##$Y% &&t'&(()A**+],--{.,//0K112b34451667K899g:sɉ)ơ̆ǴOM7tҭеR֒/Xٰڱ!vݞgg[1;Uz#K\w0Hg|4Mf3Kf   5 Mg}3G[ j~.<L !Y"##g$%%r&''z()))*5++,;--.A//0F112I334N556Q778S9%? Üt76͋ΞͰЂ^ϭrѾBӯ ՜֡פ3 ڦqDcބg [E}XGUn g%|-63;=86 2 , }&tle YN@4$n _!""L##$:%%&(''m())Z**+C,,-'..o/00U112=334!55#DZ qL9Чmшwק؂ׄU\P۪lޮc ߕyaE&vvAjHI$kVC#fO2wU7wW 4 s  O .hC|T,e<r D}N !""T##$%%%X&&'%((X))*#++T,,-..Q//011J22}TIQZ\J҆m|ՋFؾ2ڙ6?h{߬ߪ?+ZI:vM}"YS!T"UK}Ds 9f*UD o  1 Y ?g"Kq,Qx0Su)L n!!" ##@$$b%%&''/((N))o**+,,8--U..r/*Yq~̖EdjM1Eq %ږݭok\0uSXRZHHR,h[zHs3Vw0NmO*ۏ(?^,6>HYh },;L[kz &4FS]kx #/9CLX`gnv~     " '*+-01/32/.+,(%#  !! ""###|$$r%%l&&b''\((Q))aIBlqxf܃ّ-;FxDs\(aZriTHGL V^hlkgc\TIA90*" }qg^SG;.   | m _ O>+ p]J8"pZE1w]E -!!"""o##T$$9%%&&d Mܰ0ټ` jߘcT^sGtW9kR9# nXA&hP6rW=#z[>#vV7 h H (  w U4_9b<^<Z4wP(jA !!!Y""-##$(6ڎpUdphOEss1s MV#{O#|]>vP,yQ%iA}R+g;{O!].f: q C  y H  ~ NOMJyCs=h3_&Px@ h -!sYݟ^fuXWKPOSL:To-U*wBU|Gq:o5^'Oz?f)Ov;^Bc&E  d $ A _ |7S n)AXo)?R fy0BR `Jb# @S evWJ_~@|7o$x6Hg!t/EXhz1?O]jv)5?FP X  ` c  h  m oruuv usplgc [UNO(9k.C }J+e@=_ ;ULGPBE@74)#ukcWMA2$tdUE 0  n W B /}eN4hL1~`B$pQ1z6(s)1+I Rmp -6Np>1%e^;*w\D)w[=#lP.z[9`>c>a:Y/w M $ h <  V ' n ? R"g3vDS_+m5x\_",1&]i,\,a\Gid$L/F(PYY UK@7u*i\M=x+fQ>w(`I.fK/f G}%]:qM& ] 5 j > t  J {  P T"W#U!Tk*hwu.&au"UMRGk+>`.f=f 9o m-]Jx3bIv - Z  = i  I u ' Q {  + U +X=5||R}[LpOu.p&L 5hGw+W 3b=iDlBnBj<d 4Z%Ow?f)Ry9_Dh#Jo & K p  # G l  ? a  2 T x CR-e(Gl^IHzeC;G BT Wq2Lbz4Kdx*AXl,ASi~ 0EYl~(9bd-1l V)IP{ 0?Yn"0M[v1CXl 2CWk} 5EXi{%5EUfv"/=NZjx*9FT^my "+6CMWclw ,P-&#+(c8Sv &B@c_~"5=PZkt)3?JVcmw  +4?GQ\ckv} #(16=DJPV\bimsy-9$B?OV]nj|  $-4;AFMSY_gjqu}  garden-1.0.9/data/beat/drum1.wav0000644000175000017500000004006612457263310013306 00000000000000RIFF.@WAVEfmt "VDdata @ ) V e4vwV3 %*++(#"#$%&'')*++,--//010213343334434444323211/./.,,+(('$#"!   "&)+/257;>ACFHLNPRUXZ]^`cefhjknnprttvvxxy{z{}|}}~}~}}~}}}||{{yyxwvttqqpmlkhgecb`\ZYVUROLKHFB@>:7530,*'$     #&(*-0267:=@ADFIKLPRTUXY[]_accfghkkloppqssuuvwwxxyzy{z{zz{{z{{yzyxxwwuvttsqqpmmkjihfdca_]\YWVSQPNLIHFBA>=:7520-+)%$!  !"&(*,/1357:<=?BDFGJLLNQRTUXX[\^_`adeffijkkmmopppqsrtstuvuwwvvxxwxwxvwvwvvuttstrsqppoomlkkiihfddc``^][ZXWTSRPNMKIHFDA@=<97642/-,*'&$!    "$&')+-/12467::<?@ACDGHJKMMPQRSUUXYY[[^^_aaccdfgghijkklllnnopoqppqrqrsrrsrssstrsrrssqqrqpqopnnmnmlkjkiihffeecbba`^^]\YYXVUTSRONNKJJGGECAA>=<;976420/.+*)'%#!    !"$$'()++..11346699:==>@@CCEFGIJJLMNNOQRRTTVWWYYZ[[\]___`bbbdcdeffgghhihiikjklklmlmlnnmnnmnnmnmmnnmmnnmmmlmmmklkkkjjiiihhgfgeedcdcbb``__^^][[[ZYXVVTUTRRQOONLKKJHHGEEBBA@>==<:886633110--++)(&%$#!      !#$$&&((**+-.//12245676889;<==>?@ABBCDDFEGGIIIKLKMNMNPPQQQRTSUUVVWWXYYYZ[[\\]]]^]___````ababbcbcdcededdfeefffgffggfffhhghghgghghghhggfgffggffgefefedeededcdccbcaaaa```_`_^^]^\]\\[Z[ZZXXXWWVVVTTSSRRQQPONOMMLKKKJJIGHFFEEDBCA@A?>=>=;:;:97775533311/0/.,,++*((''%%$#!!!      !""#$#%%%&&('()*)*+,,,,../001112233454557688898::::<;=<>>>???@@@BABBBDCCEEEFFFGHGGIIIJIKJKKLLMMLMMMOONPPOQQQQQQRRRSSTTSUUUTUVVUVVVWWWXXWXXYXYXYZZYZY[[Z[[Z[[\\[\[\\\]\]\]\\]]\]\]^]]]^]]^^^]]^^]^^]^]^^]]^^^]]]]\]\]]\]]\][[\[\\\[\ZZ[ZZ[[ZZYZZYXXYXXWXXXXVWVWWUUUVUTUTSTSSSRSQRRRQPPPPOOONONMMMLMKLKKKJJIIIIHGGGFGEFDEDDCCBCBAA@@@@>?=>==<<<;;:9898876755554423221000...--,,,++*))(((&'&&%#$"#!" !       !!""#"$#$$%%&''('))**)++,,-,..-/./011112232435446576787998::::;;<<<=<=>=?>>@@@A@AAABBBCCCDDCEDEEFFFGFGGGGHGIHHHJJJIJKJJKKLLLKKMLLMMNMNMNMNNONOONOOPOPPOPOPQPQPPQQPPQQPQQRQRRQRRQRRQQRQQRQQRQQRRRRQRRQRRQQPQPQPPQQQPPQPPPPOOPOPOONNOONNNNNMNMNMLMMLLLKKKLJKJKIIJIJIHHIHGHHFFGGFEFEEDEECDDBBCBABB@AA@?@?>??=>><=;<;;;;9::98888667656454433311211//0//.----,,**+**)(('('&&&%%#$##"""!!          !!!""#"$#$%%$%&''&('()(*)*++++,+-,-.-.///0/00012223233344555566677768879898::9:;;:;<<;<;===<>>=>=?>???@@@??@AAAA@AABABBABBCBCCCBCDDDCDCDCDEDEDEEDEDEDDEDEDEEFFFEFFEFEFFEFEEFEFEFFFDEEDEDDEEDDEDEEEDEDDDDCDCDDDDBCBCCCBCAABABABBAA@@AA@@@@?@?>>?>>=>=><=<=<<;<;<::;::9:::99997788677566645554342333212101/000//....,-,,,,*++*)*())(('&'&&%&%%$$$###!""! !                !! !"!"!"##"#"$$#$#%%%%%$&%&&&&'&&''&((('('())()()))*)*)***)*+*++*++*++++,,+,,+,++,+,-,-,---,--,-,,-,-,,-.--.-.-...-.-.-.--.-..-...--..,---,-,-,,-,----,,-,-,,+,+,,+,+,,,,*++**+*+++*)***)***())))(()((('('(''&'''&&%%&&&%%%%%$$$$$$###"#"#"""""!!! !!                                             !&(*//47247:;>BCHHLNQRWW\]acehY[__befijmnqttyx|mpqruvwy{}ooqtsuwyy{z~~_^b`cbeeefghjhlllmoppprrst;;<<<<>?@@?BAACBCDCEEEFFFFGI~}garden-1.0.9/data/beat/drum4.wav0000644000175000017500000002001412457263310013300 00000000000000RIFF WAVEfmt DXdata{smuN/} :n 4Y<&%.Sū͉5; ]m҆Cy53?e1UA2:I>Rߺϓ5pRN5:՛/EqMWYN=2-/8GTUE+PX*!]yeވnNSJPW/5͹+Z\TeӀ-r*7S BDk0> $-#{7KR-_U6:lz!b6'(.3O1 ر>< *>3q! %m/'2?'+ CB4(N*;{Wa[KV4=| @9j#22 5Q{+nYkdlmvjW+[my‚"~h:KR4dk*cn +,+Séme9R_ް,%y"Z'S %$##d)58ACGIDC|9M/V4O;IGRC?Y)0Q=<% ZBIa`؛)T !8:1 q5q{b .oaY H ~ H  C)/8$$)EӅ.fآ P7Vٌ `2a{Z Mc2'3rQT`;D&/{'(lȶ`%8 u,J nޔ* ,KIV>8CL10,-*AD/= r?ۭ &#D -=#IU,6,u%Wޘ[) M0\Yh?D'*&4]-fQ_  %,'>}vشDq- S!ʃsDfΎڶz 4xXH s,<$jEL* `-(g$ vO 71AIJI_P #1 \*$R #yЉ)$il7 ߭JE`,˒tuJ"3}j2 wX]? C&4X /RdYx~ hM2>=4rcii%-'3W 8 :]]m1?t20#*4' o+N/.*)M(,,&Vs}/gC%[P- CA` ̸ݽ | ],,DGKg| D$2V5L &H Qp''=lT%= LFK#a.0 O- I ! .."C|82[=/J$pK'0E  H}  ofSMX 3O݂: g r^qW <^ qt\fx" S e>A! %F6|] iH 7K '-.G F#&m>|e&Z^ I E,&d&$+#c#Uf !yJ  m<{/ *Fo +pa;U 8est'B %,O \\O {/M:/b/ | y}  }  o3j`\.NAcE @Nu݀FN5q',|MF6y.c(~pR (e-2 36*Ps v m(8]A K OnN  5?QMttzJqi!#J^ !VD6r!%#5#Yޝ8! 9 e}&/ 1  9u# n Scv 7 |_ Q,Zl3@ \ : \j"߬ {%E e'?<< "R"H P%r(% a H 7 Po X '^(; Kb3NTQ3M^u /! R< IQU{C.U{=W zr%HsVS5$o !v^VV ?w-} R T?!Ji.LX?CJszV &l AH G w!IgI 4 ?ݱ *rf 'T,h n (]lb@ SXmv- 0 )zu} 66l$D&Pu?%6EA P3tWKy#UG=@ 81nWVWCWk W !  W lsz U @X8M5\W  ]k| ~ 4y>'[s'z[> 1 .e )fTK>]W] qp`VE;,u * >U?. iP.Ec|e7Ukm_d_M,n " yVmf.7k @ @ $2h{=_)U-t[Ln 0^>C6TOPf| h< gKM0 l]']yM|Kzf =tDrl>=\}> 1@s 5  w ? B ?&'==u%_'= us} Tm}}) |T&/T]UlgV&&0Mk/&} _ &Kc/H{G' ?=46l@ SES _|^  rV '0 eN( =kdLEy/d=(/M0 8=>\e[T]6Nl=T[@ F1 ]TT67 1? _VsFu 1U&ne  V|tu}g g  7dN.$6.m77&6]|eK5]/@tg%nlD/...'OTLDfd\O^G {(N=N u An ) s?'/>sUu6O=]V 8tLnF.6WOVco/>5VlG7c-&5eU7t{8u./Ft{e|! udUFM|eMW- {u! /KEL.Uct1N&d-v\>'EmT_c^@FVGV@ )^NU=|GNm}\=%'Fmk}'jT}TMdUsWGVO| /6.T'TM F%n60V>>u^M{/L6L''DN5%GdU?l=k>mf>e .ul}UW~>0t0l0m^~z]|(Tl?l>\7r.T'}e>f7=Ent|5Otm@n7V=dutkH]/tM]g160M?m/77{8E' DutlVEuelENmUf|?=ele''?k]|O6&u'V0D=tUV>='6'eNE67.6N]VFM'VU~MUEV0G.F] VV\}e /garden-1.0.9/data/beat/flute2_s.wav0000644000175000017500000006455012457263310014005 00000000000000RIFF`iWAVEfmt DXdata }vct a s  Jl B@MzQ.2m,PtAg!,=L\n~1F]r'8HYk|  $ 2 O !!"#"%&'()J*6++K,q,Z,,+*/*o)('\'&n&"&%%%&=&r&&& '.'E'Q'L'='!'&&&j&6&&%%%r%`%Q%I%E%C%F%F%H%L%J%H%D%:%1%%%%%$$$$$j$#"!9 MpZ2 U*N Q!+""X####################$$$$######?#"f"!J! % 8K o .!!!"*"I"W"]"["S"G";"/")"$"&"."<"M"f"""""##:#T#l#~############### $$ $/$;$I$]$$$%%8&&'d())*i***Z* *))|('G'&*&%S%%$$$}$~$$$$$$$$$$$$$$$$$$$$$$$$$%9%l%%%1&t&&&'8'N'R'K'9''&D&V% $n" (9!P!j#5%&())**)#)f('&%$D$#G##"""#g##$}$$3%y%%%%%%%%F%$|$#L#"!C! ?  ~ !!\"##l$$x%%&8&C&7&&%%%l%E%%%%%% %%,%B%\%u%%%%%%%%%%%%n%S%1% %$$$$$p$g$i$p$~$$$$]%%&Q'#(()j**M+t+e+ +**R)~('&% %Y$#^####;###?$$ %k%%%,&H&S&M&<&&%%%%Z%@%*%%%%&%:%T%|%%%.&{&&'`''''''''&&$": ->;(Kl"[%'*+, -,],l+7*(l' &$#"C"!! "i""#C$$%:&& 'b'''r'A'&& &r%$s#2" };!JeQ!$#$'&l'm(,))))l)(X('&J&%'%$s$J$>$R$z$$$K%%%&&\&&&&&&&^&8& &%%}%O%!%$$$$$$$$6%%B&'(1)a*+,-4...u.--,*W)'z&*%$#="!d!M!j!!"""9##^$$K%%%%&%%%Z%%$$c$7$$$# $$$T$$%~%&&k'((Y))#*K*7*)(&X$ J E W"E'T+.0 2^210.,I*'%#! v !"#$%&' (f(((K('Z'&C%#! x Kp;6"c%R(*,-..P.x-O,*q)'&U%T$##""0##1$$}%%&&A'''(!((''L'&q&%[%$&$##"&"!!!<""#d%*'9)t+-/ 23 55654y31n/,I*'$6"2?{8)>`z c!"""#""n"!!!  yQNsz u!"^$-&(*+-./u0j0/r-*G%BI (&hik "h),/3688641.*X'$! _!"$H&'()]****%)'?%"$s- V\c56dU7."R(- 2E5N7.87642/,*'P%#D"!J!!"#%$a%&'()x**++*h*)((&j%#&"d 3!5%Q)-2#69<+?@A@A?=6:62.)%8 9kK V . d Hh*XD_}VDv!n%)-1,58:W;;C:71*n! V^TnVܼ6:v a)!)1r69;;96,3.$*%i!j e"$'L)/+,-.-,*&!t e/py%.7u=ADlEDaB?;61-)9&#! !/"#x%g'Q)#+,-.z//j/.-o,*q(%"&U - 8;}% -4z;AF]JLMMNK^HvD?~:4V.p' Jf B[XV   $  z K$,39v?"DGyIIHE>5) . iTs}5T*M&o.48::Y9S6?2-v(|#u0 Dh!%G),/1c3 4[30+$4vү_˜r=A+7!AHZNZQRPMEIC,>O82-q)(&#"i"#W$3&m(*9-u/l12444420.*%o z "Wcc&j2o=G OTXXZYWSOIB;4+"fdaLo{3s}EF'MG"-K7@HNSVVsURKB6&(`ƍ;, ?]Mf '.36c7n63F0+&!6Nm<$*1/468q;o==k;6-O"=>ۅDzlGIe!J0d=YHPVYZYUPJD >7G2-)]'%%5&')",.14X6*8e999185 2,&rR%~ vkݒ֡I^)9HS]3cSff`d`ZRJBB:]1'SV>ָY֛.ܶ-d0M`# [gyo*v7?CPMKUZ^^]IZUhMBj5%ӗ"7?dΠC0A &,022-1L.m*%1!g83^)%, 39?EHKJIID%<0!CݼτOH`n/\QP$4ALEU[2^^\YSMF@93/n+(''~(I*,/26 9;=?1?>p;6-0& KK'r]bO~.@eP\/fk nmai~c[}SJA8/$s pVV6'93.Y+)-(q() ,$/2j6(:=@BCCA<5) @zF߳|eBB!17CR^glnIm0ib=[RI@:8E/k% NhLܖK Ӯy|ALGgJbaSj\%U5C>P Z`dfd`n[cTK@r3$5pǡƸ۵D ɹQ.iz $^(h**)H'#2 G;MG&&2.-6=EKK%PSUT;QI>/ ϼ6Q"$ #2k@KJT0ZU]]\aX/SLNF?993/+)([)+-11589?=@D#FFE B:O/ D($SֹZA 0BQl]eklgkygaZQ6I@80#(\i>WVO0c*6ْT~SV'&6DQZ1ade6dj`ZSyK1A4%oCڻL,ֺ0: ["%"'&y% #7gl & -n4;BHMbQSST>SOpH=5/_ be8ֱ̼D߄/gBCEGwG=EY?w5(TNλtOAh`;Ugu(/)@NZc4h/j8ie?`KY{QYIbA92*&"Dl}mrC3F%?_Q iE_&F6JD4PY(`cd]c_`ZSKSB6( &ْ޼OeƚVb= )1 "#"!&{!a&<,289?QE4J NPR"RP0MFA<. I&7 ]Jgs`#/ *7"CmL@SWNYX_VUR%MDG*AA;51B.F,+H, .047;U?B>EFFC;0X"p`ޤ]T{yLm',<"KV_-egCgdd_YQJ}BV;4.&JK b |hIDٿn.qݕהՃԁՁ?&65BNX^vbcdb _ZS3LACB8+!" 5O)ǦӸ>ֻ1V?<"%/ E }p #',927=BwG)KMOPOMJnD:S."C͡L ٲ|Àh4CE#q14=FONQSUgVTQSM!HB=830.-O./25h8;3?/BDE0E A9-{ffGΝϹWsظ&^j(8\GPSe\vbee|c3_YYR'KC<60}*# ?D\bML z 4Fg$3 ALU\`AbVa_^YSLoD@:-]( Öb8_QVWqe6S [ 4$w(T-27?=B^FIfLNNqNZMYKHB9(.>jʼ"k|ڻ€VSA2*6@HKNQ SsR>PLgHC>.:G6G3O1l0013.69<?ACED?7G, @ܴAß@Sڴq^0ӞFk&$5COXY_chdb_YMSHL0Ef>I82.(" ub $#]>ݩܮ-SFvܹAF׼؅k"]1>8JSZ^`>`]wYSgMExt!Tk#{7,c1뷚͵aeq -;HSZ]_ha`e^ZTJNGXA};r6m2|/G-"+`($M D+Z ьQ7bҿ/կfګG`-:EJOVP[]]*\XSDNGe@M7>,~93]Ҫ@! „4ȶ̠я6Kߦ5HHkaC D#+4;BH"M]P=RRN@KGC>7-!x)!-Է޸Q5ϔO;S1y(06;?ABB!B@`?=F< ;8:99i:J;n<=*?@AB7CRB>,8<.!|էBҵ;O(7DtO{W\h__]YTNHB<74%1a/./.B-/+'z"  q%ش҃ΖZQїbםGl,9DN%UY\\@[ XS*N%HA9/$< [$ I[О}ܣX: YE {(:2;BjIN6RMTT7T`RO?LgH D?(8.'#7wظnxLjͿH\ 2 (p.3Z7:;'? @AAB(CICkBi?a9#0$IZs̕hW(*5\Z$=3m@lKSY\]e\|9520'0N00D1W0-(G"*ԃΣ^ƪilvIʝ7 ޫW0,8CL'TY[:\ZWzSONHB;g3s)y̹aȗʔ̺6Ӻ E Hj $.8{AHN SUVV7TZQMI E?o90%X $sh҄0ܹ 9ũӈ|&+/+35T789d: ;;T<==>?@^A)BBZCCCCB@[;3'  JP`2ɵZ-գxe.;&GPV`Z[[qXvTOJDb?:6442c1}1a2344J2-&h^{;cf@qA͎`g`*Z7BL^SwXK[[ZWSN'IYCH=^6."$ G'd]ϑ̍9baڠ^ޑA#g\~ */5>"GMR/VWWU&SO?A4B CCeDDDD(DFC!A< 5*{iaEȯӹ-໐ɤr8> g1)6:BKRW.YY4WS|OJfEw@(l}%֪ͬƼ׾ž+/x H)6A9KRX)[\Z(XT(OI De>81)' b KkU|$"JW4Ӊٽ!ޟD#%hA&c1;D[L'RV(XyX:WT"QLHB<4*O#ق /CZݳiCrS"&P*F-/D2468:<>c@A3C@DE}EEE>EDCA >p7-!<#Vה=’_ͺ+J#0"q< D!o-?8A*JPBUWXXUR\NIdD>$7-?"#0 Sz(̓ه0d./-*!R%(,.1m479 l@ABCDEVF|FQFE"EDBo?91y%sĂĸ.ݹa;gB*`6u@HsN+RSSQNGK%GB>;8655t5e67}9!;;:6/J& wh:d8Q~ %3>IQV`Z[ZXTOJ?E?:|61n,%c| [aFm@Ф:ӿՆ(ًګۚܓ߉Lsg)4>GNT^WXXVSO,KF{@9G1&S ;؃Es–Ɩ#&q $D(+. 2!58:=@:BDjEiFF+GF{FEDB0@%;;3{(` ;߷}}|0=B 3 #/9XBHlMPPPN&1VQACfEFGGGmGFvECA4>/8U/#XXI"/л\Ʋ΂ #\-:6=?CSGIJJoIGEB @=;:9y99L:;;\<=n>`>?-j"Vݸ{޽5P_R m)6%AMJVQ%VX^Y,X~UQ'M@HSC>:7641{/+&%B_:_̋ FVԙۿOQa f +y6@QHNSwVWV UQ NIDk?9b2t)`o0W=xYϯf7BEGHG}FDB@>;=;2;::X;<<=>8?2>:,4*[؞ͥ $M?' {@ %2=SGNS WXaW)UQMHFD?;N85|31/,' a<ӥ[ʔJx*%|JW)K4=PFM R4UVhVTRbN&JE@x;5.$Na֣:!1ŵ^Blq `y( * %)-15_939]>A2DZEEDCoB@\?>=N<;<\<<=>K??5?<7Q/u$@ pIEU$غß)Ӧr!j.9CdKQTTV.VTQMIME A=9753Z20c-<(3!&/@Sɮ|_8)=D-(i'2;'D K:PSkUUNTQNJOFA<71)H  ._ϩǓƙI˲΍Ҵ ۲&+0 "'T,04a8;?ADE GG HG@GKFD2C@=;7.#2- ~P߻3I¹ ؚw [&'.K5Z:)>@eBC CsBAk@N?V>= =<>??I@@u>V:K3o)Bl4`ü0+1Niq^q*6?H+N:R[TTS-QMJEA=>:X8Y643281-L(  K4cR̺ɆȔȯɣ94{D܉O2%109:B0IN2R/TTSQNJFB>v974-%g )O1ǍSO a0- s &*Q/x3X7:">@PC2EFlGGG:G_F)ECSA<>n992(Q+a1ٽټ d̠ԅ0]#d+1!7;=?@@@7@|?>>=R=M===>EjH́@.C &w2>>>/>=_=+=*=d==f>??@;AAA@F>^91+' O\&î2ĭQ"#.8hA HLOPP3OLIkFB?E KOiQWRQjPMJrGC?;7,3-&PN 26v&e9̕PB.ӽߩP/db#(e-15'9]<.?ACE"FFFF)F@EC*B?>< 7/%)/ ?#ДHDvöd!<h%,N2g6S9B;i<<=<l?Q@(AAHBEBA?;48+]^S)i(z8if +5g>3E/JcMNOMK6I/FC@^=;d938t776 64r1,$kܲԇ2'Ɨ@&el, 8 \(!`+4@BEDbEF_FMFE%EDkB9@8=8u2)XnḐƪ)ewc9-x+#*t0479:);N;>;;;;\;;?@AlBBCgB@=7/#7Eɞ %PКdo0!(-3;BG:KLTM~LJZHEB@=|;98:877b7640o*:"n ؔ= y6f= 5 &*_3;SBGKLN|OvOfN}LIGC@;=9 62o-|' n !1~7c?̅͠t9ځI   &+a0J47:=?A[CDGEEEzEDCB@=):4-o#s b|Zwf~xù  (.83-6 89999m9q99::;<6>?@ABCC;CA>91t'W XcX͈#{ DZΉy &0q9R@sEHJLKJ3IGD B?~=;Y:v99888763l.4'g~AՃίɜ:bƀ͛PzSr(19@.F1JLNBNgMKwIFC@=~: 7b3H/A*#B >]݅|ώ__P&p+ 04~7~:=M?$ABC{DDEDyDCB@Y> ;f6/"'_"Oւŏr8Ѫ; N&W-2=5$7 8|8z8K8$8"8[889: <=?@ACCCGIIIGEC1A>=t;U:9b9h999,9+851+_#ys3Eю˛ompՏf2v'08n?DHcKLMOLJHUFC@> ;7q40,7' p3Xz=}Ճiy  C%*/369[9@ABCD\D[DDCBA>;71*Y 0 nۨ1nŹUךY$+0X4R6F77j7"7667789N;<>b@ADC>DDuDQCA!=6#.#XlŋnCGWPY "8-5<2;N:999B:n:8:g97h4/'qXGf/\!Cδӵwlc+U&/7`>CG5JKKCKIHEGC@>V;e8751.)$55a PoUՎ LY Hi$_*J/a369<>?@BBTCCCC!CSB@>(<83, $*t ϸʅV!M]#*/35666?6555o6c78N:<>?A3C^DEDCA_>80P& ΐy´<˞Ӑ]=K!+Y40;=@C}EFEDBA?R=;::99d::7;.;:9\61)+"_$ cS~D2\.}:ٿ&<%.65=kBIFHDJJJH#GEB@>;852I/b+& [$G\lrޢGθ9ҏ۔6 S#).36c9;=5?v@sA.BBC*CCBB@?x<94f.w&VGۥ(?yԟ6lq |!(.25/6b665544z5l67s9`;h=t?`ACcD1EIEyDBr?:.3);(YFFʈk8P":*39?kBHDDqDKCA? >g<;,:999:-;;;j;%:74.5&. P)hЩ28|$$-5)?s@@EAoAqA:A@?>;8~4-/-(}mw #-}Pʬ"Ծܤ QR&w,0O344g43>322Q3145+79/;I=H?ABlCCCQAl>9K3d*0  la=Dz†JRҐiX<'06;>@4A@?(>y<:i9M87Q7r778v9%:r:*:9/73.' GvoоȢ̕ 8o"b+2-9>ACE^EDCJB@><:86r41.+?(#"te7Q֫ӷTҜٕ  %/%+/x3@6q8#:{;x<===2>v>>>h>==;963.p(  hGݖѸ}%Фզܤ(x#n)-0#2|202100z0012p4S6a8y:?@=A@D?<82*w VsQ.$7[Ɠ̳Ӹ<6 Z$-38;o==w=c<:U97{6544 55|6l7A8887!6O3.(  ,Δk9h9T5^ _Y )e0\6:O>v@AAZAZ@>f=;:g8642z0-+($ m- $*FڑҫҳՓޯ^ #X)-1K4t68P94::F;;;;;;6;z:;9X741j-(?!>_>=: 71^*"!c 9"Ϡc ʩήK t L!*058*::+:9746432R2M22i3]4i5Z667q642.:)!uַ'?uLӻR{ v9&-38K;Z=h>>*>5=;p:8i75y421/, *^'E$` qfu&liٓd &+:/2P45)7888&9=9?9-98876&52/(,'w!s Goٻՙ%|A!jx H#;(+q-2.*.-$-,w,,7->./K1/3%578k:;<;:8k50*! +4QV̴@Ц8 ;'-25`77h7d653-21>0//Q01223944A5431C.U)"^vioԨ}ͫQZb U/$*+0!5>8B:J;;;;: 97H643P20l/-+,)&# /_B C J֪JU{ 1*$),/2355k6666666(65420.*&^!s MTq8Iݩ]jg 5%(+ ,<,+w++**g+F,- /02z44678j9W9d863_/_)!C 6x6L5֪݄ U&$*/2o4443r21/.---../122Z3 3 2Q0_-(" iqYpπ_ҋ#R'gIo!F(-21597M88I87m6,532q1J0/-0,W*2(%h#x - Pk*X؟ביNK61 ![w!w&z*-0133p44444Z4433!20.=,:)%  Fmߕسټ@f="%}()O*=*))`)r))*+-.<01346665D41-c(6!|%IPY_Ѹ(6G y'[,/q1#21/1 0.-,+++,,-./0\1K10.X,Q("k PWFڗg n%*8/]2p45655 421o0O/=./-,*)'%"  = ]@,l=_ܓDٚ۞ Dy#'++-/1222222-21[10/.,q*'L$x~ s*@ٷ!-&6 V "%r'A(~(b(1(("(}()*.+,-|/0/21333T31/;,F' iObniZ}Ns^ &$&),.//..,+**))**+,-.,/@/._-"+'c" k{d׾sqqC "(^,/12y3P3210|/S.A-?,I+F*)' & $"]4 t 0b{f  Q %([+z- /001100+0/,/.-f,*("&#&  V9Iݟ:0ܙޅli#"$%&&&&&&7''(w)*+$-^./l01-10/-*&s3f_Ud[Ucd D %j)+,*-,,+*7)(%((Q(()}*r+O,,-,+)&"M  ݏ֛ա ي0-;$V),.T0000/.-m,^+l*)('g&$>#O! >Y D`_&8ܻ'xݺz%b% "%(/+,$..=/J//.=.--X,z+S*(&$!G G#mc? Iݣ9G? eL8"#$/%k%%% &&"''()*+,-=.f..-]+($+6+t-~L׈,R%fF:q6" &(***-*o)('&'&&&''e(7))***)R(%! ^9ߞmGEQ_ݍF<;!(&),-..p.-,+*)('&&%#Q" 8sn ߙa݇{V/$):y[" &(* ,,n--c-,u,++T*o)S(&/%# e: ;Lq Cޢ3 *b+ 2A?-2!"^##F$$$\%%&?' (()i*+{++]+*)&P#WxK\ۘ2Dߵe& +"l%<'0(}(N('%'s&%g%)%'%]%%W&'':((v('&k$  MLVSٙTge3 s^"y&')*,},c,+ +* )( '-&]%$#"U!-Ff|aޝޡZ%irI s#%)()*+++F+**;)a(v'd&%#!c-=P|h[[]]btb0!sK T!=""g##L$$>%%[&&}'(r(((('&$!o 6 Tݹ۫mZ{`y!$x%)&S&$&%2%$8$###$d$$]%%"&%&%$"$+yYxhߨ@>CX#&(x),*R**[)('~&%$##:"R!< _3@ #(^WQ|Vw*xr "o%W'()))))N(v'&%$R#!' #<B\g*'bT E1= A! ""2##$t$$+%}%%% & &%Y%b$"O |P  ~X@Mݦ =T| F7 "#<$_$=$#}##"w"Z"_"""#n###~#"P!%<|NM|/xތ^~(u  "5%&'@(*('&&$$ #/"f! V G`1bL8=# :cu"$?&S''('O'&%$#"!A kLNeVu! ~3& 6?\ V#]TT!U cB/Y70 X T 0 ?iDbc  Io[]Y^# F+~SMB J~%nM pGH {mnrF1K@QC9 =|6\!!"!=!l sjbkx3J M2Z?$E/+ Z'mt1 @]F !!!W! |];[R{{ Ys!Uf&/ Tf'y a2N?J0eH _i.w}V 'C Us0[j_%aR ddk I&t/rCR&h al-1X](wVp D{j=Vjk [n V`v RmS!A+_ a ei[-Acgk ~#B\hd).S ::V.GNZg1$i| = nj$^k#>9\8 H^CApJql-2_ /*~ w7L3 (12@du R)JS9G` 6(*9m  ;2lj|Vmq H=2!_P! ~D`bE=5>G 5 #5SnN ~rU K- Z x}| E?nFw`' Jhx3*# KiYT({:.b t!_  ( WwB1M]ejO/Wxo`7 >Y @#q_w wwb [;Rz|I *+& -<'D!, JM/%dI'$@ G o S8{lbaY X qTpx_YJN "Adv a ie y*Ir;: DNtfox()d ' ,ubB@J(w !t[D0qPv5S s~@E2D: D A>"?vu $Pq7*.- Fj5'aF\U48# t 8 ~r8 =ffB;  4})Ju>A nI3i/HU I g S_r1XA5?< 1seMCWOw-w< :  FDLJS=  N-l^Nq5h 0Itc|)x? a  @ (*agg<o$a V[MzP 6 uMN 1t,;X87D\ke : GiB v2  w 6 ?Uf&}" `aZ]UF V 5w#F Y < w Z dG @<[AV} l `zz \ 5 UqE.Ci - n ' e Z[rMr 3 Z ] }"Dr]kd$P - Q 3 :aP : !   \ Q B%d#Af%ZH 8   & S >  De~c6 @J-Yh0 KEv/L 3 = ^ l U  ".L`VcG? B . G { w D z m f ,Z Dx;F,aX<pSDO + F p 0 i {  8!e?zDN(J"R$f> ! S ^ I  . 6d T/!U=k \\y d  R_'kjVy}[j[1t>YQ - o n 9 %XbtG5RUHL_PUj?E~C?A4:Am()*,3-Q.\/R05122_33j44%5c55555|5F554H43Q32!2x1005/c.v-~,+~*x)l(b'T&H%$" h>jrW  T3[%9^՛gƷÜSɳڱ ddݪתSP͵Y#"YW 5{A=MJ ] \!z$'*-0#3579;h>>>r>=<;:8%7%520 .^+(%"|PS /HnNc@ a78L+eU ys h$P(+,/37:=f@eBCDD DCMA?0<840+F&U m u4lX;M˟=2ApF9 qk-H4؛:e%GÀʄѸ|j-  &+059=@CEjGHIH,HFEB?M?;??y>=*<]905/(:![ ڢЗԔ̝ND\н=9 $+ 036-88752.)#H)~-sR(Rp’Zľ8 B:ZQN)  $}*@/.3S689999751-(#  0i)%g &+058;=-???>m=B;8951o-)$ 05 7pf n  i '` ԫsռ?ԻVgˍ #LhU-o &FCF 8Q yH U= ٺ'6?P| II/}4h$b q*;t` Sz DW t"#$ %$W$T#!4 2G I / C f M+ "%((r*q,.j/X0010T0y/\.*}% %IͿ5U_J) 盫9d`ɟ*X cG!%4()\(%"7q6Ӣ' /~ҥy< -5" &0()(C'$ !SV @U#( ݺݰޮj1A -! m$'*,--,a+)&"C6 | !4  QA!%)@-+02=4V555431_/,)&#d V} x!1t؁Wƒl=7A8@y 2G;_Z d%|#ϾJѺڟKh Fm |UDk>>/.76mPv#u 1k,j "3### #!L HO < s2O5 2|"%(F*,g-X.....,+*U(m&r$w" {v X_Y&z%5w$d۱Q0  KU+:] /X? N(ؿ/ЎP7ͥ) ܆se mvLIhSp pOC' @qHW 1$8!#%&'''%@$"k)  ZYb B"%(x+-/01j2u2 2A10.,*(x&;$ ":TPfKC؍i[w@Eø"*'*,9-J,)?&X!`z -mâ!U(:co7 Xg"&B*,--,*(h$[v` @;v0f߶߉>)a_e ObO#'|+.02l3}32g1Y/,)%!D P &Cmn wtS$(,@03e68:;<  %+/24392/*$ U߁/ɇ̹*-(ɢ7\ A%*.Q12k32 1L.*& _"I|ݧi:V!c&+-/2567 8g763"1-*%`!r n6+ L"6'+/357.:<>?@?;6.%QUKۏn૝”c֍%MFI"KP/B [$+04776l40q+% CXk"¬vøպ,H+-ީuaA % '8,p035{6;642./*%\ ; F."yiPfPZ l"M($-Y1479:;:L9S74x1-)#%| Z 2c\FEJI c 8%)w.26 :;:}8'4.h&^(H{וOܵyOJiӓdEf!(4-1r3l43&2/*%\kHwJIDΉ.vjosͽӶF7j + %*.1344v3i1w.*=&+!E  U L,NYB !V@Q "@ VOg$[)-14P79:e:98741L.*y&6"|6K 3- ~p"$(,/0/-)U$ mMكŸcdQ]ڜĝȣҮϒ_-b#'*y,-W,*'# .$žĥđ{_#λrK_L $(+$.///c.b,)E&P" _ 7QvD9^F_f J`"&*k.r1357777541H/K,(}%! nl@a 2xdLC sG-Z FS&/\@w{iM>;LkŷQ™fϘ ޡ/bRyAs/X; <e0:P\m93 Ԏ־ك$d V #$&&v&%a$" K )YSAO:}LIK  $/')U,H./0g11/1i0@/-+)Y'$)"r;4]v  &K r {w>:KұM$өpK"?R v9@EN Bbef~O4_dմԭRե֙'BN  "#O$E$#" n  `N$Te44W E$!>$')+x-./[00A0/.]-+)'%g#!N ?o:_@'f UDsIXh?nG̴s>M~x1"  [SU nKI {Iߐ`ڻر>i.؋yK1"1+ T0wV!"-#S#"!"   }hsG+IGX '.Tg4) WLPW8Nۖfײ/;{߁emW e! #$p$`$#"!{2/& ! 0bW3_A* p0."%'/*S,,./01L2y2Y21#10.[-+)'%#!YYDc  GiX1xBuWUfpË 148( -p)akްHD$ xd jH) IY #$t&o'''\'c&$'# vM lGLnMHhL +]_  bf #&)F,.0L234A55p55I4@31c0.,*i(*&#!xamj% AI?<]վwȠO@Ǭ[ᳺ7I7ًR5B E : 9b> $8e[DLہ7|QӼ_ӏS֡p۴hvyJ885 {} #%'A)(**p*)(U'r%6# ._ A1W$fj ::"&5) ,.&1/34E6G7788+87 764(3c1j/R-+(&0$ ! wwET )Хw~ϥ1@.{c0$i -\{ z$N(+N/e2)579N;L??u?>=;~8i51-)>%  &@:Gq< 6y`{= !!%*@/37W;>A;DYFH;II=JJHEAh<6.&} +5Ey^d!ЖB%'S%ċs-nɧٯO0:6"2i-i(8#{  oj$+gJi e' |%*/4$9c=IADGJLM?MKHSD>8>1) gA K˟#D:܆wV$ͤ׫ ,"V*16 ?5!E(;.38>= AfDGHEJJJ%JHFeDaA=950+&!<_ Z)u_hW-a u"(I-R2*7:=7???r=:7u2,&'{qI=cȮiy&50WY3գ2= ħgOe'm#).<36:E<=v>b>=;9693/j*I% AlݶvԽД ɾǰew;)9y #p(h-2*69=?BCDSEVEDC% F Q$= h  (  4|Gh/[͔ʠj\½m%ǹͅKGnݸk2)w myUt/v7 j dzOW'i\s,'\i6(9f8    #j%'k)+v,-.'////6/.-,+V*(2'v%#!)lG % o f ] c=wY S [)/ Yu ߸ڇրҲ'Iﺓ E!˯~ּ҅ߎ:1i 2+./#ApM(.6[ fbYNPdX3!,e&(h^[yZ x  #%C(U*,,-#/A0112+221 1602/-,+b)'%#!@% 3 6 ! }(zHےԜlv]D|Hh1X^%/wԤzin* :yqr|7=,Oj! 3 U}bJ\C<8q`upy U#"r$&(S*+A-b.Q/0~0000F0/. .,+o*(m'%$b" f ,d > ^ &g4f3իL*CȢJA0.?U˼;R-YƖɛTھ 8^txa$. f d$]f,d[p B0$5j[B";-pq* 4==+S"$':)/+,./012#3j3}3]33210/.h-+p*("'e%#! HAP#b C  Gߐۦ:̈Ɍ`(^; 7 !"a$%Y&&'&h&%$B#!|c wx'3UH|]tc9Hrav8  m/~ #&)&,.024V6789:$;l;};P;:^:987=64931/-+)'%#! ,.4 F"gFؘϲʉƝ񾒻Ƶa\w)y=g*ϷȺyŃ9֎aE7%bH yr0 v#%'q)*+i,,,[,+*u)'& $!Bg! u_KWl(Ln`On5.; % d,"V%(+i.!13589;=W>V?@@@@@s@??><; :e86420~.L,*'%!]hx `i )P߄Hȼо,׵ձ/V&s0csVN$Dί<ޜ\" j"& *@-/`2a46H7$888{876531/-3*$'#g )63 , $"1U=,SZBqڵ4VTq#7 Gp#z';+.L258;3>@BDuFG IIJJKJmJIHGaFDC1A#?<:)8551-^)$Z |D}Bآ*ھ~^tcR!aF_#]R}<۾NoE}o$w)-&25e9n<?KACxDmEE FEEC`B}@?>;852\.k*P&"}) ~Ku@5\[:`֦ؓV$OЯrRրnhJx+ b!J&*/F3O7%;>3BbEUHKmMO`QR2T*UU9VRVVUTSRQN6LHDn@m;50)#4  fƥ񱐫ʚؑ=(Q Q&nڏ(çl0*Pϛug(\ hDC%Y+16;H@DcHKN?QBSTUyVVCVxU;TR|PN%KGXDw@K<713O.C) $Ug%x%KյqY˝FNǻƌ\[ȶtː[LoJLqi 3"(<-B2#7;a@DHLHPSVqY[ ^_aabjcccbTa_4\XTOJD>$8 1)"( *de jzD4i^,+M˔M8~;F o 'I.4:@ FKOSWZ]_acc2ddsc_b`^u\YnVRNJFFA1<6n1+ &S tH= v$g U ŝ~yPȁIgӝץ߇SQQ O L&+|169<\AMFKOSW[^>ac?dddcb`^Zܛ}14p ( !&b+/3P7z:7=?aABCUDmDDXC+B@>=<~9h62=/4+&h"Rl6PF֪ѓ̪t32wn/_b1d𨲫¬n_uխkl [ d%*q.26v:=HAJDG}IKM"OkPeQRwRRXRQQPNM?K,IFZDA>;8<51=.*&"#X+t DxB0FsC/ZK}!o8]   -n (DrkFR&Z۶'طb.#QѤиyaoϦЅ,?՞غxQFW iVq O3c k@ !m#%y&' )'*"++,V---.l...m.6.-n-,B,+*)('&|%B$"!T ,_DsB    8 m  }UEQv t I 7v]$*)a8?֌lкΎ́̒ʐ)IɻTVϻ=ӟwlwۚwW^U RP \"#$&(' (()*~**+++**h*)q)((R's&%~$j#J"!MB#ob 9  :mT =VJ! - V OAxfPj _ 2 s>|qAs%K~jdpؓ}Н[2.Gʃe kȑ\ER̂>yA#!6aݥdb?_B 6 S'z "$p&()*B,q-.t/K0112u222222L21d100[/.-,+a*1)'&V%#"(!F\y Fa+  1 s7Ra \g"]N W Cz\?ݞ ڇ ׫YhI˙fU^ˆ(̢;ͺΣϦEԬ*׼b߽ ;rD4Y #k, !"6$g%|&}'h(<))*,++,H,x,,,,e,,,+~++*)S)(''4&P%]$e#c"[!M 9!ui__i|4 C D ?    r aTu&o 1Rs*]1ېwզVQ̦˚>Hʬ+|K89[ВI[ڐrgh{&jYi w _ $=FA- !7#$M&' )J*w+,-s.E/007112_222222e221[10O0//F.z-,+*)('&%$m#L"&! sW?+##/JmvB K 3  VM$E]`]K3g<߯ݞٜۗ׭@В{ʼ[P_ĉ-¨BF5šunņƶjˀ1һԻ$i߻x R#Pi g>%Ws{!t#]%1'(*6,-%/z0123456J77f88 9\9999]9&98y88z7656x543210/.-S,+)(A'%$D#! 9>m8 { - EMuQ%k>)j϶̊ɭ\&1tϿHپQ68VZ鿓Z80DqŶȉ˹o>5\ړ.qv,c:Y f W'~ ;`!v#{%o'S)#+,.'013q456799:;)<<0===><>H>@>">==T==a<;9-86953(20/s-+)'%#P!` Dm }b8 UNޮۉo\\f̀ɰ@'m2!B|ثQ騞tm7cѢc?pE3AepQ(Xڕ6ePFA4 sX!$'*-036Q9;>ACEH@JOLFN&PQS%UVW7YXZc[N\]]i^^I______p__^)^]\\.[9Z,YXVU8TRVQO0NLJHFDB@=:85 2.+H($Q!L} ޴9υIYzߧ;Jۛՙ2ˑeɌ9.kOYȠ1[*nǽ4MˠZ" +03-#&*.925|9=}@C2GdJ}MPqSHV Y[<^`cGejgniZk'mnjpq9sotuvfw)xxKyyyz,zzyy8yxxbwvuZtrcqomkMif=dxa^x[BXTiQMJ6F>B->:5h1,}(#r2 H$a6ݎdpdVaĥ-єՑ<2ᄹ DqQQkrjA27N}» iQk?|"l Y"&'+/ 4j8<@5E[IlMlQYU3Y\`;dg kpnqtwxz4}D~={xtJqmi"f/b^YU@QL5HC> :15G0O+I&;!# rZG70-3FaՉ\ŽBѴv3^3̍_[yNI,âݮa2Nͧg7 "'+05:?PD IMVRVf[_d;h5lps3wz}|yvtsplicea]YUQSMID<@;472-O)$V -e"p$هнp5Hs ySCT[􏰒~Ȟ^1*Pċ6ѣ ڪCNyO s $@)|-159z=:ADdHKOFRXUGX[]V`be:gAi'klnp]qrst\uvvv w=w0wwvEvut,t8s"rpo(nlj!i8g8ec`^.\YWkTQNKHEB?b<95d2.+($ e4^ %jXhMڛ}oq΅ˬ2Ô 8ĴѮVH즩{¡|tYZ{'ܡե~O *_%ÑfOIYwժ4x'U|_ ( 1Ce!#%')+-/_1 34!678*:W;p??@@MAABBBBC0C6C'C CBB,BA9A@?B?t>=<;:~9O875q4 310.,Y+)'=&v$" 1IXdnv} Al!n&I߷ކ^F=CZ}׳Mմ,ԲMҴҀaRUkґraԙN%aޭsu d$?61fI  GTyuE(_}N@3.w4 + u : v J} 6g(ZD`b$xy-u%a1 .a.O=R5g3 4cZ J f2[oxqV/WxY6 _ z n P  ;`M W0<>;)o 5 iv j O2y"w'PxT2$Ahݚj+ٞئ=֑Jվջ5u׆} ٬Uۣ܁jacs ezcrHd$dB# |!t#i%K')*t,-w/0$2X3y45r6M788X99C::::; ;::|:&:9198737c6543i2>10.`-+}*(d'%$_" ,8@<:*  mL* }ssv7{׃pД:̴ˈl_awƝw`HMm8ŪƟǦȿ%p;кFԑL8pRrw # R$^ #&(*2-a/{13k5?78:+<=><@dAvBmCIDEEMFF(GpGGGGGeGGFAFE ENDzCBA@`?%>>?t????@???7?>W>='=p<;:98765A421%0.!-+)@(&$"$!H`u{o_ O = &"Og2ݩ.ڽ[־ԇ[A69Loͣ<ˢʣ>ȦvVINeȍsfʝS ]Ԣ`W܆0yS9*%&5Jh'hB :R_\J&[ "#a%&'+)L*W+S,;-../&00,111+2^2}222p2K221p1100l/..J-u,+*)('s&K%$"!9 ya) A LYtA=/rG''JyڸWػ+׬7z4ԭԟԝԫ,s.֣$ײRش|P2 #8ZO |t/1uAd 2 Mude !"C##$'%%&}&&'N'x'''''`'1'&&N&%y%$q$#5#"!!8 a}rU1e& O  ^\WZ q(h2udXXZg|,pz]mޫ\ܱܐzqt܄ܜ6݀;ި#ߧ9}1gRB?CTk#gZss9j  c4a}kC v !!*""#]###$0$C$J$@$,$$##S#""."!2!  b6izV) _ %q0s8QtU9# 7X~&mgv VޙrS>78F^ރް/߀@+@,rH( +LtU>R"mZ M Gy ?gpH* G!!0"""&#\#######o#B##"g""!%!  83[}uZ9 j6k4l<|`H6'&7Lh'j h=5WSߨ߅m\X]o߉߯_jO[8e0Ix%kLMc% 0r#%{7$R > Z i o h W :  W>TA gB{"<Q_nrvu r i _ S E5"}mcZVRUYao&ZgzZXzk"[@.&'1Dc1{,t~GWY<# +@[z?n>r k1AlpE;x  v;W(5&YTV  7 W { &:Mcx-Pv-d&mk0 C=zG(TSa7, N [ c e ` [ N < (  z I  f # L T J)a)Qy 0Tx 1^&\>05TMxM"m]OB>7:;DL\mFp?{=dZbz>n<yO'l;VO%g@m * ; K V ^ b b _ X Q B 3   mF_)BAt-U y,Op'M }9t5FrAkG%n]OA80*'&&)09BN[m8[Ky;nI0m!bZT F}Ep )Gd} jU=# yW9jD#hD kH%`@"~gO:"{rja]XTRPMNORUX\dhqw1ATdx"4HYo0?N^k{unf_WPI@:5+&! garden-1.0.9/data/beat/drum3.wav0000644000175000017500000002137412457263310013311 00000000000000RIFF"WAVEfmt DXdata"  '8_o:hR I p |V  ,k+<5d( D fT T"#C% i  f,, ((F-q.D+& #"z$&})/+(V RkWA0H*ScH 1 J6 j"%/%!( ie"R 3> WZ= N'*PArּ+P%.&x27`81|b^'t2 -s J@˜ߛ~ۮɸ"j鼠Fݹc7/Lِܢ ̍RBⲎNF1ɔ̆>@:QϗBӍٚhӄyʴ`~(ھ(|jv^Q<԰ܹݽߩrܟ5 ~h[w[&뿼>׽'՗ϾӋ FVϾ){ֱGD H)&uwJ=0u/m +b <}y]y $.i6L95-&|#QD L C$.67L2=-+1>J L"D9?2)25y74+v!~#5DMMH^D7DGE@a2#' 6OBE<;."K (373.k/61?EIKJIJL6QTSK<)Q@U%6AGL*MJH8F_A5& B!e'.Z7<;V4=+#vC$,0.)`!+ S $n'&F$W!{{ g& 6S  "]<]!!Z. .892' > 4 dZ2o ( ) FJ e#C#" 7yA In [+ AJT0Uqk2r%%;tOz )  % RT9 i  . -7k5#Q Uo %?.!N_r8 |,C5 BwvAr WZ i WI{r>7 ;, i aiX qa#~A BL 9Ga '  O= 1u= # k H E  ] rf%-S@- S v M   p)w z   $ "  T  b I r SA)_f046lM{f=j.z o e.BhH<Pb-,&cW TkC_h}Zt[wunM,lgۡ>,y:\n[ukAS6Wt-;{Jx$ ~sWxyRn'o@$YhE9fF^,e=ew^\t./\ w2p">dCc>33Eo9J&$9l&bll|XiwZ+qLdSqCji?6 u<|b?Rytt@2O*b?6E.E.d^(TL)ewVGbfSo3odok+Ga=2xPq$E{@@GZN4'LP *.U {A#Wt;l) S, d L\0@2,zc$6 QY% 166 e 4 j & 3!<m !   < . } .  KX< =.P S6H: L 3 F 2 s  3 (Y"/q BP L2 x bJv,"dz+1P4j  k(G fzM b I #luJ2 CINZ#@K   u4u3lZ t 8Mq2Lw " X_ h  Fp * iS4z(d'M z^*{1 C }eX_ !  U !"#$0%#O UXd)!B##!"n 3UJ<lvt+!A, [!! v|X~k [ [^u> `{ c<n GR.Pi2;p$   "I5?Z&''.0#/\HCptr[">p v{ o !3Q t    , A Z +  X u  B # P?B l i =x0zqo-X =oL$hy/f2Exp\(6WW|+VsJ&NI>PXgO R [qCYB~5llM?P( 3>,g wY7`aA:e4 ݳܥۇ]5/\ݸvݼAۣZfr\rylA߫PPSOJ4ߠܙgezܝݓ_Y߬(6n">6(QKlb\eseE\:`mHq\o *:"qY~0U8cySJI@-+}ji|D]^Zab#4 CU}BB~x$3p)+ &R':~'C9[}!yJH7)gZ=1} |BT\}1K_.R)X8U[^s94t/0@#voP dc])@$W#q1) ~lN 9imf=.LyZYb1;;cbA Q lJ CHpP Pm X V g  BGF)n\ p w Hn 3 S x 6 b +   x v M S 45U iIh#< t *qvcF?B2nN>+7F2KaX7Q n = q0ymB_amr+b-da(C&ZXQA g 7 x, 3!  o , %A  < ?; d ;   I -m  {GR Q w9ia~)W z  9z]fB4s1A vr0SBWY>+r( f1hnB|" KS4jUlMeG8W.6 0 i 5hL7c#t+zBkEe+{Ifd__J`oNc{-mY Ih$0Ql~#^ kszYb K )tsYj&c zg^@dc 9us1^WY@y9,9_ni@#$ExW:{% G|kj{7^{fxk W 3+;Wp*Y#Et?|hZ`X&O)4b#!(I: 8d 5E;S$&z*OS*p]<=ebfMKkXVOuT?E_L}`lBUitMOV 05\Hk:s{{]F${}Of|) rM.QHo\{SXAGt! Zl%imDQq-Y; R,< Y}].&/ c3I:v$)9B ' >Qy D s  m: 0   u e $sS+vFQ8qa/k~*Dr @<h.N5tYFp}& ctk RLq{JCi\b "*U:3M/RgCmw5H:L5sjE )PwtoQ(Z|Q)o(' Ht1|\748#![niN+8Wp g=#"""Wtldhc8Ft|ml^F+-&4DRSVEMhy~[;4IWRI447F^egotkhh_H=0#3;EA/+ +"4&'(&'#*,!-!$ #2=5+#    garden-1.0.9/data/beat/xline.wav0000644000175000017500000004763612457263310013407 00000000000000RIFFOWAVEfmt DXdatarO.'w?~\:*Y? >JqU'ZgB6]7HGt<@{)Mbx3Max.D`} 'Ig"?^&Hj6Z1Z8>qJhp')Et b VEp1 w` ]x  H S '1H4j1*#qH"0&(T)(%#2!t8k V %VC  > O e - sJT I V C ,   , I l   ! , 1 < O X j }   ! 0 < F Y d u   % / B L ] xI0ט2C8hΉߵ`ź0y=Ļ$űmmǕsxaSq@yLϯIВpG Ԧ*բ֕z ##%[q& hctrH 8WƑ-φۡ:ݗۜS' tP/x$#5{x%ayTz$9ITQWYRE9(  m R 5 ~]3l6i/Ql'?I2`#U-s1=zEKLP8OFX4f 6 d!I!U s ! c * b? Ogk9f|fPBKTm{}} "'+47=DDHPSY[`dkr{ D⠇,m1F N[x*Ü~ǚJɒ-+ˁO~p2үY%'@ cl͎l&75݆QFP-=C& e$%&u!v H dD"*If0/N6^0B<jTB81'!vjaSID8-" wrf`UOD@3-(  ) x߿vHH4 MFų:޹cTi-2,v^Ah> w J  { C  j )D\mu&{%toaP3A'ϫ4{#;+ ,&~d8"Q&3FqX ba3YMLC==@A9&Jt 8!# H>0m:*yC*/MjzdG5*,05<70${upjc^YTMA>51Z# ⎿̘]ʜe<'k Bô«ϽSKO¸mXa)9ZU˗B̧0͋>/1խڧ޵ߓ I B!-].&p/( veW}W+sr7>`^0 /QJ(l'RFXrf[S<d@])k3r3 p & e  R 6 o  L #W#X#O>q&U 7_<c5 S ZtrL ([>R\[,R-E9 3E.%T Ei B"WS & !  pb Dvy :gK>Ja~wlaagly~|wsprsx}|  #!W& *Rnʆ;&~ӰߵBcŦĨ+Ùȳ˧sR< -v1yÐ)ؔ? E@p%d*Cv{QB#pEQUsq[="c=s:a~2 = B ; ) y ]8U_ av sϡPs{:'>Xdc(YJ9h,Ii ?0FMx_bY6D' i {%'! Bbn5 0,Yiy&_ov{ui_ZZZXTTGC82,+'  |wpkd`[NJD=92-'! . ཿţ5ӘEBNkҁ"ʤ>h`sĭB0̜̑ ՕzGfu9 ,޼ǜà sR/ݍ9ލB^k #'A4<^5RPIP&B8<@)x`D"k> MSRE.gI" Z , _ % T  E v / ^ 9c :`-VCiT P#ݹ^'9YiDfP-r)}'*e$`] er ` @uq D[Ca|4k[4$''|wxwsqsmmlfggabbaa\[Z]VUWUVUWVPQOPQOPQQPOPPQOROQOOQOQOQQOQOPQUW~N Mst֫Cӳ€ν]RPC((ryظɺN̊ѷ(mMݐ PZ%0AC C7b4(4` }rYA&tJT"B^u#(~"yd N 1 u N  ] $ c VDx"Ut ihԸ )1B91@$?,/3&;vBBa7B"0 Y2"c#5HG  %SjL YH  vjefZI7! xfZO?3' wn`RC:." ynaVKF;-*  ~ t n b ] W M F @ 5 / + "   i꘾Ѕ} ԖgUȯc(מ٭rΎǿÔ̪Ԝ՝CЉBX>׊. k! 57݋R߼DY65Gr(,0=MPJD72!iL. xN'e1c)O k'>MWWVOE+ |  c H $ h @ V#a)f(d$[ +g%5:/[/ b*eQ  sw77er9UYrN|xrqklga[TNKCD?92.&# ~yrlfb\UQJF?93/'#  JZ5%Հڧ׎ϛrD,Ѵя@̊ϣؘ ۣ3E Shߙ߻` dz@0OqfH1&c9}O{Bc38?9,zkG%m? NTU H0kFR%PKw4` E k  B i  6 _ % E o  + L r #Ln b+|xk q zuK M :&mI_ICv k7|bVONPK>2"}wmf\VPE?94(" }yrsnlhhb]\VVRPKKEF@?@;:34/0/())*#$  5 ZrֳpDՏ̵ʮxԊrM0Qؒڵ^ܧz/ O>LR'9In$'/2+!uU8U%W!E]l#w!xp`H$nF]a Z H % ^ 0 i / \ G  \ڳTAC6$_"b&+" Kk  2\+  =+&eBD7!g -3~fP9) wncWD;.$   t g ^ Q M @ 3 +    ~ z p h ] S L C ; 1 )   z q i d ^ X R O B < 7 0 , &       80)<2y-o\ux <-ֹۤ_.QнLJž ǜͮn2ؚӪЁц>ت'هI}2Gu܄LPߟl&jR6Aal[IB;+eJ.qHRIq3N^oy"y$vpfN5dA\.s= C  B ; z + c s 1F,8:-յr϶ (52#@O\ m\ E ! t ! b  4J *?LD6     y t m o h c a ^ W P R L F B 9 : 7 / + ) $       z y v n i \}udôzҖ݀'EK֊#V_߁ڐmפڊނw"`ߐߎsoq:O'{iuLVOeo$*%siU3Y0w<H@4mU5k >p =q0`Gt LxGm9Z>g = _  J(5:8,`<IڻrLoq g * , * yH[ x i *s ~ y z ~ ~ u a R F ; 6 / ) * %   { s p m j c ^ W Y Q M L F A A = 5 6 0 / , ) &           uY)497C0#)U0 lMrtaT~~ݝ-ږܢSfwpcy n}"eX*e=!i;n6[v3>GB;)s Z:{ Tf%e ] L+a3g3` J u ' O { D i< XM30l&e#u)#rV?n ~ 3O ]  F   <    _ j 7   $ !   { p j _ Y S N G C > 7 - &    } v p j f ` _ Z T O H D ? 8 1 - . % !     f %/41&+j"S ( DGOJ>(mO%c܊ėvRix׬͆2Vڱ*-ٟY 4ߠ~fY17tc(Ph.c5f&H h&5AFD<1p X;`:~ P_&d%e^K "-1/D)! u oEuYS)L R  Pg  N G 4 n S  7 i T S j  t d ^ ^ d k o m k c Z Q S S T R M N G I B < < = 5 7 6 2 0 , % % !          { v p p j e d _ _ X T M O I B = > 6 3 2 , J%g/30*") K zl" +=p ~>b|#8GGG B:9D0}hK*nFVZT I1jF{KKy 8h!Kw(N|Gp 2R{0Rz$EiX o *(.+R% U2{z|Zs >{s 6* j  [  G  G  _ Y p 2   + B M C *  } u n p j f _ X T P G H C B = 8 1 + , (         w {#,/~-P'K 1} 8F 6. <%aa Ewh* h9ȸPJד(!\X87mK:~jVU _lu*/)wk U8]0tA~G9w(f C|NNz ;iGm>iId p(Y,*/$K9[l S F" 2 Pv9-rm7}}~}~wxtknfh`aZ\VUPQJFD>?::44-/()"#  }9 [&)'!ci +qL o  di%&OkwtR^#KS?66z/À˷ץU!$mk3Qtn([w"<|HFhP l,"oojWA$sP'm>OYXRE/gC~eA U #!lmhd 5% _ $l6|e' Ys j F @  P"  9l fJK_vlrv~xuyv}~{~wwrrpqrqmklegegf_ab`[Z[TWSUPOPJJHJDED>?9989324,/(&)#"   %(n&! $ } Z |p. -[7ӻw>ۼޓM o4q-_721TxX.(h3&wD R]XL5lP U!SAq,R)Y~#Js /Uy -Oq=Z}  b!K  *~ 'xN#|C)0N,Hnbc*SFh >Sr|  4 } D G Z Z l`& P C  }~|xqgZVUPOIJD?83.(&#!  :d "W%p#(R^ `3 R cl XCY< :@ZdqsNωG،FUb:*\:xQbu $2d#F}1]*iF-u7t@=y/iP*`-_"R}5^ 7_$Kq' of= /G/\43dNa37^Pqr  +3(m6Y(w`aD~`M &I`\N8%&2<@?:30'..356640/./-/,+-+++***((((%"! !        `x 0=g8  FU}> _) Cufa"nDe~':JYl,#bڦ/UVMAIrKYD32C uZ0-dJ0r?+o ;o$a0d7k,aN}-[/Z$KwV^ Y (  } ] F  ` veuiX[Kj"5o-VU# B  ]HGBuV_'SSt~yzwvwvqrpoojijhibcb`^\\ZVVTVOONJ A 9 X [ y  mc:avg=Q|<8pTkaD\3I ZwN !FdFBl{ -Lt!Pv"N{.Qs"Dd=\y">Zt)?Xo)Y5tSs(!~{yvwrqqmkghcdb_]^XYVSUQNNLJIF  5 u a 5 Y l r^McRy%f r [H\#&B^sUwv]U_9~K+5S/a J$6BSm .Md~ .Hd{1Key0F[q#7I\me \ >l{PSt1]Ixi3OK]D_kPjbxA)TkgT:&-?HRMIA9;<@GILMIHEEGJLNNONKMMMQOOOPQQQPPQQSRPSPPRSQRTPSQRPRTQRSQRPRQOPPPQRQPQQPPOOPNONMNMMLNKMLLKJJvZX  &b AaA^'T 8d.,:INIC?ER`q~ #+/8j88 7V )V.H]p&7EWgy M WiM5X~TdWz #Y9GJH1CB XtXl|@K1`W=@qhK:7DRdjidYPNKQUY[ZWSPOPORSRRQOOMMMNMMLNIJHIJIFGGGGEEEDCBBA@A?@?==<=;<;:9787775L ^F*y^zH$WN\ `x`\h{$_`'P@&o~bj++!&=Tn'1a@oe  M }XPd n VrQo'6!u&X~#X-Zh35Rgh`P@669;-"/8752,-16<CFHFGIILORVXZ[\]^`cfgijkno_71dZ-|F>]  '/8<>ADHKRW_cfjnruy~Jqcqv/-! q8/YVc,4@?2  (('#" ! >]zygRB;=HRVWTLE???BBEC@=;:6- garden-1.0.9/data/beat/flute2_l.wav0000644000175000017500000022604212457263310013772 00000000000000RIFF,WAVEfmt DXdata+ "*7ANZepz  (3 }vct a s  Jl B@MzQ.2m,PtAg!,=L\n~1F]r'8HYk|  $ 2 O !!"#"%&'()J*6++K,q,Z,,+*/*o)('\'&n&"&%%%&=&r&&& '.'E'Q'L'='!'&&&j&6&&%%%r%`%Q%I%E%C%F%F%H%L%J%H%D%:%1%%%%%$$$$$j$#"!9 MpZ2 U*N Q!+""X####################$$$$######?#"f"!J! % 8K o .!!!"*"I"W"]"["S"G";"/")"$"&"."<"M"f"""""##:#T#l#~############### $$ $/$;$I$]$$$%%8&&'d())*i***Z* *))|('G'&*&%S%%$$$}$~$$$$$$$$$$$$$$$$$$$$$$$$$%9%l%%%1&t&&&'8'N'R'K'9''&D&V% $n" (9!P!j#5%&())**)#)f('&%$D$#G##"""#g##$}$$3%y%%%%%%%%F%$|$#L#"!C! ?  ~ !!\"##l$$x%%&8&C&7&&%%%l%E%%%%%% %%,%B%\%u%%%%%%%%%%%%n%S%1% %$$$$$p$g$i$p$~$$$$]%%&Q'#(()j**M+t+e+ +**R)~('&% %Y$#^####;###?$$ %k%%%,&H&S&M&<&&%%%%Z%@%*%%%%&%:%T%|%%%.&{&&'`''''''''&&$": ->;(Kl"[%'*+, -,],l+7*(l' &$#"C"!! "i""#C$$%:&& 'b'''r'A'&& &r%$s#2" };!JeQ!$#$'&l'm(,))))l)(X('&J&%'%$s$J$>$R$z$$$K%%%&&\&&&&&&&^&8& &%%}%O%!%$$$$$$$$6%%B&'(1)a*+,-4...u.--,*W)'z&*%$#="!d!M!j!!"""9##^$$K%%%%&%%%Z%%$$c$7$$$# $$$T$$%~%&&k'((Y))#*K*7*)(&X$ J E W"E'T+.0 2^210.,I*'%#! v !"#$%&' (f(((K('Z'&C%#! x Kp;6"c%R(*,-..P.x-O,*q)'&U%T$##""0##1$$}%%&&A'''(!((''L'&q&%[%$&$##"&"!!!<""#d%*'9)t+-/ 23 55654y31n/,I*'$6"2?{8)>`z c!"""#""n"!!!  yQNsz u!"^$-&(*+-./u0j0/r-*G%BI (&hik "h),/3688641.*X'$! _!"$H&'()]****%)'?%"$s- V\c56dU7."R(- 2E5N7.87642/,*'P%#D"!J!!"#%$a%&'()x**++*h*)((&j%#&"d 3!5%Q)-2#69<+?@A@A?=6:62.)%8 9kK V . d Hh*XD_}VDv!n%)-1,58:W;;C:71*n! V^TnVܼ6:v a)!)1r69;;96,3.$*%i!j e"$'L)/+,-.-,*&!t e/py%.7u=ADlEDaB?;61-)9&#! !/"#x%g'Q)#+,-.z//j/.-o,*q(%"&U - 8;}% -4z;AF]JLMMNK^HvD?~:4V.p' Jf B[XV   $  z K$,39v?"DGyIIHE>5) . iTs}5T*M&o.48::Y9S6?2-v(|#u0 Dh!%G),/1c3 4[30+$4vү_˜r=A+7!AHZNZQRPMEIC,>O82-q)(&#"i"#W$3&m(*9-u/l12444420.*%o z "Wcc&j2o=G OTXXZYWSOIB;4+"fdaLo{3s}EF'MG"-K7@HNSVVsURKB6&(`ƍ;, ?]Mf '.36c7n63F0+&!6Nm<$*1/468q;o==k;6-O"=>ۅDzlGIe!J0d=YHPVYZYUPJD >7G2-)]'%%5&')",.14X6*8e999185 2,&rR%~ vkݒ֡I^)9HS]3cSff`d`ZRJBB:]1'SV>ָY֛.ܶ-d0M`# [gyo*v7?CPMKUZ^^]IZUhMBj5%ӗ"7?dΠC0A &,022-1L.m*%1!g83^)%, 39?EHKJIID%<0!CݼτOH`n/\QP$4ALEU[2^^\YSMF@93/n+(''~(I*,/26 9;=?1?>p;6-0& KK'r]bO~.@eP\/fk nmai~c[}SJA8/$s pVV6'93.Y+)-(q() ,$/2j6(:=@BCCA<5) @zF߳|eBB!17CR^glnIm0ib=[RI@:8E/k% NhLܖK Ӯy|ALGgJbaSj\%U5C>P Z`dfd`n[cTK@r3$5pǡƸ۵D ɹQ.iz $^(h**)H'#2 G;MG&&2.-6=EKK%PSUT;QI>/ ϼ6Q"$ #2k@KJT0ZU]]\aX/SLNF?993/+)([)+-11589?=@D#FFE B:O/ D($SֹZA 0BQl]eklgkygaZQ6I@80#(\i>WVO0c*6ْT~SV'&6DQZ1ade6dj`ZSyK1A4%oCڻL,ֺ0: ["%"'&y% #7gl & -n4;BHMbQSST>SOpH=5/_ be8ֱ̼D߄/gBCEGwG=EY?w5(TNλtOAh`;Ugu(/)@NZc4h/j8ie?`KY{QYIbA92*&"Dl}mrC3F%?_Q iE_&F6JD4PY(`cd]c_`ZSKSB6( &ْ޼OeƚVb= )1 "#"!&{!a&<,289?QE4J NPR"RP0MFA<. I&7 ]Jgs`#/ *7"CmL@SWNYX_VUR%MDG*AA;51B.F,+H, .047;U?B>EFFC;0X"p`ޤ]T{yLm',<"KV_-egCgdd_YQJ}BV;4.&JK b |hIDٿn.qݕהՃԁՁ?&65BNX^vbcdb _ZS3LACB8+!" 5O)ǦӸ>ֻ1V?<"%/ E }p #',927=BwG)KMOPOMJnD:S."C͡L ٲ|Àh4CE#q14=FONQSUgVTQSM!HB=830.-O./25h8;3?/BDE0E A9-{ffGΝϹWsظ&^j(8\GPSe\vbee|c3_YYR'KC<60}*# ?D\bML z 4Fg$3 ALU\`AbVa_^YSLoD@:-]( Öb8_QVWqe6S [ 4$w(T-27?=B^FIfLNNqNZMYKHB9(.>jʼ"k|ڻ€VSA2*6@HKNQ SsR>PLgHC>.:G6G3O1l0013.69<?ACED?7G, @ܴAß@Sڴq^0ӞFk&$5COXY_chdb_YMSHL0Ef>I82.(" ub $#]>ݩܮ-SFvܹAF׼؅k"]1>8JSZ^`>`]wYSgMExt!Tk#{7,c1뷚͵aeq -;HSZ]_ha`e^ZTJNGXA};r6m2|/G-"+`($M D+Z ьQ7bҿ/կfګG`-:EJOVP[]]*\XSDNGe@M7>,~93]Ҫ@! „4ȶ̠я6Kߦ5HHkaC D#+4;BH"M]P=RRN@KGC>7-!x)!-Է޸Q5ϔO;S1y(06;?ABB!B@`?=F< ;8:99i:J;n<=*?@AB7CRB>,8<.!|էBҵ;O(7DtO{W\h__]YTNHB<74%1a/./.B-/+'z"  q%ش҃ΖZQїbםGl,9DN%UY\\@[ XS*N%HA9/$< [$ I[О}ܣX: YE {(:2;BjIN6RMTT7T`RO?LgH D?(8.'#7wظnxLjͿH\ 2 (p.3Z7:;'? @AAB(CICkBi?a9#0$IZs̕hW(*5\Z$=3m@lKSY\]e\|9520'0N00D1W0-(G"*ԃΣ^ƪilvIʝ7 ޫW0,8CL'TY[:\ZWzSONHB;g3s)y̹aȗʔ̺6Ӻ E Hj $.8{AHN SUVV7TZQMI E?o90%X $sh҄0ܹ 9ũӈ|&+/+35T789d: ;;T<==>?@^A)BBZCCCCB@[;3'  JP`2ɵZ-գxe.;&GPV`Z[[qXvTOJDb?:6442c1}1a2344J2-&h^{;cf@qA͎`g`*Z7BL^SwXK[[ZWSN'IYCH=^6."$ G'd]ϑ̍9baڠ^ޑA#g\~ */5>"GMR/VWWU&SO?A4B CCeDDDD(DFC!A< 5*{iaEȯӹ-໐ɤr8> g1)6:BKRW.YY4WS|OJfEw@(l}%֪ͬƼ׾ž+/x H)6A9KRX)[\Z(XT(OI De>81)' b KkU|$"JW4Ӊٽ!ޟD#%hA&c1;D[L'RV(XyX:WT"QLHB<4*O#ق /CZݳiCrS"&P*F-/D2468:<>c@A3C@DE}EEE>EDCA >p7-!<#Vה=’_ͺ+J#0"q< D!o-?8A*JPBUWXXUR\NIdD>$7-?"#0 Sz(̓ه0d./-*!R%(,.1m479 l@ABCDEVF|FQFE"EDBo?91y%sĂĸ.ݹa;gB*`6u@HsN+RSSQNGK%GB>;8655t5e67}9!;;:6/J& wh:d8Q~ %3>IQV`Z[ZXTOJ?E?:|61n,%c| [aFm@Ф:ӿՆ(ًګۚܓ߉Lsg)4>GNT^WXXVSO,KF{@9G1&S ;؃Es–Ɩ#&q $D(+. 2!58:=@:BDjEiFF+GF{FEDB0@%;;3{(` ;߷}}|0=B 3 #/9XBHlMPPPN&1VQACfEFGGGmGFvECA4>/8U/#XXI"/л\Ʋ΂ #\-:6=?CSGIJJoIGEB @=;:9y99L:;;\<=n>`>?-j"Vݸ{޽5P_R m)6%AMJVQ%VX^Y,X~UQ'M@HSC>:7641{/+&%B_:_̋ FVԙۿOQa f +y6@QHNSwVWV UQ NIDk?9b2t)`o0W=xYϯf7BEGHG}FDB@>;=;2;::X;<<=>8?2>:,4*[؞ͥ $M?' {@ %2=SGNS WXaW)UQMHFD?;N85|31/,' a<ӥ[ʔJx*%|JW)K4=PFM R4UVhVTRbN&JE@x;5.$Na֣:!1ŵ^Blq `y( * %)-15_939]>A2DZEEDCoB@\?>=N<;<\<<=>K??5?<7Q/u$@ pIEU$غß)Ӧr!j.9CdKQTTV.VTQMIME A=9753Z20c-<(3!&/@Sɮ|_8)=D-(i'2;'D K:PSkUUNTQNJOFA<71)H  ._ϩǓƙI˲΍Ҵ ۲&+0 "'T,04a8;?ADE GG HG@GKFD2C@=;7.#2- ~P߻3I¹ ؚw [&'.K5Z:)>@eBC CsBAk@N?V>= =<>??I@@u>V:K3o)Bl4`ü0+1Niq^q*6?H+N:R[TTS-QMJEA=>:X8Y643281-L(  K4cR̺ɆȔȯɣ94{D܉O2%109:B0IN2R/TTSQNJFB>v974-%g )O1ǍSO a0- s &*Q/x3X7:">@PC2EFlGGG:G_F)ECSA<>n992(Q+a1ٽټ d̠ԅ0]#d+1!7;=?@@@7@|?>>=R=M===>EjH́@.C &w2>>>/>=_=+=*=d==f>??@;AAA@F>^91+' O\&î2ĭQ"#.8hA HLOPP3OLIkFB?E KOiQWRQjPMJrGC?;7,3-&PN 26v&e9̕PB.ӽߩP/db#(e-15'9]<.?ACE"FFFF)F@EC*B?>< 7/%)/ ?#ДHDvöd!<h%,N2g6S9B;i<<=<l?Q@(AAHBEBA?;48+]^S)i(z8if +5g>3E/JcMNOMK6I/FC@^=;d938t776 64r1,$kܲԇ2'Ɨ@&el, 8 \(!`+4@BEDbEF_FMFE%EDkB9@8=8u2)XnḐƪ)ewc9-x+#*t0479:);N;>;;;;\;;?@AlBBCgB@=7/#7Eɞ %PКdo0!(-3;BG:KLTM~LJZHEB@=|;98:877b7640o*:"n ؔ= y6f= 5 &*_3;SBGKLN|OvOfN}LIGC@;=9 62o-|' n !1~7c?̅͠t9ځI   &+a0J47:=?A[CDGEEEzEDCB@=):4-o#s b|Zwf~xù  (.83-6 89999m9q99::;<6>?@ABCC;CA>91t'W XcX͈#{ DZΉy &0q9R@sEHJLKJ3IGD B?~=;Y:v99888763l.4'g~AՃίɜ:bƀ͛PzSr(19@.F1JLNBNgMKwIFC@=~: 7b3H/A*#B >]݅|ώ__P&p+ 04~7~:=M?$ABC{DDEDyDCB@Y> ;f6/"'_"Oւŏr8Ѫ; N&W-2=5$7 8|8z8K8$8"8[889: <=?@ACCCGIIIGEC1A>=t;U:9b9h999,9+851+_#ys3Eю˛ompՏf2v'08n?DHcKLMOLJHUFC@> ;7q40,7' p3Xz=}Ճiy  C%*/369[9@ABCD\D[DDCBA>;71*Y 0 nۨ1nŹUךY$+0X4R6F77j7"7667789N;<>b@ADC>DDuDQCA!=6#.#XlŋnCGWPY "8-5<2;N:999B:n:8:g97h4/'qXGf/\!Cδӵwlc+U&/7`>CG5JKKCKIHEGC@>V;e8751.)$55a PoUՎ LY Hi$_*J/a369<>?@BBTCCCC!CSB@>(<83, $*t ϸʅV!M]#*/35666?6555o6c78N:<>?A3C^DEDCA_>80P& ΐy´<˞Ӑ]=K!+Y40;=@C}EFEDBA?R=;::99d::7;.;:9\61)+"_$ cS~D2\.}:ٿ&<%.65=kBIFHDJJJH#GEB@>;852I/b+& [$G\lrޢGθ9ҏ۔6 S#).36c9;=5?v@sA.BBC*CCBB@?x<94f.w&VGۥ(?yԟ6lq |!(.25/6b665544z5l67s9`;h=t?`ACcD1EIEyDBr?:.3);(YFFʈk8P":*39?kBHDDqDKCA? >g<;,:999:-;;;j;(:74'.>&,ҢX!7u-F$.5?@A B`BBB_BA@.?<9x50(   wZm+ɋ &8'-145 6554(4*44568:<>@BSDGEED'C0@;4+l 8tyպ̍ƤyħRoۥ16(18=ABqCCAS@>?@:AAABBAxA@?<9661*"b-:uϿn |,/:S%,03R55g54%43334+679@BD;EE$EC@p<6l-"c$ hφ3BŸUɄ. bM'T07<0@BBB@Z?=<:98899:;<$==.<^:Y72+'# VyCQǙœ!ʧ4r8P ?#,~4:?CE5G}GFEmDB@?U=;9L741.+'"D wuE* Т|Ι ճ:np |l'F-I2;6O9;~=>?@ A\AAAAvA A@@><:n61,$e<;98X8W889:;<===r;84J. & }XŔSɥI "+3S:Y?BPEFFEF4ECBg@>=f;97O52/,)$Ghc{޵$fѝ 5%F,15-9;=>?@AMAmArA`A/A@ @><&:62@-Y&4 @CTٻuzμM1 !(T.-2\4;575443K3304`568;h=?ACDEMEDA=b80&_Z;{'IċΖb% '#-^5:>~@ A@d?=<:29I877h8Q9}:;==?>=]<9"6]0(gCw+Ɯȵ̛|hH  *2r9>9BDE%FEDCCA @o>?92(W$Vմ28Z2!+39=?m@ @>e=;(:877748(9h:; =,>>g>6=;o72z* ! I %vˎ#ٽE)1U8=jACGEEJEYDCA?c><;:q86>41.+(d#^ ?R)c(7bf!)/48;=?@IAAAAABA@s@?>@B$DDE DB>9 3) Aɡ,/7[Bgk)*2b8<>??>,=;:8777-8#9c:;5=^>?>=;83N,#Cf !7<@C EEEEaDCA@z>=;R:8742/,_)$֊ujcШQ )'b.368;!>?.AADBVB-BAA Av@?}>@SBCDDCB?:4B+ j{kSO*%cT.sCvb''06h;&>b?r?>h=;n:,9C877G8)9Z:;!=\>&?D?><95.%g){X΍Əİ4޲-%. 6;/@"CDEXEDMCA:@>;=;:?97530.*z& h qZךDX̋͠+WN)@M%,2i7A;.>Q@ABC$CBBA_A@?><:7X4&0*#]&@2UͥY#w %+703455555Q67 8}9;<>Z@A:CDODCBT?;4v," / pʋyĊij! $-494=>J?>=q< ;98[8B88]9q:;=N>1?z?>=:{6//'B:}ϴf=g lJ#,t4:R?BDEEDCTB@1?=^<;9f864<2}/G,("r_ 9`nỏ̪v_d"f*0_6:>@cByCDDCQCBA@?>=:*840+"%q (ڵZЮͻ̍8~hPJ!($.14v5+666 7}7+89F:;%=>:@ABCC`CAx?;5-|# 6gz2M* !*n28;>?>I>5=;:9C9 9=99:; =6>??@?>;71O)~i,ɲœUa̙Ҟڃm Dn 3*j297>A]DEEED-CA@z>=;:497530-)o$x3 /MWY<˷m`Ы}bZQ ='.49=@BEDE4EDdDCBAj@?f=J;8w51,w&8 t?IH[s]( 4w?%a+/35_6777P889X:W;z<=>C@lAiBC\CBA?<6.%  *k"ł͗MZ /'/5M:'=>$?>>= <;n:::k:;;=>>|?d?><9`3G+!]/9٫ʔ!ßèBؓ["L'/)7<ADEpFIF{E8DBAr?=?~@^ABBBuBjA?`Үqn( "+28;=?^??f>=<;y;B;Y;;W>M?X?>)=:4-+# uڂшʥŊ՚j #,4:?NCEFGFEDqB@#?=I<:9(8Z6.41-(!EL|L3\AɈ ˧O#L7 1 (/46;?CeEFGGGFDtCAN@>o<9739/B)!i*Vyq&@V?-M"#|).|2{579:<<=>9??@AAA???1?|>=(=<<<<]==>?$?>=:&6.n% ll)ܽKų€!d̀Ӏ#?LmZ)18->vBrE=GGGGE DEB@>G=;:(975E3/*$=` [̀5\G̼-Խ٘g}|${,39>BE{GHHtHGFFD C>AU?:=:840*D#'#ALծ˔.ϻ\ =$*/379;g=>?r@AtAAAB(BBAjA@ ?<82o*%wIΩȆą~T0BݔP Z!<*C16:=?@ A@r@?'?>>=== >d>>>>=;s70'][z|̕P4ÆN(!Q$-5;ADjGHIHzGE DB8@u>IGTFxDzBf@4>;&9 62,3%0gSݰծlȜȐʰk =A %,&1q58;<> @bATBB=CVC?CCBEBAA.@>>b>_>l>n>7>=;82*T R[!E\BΧ2aݕx7$ v<)1@9M?CLGZI@J/JNIGECA?=N<:m97'63Y/*)!T 0 m nȄ0?uɘ{՜.3a%[#+3K:?DG!JPKKJIHFCA??<5:H73q.u'x /ދS^_ˉE) 'D-257;:>@BCDEEDODCB B%A@><95-|$8 onҾʀeZ+¥ğ0&(.q49=t@pBCDDCBB"AO@??>V>!>=X=L<9(5-=$ . ڢ2¾ƥ˯ح^#W-5/ !"(~.49)=@)CEJFFGFFEDBAT@>=:s60U'tng}śƲ6!Æ;-h ob(/5; ? BDAEEEE(DCB@?+?> >==K<;9/8635/n(O 3?/Ğƻ1F1U y!*3:A.F JLM&NjMKIRGDA;?<963Z-%D|#ڸҕIZӐ؅d8.4)")20*6];?2CEGHHHGF_ECOB@?^=;;7r2* 6==U<;.83Q+W!wi3ZH;^©+˷Ѻxm !f+;4;2BGJLMCMLGJGrEB`@>,<:9751+ $LG1NؖСʉDıã1׏G8Q%G.6=DHULmNEONMKXIFC@=D;t84/)= ~ LhZ$Ƶt"ɤl՘r">S "L#*1@8=0BEHHIJJIH-GcECA?=;8#4--# kQLĆBÉ!˦"ץ8"*2h8=ADG,HH4H[G%FD)CA?@?>%=Z<];[9X5.%_"r Sdΰ ܓZ]"%.j7>DFITLNmNMFLJGDB?R=i;9j86+4/( 2lj 6ćAسr`j?y (2Z:nA,GKmNO7PeOMLK{HtEdBj?<962,$*2we4/Dz'Fc .to ^$, 4:@DHJKBLKJ(I2GEB@>w<96/0'32ߣ/ƁS}ćz3Ӿ8UQ#+839>CBFTHrIICIAHF;E}CA1@>=<;: 71)7d(* KWjƫʿ‡j!ѱHQ6(1L:RAFKMNNM!LIG-DeA><:E97 62,-|%18a ʞQ"FtX̿ЈDD%#,6=DIM PPPUO-MlJYG&D@>=;885h0) # 9aο\Tflt؆49 &.g6=BGfJLMML9K8IFpDA?Q=:72+y"Z =l&ֿAƯϟ!z$-}4:@@}DGIJJJHSGECA?h>=;:84..J%`s{vɏۿFĀȾ͸Ӎp !+4 1*"g :K͎öDvץo,!"'09FAGBL|O8QQPNjLbIFB?<:27f3-K&ho|>NȔ̵վٿ\m/ (918?EdInL>NNNEM[KH]FC@u><;965./&NmbḤkH Z?%I~Q %).5KHEB?=;9864@/4(cX6pڤѣʏp1ÎnΠءff4  +4&=XDJCNPRQPJNlK+HDlAL>|;851I+ # *!Rφɞŋ*IĜɵOya!R"+4;MBGKJNOOOSM KWHrEB?"=:W7p2c+0"9 CuBɀ<#64LS=X ?"'f/6L=BFIKlLGLZKIGECRAR?=<:d8b4 .O%aZ.;wcͺW5}Q':19AF,KNxOONLJGDAK?< ;9;8l63-%W9֚&ȫ+XDž''՗ڿwtB5$ /f8@,GSLOQhRQOOM0JFRC@=X:74/')n  {4\6ǀtǓʑF{MqL%L.6f>DIuMOPfP(OM~JGuDqA>; 958/0'1:{\oæ2m ĸ6| S<(08>CGJLHMLK2JHE[CA>=q;961*j ^AH4 /3(l>,c ^ *P3;dBGKdNOOjNL J=GRDyA><:V9751+##7 ]\W5S@Z̙|TOO(2;uCI%NQzRuRBQO2LHbEA>;S963-t&ATNtx˷ó.dž˚NJ] 'I19)A?GK&OPiQPOLIFTC7@W=:Z72+#a| ZO^R˰…}€mirT6? L )1o9?$E+IKMMzM1LOJHEC@k><:e8z4X.%gks%Ҳ{iz}4OvVѰTh D",5[=CHLNOIOMKdIFC@T>1<29510(9 eX#7RsBvʁ]l&"+3I;AF}JMON~NM4LJGEfB?=;96B2/+!J @>anjX5EM`~7o%/7?1EIMNwONmMAKHEB>@=;5:873c.&WDo1ǘbsŠʶԉk0 &09A^H?MP9R~RQOLIFB]?z<:7/51*"t v-*QcS,ÜBѲE2w,X%.7?mFKJOvQ4RQPMJjG D@=:73[-%:y߲ՠ{[2*Zț7S]YgC;Q$P-5<CHKMONM;997 4/(>  |Ǘ2ƾ3ҷeۋmv o(m21;BHMP8RkRgQjOLzI FB`?j<9i61* " e:|<7Ư;Ō~B6ܜ r 9&,/\7>DAILNO6ONLIF DHA>s=b;92850)  *~wMȆ=ӭ3}!$Z.7?FKOQ%RvQO,MJFUC@7=:8z6>30.'jr¦ƅʹ+מ96 g",6b>tE KOQR>RPrNyKHD>A>@;q84/*(+7;!#Ͻ{q- t8(19@\FJM}OOXOMKI"F9Cl@=;095u0(4\o-4W•Ӿ׿Xvuԋ/H",4x<;97l4 /_'4`3uʹkɾt&ƜʗچZhy)+''1:=BdHLPQQPNKHxE3B%?s<6:N862-%,S&:)Lɳ-I4ˑ% XO&q09dAGLBP!RRQO?MJF0C?<,:C7?3c-{%}-09 ϲTIIm_K^C "v+74<:^987]3E-$x ʸıVX`H(R?t rE!+5n=tDIMZPWQQOiMJrG0D A/>;9751-,2$Uͭr+Lp7=G5  *4=_D-JkNQKR$RPNKpHEA|>;+9661+)# l([U|ǙÞiZ ̀"{L2$+.61>DIMROAPPNL?J]G]DpA>D<9652H+/"F KUPXÀ'2(ӫػޒx` i'N0P8W<:8F61*!Y xi^vÿ{@N/w]N-%/8??F K~N^PP7PN,LNI/FC@n=1;\97:51*J"u 8/LƂ«č̋|cQ$.8 @FKoOQ!RQO\MTJGCa@j=:c8N50) ! P;xk1Ʒ{1"ܖJ 1(@1y9@{FK NO^PO7NKDIMFKCh@=Y;835/':|*rLΆ,yØի#<  )g2:@EILNeNMDL4JG*EB@=<^:[85/'lJv8q7ʿn0ƾkՙ۩8a g( 2{:AyGKN P3PCOsMJ%H E$B^?<:39h74/(Ir u8īK£Őc,)z 36)2~;BHPM8PQQPNKH{E0B?Z<9t74.'dBnђʡšwϤg؇JnXaH"+4d<CgH\LN(P0P/OVMJHEBL?W<:873.7'y)^ȗrƢSb_}?#-6>EJaNPUQP`OM:JGC@=b;+962b-%ק9ɺ*kGľǷ"0rHUQL&7/7>EIDMOOPObNPLIFCA]>;961+"KE ۿ>]P=dv2ӥثއnV O&F/7=CH&KMMMLJH FC.A>:AsGKNjPPONKHEzB?<:862,#{g#NeýaŏȰ;R7&  *2:AG(KMjOONOMKeHEB?f=;8=5/^(cQA~ϥ)TԣH P ) 2i9?DHKMqMLKIGBEB@i><:8j5/(/ gW͗iپ ~]4g,R X| *2:A\F < :*85C1*-"6 6a̼SU¡QɣZz"ݣ8vevr%<.6=CH4LWN:OOMKIFDUA>o<;:73-p%W{ߥՃM!6ș̂ܜlK~ 1$,4z;KAE^IKLL3LJHFlDB?=/=;$:850)e Y' p9!è1\¼pԬYB (81o9y@-F|JaMNDONLJ%HUEB?y=j;974/($ -ŜRßImߑ?*F [1 )=29@F"JLlNN$NLJHlEB@=;m962x+"$Z tV'Ɛ·Ś'<=ߑQ! '0f7=B GIKpLALNKIGEjCDGJL}LLJIFDoBM@c><:69!73K.&[\g%W,eİuЧՈTFX4Xxb$-5<;8|5/'[QD֬ NJ_̏߅($,4L;@EEvH{JsKzKJbIGE|CoA?=r<*;9737-$p^]k|ţҿ࿒īȏ6raj @(08Z?DHkKLQMLmKIEGDbB@=,<:862,u$YWek÷jJC<^ " )A29?EHKL\MLKIgGDB5@ > <:738.L&t%|C[ jwĂ{ݔN& '/6fnKQ0 u(x07x=MBEHJJNJdIGEFbDwB@?=H< ;962*!< jٔEVuTmoDm$e-e5G,=;/:861*"" u\z ̏y]N4@~RMA&.s6 =~BFIKkLELVKIGEWCA?=?;P96J2+<#N /;͍ ‘_)ʽ;lFw/#,=39>COFHI&JIHGE)DXB@>e=;961*,! EVٔpXSOWk]p$,$4U:n?oCZF>H4I\IHGlFDCvA?>S=*<:8s5/'~)YZŽ f̷ҥZ  )19>CLGIJ2KJ}IGECA?+>^<:850r)A v O#Pۅ҆}e0±¥Чւݓ  (X06\<@_DFoH)I&IH~GFDBAA?>><;85/&2 VXnjU]$ 2ۧb  6!)0b7<@3DjFG=;:83 -"$aX l˿'Gʮ3-<&.5<ADG?IIIHGE1D[B@?=Q<;9R7l3W-%j-4֬ΦȒsdůQl {(p0j7N=BEEHIYJ JBIG5F]DuB@>E=;973-&J%WCʻZ5Ƹ-Γڹe s%-949>[BEFG@HG(GFD8CA[@?=)2BD4FFGFEDC:B@?>=<;961)O M/Fjğ-[6v*Wg#+n39>BEGHHH GEDwB@u?0> =;:9V61*!1k Bܸz)`®zďǹ91%-5; @CFEHIIHhGEYDB@p?=<: 9:61+l" {pΥvÅ2v#5+17"=;f95y0( AيNŵÆPP΍2KZED4$+2A8=<(;84@.%=qBCYlǍðReƽVOz  Z)0r7<@CEGnG GVF5EC{BA?>=<;I:584/N'yz396Ї Ƈ"ƵkOԒPt.w#+28=ADFGGGFE!DB?A?>U=;N:'84t/ ($3',}DzļhąP[2/3N!Q)A06:>AC(EEEEDCBA@?>=i<:7W3,&$|ލWȲG(L!)0T6:~>!ABCuDoDDpCBAAH@?>Q>v=9<]:272*"! H00{Ԕ;;'.V5:>B8D|EEEWEsD]C3B A? ?8>n=6J" Y!)%1O7X=<:;T96A2+#~[AВĢŠȄ̫3F C'_.[4A9-=+@QBCDDDDhCBA@@M?`>6=;Z95r0(v|L?mdĆ`ĿƇʱg־ުv '.4s9=?AB>CTCCBAXA@#@?0?> >=d;84W.%:@<ŒĜҿ"%-3E9=@B.DDDGDCBA@??_>==<:85/(}ZǫàƓʔ;^ ZK(/5:>ACDYEFEDCCA@??3><=<\:84q/9(#( S܋%=ŢŠʚϳfݲX* %, 38;>ABPCCC.CBBWA@@t?>=g@>AABAA(A@K@??a??>=c<<:6|1*  J"#P{ċYĿƧ!OH<#+\27'y>>=<;96=2+ #p ~!ߺmkƻgxԽ.8B&-X4}9|=n@sBC3D2DC&CSBtA@??e>=<.;(9I61+#]y)"ٶ 98+͉=S#+16:=?bA/BB|B6BAKA@N@?p?>1>=J;85/(-/t{͋tx҃ٷy4$'L$+$27:Y=)?D@@@@@E@??o?N?9? ?>?>=1;Q83h-$,+y3נ>t|/|k%! [f!) 16:#>F@A*B;BAeA@@{?>>a>.>=]=\<:S84/Z'W`-VqiOy4N$,73s8wf>= =;:73.o'sB0|cʎ{ɢ̺ь/z=T"I*059<?Z@AkAlA2A@}@"@??S??|>=<961.+"M \h˫=m˂j6ds3 "*059Q<>'?????Q??>>>?,??>=<95-0(18)[!Ӷ:ȪŵZӉۚQ }d(/59=@?@ A6A@w@?T?>>L>9>/>>=<;U96'1O*!O <m^߼ϣ`2yˉg*_~]a!#e+$2~7;}>r@A!B%BAIA@@u?>>J>=Y=]<:8e50*O" ha=>jADZȦ;З2  (/59<(>z?8@@@T@@??U?7?"?>>=<:73-3&{ӿ͋7Ǥǔσ  +)/ 58;x=>??>>>W>D>Q>|>>>?>(>?@@S@@??>5>===>%>=e=*<2:f7G3O-c%V=VƓsu* i!*16:=?@>E>>==????`??>>>>>>!>=3;84/('  JcsМ˙f۴ x'.48:<= >@>">=====>}>>$? ?>S=?;N84-%Jj`vҠ̯Ƞe5gМMRa % -Y38x;=???\?>c>==p=t===>>=<:R84:/'< 1yQϲƜV~ 9(/59<>@@@E@?A?>Y>>==== =; :w73.>( 5p̾XȖwfӽ%#-3u7:<2>>8?4??>>o>e>u>>>>N>g=;g9861+#HJ.]ӜǛ_*+"G%I-3e7_:J>> ?>=; 9)5/.(]&E/VʶǪRkT BD#+D2A7:=x>??>R>=X==<<9===>==;.951z* " $5؞ktǞz͑ڞ&y.p48<(>^????4?>D>======R=^<:Z8;50* #- b)ԡȇѬ؇v#+#26F:<>>?>>p>->==>6>h>|>E>=&<972G-%K#b<ݓՖa^{`,XXC#+169;<==l=(=<<<>?>=N<9K6N1w*!m 5>Tk ?lԸ P :!)0,69^<=t>>E>=R=<<<<&>=0<:72,$\59-ۮǐ-? [Ta%-q398;=%???}??x>==j=_=t===\=<-;96 2,I%\/@/UW̓ȫ=̝R߈  !F*059<=v>>>{>.>=====4>`>I>=<:74.'92D ^ubM֧p !)0z585;<+=U=4=<<<<< ==>>>>D><:\72,$Al(5L͖ɼDzxҙjr=(|/"559;=T>~>?>=E=<}<\(>=<:73R.&LCoݑkˈǻm}߆F #u+12I7:f=>??a?>Z>=r=4=)=A=n==j=<;96C3,.R'% NP/:rɏqF  ZH(P/48e;'=">>>d>>=====$>^>\>=<;85f0)!X ,h͋΂TUYf !'/d4A8:k<===p=/=<<<<<]==o>>>\>=;83._&A.n1܂Ԏt4NtѯZLE%-3<8G;,=+>y>V>=i=<=<);84/(  0$Q rȴHv + e)06:J??^?>o>==E=.=C=o====>>>{>(>====>8>A>==s;951+# ہIʏ.H%#-3X7S::>>j>X=z;84t/(5 ,լ0ːȽDZm в` NB#+$2 7u:<=v>w>*>=7=<<<<===2>>>=;X96L1*H"OH BR_ѦMxӃ E'.48<>4???K?>K>==]=^=|===@=]<:8x5?1L+#-9\[JԸȋ̸v)/8#+26j:?a?I??>I>>=== >*>=.=;962-%+ cPݱտϗ6ɚȬ}"ѽN*/ "*416z9;.==> >==S=>=K===G>>>>=;n950) ! MmGכпȑ(uʖΧԹܯ3T . (0s5[9;=o>>>1>=`==<=M==>A>*>=0<:72,$Gh$(j~U!_]$,27|;=X? @0@?|?>g>======R=M????d??>g>B>;>>>;>=[=!<3:73w.P'l. }޺s=Jhˈ~a) 5'.E4C8;<=>>>R>>===->u>>>>=Z<:6%2+# U5f]<{i͒K5?&-328a;v=>;?K??>9>=====>8>*>=<:73 .V&[)N۔Ӣ͇K knz{  )0C6g:T=P>>===q=<;9=739.&VY˪ȹkȱʎԃ۫\>%Z-c38y;=q?M@@@W@??#?>>>_>>=q<:B84/(M + 9ߒ:BEqkyOO$',:26G:<8>???e?'?>>>>>>>>=<:73W--%M0h$r̮ƫ=wd(~ j"*e16b:=>?"@@?Z?>>8>>>)>;>'>=<%;85/ (PndW ΝK7Ǵ͎h< V&.348<>@ZAAmA@d@?0?>]>>===[>=<=;95;1*K"N8  kk5A]FэߘM y (/49%?j@@@|@'@?~?C??>>>=<;{84.&D?rs̩k; uΊb)'u._48J<>$@@2AA@7@?=?>>y>`>5>=<;g960) i l2Նλ^Ƈ+Y.ط$ 9"*g16+;Q>{@AtBBKBAAd@?'?>G>=F=\<:85#1*! O;3הeȈƬTkգo&-38h<%?A&BBB}BBgA@&@??>==;962,}$.ylW̑ȠgǛβ %m$E,u2e75; >@?AABAA"A@#@?]??>>=s;(9540(Ea{۝1ͳU@ƳȜ @m"*b16:>.@A>BlB:BA7A@?z??>a>=*=; : 7\2+"F >&ɗ-vMǑ8]c 1]&.W4^9C=@ B0CCC8>=ABC(DDCBBFAt@?>/>==;::74v.&3C-ҧk|Ņѣg(z V-(2/49K=?ABCCBCBBYA@?e?>>(=;961*e! mBݦſPeʶtnq6&-38>S=8<:83-"%uPmq,nƖă͞Ҍ< !)06;=?ACDEDEDqCyBxA{@?>==;>:7W4.&A3S:} ˢGŴĽ-֏ޑ%9-3*9=@6CDEEREDCBAx@z?>=F<:8A50( ++;͌{śˣυo].L #*127;I?ACDEEDCBA@@>?_>`=ACD4E+EDCCB A@A?p>=<;8j5/'C:: mċå/)ֺݯ#%,3b9=|ADEeFFFHE2DBA@c?X>P=)<:850Z) Br =?cӬàijlӴ&d ! (/V6;? CAEF&GGuF}EFDBAP@?=<+;D9`61*)" /U8ɷHĉGOoͨ ٹ|O 2%I-3R9=QACEvFFgFEDCQBA?>=n<:|84.&2púeB;^{c #+s2L8=@C}EFFFEDClB,A?>==<';s96b2+ # cR͔Ōó[GB71Tޯ?b"+f28= B E0GXHHXHzG;FD$CA@>*=;9{7~3k-/%!rq׳áčDϝ^Rq  *(/"6;@CEG;H6(1)U G3 m)XƈÙ_ÚɊӓK<: v1&.4:q?#CExGJH\HGFEDyB@?H> =;,:7|3 -b$(Ia$Ն:ĉŸH8@:,6y:!*28->BEG,I}IIHFEUCA?n>=;:724g.f&x#ϼɊH~ʒ7ڝ,/y%-4;9@DD1GII JmIBHFDC:A~?=H<:8u5O0({zzk(gƞôrß8UU\߄5o);"* 28>zBEHhIIIHHGECBc@>@=;9X73p,#,c ݍvN|42: ծ܌c _g(607<9;f96s2+L#2 FʹqŠ(ʂ(X_j$,H4:P@DGIK,KJXIGECA?>[<:}84m/'s5wظA[LJ{t`VcH!c*22 9>CGuIJ+KJIH?F:D2BG@>LQLK%JFH!FCA?=;O:)84.'(l)VÏ3¿[ѝ'ޱPK g# X)1B9?DHIKLML7KZI GDYB@>0<:850)  K6ڿѣʆf9 hH$@-b5=<_:84.#'N+rϓĥ$œ'|j "8 .&.6=$CGJLXM MLdJFHEsCA><,;g96a2+". ܻ3˧*¦ənx"+44;AF^JLMMLbKCIFADA^?C=h;9X73-%J-%ǡlRĈ,7 ! =A&/7>DI,LMN%NLJ~HE+C@;><0:84x/(tc:cС/+|ǛFl{I}s$"R+3?;AF}JL9NZNMKIYGDB?e=f;n96^2+ #| (UӶ{¸ţ4E-Vy>F P"(519?+EVI0LM>NMXLbJHmEBV@>/'ELYȽ&z|oǾ˝۟]6Km/%X.6=CHKMN`N.MJKHIFC@>v<:8!61*!Qn m{ˏ£`n"7es y)^2Q:AFJMN4OpNLJH3EjB?h=Q;Z962,B$4&188 s(17m $.h6=CH-LIN&ONMKmIFC5A>tryklݾk '08?EJMNDON.M K|HEB?@=;97<4."'t= <n7~wKǂ<[,^ C"7,5ON-LIF DYA><:m8P5Q0)S`K;5 Ci2Բ Oj *3 ;AXGmKNuOONLJG E1B?%=;2962X,# $@Rn‚oč ׶&.r%/7,?fE9JMOAPOTN%LyIFC@>;9P73.X&d<;0JG{ǭQEՖ{: + )2; BGKNP0PIOMKMHQEXB? =:850) ,@ K|ڭ_nlSӌ?޼?QDop&/8m?}E%JfMIOOfOMK7IUFgC@>;9a73-%&2ߡb‰'j Ĵ֔A0M#,5z=CILO PONLJ(G1DLA>Q<973c.&cB4Ƞb]6kE`% (2M:cA#G|KgNO;PoOMeKHEB?O=!;9h62s+"!G "ܞEŦ0uaҜJݺ0FQ%l/8x?EhJMODPOAN L\IgFhC@=;9a73..`&L|7:ΰ1ñ+,q),ՅtCj2}%y/(8?FJ;N.PP;PNpLIFC@=r;O96s2*,#u x6Se}Žss̔ѓu #"+4sUEkJN"PPuPOLJFC@ >;9373 .W&wS2:AGBL8OPPPANKHEB?<:n8\50)  WڕJįV¾ŵ2 ~ݡaC$~.=7>JEEJMOP6PNLIFC@#>;9,7I3a-K%EuUd)ƢcMÛ˹ `!y+4x<9s73u.&E$Ieȷ C({ ˢσԢ<ߝ$& t'#19@FKNUPPOQNKI FB@f=;9W61n+"8d J:7ܷHŞIJ99׾*($L.7>0E,JMOP&PNLIFC@'>;9v73m.& ,j+ÒOߜzv@ k k*3;BHLOPPOM)K.H EA?<_:D8X50) T} yũ3_l\ͪҷ._ ih/b%/7?EJONSPPtPNLIFC@=s;R962,W$:b̶ƣISS = O~  !*4B<+CHLiOPPOM KHDA?<\:84/(MXIN꿓#ΰؖJ8'0c9@FHKfNPPO+NK IFB@{=A;@962,,$QR+86)%!n6h7NR#-6b>DJMOPePOL JGC@9>;97 4._'?bcϔ&ÂƦF.bߖ8 *(2y:AGLOPP P EJMOP;PNLJGC@>>;9Q73-%e*ּK}"?ǎKLեڏXO\%Z  *3;BUHhL OLPRPFOgMJHDA1?<:85'1d*}! ` ۹NK$IFC*@=P;R963-%9.< :74r/*(\`"%. 7Oخ,  b'0\9@F0KONPvPO&NKIFC#@=J;=96c2,#$l cJ3ݓӵ^̭aܣ\Xj$-6O>DI:M`O2PONrLIFCA`>< :74J/'U8 oY+LsäRƈBQԹٷߜ K e*3;BH,LN&P5P8O^MJ H EBI?<:8=61+"r -@zžČ#F5&/"8?EJMOePOWNLeIhFbCz@=;9'7r3-%P51sé%GYǠY]ڿ U!8+24+DvIM&OOO]NQLIFCAn>&<+:"85<0%)  r1ً`5sɇΌ& )2:A\GK^NOP#OiM KGHREdB?+=;96_2 ,#< "x6PAg̱֎,SL%.=7>DI"M-OOO)NLIFC@E><97O4.N'yFS!mýAùʶ[ڊJ3d !1+3;kBGK,NfOuO~NLcJGDA[?=:96;2+ # y^QCőۿĥ;>Ҭ׭ݑ{ ,'1?9K@ FnJiMO{ONPM"KHEB+@=;974y.&Vg>ΧÐtMNhs"x#H-5=CHLNOhO6NDLIFDIA>ifJєiIb%. 7M>UD I_L_N"ONMK,IwFC@>[266])Ȫ̦("@s[ '08?EJLNONMJqHEBH@=;9742/'+~#,G5<CGKMNNMKIGDDA?<: 9p6 2l+" ۉHųP#ɹkشY  s)*29@EJL5NNMaLOJG4EB@=;97=4.&-,΃Í=ǝː @)cP&K/a7e>0DHKMfN NLJH FcC@>}<:8M61+"[] !5R[9CSMٸY47"+_4;BGJ&MFNLNbMKIGbDA\?4=P;9@7l3t-G%(<r.O(šLJpk2s 3/'0t8G?D(I LM\NMLJBHE C@=>5l0ؾUO r9!r*2Y:@EILsMMMKICAHIKMMaM6LjJ1HE6C@><:*96E2+"Kk TN^H˟_JJE/ߣ?Z #,\4;AFJ\LvMML!KIF8DA|?n=;974E.I&RYRΟBn.@I\e c |8o(0v8>>DIHKL;MLKIGOEB@|><:9_61*! چ$y%YԚ0/lR%e.26XCuGXJLLnL]KIGgEC@><.;96{2+"0A 3=ˬ"“»ɩAԵB;  'v/6d=BFIXKLKJJI\G:EC@>5=;:7B4}.v&| :ǃ/.ȷ%bt#%,3:@ EbHJKK,KI HFCA?=W<:86E1$*  L rj>M]æϩ_>Ua[ v (08.>CFoIJvK'K"JHFDB@> =;97{3=-$uUvP2xl)x L $&p.5,,#  3p@ΓM1X* |(07=xB0FHPJJJIGHFDB@>Y=;E:"84.&{a[ϕ(ļ.Jpdҽ6[ f,?%-4%;b@zDwG_ISJjJIH G>EXC{A?"><';e961*! KW>ʱp"4DkwSS"+2?9>C]FHIJIHAGECA7@>2=;::74 .% ǨÉE_7ιڅ* Y(:07=?C5v9њ'?/%a-4:?CFHIIIHFDCZA?;>=$<:84i/'}H0 غ9ɹ7˜f =j 4'/F6;@DF$HHH'HGEDB@}?&>H>GEbDB8A?n>,=;W:8<4@.&AֱΆ`/%ũɉvԞ"#"*1G8=ADG3HHSHGSFDVCAO@>=h<:9 60)@ E= &ȣ/l  m'Y/5;@CE}G,H%HGF>ECJB@~?<>=;9V72r,#W RGSͩF[FРIXsO8%!-49>@BDFGG\GF[EDB8A?>=[<:8Y5/(SxIiOſ~-4;.^"*18=ACEGoG5GFuE5DBA=@?=<;96.2A+@" VNܩaǼX°–$̢d؎(> c(/6w;?C]EFcGYGFEDJCA@m?M>.=;R:73-%"(¦íƖʤՖݴFP<&%,3k9 >A2DEFFFEDC[BA?>=<%;*950N)aJtƗÜWÍ ɺ͠ڬY`"*17#=;':r73{,#l 3la5ȑ–ĝW-؈UD  (/6<;E?NBhDE6F-FEDCBAl@k?z>=b<:8%5/'_O)nuMe/݂%r- 49=@AC.EEFEEDBA@?>=H= vAnCD"E!EDD#C/B;AQ@~?>=>=;97t2+" }%ι>ŪÒŶ&XV<.#+2 8tA>c=<<:'8G4b.f&goGzʙPřǎм;K. Y 8)B06:i>ABCeD\DCMCBA@ @Z?>=:>\=l>=<;85|/'>CfDdXOk"Ňf˺б^ [!,*16;~>@wBSCC|C ChBA@>@??>=<;p9;6K1N*`!W Pd/0ŏ< qՍSi( '.490=?ABBCKCBqBAAq@?O?>;>j=(@BBBB+BAAj@?o??>=<>;8H5/L(`X`EȔŸĈǼ3&|" +1 7-;@>c@AnBBrBBvA@D@?Q?>>>4=;9613+"9 ]}Qʘ :Hϖ6 (/\59==?6ABoB\BBA@Y@?e??><>=N@A,B9BAA@m@?~?"?>o>=<*;865/(_6 O܀8ifTzѝؕ1x0#+2(7;=? AAAA4A@:@?j? ?>>.>Z=;96"2+# f@WǪžnǩʅ!֞[d> R)!)a059 =%?y@*AcADA@@ @?M??>>f>=<:-8E4{.&&DSҹw~ŗCɎ͒u*RIK&b.N48V<>N@(A{AmAA@(@?N??>>`>=AA@&@?T? ?>>>>C=;962+C#R;g~;&bVϙ0߇ 2 !#*06:<>?@@@6@?s?(?>>>>r>=<:8,4t.&U6۠x*ɺ E]L S(?d@@p@@?O?>>>>>v>>=;950) t& gg֞ϨʓMƾȌ rٽTM%-137n;=j?E@@@8@?_??>>>>k>>Q=;96M2,# gn|̿ƭ*H և "*m16^:=>?F@P@@?S?>>>>>>G>=r<:734.&VRJKl@rǺƵQʦ   (/25L94<&>L????s??>>f>i>z>>{>>=r;95z0) a 5Ho6?$AW"aFe&-398m;=>???L?>>Y>9><>U>y>>D>="<962s,_$2Wِ_ȋ˂jS #+82'7:9=>???x??>Y>&>>)>E>[>4>=k<|:73>.&7Zz$ Ȣ4{ݟ'MY  `)N059f<1>5???f??>V> >>>A>^>Q>=<-;8'5"0H) r ߒmɭ_۵'^.4X8[;X=>?0? ?>h>#>== >B>u>>P>=<96s2K,F$KMSMɆU5SrH1nI2$,27:=s>?@??>]>>====3>b>N>=<:73U.&Ks*:X"Ͽ.iUhFޛD| !S*1F6 :<3>?N?4?>y>>====>9><>=<;850J)  6YAG (ͺӆDJ'.48;k={>>>>h>>====>N>g>&>V=;9j6 2+#W5MӷPɛ9FP%-,37:=A>>>>_>>=====+>^>K>=y>>H>==P=>=]===:>O>=<3;850@)  )]RaDUvcJD4 k(/#59;~=c>>>W>==^=E=V===->P>>H=;n9O61+#A1t!/Ȍ!q%-3 8*;+=R>>>>6>==T=O=u==>;> >=2<:4713-&gNݑՈE$.˟MSc#+26H:<=>>n>>=\=*=$=I===<>G>=<;_84/(  ]Kvs5ȶX>8>==5==<$=o==4>c>.>_=;s9F61+#*[_LE<%@ͨ'ڦ ~&M.(4p8j;H=O>>>S>==4= ==F===(>>u=!<:7 3a-%KG"qtA8T,Эz #+^2'7:< >>>x>>=P===7=|==>>=<:7D4/!(pZa Jߵ;х̛sUzϜn !)05e9;^=>S>1>==4===)=x==7>[>>8=;&95I1*"D Ҧip6e ۭWj'.{48m;/=>m>Y>>=B==<?>,>=.<:72--%L˷5mkT@7$,27:>>e>==1=<<=h== >>=y<:74.' sCNHFqes˯+Q Wq!)059<=`>>m>>=Y===/=q==>1>=<8;8[50'*!H  ٥{ʅȫȌ:ӊ*SYx '.48m;/=#>>n>'>=j=*=='=a==>D>>f=;962,${-uԶʣEȥ %,!37:<>>>L>=|=+=<<-=~==#>%>=<:74.c'p%[yފF 7 ɗXֽ "y*51L69`<=>>>2>=g=*==/=l== >>=<;8.5U0)B!Yp = Tȝș_g4'.48;d=`>>>w>>=l=H=Q=|== >+>='=;e9S6 2,"$:88J~AȽ-A%,37:=;>>>><>==L=D=d===(>>=N>>X>==Y=E=Y===%>0>=<;8 50-) k\ "9[R ȃȩʓd3  '//48;=>>>>E>==t=r===>->="=;U9661+#! @ Ӗ Ȥ#AO %,37;@=>,?L??>M>======>=O=<9$7"3o-%Gʄtgߡ- 6"x*&1D69< >>I?2?>>">====>,> >=<:A84j/R(v/ {'hǁԜHkYT '/48;=>"?/?>>E>====>=>I>="=;M96m1*" ѿVɻǧ!gҔ٤Z4%,37;\=>h??m??>F>====>'>=K=;973+-f%2)uǁȰT@k !7*096:<>????)?>]>>==> >=r=W<:744.'|3CՒrȍYξԃ8m'.k48;="????k??>`>8>.>=>J>8>=????5?>>R>@>E>V>R> >X=;972,$2)ڷCIǃȔQLh !*0$6:<>?W@`@@???>>N>:>8>0>=l=L<}:7!4.',ܫԄ3ʺǂʮΑAܷ\:&D. 48;,>?V@@l@@?%?>k><>> >=Z=a<:l85/)5  #MЅ˒fɔ٢b(?#i+16E:<>?@'@??*?>q>:>>==p=<;;9!61X+#/-$ Ҷ<ɑǖ3]ъ׼ߐK ~ (/49; >I??@??$?>Q>>===<=A>==T=%=ڌ#g,"*t05u9Py?@.@???> >=P= =<<<`;974X0){! ؾѰx3Ͱ׽"b '-h37:B=>????$?>>=Q=<<@<;O:}852A,~$M[8ۢ1.%и%ID$+1P69]????!?>>~==3.&RՙA˶ǴʤμdڤY![d  (6/r48;=????`?>->= =<2<;=;[:9 7 4k/(a hn Pqј̐FȚfʐؚߞ| [%V, 26:k?????z>=9=<4<;+;^:'9]740*"[S _Ibʝ}ɞ̰ w<d")/48;=>???E?>=T=<)<;;a:N9752,%-rVjM\JɝD;Ԡڅ-   &-2>7:<>p???N?>>L=<A>|=<???J?>==7<~;::L938641+$v^oD&̹ρԓ/ $+8159@<#>G???p?>=#=E???>3>V=o<;::A9Z8(752.( ; kD;Daʭ͖ѥܚ~\ '%A,1469U7???.?y>=<;: :;9Y8D75340*#w% :gϟ˙;Oʱ3ԓڙMemnw"w)o/i4d8q;=????>=<;::"9;807541f,%8K|Q^3B` OӘ or x&,D26):t?????>?=+<;:,9@8A7 6f41-'3 '.ɆHc v#1*/48;=>??5?w>=nk??j?>=<;o:[9X8Z7E6473a0+%%!5PN͓mgzφӐاMb FA$*0b519<>B????0>=;:m9P8F7564e30,&5 He=Ӏ΀2m˳^֑> YH '-3]7:=>??W?>=N<;98u7[6*5310.(!gFQy̡aʇ5q՝~8 q$M+0589<=??^?>=~??>><;.:87n6J54270O,v&2 ibڰ˥cϖ?~) MH%+w169xO??K?>b= <:/976^5"420`-0(!VbՒ6 R΋їp/\ x*"(.37%;h=>m?b?>=<;92865X43_1.Q*#=n|"BΦ{bKԠYP*&o,1\69<@>)?X?> >O??V>0=;=:8/754@31/,' wCX{ݑFѱmu̡οў7ژF&, 26: ?7?>=Z<:597 64j320-)#X9i^z ͢<ԉ؊a(T" F-z#*/48;=>/?>><>;97^643620.*y%$Mf wsVs[Oj13I~;_ G'g-27c:>>2> =;9K8653g217/@,' ^1gx#|zҾ#a] $*-048;=>>m>x=<:87|532B1/a-h)#^@w Ծ ̍;\q%ݔ rk '-3V7:>>=<:<9r75$42P1/-s*?%9 nu)Y4ή̣9d3דۘ_, Ux$*0J5 9;=>>><;9736421&0k.+' :.ߒ.nT̍~XڲPnR +R!(.!3N7}:<=j>>;=;C:w864I31o0.,(j#E Df" վ*ʹ=ьsdZ-7%+15E9;=B>4>=H<:8745~310 /:-*<%V uׄ0{CW΂Ѓ#JT~M} !(.37:<=*>=<8;t9753<20T/-'+'!_iCf~5sϊ:5u"%+915B9;M===<;:$856W421/.,(B#@P SMpCϢzبY| 4e"(.37:<==#=m9 5 CM!'n-8268:`;U;:;9}7~5i3]1w/-G,*(%  EM"rBԞpН6,ז[o+'4c$*0H4~79:/;:97 631/.,+F)s&" &)ѵe֝1 G O q!(-L2586:::9i864r2c0.,R+)'#vJ31ц rv۝ߤ!B1 sQh$*/47-9F:|:987-531 /D-+D*`(V% V 7҇yѕҩp׳G!\$R CP"|(-Y25D899:98p753g1b/-+q*([&v" fܰ:AҧN{ֈܨ:#P %I+-047899*97$6#42/->,*L)\'($ZTN+(lӘlذAC t "(-A257/99,98642s0n.,*)'% & , mUԭ\8է׾(+< g~%l+'036g8/9 9V8625.31.-Z+)W(*&"]sټ}ӚiԳ֔d.Z.hf"(- 255Y788T837531/-+-*(&$J "?X׃աؿ& 7" Qo0 ]&+S03j678X8m75"42/-,]*(T'$H! e H{7GBeտשk(KL# )-1468+87X6420.,*A)'%"YG@@NUԞӴ֥)(  v }&+!035V77765+31/,%+)(l&#} [-JS Gӧ_ ߆:X}k#C).14t6X7]76^531/-+)d(&$!Qq"l!2y׬* .x q &+/73m56 7654%20.,;*(E'%"&Ac hw< 7ԑ|Mv";wig uj )$)!.1\45665a420.x,*(x'%#B O hڒדU6]' "!&+/246S654311!/-+[)'r&$!/xABS@q1yQ7 ,vh$)-k13W5554]31/-+)(&%" b:ڴxֲ7au! '+/2n4b5543 20. ,*o(&%# IvqY,*''پۻQv; $)-1^34%543Z20.,*(5'%6$! IEUs,֦.y>t!H'+z/+234432 1/-+-)'&$"a 3XOEz$9Pf o"$)-023S432a1/-+)'k&%f# [A ?&R <׎ kXNm"'+H/1F33321/-+)1(&<%#!F~j N ܅ٲו&7\u *%)y-Z0K2T3331V0.,*(&%=$"1*0ړz׃בiܲjE' M"'+.812!3220.,*)Q'%q$" ( /F[ܺ&n16SaF %)1-/12220R/|-+)'$&$d#![ !~Mwfݵ_C* `V"'p+w.01;210/-+)"(v&%#'" Oڧl4߶]k5] f%) -/1111/6.\,k*(&5%#}" xj [b[xپ_[ި<? "y';+.0)1s110.,*)5'%($"K!h42db5'UX." m%{),.i0000.$-O+i)'%`$#!`b zsސaEPߣ9%! \b#n'*-o/^000.|-+)(G&$]#&"  G_ܸڳڊސvh]  %X)V,p./"0//- ,9*^(&$#L" Y+ s*feeg ڱ(A ^=#i'*=-.///-o,*( 'W%#"B!}[ YbY.;gڣۗߚtzqP.< M9 L%(+-.>/..,+I)y'%,$"! RkM<.ڽځ4s  l#Y'v*,'...-,J+)'&e$"!v F apݧXێqyPU`U*" I(!_%(m+2-'.^.-,+)2(m&$A#! PYUCޛ}nLYA_^q#,'*0,u---,+?*(&%#!" X )=g)ܱ2܃rzKHV? Bz-!0%q(*,X-w-,+*(<'%#s"6! m  7 ݺw8!H& ]V0f#&)+,,,+*!)x'%#$"\!< ^ ) ާUUOV&&xO` v!?%C(w*+,,+*j)'&t$"![ 8 DOg shOSxݭݦ_ A g6A#&)*+,+*)((&$D#! |0Zl?GKK eBI W+o!%')$+++*)^(&#%# " s %, 'OLݩޖV * ]-#C&((**$+*)('u%#["!i3N f#ݻ݌{RMalx!$q'G)[***)(='%$"$! ^3wqrު|8 t Mr9w#%"()8*C*)('&r$"q!& RI O04)*>\qY]>JI ?V!x$&()))('3&$$#!X -( V?ޯDߓp-0  "%'(L)9)('\&$c#! SGBqI xCu<] N w;!($^&'((v('~& %#," ko6<4 =<-dnMP c"6%& (u(I('&R%#g" qa  duV;/8c /X g8 !#% '''p'&s%$">!ygC ve %J2qJ$4Q bB~l"$?&)'r'1'~&u%0$"e!  E!^9P l>}4.?L 4 x#G%m&&&^&z%M$"!: p* 4(W>b]H `"/$%W&&2&s%g$%#!o &:{ `kO[X^H6  ) "$%&%[%q$J#! \+/Dp 0%d45Uu)WbN/ Cf,!#$e%x%%Q$F#" K8FhN ~_ejIdf9 _lp "#$%$;$L#'" eGLmp CY~hQO }5IE dM!"$$$$F#9"!jf @6h8RlU:kb jl !9##$#/#B"!!}@Y 3gd]&9w8`+X  H"5##|#"."&! "  Q,V#@:2C Fo>qb!{" ##""! wo b5sUTASQ ooV !m""~"!! B % =b>^6"~ &  W} 4 !""!  UP` eH 9M2T,s;p\  !!l!   aA ( s ]zk7o mF b>u$Q9   +e5 ):oda3( Nl R,U*~SL&Z;  bq\(g :} k7w%YG)Do L gB*Q6:2a123}.&F; SX }6MESN +1 A.!{/3/M O|H)KFg A\tt}_js: ] {:r33 e;zJn e# udK -MP {*oA&U5D PtZH ,B UJboUVK<3 (>0y nFk0I) U"?~d| l 246N!*yQ1N{^ N1DkG1,<{|] 04s\[6&nBT 0hvtw8$ ] FNXSY.C{X ZL|6i1P  y\n]zo\T  ]0._:L &^T#dbhx EWC oK]  ZS43Jg |tv|j p `3=Wv\# -& l }g(K xHX ({$2Z 8 Lr>[ebz i $$W5_c{ bC - &qzS%,L}E4 i 8^T,f:tGIc! Ok\T_ &Yd{v``3An,5  -8`Z1Q-=s&+ QF{rK,n h@{l "WuAY`0 /ygI-[].wb~Z ! E*{M=~(NB a`_ 8 ' ]> $ZAPy 4\+5 c b VA?l\_i^bA `Ojli8f\2Q. 2]'?-is,< n |.. =+ H: aF`~4m d .P"T (HR7o~D @NT7{2m0, t I_ Qh1/asH [-o-d,^6x = x2/qY V569\oM HgcE_':BX xm,RFE5sWev\B 9 *4JuD/o= B g?<}2kpcTsozck o fW\+W-w   >.zn$ c n#j8Mg O 9Ff(f9rww4  G1OyLyPQ u`G};O e H:A4sR2; m N"~$0r@- Ri?f 8,xB*>y!dec  _ n 7+_uqZ:x\* t u R K4Nww;2M A y^D. S  E,# g65+i  = ! 5y}]< z * { ZC4vM9@]oj!q ? )8/ { f ?  * 7$K@EYC;H.$S5  C r Z F 9 )  h ( j{EdnRw g o 6 " Z t w g P 7   : % 3 "khQCGGDZq7v >  s P  ' [ 5 P%I'\ {7 V 0 < ~ e S @ 7 1 ,  \ [ B?ld!.av FO R  B P N @ )  N M s =\AXPJFC(UVh'  O t W  > vUcH"j9&tS T 6 m o \ J : 3 . / . )  ' ])~WV0: h  % / (   d  y 6g$0:4zdg~c iX b ~  y ] ' Y u$>Mh "Gez ; d v v k Y I 9 . + ) , . *  : GXjVD eQC9bOx   u  $myw.(f8y) k x z { h 7 {|+lvx9 KO B a m f \ I 9 - $ " % - . /  Q  JSV'p.!Al% ,7-bcSZ],@+u{w{sE E? yH8d~ei4QJC]`ZK</$!(/56&mJbA}FV_ C2Q@I~GkQjE9N7_:1[E|||xO 2~;*-dPsX'/qJ/#v"HZ\UH:/(#'.5=<0CoVfg*|<orX~g(|m,) _Y`dM[E5T"R(2T`aXMA71-/5<AB3=$# ^:">;6nLa[H6/BqHQt}L3sh5 Z2R4vL>FXbX.hC]ee`RH@978?CHH;e[Fycs7pf  >X,Fnv#.X QwIMBl`j"K,vY03-Rdkjd[QJFDEHMROD. 3a^3|M@Nz6w< @?  c|\#L^?n3r_/Hgy(fRJC`msslg^ZTRSUXXWN<t m>5~D%+PSt>)} Ox ten[Qlk$bvS$*9l#j<7 :Woy{{wrmhc_a``b^VG3kDk n9 L5 y4|!(''MTC`JCJ^}:H0hyY)`x6D"l@ZmyzvrnnljjjdbVK8 `"k= .YCx %,./,*'! U'vV>-%"&1CZz#Kp}aD$unmnt'AVfq|~zzwvrtoomgc\TI;+"),024412-.+(($$!! garden-1.0.9/data/beat/multi.wav0000644000175000017500000017213612457263310013414 00000000000000RIFFVWAVEfmt DXdata2|,mugdifcVKGR|9aBSm_Y\7 y ( (;U<zEa[e,qpTP I%KnZey)pC& h @sP9%9  7MK-(Wf T!""#O#;#" n< # iV%N)+,6+T)&o$="P i ;R:8:t(܏ ٷ׳##־ܨycR3 1^wz5^99Q \ M*  !o"|"/"!(! Z  SHtzTHRfq i E Wu1HD .TY9sA=kmDiۉl!+D'5۷֠Vҩ3Ԃىۛ7~G M|!?#$&1(x)[**~*)9(F&#;!g.I M 9  y  &{JX-m݅ݘ~s߿=oIZOu)yS1 b M EFMPJ8^ !# %e&'(w)*t**3*(V&>"?T  AN &*?-.l-+)-'$#!I 9= T][mXH]݅بևԷ+?ksWKT}=u;jZM?- i /6 p!)"Z")"!>! z H .   sE- k  RF]@mq[C4/3Ed!݈ڨvs֧Ծׄۊw44 rӌC@pZJ==4.1 8 "#%M'(7*D+++|+d*(&$T!m| rZf. h Auj&WESAD{݌!ߛ3aYqHysj`p6m/EQ >]rrcC "#_%&=(s)y*M++#,+*&Q"{P 9 &*-./-,)'%#b" q rf+M Dٟ* ӫڑZA;3' Kv'h#~G g Q  *^6& """u"!a! o " *tws R \=>uF ?݃e-Ըb[ۮ,MzxI4ljЫѨӷקb$k?(!X 5v2*"@$,&')*,,,l,y+)(%#1 FNUZ]ZD  nv y  [HpP{b=P7޲JYݵ>Fߡ,k!5cyoK.T)K3^U k _!#j% '()++,,,)^&b!^S{j3>O `:$)0-@/0/.,*)'>%M#!y;Jj s8^߽ܤڽ{@_Ӫ۪݂֓vvy~2Ftowe  3:_e !t""""!'! j T 1 ol}?9g E z@iu,[hU(L^JI_݈2غt^P07HݎfԒ вLД>ظPM2P1o vcf"j$&w(5*+,---,|+)' %z" z 8 `jP z $PQ 4K73oUݔމTߌߪAed k^lEQ3a  # \ Z:h!#k%/'(E*+,k--,,*Q&/!-h H}  JA<#(,3/0 10R/-+)'`%"%  y&p4֞RcA0Ӛp֠ݲ$`fGNH'T t K  % g_74!)"""C"!W! { h 6 =aBG"$@r ] #RjFhQ1pqۋ#ֲou҉p׌Ct\JP?ژ/ϬvQLڤ\o 17"$0'<)+,-z....-|+)M'$ ".7(x 0 K,B  . , Qy`Xw9}ްf݀QQm߀ߚBU4DN~X3= " sQ>m!#%~'F)*W,-N.).,)%& ., vC w Vh"S'+.$1`2210.,>*'$~!g >EIܲxבӪҳ@*ٱۂt= 30M@ crk f+ !~""z""!B! Q  ,sFB\ :SM" w  .F;  H"9%')+"-D. /o/k/..,+(&# ! s* >L~B o ! Q!Qwkaݠn)Mߠ.;Rs1tiP<<WK` m )F!#%')I+,...),('$a x^c ! %o*s.134432/,)&";7BJ 1zY:h Հ=OѴ|У0(҈TՀR93to.Ij$1T&x | U E } "6k8?$ }!L"""O"!!i!N!M!T!P!$! $ H3Q  F!U v r.e~l9iN" .ݢۄـפӂҔіҳ} 0?-Ocdsׅ-˅4@מN0Oy1 A^G!,%' *+|-./0%0/J/<.,*(&O#U 9y. ^xONU w h 3 {u!|TVtqX(|>zDޓ[woޡ޹޹޴hT/NFN 4|NGP6  d O .hm '#e%')f+-R..-+((v#%j5   lXxo$\)-14]66@64!2/+'+$? 7 6~2"ٛ։ҜѣϠϗϝлC9Օ@.Jq[{;p,W{AC`1 g`l5_l !l""]""!!!!!!!T!  !z?;xTm0o  n<Q=޸uOLyj.rڀzz{ :,74\jɊlxɀRΪ_EAKi"eq!r%d(*,;.^/200000/. - +(& #H; ?j^ r 5gl|5`Q޽7Mݨ _ޖޯ޳޲n >:,B>& j,p #}%')+-..d-*&6"$3T g ~ %8#8(?-1j57 98T74y1-)O%$!@ %}Nm`5]7Й<=ϭ{ЯWk׶h7+T-KZ2M$Q0%+ yp[ !"# #"x""!!!!!!M!  ,fA:V"dy:j G >-lQgۛbNmw(7Ԋ۴~8P^zյ@ȝņul!KөIoGBg 9|!c%('+!-./z00?1G1 10/9.o,;*'$!/Cw+ 1bC$ d _ 1z0U T,:ݏ..%#Bސ.hz7U23_/: z \6? ">%')+~-d..w,)% G[8!&Q,1549;D; :74/X+&a"# R x3 յѶ*΍Αw~>bN8S(^f;%(.U& c g c S\f!r"#.##""F"$"""0"C"?""!"!Q O,G$|  1 v R#bQ ܭ\-M k[{XVWpn^> 9!͘FJuw|JJ  0%(Z+i-. 00_111110/.,)&#. &K B ?  I U #_WI^R@?U7{ݮݮݟݬHBUL&Q:#ir{g ~rdK#"%')+x-.p-v+F(;$]u[<7Sj %S+1.6$:" 2F:] c q 0BN,Rwaް Dq݃w_B7Oݘ i8RY>:Qf  I"$')+>-e-7,)W&S"._B `OfFC\$c*0:6:=>6>;8r3_.A)a$;D nlgb}'6φΙM2\cjۄq?$dO0 p i bU !"D#o#^#0##"""#0#3# #"("d!p ^?("4a1r{15 ' AK@\?QOB52Eo߲ ڍMեҖ~y35 G,Kb E^ wW$Z({+-w/0m12|223)3262 1b/0-*v'$ fuV \ &~ : Z4e6!f ܍uܐܽܦ܋܍ܹݸ݇ރߛeR8BuStD'!Ai !$?')+w,,,*'o$ fYp~/SE9#i)/67;>b@@=:d5"0*%)!A ]Z\T֍Ӈ#la̿̿E-ѓq֧ݪ>&go!r)$u! ( E (#rf!"]#####n#u####$$#\#"! = ,5c$[ P~!ENA' +r׶TJk ޲2]>Z Bb1x)Ǥ-jeí(kJܢ(%2 4`v#'*x-B/0j12253333T3b20.[,b)&") pL = 9 |e XNV"y;7Tt܂xS%@ܻlMN]ijR"V3`3:p  (ASQ8!$&)*+*.)h&#=JnE"(,/5;?%A-A??;61(,&0""" @mߟڸֵ}UFˏ̮_ϘQkNV$5%O %mOcz` ~TY J".######## $D$p$}$`$ $#"! @AJ5U AbqZXlݝ  _Vߞb^rApq.Jc%tuvگAV0l j"-'+- 0z1f23i33 474<43P3220Y.+(%y!;n=) N t @ &#$ 5 arp$jFa۾ۗۈ۠gI,/G ? :k!#&(U**)u'$L!_cPz]O&w!I'-~4o:?AB2A>t94D.(l#I{= a$v,ׯ>?͸S˳ˈ˔\AՄܧFDp[cu(.e 0Hd "G#$f$|$g$H$0$/$L$y$$$$$i$##2"3!& 'Aq*HGI Z '\Wؔs'ؽ!|&YBu3ܶZ۾,m^À<Ԗً^mez7v!t&*-/x12,334q4444G4V31/*-*&##m D kz a  A F |/&d[)Pe{cxnۇۡ۱ۦۂJ|Bf:XP i Hy #A&?(5)('?%`"^i7.H!&_-4#:?"B4C1BP?:5/0*$% # ]LwHcԐщ(>͛#̶^ Kqި9$.Q:O~+dz-jT  J >v(!## $$$$$$$$!%c%%%%y%%W$#"!  Gzo u!,p(vbކ6׈nZߋ Wg-;F@9J.Nlê[XǗR܄KVZ> ,%y),h/81t2J33b44&5a5[553421.+}(%s!j Cg 1 @m N'_4xBNX ||߾wܣ/ګj1$hڟ{orrlW-}/dhT7ZU o 0y"%D''c'%p# P> K !&N,29'>A7CBC@A<&7~1+M&[! Y Gї1̥-tJif{lۈ%kI$3!"#$$%%%(%O%%%&&^&t&V&&q%$#"!  (YoEpye7 4!mi$~.9Sސp0 '(O(Ftqigм?qbѵێy)S6g '$(W,/ 123<44N556/65a5D42a0-*3'#1 e, 4 " q l ! N4 # j 6m)z;T<ڻڐQڽً٩ ڢiPE@8$tal aCHiWU K:rc"$%&&%M# mA4)i b!"2"!d @}!3&+2 8+=@BB@=W82H-'"8Mp 1Oj*?g,xh1X6ΖfӉfS9 g/{P]( x O ~"#$>%~%%%%%%B&&&&&&K&%$#"!  *U~|. 8?' U iLZL#93ېۄܣ= tkR9ޞD/%PAˡ佇Ĩ2!YW,Vp e"^'I+Y.0L2z3V4556q66655~3s1.+(Y%!m    ( fh& +D}8(ڎ]OE/s"ؿ٢[:1..}%x\d$9 @9!#{$J$#-!!3"[:0 !6###*#!s X"-&Y+16;?-BB6A'>94#/)c$D?UC ;(C7אӷМ5ː ʚQBɈ =?68݈K m/(ޞܬi ޫ"6pfܴpLǣHҽʿF9AaX_cFAJBA?7;b60n+ &!g' Nr8 KQ&̹ʔ%Ȓɞ%*Τ}ӢpKjWV["-]S5Ee#f=  k Hr!e#$%@&&&&& 'G'''9(l(w(Q('`'&%$#"! 5c } AR ޡv}C2wKOP`Gۏoߐx+eλ=Cp:H"4X #eP$T)1-:024855y667B7=76Y6P531d/,i)&"O 4 c W SB A 9p;sMe e% ڊK.ؒ?םtqקض؇|ۍܑݍހtnzl;>} )MN !8 +g|G ?#%]&&&+&%#w"N! | a!K#1& *.38 o M +i+9h9B]Iجؔh(t S׭ؙ٤ڸ]ySav`( 5 y/i&RYv]"$&'[(9('&%$##"#%A'W**.26;a>r@A@v=94X/)$5u 9$$)xͨeʎɬ{qȕȗɝ 2-ٓt8.T@To  T H/k|+ "{$%&#'l''''.(((S)))))&){('&%$z#u"t!x oR$_g>} \ !:`6#1t+% ^ CwO_Ԑͷ>@ɢF5ȋAπ]ԁAޭ^dq,?6$  p ; i"P$%&''(G(w(( )x))N****9*)('&%$#"! b&9xY L l}pxIK݄ڀ s^vHٷ2}yעrѴͻAơ ֆ 9 #[ >$:)H-0&3 5Z66778"887765420-+'$+!fh D lpFIp(z1\۾5פzD֛+ֺ^ Hն\/+8ToۅܘݩC^9Cx!qlw bY=pPB"$8'()$*)v)(('"'&&&t'(3*,/)36t:O=?s?T>;72Q-u'!~ ,o#jՇfD_Eȁɖ& mCTXpRBS[^}3 .+$!$%&'G((((4)))]**#+S+M++*)('&%$k#S"7! t'4 > ) Pgqo\5QMtJ9ajI_!֊_}@G _1nC˧q ?r%0@tU o l"' ,/24G6N77D8i8e8?87f76n531/,)u&#G l @R  JG09lJ@i`hؖM֠EhԳԔԱ բofvؘټEy:ic6I \,PD p #E&d()*+***)y)a)[)X)[))**,.1 5~8;=>a>s<94+/G)B#h E2=m0^ϡ̝8VǧǨ{:V'A׌c ]_V(:}ny"'xz h nE*!#%&'n(()V)))l**^++, ,+_+*)('&m%J$*# " =~h '45* _aYdݷK}UԴBՖrՋүз[/F¢xČcW]` 8 %*.1P46N78[8w8d8587m765q420 .++($I!{2 %O  l mgVYj;rلإ׽{;Վ՞)ӞӨt2"3R|٤Uߩ#RT- 1a N7`^<l!$1'*)*C+++N++** +!+"+****+U-/26n9)<=9>=I:+60+$A ml?ݹ1^PomǭDZrȴɽ&5 kK uUBelW Ny`q * k^6 Y#l%'K($))*E***+s++H,,,,x,+9+J*8) (&%V$#! $N ! 13,|'[f'!vX ُՠKadXUrԲԅԇ;!u=q,^CCݡk4bR D~\#(-035`7A8888Z87766531/-'*&#* S e VW 885$|fyXזՕ`]ӏJ-FӜ5+cإ1y$/ fkMDCOc} P@-D(B! %')0+,,,,,,,,--,,,+!,,.14W7@:i{Cs  ~ S5 "$&7(:))S*** +V++,,, ---,,++)('6&$#H" Qxk+\y p]B AFy˟ ' lfR+Mة#ߥu5 -JL~#~q  " Iw3"$&<(f)0**+>+}++',, -w----i-,+*)a( '%^$#!7 'o( / #cf\J p[+rLֻԱӭfҾMi(4ЧzvTӏfPuE:ĕÙ͈}1;5 - ;KC%0*.825)7}8.9c9B9888w766431/-*&o#mLTBH UyRhT9MmrډMԐT]ws&5s'مHݸ9= <\ eO b #& )*+,G--..%//F000t0/.S-R,+7,-/3Y6^9;z<;95n0V*#-  ybArDs:rG@qZeXȓnʑCLH.a2Ky'5 m c ^L7$!u$&Z()*.+++',t,,K--5....`.--+*)-(&p%$"8!%r' ( sIPsc݄|xCEѫjΪ\fе){ӿ˼Vd]hҹVR`D uv#( -1 4k678&9 988"872765w420.+(R%!m  $( 6> o&WDY]6(ՙ9ӭZ҄ҪbLlwWoԪc4۠ޚ9 afSUd| <  ) X ?$ 'D)*), --M../r0;11`2262`10.-,+,t.,1[4{79c;N;916f1+ %`  T~R"yȁƠǃrɺɬ˝͵4Aؠߐ<;Gb2-wP M f*:K2( !#&()*c++6,z,,---e../ /.W.-,w+(*(S'%n$"z!6^Y[t t `E%=tWP V.jٍ׮HDHhςΰ;y͟1BҪѝʓ|Ŭq/^ݖxpg M `!&+/R3578I9`9098~8877W6T53320a-h*,'#S no&#SUqg 1 z-K$Fd6#ފLznӮhӾSr"ZoSKZ!P#+Gkeh E x 7 N d9!$}')+D,2-../0123;4]43 31/-,++J-/258::962,&]B \l&ܯˑǿ kAȽT5˫̍ИӦ`A?O9M!cX j^ = u :#%'c)*x+,p,,-i--N..-/v//`/.<.J-%,*y)(&%# "y P#) :I\H&nߐܵgן>+B]j`E1<̋7[ H>OԦ ̾/Ǽyʣχ 6#a( AJ$)h.!2 5 7r8#9Q9-98u8 877~65{420.+(?%!ec'= RPOWjG^_sbmտqvҭ;q::|\FNr1W(/Ns{/G/ 2 0 /"/%')+S,Z-Y.b/01244]5i543J2E0,.W,+*+-036/90:9W7s3:.(|! 8=<`َYFr[TǺ!ȎɰˮZ>j/ߛ'1xFl #z"$%'s)*,,_---'.m../y/////,/_.R-,*+)'%]$" !P}e EC(@seY)R:ӻҾϢuPM˒5ZD ,Q3I0 _NΓ١TQGXP a;a"',0 46e8l999i98P87$765431/C-c*9'#d T`(\  >aX[ioߎ٭miTќSПG[]cإOݸ߃golTVrV,;pf d"q%')+,-./21z2345m666531;/ -\+t**,j.p14.7897z4/%*#Z7 8Ry۟)ʫN<ƨ5dȩxʊ̸Ѝӄ/ݬ%"?5J> q B  Ug!$ 'B)*A,&--.Y.../u//!0V0_0,0/.-,Q+)/(&$*#n!d9ci U ,<2gs j*CӫҊ^_60MϧѸ*է/Ӆm|?4ǵɣn{E^ o !=&+j/ 3579999(98$877o65u421.+(%6"Z-s1s3: U{ `a;PN[ݝ4/֜rӨ!ѕYmϰ Т}њh֨YݕgS\H,.KuSx~6c >>sk"%')T+,-'/0134F6A777]7E64240-+*i*O+N-0357A8S740P+#%- CIy}ӱH̭ZXƧǟ&ȱE+B1؅ncut;6\SA q !_0&#!$&(*&,)--I.../c//0j0000)0x/.R-+f*('b%#! ?E,u n<:%uԷj Џw D$i5ԕһ<ʫ}rl 4 '$)-1478q999>98687#7654t31/-.*'#@ o5))7q  u [}&^5y(=ҡ;мz0φAXϣЮkիg#ܹޒ\84Lj]4$V r"%')3+,.t/12K45$788876520 .+O*)*+$. 1363764g1,&[  9] Awvoڨ_Ѹʸ_ǭ~Ƭ lj Ȕ"ɧ?]*ډ\~1C8 S ^ 'u  #_&(*Q,w-G..(/k///J00091S1810B0^/;.,Y+)(G&$" W + 4 MlU":]\ת'Գ8ѤJ̧4],LjvΚAց֣չ3ΙNP@Q)/]yoM 1>D\"R'+/L3578@9P998M87j76H6j5?420c.+(s%"yZWAnL 5 X{LE{+_lrޔحQ@҃ѷt8ϤU 71jnجyL)$OwV-iER Z"^%'X)*y,./c1/34678d9R98{753f1.,*))*,2/1-455O4b1-'!- }"$-J}ƌƑDǺ6ȶIDg1C؄:}~m`kO FG"%(K*,e-\..g///(0o00 1G1h1X110/.B-+*R(&$"!Z*! (sRێٗGԲBf͉=a;ƣƚ/͙ 8ՒL(М͟˯ z2m.*S 9Q %J*.247v829q9W998.87>7654r31~/,*&#Z L^f) * -nT,&4vWEѷYϡ[ΝΐδϷQԡoJ%'y\IM7p{N5g V@"1%L')*~,8.0135z789 :9<98T6R4 2/Q-P+)i))c+-0l24431-(%#@ j1uR(ٔԍ%|ʏYǹƍƶ~rɰɏʺ9`cݸ&Fv`X:`  |^0,,"%'*+l-.?// 0I0001L1111q10*0/-S,*('/%N#h!yw]!3 w}f(#tU!cԠ ɆgŴ-2ǪȅʧbѤ}խ7֎EϦK [ G,dcJYY = X#i(,034678b9n9598_87d766$53G2I0-1+3(%!e!wGg&hm ^(eE)ߙ6;?ώX!΢_-0Έ#,ю"ձחـm_\l]>tC@-UXx_ Bm"$&(*|,f.l0246.8w9G::I:y9/864[2 0-+))) *++.0i2j3/31~..*$ @WyAҝΩvǾ pcȏ]fsΈe߸D8|QjKD B 8!n$8')+-./z00 1/1P1v111111y10/.e-+*(*&-$)"$ yn  y3ss.H:b~Ѕ΅̔G+ƉpA%q>Q֌GԪeϸ ͩ͵'Zo=1W b I!&*.12 5/78c999988j766H5@42B18/,*'# ?#aV cW A'DUSب՘Ѻ_λΚ{XEN΅ίϭm ;f&zB +AQ3"$&(*,.0246X89::::8J7k5N3 1.n,x*)s((*+&.0011 1.!+_&  @5tqQݴS^IS^2ipȿp7!@̪jχc`%a}] x ~IH| w#Y&)Y+L-./0 1G1h1}1111111100.- ,C*X(X&L$6" TU a InP9-PQMIߩcMT][D!ȥƖwoDž~ˣ6^=ׅdcJыϖ8#8 t{l !+W$(-03<67999b98r87B76543(2I0.}+(%V"I[b>f svn.aUX*Irmw'67q g^!#%(A*,.'1y357.9V:;2;:":875420-+)j(''(*i, .=/f/Y.+e(#Edm ckJ6jR+fʈOǯƄƸ&Ǹ]Ɏʁ˪x==iݩX^fcG sTfd"uU {VE"6%(*,./0s111 22%2:2M2Q2?2210/.-L+e)c'O%0#!?a  , m 0 I@pU~)d0ִZϔM9w:ĀsƼB/4تA WՃ.mҬգّ$n * " $9)@-03)678W9c9"988y766I5M431/x-*!(%!|;|8( ~1ߴםԊЭS Ϳ͹Ϳ=ΡϽҼӎՊךٻ 7ooHR{[!x{(u?X ?{] T#%'*y,.U1357\9y:;<;:&:976]420t.M,<*~(T'&y'(h*%,-.-+($"Ncz*8ٞնEmBɿƀƐrȿr7'tK Lr@nmey7wn1 bz d\:"c!$a' *b,T./012C2W2Z2^2d2k2k2T22110.]-+)'%d#2!=p\ > D  i?W.4:>޿q׭0ү=0}jƠ ɪfEC`҄ԀJ3աӓjeӡْZ=*5 f =#'+^/215$7n8&9b9A98c87+76543Z20.D,)&#a -$'V>Z8 P8,awHUvccݫIGYUΪϼҨws׌ٹ'a?vT]p # C 41/b "%z'),/14>689:; ;: : 97g6433l1/m-R+U)'&&'(z*+,,+a)%5!J wLDU+ۧעmʛmƮ[ǗJn6Mһsfڇ9ZL Q - #&R)+-s/0y11:2S2W2V2Y2]2[2H2211,0/-+ *(%#!X"G [  C A m@'+4^yHҭ+; Q;Šƻq̴͉χѧ8kvx)CKZT X -!k%)s-03!678;9A98v87*7w654321=/-*'$!zUW,c%  ~XRId}s-A؟N`Ψxjmtz̀͏͵}97Ե,fߡ&{kv+_)4N R VI"$<')x,"/14A68q9`::::987l64_31/-+e)}'&&%%&q( *X+++)'#2 jSR8'ҧο|}ƍƠf<XϲI.k;I03EF z[xz $  x" "%(/+w-`/012233222y2U221D10/H.,+ )&$o"" 9UTi& ADU+"߶<ڱiEb7Ɓ?fŽl˗^KiӖծboڪVԷԞյRs .='6#Q'L+.2246D8 9P9*988^7654321/.+l)&# PUOZXa aYz|W"T܃L"Yp*,T́ͮWcjݞ412̡̗ K͏,Η*4ҽӂՁקIުlg%D  Z^ #p&U)>,/14 678~999s9808W7^6J5 421@/,-*p( &F$&#"#$l&'(('% "? &hj,YZX׀̇ʼȘ VdzȊeG12Wθ]UӠ9+Xn+SW{ }!#&U)+./a1i23d3x3]3.322t2+21X10/.j-+)'%v#!f#|^a7 WzgC˯̼p:Rvg܀ߝ-!=QN\F @?01X< "%m(*T-L/02213R3D3322O221010/.j-+ * (%#=!Rx?\ KK,%36{nJޫ۲صОͅɚV:bǾEȧɃʂˬ΢}Ѡք`ݥ&ۿ܊T6p o 7P <$/(+y/}246788[87+7r6544?3720s/-l+(-&4## TG==S*  }QQWK$tܴ ׅOrOB͌-΋΄9 EҪT5Hك36#fdNcx` X W8"%(+.1I35~6y78X8Y8%87M76655;4310.+n)&$"!u!"\#$0&&&%#`S  =K TȟǜljAʜqayjXә&)d?;k Cf"$n' *q,.;01j22"3322\2 21I1040m/o.3-+)(%#R!0Ny Q.Z@>9I^9Ƞ"ɻrNW̚DXڛC޳-dn?*Z< ^ 3O"5&*-035<78h8K8737r654 413721/-+)& $ 5w ~IJqenmI}%xԥҰ8̶\Ͷvppdݾ<@\yng~d > 1wx"%(+F.024-6,7788777655 4310<.,)3'$"! !0#$%5&%#  GC{\)@-rѶpȗLyȫɝʔˊ̋͠KJw x  ! $&A)+-/b12=3333/32M21O10 0`/v.V-+j*(&_$ "^cF 75=J x[uy(-5VӮQP̵ʊɾN+DȈu ʗ˗6Ջډyޫj9޼ShPJx5WUA Ut '$'+ /24y67m88I87665 4.3121/W.,*!(x%"c>  B eF^^[nxb&ۏ֝{ѮEDͪgr̲͏Κ*wKI~Ԗ{ؔ5ߍS5#cy6Rbj * .lG"@%<(*+-i02N456.7x7}7R7766543210Q.C,)o'$" ` !'#w$7% %#V!?QJlSJu l7"ȈǃǑfTE:3:bϹK%Kֿ{qk<ivKup @f}ln b#%( +R-R/022 3333832S21G100T/p.[-,*(&$R" eKP2v  Sv߀{ـ֪cJʏ)Jɜʄ N z ڏܳ. ެܒ+ۅle*|s'3 n"`&*-0s35 77D8%87716S5v43210//-+n)&$$,!*U&BON^ C1,$܀֊Yx̶JͿFi кЋуүղ֌ؚ"Q/|#@ Ckr| 6!$'*y-/134586666M665,54321@0.,Z*'d%" 4 "\#I$t$#!f3 XYJ 6>L51ȵnG(9Ш^[ը? .>#  "%' *_,n.+01}23I3<322 210T0/..-+O*(&$_"# (rvG" YHY<|ߞܠٴuF|Qɸɷ Xʻ;˶Ϥv҉Q-9iݯ*y6:^1~7 r K@3m $A(+!/2a4!6G77777;6\5x43210G/-+)y'$!e^ HZA( uZqk@?KN-yjԿ0,ͼ̢"͛(νYϰ}kҍt@ @"$')+ ./F1N22B3D3 32.211z0/!/M.N- ,*)<'0%# 4Uck-0 #@7 e Y Z%WkܮHЀ_ΩLA|tt4ՂٲUݵ޵fIQz*L}E pC$!#&7)+-2/01u23|333 4433`32 21/].,*(&E$!4= !!! tPGu 6^\<Dh:c,5Aɚʅ˃̆͒Π ҂51uޡ_:@(z )j Vwho "$ 'P)+-J/012222,2100L/x.-,+Z*(h'%'$"! / #iZj}1 40 B }9t6ұ|ψF̞r_d̋KEҒ}֓ C/4U1߬&ߣ)XW > f!$9(+.71_35 666V6544+392?1;0/-M,*(1&# L':I'q 2hT>#5B:ڟc@OҥPZ͊ͣ͂.ϼЕudhԌEalv!}W|#nnk 0h* x#&(*,..|/0S11j22303C3:33292|10[/-`,*(&|$I"- ] K {,/nN־I@jpzM71-3Iyi@Zػ]$p:oMx>/, d!#&K(|*,X./ 11F2`2021310/..0-8,*+)(%'%J$&#C"!!  4 + E?jWEޕ%ӽѕЮjͩjE8N͈͊`lг*ԥ֗بv?X=D #4`  <G [#&)-/024L5 6R6.655H4i3210/].,[+{)P'$="uNJ"`Yh S :1۟gHQӚ2$w&&pΒT /דDZ3[w[PzaeH{~N  QP #%')+-O.P/ 00Q112]222v2.211"0/-8,*(&$" ~>Ll z;3zCX8۱Ճϩ")ʨ_4  7|ӥ՛I޶UyPx;!~1 ` "%2'\)j+D-.#0 1111[10 0Z/.-,+*)G(&%$#"Q"!8!i E9Z,D Z +vGo,uۂg׊ӢҊѥSiͷ;FΝϛ.ӻi9 &-?Fi B# g l%5!$6(V+4.02S4Y55555L4k3210s/D.,d+)'H%" F&  |o%4K7E^nhN ҥЀϻR@s΄A`ؠٹڝLYݴG8gQ%aqR ? na "%N';)*O,|-x.M//01|112221S10/.n-,l*(& %#!'i.\T{^d } /&I8̆˩JYʼa0 *bd=\ٺX(+ly [ma i"$&(*,l./0b111Q10#0`/.-,+*)r(;'"&7%$#{#"=">!k Y@VX(~C{]^ԘӇҟ4Ц*{OMuY:ҏբX'5H"QBo^xMs{ 1 I*9 g#&),d/1[34F55`54@4o3210/}.;-+*4(&# 8Nm3JnF d , [ ذֲ[#FΙν"ϻuE(>l|_۔}! S 1LTkWN o wRK"$&u(*Z+},v-J.//100 1I1c1R1100*/$.,+*(& %6#O!eRw[lAX& TYl!ۑx՗ZD˭ʍTcԡ֠]-N aiI-D>l /!#%(*+- /00/1;100/)/W.t-,+*q)P(B'a&%4%$o$##!_ T w\kvX0WvRRոԱUѵ)ж_*CϘ#Ԉ ףTߟ6K 2b5<0 "=!&%K(G+.a0J234554B43210/.-^,*)'$7"  yPprR ٺf 1ЛZkϼFпѝ҅yzՉ֞םnځ0ۭl܇Pi Y~7Rb }U6 a!#%y'($*:++,--.'//*0z000l00g/.-,B+)o(&L%#! ScsT "~vAa9[qeH7QԳwϩ`̍5>˚5ν!Ӆ iޝ)rY.o4{    "$&(*,.'//m00i00m/.--, +* ) (0'&&%R%$B$H#! 1 &i-Tzbcۦ&ְհ<ҋhϫ Џ?#LԔjٍ;uEr"?.K( qzh t#&)^,.023z444"4v3210/.-H,*%)8' %" _w<  Pt. {/+D`ml_U\ֆҔђϐώKкіutzuGaٲ[%j333 {Af=!U#0%&8(n)*p+I,--r. ///00///`.x-j,=+)('%#B" U^~]P< Py!7&.-@}S/̆Uˇ ̻)gD lz #k j) + c"O$C&1(*+O-./!0k0j00/..6-A,>+1*0)M('%'&&U&%,%$"w 'f joK\\.?܏װֲ:ӄPЏkvбѽыӚׂه!ގE8%E9wkm3 { k|!$'z* -q/Y123A4V4 43210/.-[,*})'%#.!.Yf $ju]!$Ml݇ۚټLҶ]+GУ;{@nٝم~"3&as La "]$%3'S(W);*++,J--n../$//.=.-,+*l)#(&`%#X" [QF=gTU [tq-bݙڰ^+`4+̜͎ΖϩEԯCTH1q_D^k iq!T#5%'(*/,|-.8///x//`.-,+*)('t'+''&&B&q%3$u"? d l R&#|M[غHԋJ}RUыуE'+H|ځ܈.r}\W6RMI Z ^ ?#'&)+'.601 3343|3211/.-,M+)<(c&O$"s<% w=Sy Bfڏ%ձ{Ғгн ђL&#jطY'fPy_t[ U. N !#$3&I'G(0) **+f,--.J.a.K..-,,1++*)'&\%#"!a.L#i8o * F.Ld @q~ч\0i̦͌Ίϙдr֣؉ڮ2,3`{}2m 21 "a$<&()O+,-. /3//..M-h,l+g*k)(''t'l'['!'&%8$J"Y ;@B<.sqCRߛڮ٧س ZԡӅ+0ҎӡԒՔ֯_ۼ1޾ae^wg3Q- L*fS  XU!$'F*,.023v33832110 /-,+4*(&$"^ eX c c EۄFp8R0=yGM `z; Y8> #%($+r-m/02222l210/.-,+-*(';%'# {:i, 0 :g*fdBCz"Xژn!VQүӓԆm,װ4غتp;M rB( E DW !#:$A%7&$' (()*G++U,,,,u, ,+**9)O(Z'Q&<%$"z! mQ+Y>2i `\l}(YGH3B%dͪ΍όЙѲzװ٘۹kE{q0G8] Ih+ "$E&')*$,---.-G-,+**>)(j(V(f(v(^((<'%9$!SU$ r[=}o9 2Qzֶ Ճ"Wb֭ד؊ُڨuqbxd@U = | N(wL!i$-')6,K.0F1222.210//.,+*=)'% $!5?N  B n1)I~>~ؙG4bҫӣ[6mװ״بnۑ &^AS q R ZW ! #$ %%&'()L**[+++++++**n)(''1&6%+$ #!l Y5Aot Q =%[ /)x՜Ӟ&OιϣУѱ@֫>0߄ !lY>@1 _QY|T!S#%&Y()+,,-5- -, ,I+q*)((e(d(u(z(J('&d%v#!SL | l*Y\Mt "%2(*,.80B1121q10/.-,+*5)'!&R$N" q9 !'uoc!g bܼ$٤I 9ԓ<*b}H[ק׽׶׫$݁ji.|  aNF, [!l"c#M$2%&&'(X))z**++**7*))c('&&%$$#! ID-%^ ZR14Q_(ڙ4 <>MΎzЅѡQֲ2ڮܷ+VQQ.n.A * 3wt+ ".$%Y'( *++e,,,K,++Q*) )(((((K('&)%.#  H ~W'~k.7oߪަݵ%Q؍Mՙ{Նչ |ףS ٬ڕےܤNb \Dj@_4 $vG;!#r&(L+]-/^0>111d10//-,+c*)'!&p$"{ B8S% v}+FIh^Aӹ?ԌCBu{rnםIW3-6b5% ID/ !""#$%u&A''()n))))L)(r('G'&%!%M$f#k"T!$ fp<j h*#k C' ܛ0Ӆ`Ш[l|WWlӒUR :_`.5mbb / )dI6!"Y$%9'q(x)F**++*g*)')(1('' ((('&%<$0"  G S r+({a}N"@d۔)ٟ4 Sع2پSڧj7+].4T( 0 ]gD!#.&w(*=,-./M/"/..+-5,3+!*('&(%#! #wK N  ce($?ޗ1׫}֌Vm ZcDއA"Sipv=  uqx [!="##$_%%h&&&&&&i& &%%$#Y#"!! 7oh  Q}^C%w߱_7Oֵ|Ӣ/R҆dZ`wט} ߨ$71/  H\11 ! #a$%&v'(o((f((''&_&>&;&B&8&&%$y#!g,^$ yxuTx!s .Pyި)܋ۤaCCbڙH۶/ܵIݛ]:+:bK`"S u)ZBG l)v #S%Z')*+M,,,M,+ +7*I)M(B'-&%#X" /3:]-Nl 4,#Bݪ܉ۖS Aٟ lګr-N޳b\m&c o`9 !`"##$X$$$$t$8$##.#"E"!&! Y qKap'4 MXu[RQN;fOl~ֈԴ"ճrM<:HbۏCkR,kU 'P Go_%M<j !"#$a%%%%%P%$$$$$$m$$#"CY6\W߫ޚ< B݋?ޫ"ߪ?yfn!{C9U)(|]b $ @"9$%}'(|))*))(*(Q'd&i%a$K# " p+Tw!Q < X 'Cb~LBj/RC޺ ~,3uۼ#-,)8yvNp=8 n`f{ C1q}]5 s2} !l!!!""!!!~ݖnwݕݷ9޾Vb)iyCcB/! \HZ*A(RyOCvd&:9#+lu  ! "zr# \aڞtٔ{+ܳݣޡߴ% $YNHx M ^;x<'KVM =!!!!{!k!h!o!|!!k!$! `V% 5 uM7`v2em6I>4&d$-oUiedN k V#]1u !B#>$$Q%i%?%$R$#""!!3 4#Q3 O ; SJMt^+߾ߵߦߘߘ߯fY)]MZw_G O 6jQ:l"Y(36C0(C 1ag#X o!?""##"M"! . OjzzlG ?R{W6  H [^+#>6&%pR3> 3bh$_\* @gsiJ]m5x,70" M:,1H^i7;XrhnS t  0d@oO,1W^ߧ7 &sޗO7b8^y*] ]!5g!wn0h; aXH|>&c&(Wf h@Pg; &Eo-xa'sPk[?7]B Tc @  6rvL < "o &301J"  O (SX@Or1M HP" 6* NTr#^hVIY{c X{+vF KB=5mXBHXO\ N,-1A2BU7rF)8jS(}t ; *ob!GI";nw-   4Yhhpd50U`^$;a5?oR8`M9B7/HABkz<9 J G  ~$<,XQ-+f>y | z e 4 ahe+e%JX#6X.EYA f+w^(x k):$I?M&-/*w*da'x\|RIPK! wK RA!Qp 7YlnBV\TNPfy%w3 A R-W*OL%Aq,[f  p v[4_>3:UPXt7mB$S>8~1z4QPKUc(2g Ikc* I Yd&vY&H$y5[sta9  ?V}- oJ?BTq= "\PXI1vNTM ~ ? K/\lOG+<DHD53lnETh3%* N u H W24Y&i"EH pn i' ="J-  T y oT,*A&Cu@C u = b;|S@>Rv:J}^e@X1O=%WFltqxb/(>`snE| 4 r $h0\hL^e1JjzrbNIM \ x Q@#J9etMTk ~t( +]P~ 6d[ B 5 n *0sR*E\nv|vgL$e <C& _ = . (  r 7LHBIh@p<qZh@,CI`TuO+([(R5(y q<e JUMrH  g P9xCTUdUaCzGxf_Zex57&&?MZV(uw`:}  ? _"y -Y)Pkv ? j }K zUf>!^VcK'*Cb5X}~IV  1 C ?$g/WyV'Yf h u W D (  P G }-YYeD+ W{MGk})z1lEkA$";p*! / 8 .  cgL{8.n~ u k n s x~vbP;)!+GoIj\\rQ{DtV=*0Nu&s)zh8Pb}rFi%c(a ?I<k\)Fo " _ !&BlM)eSkJM|[rYG5-(-4>FHB0Q"3 : 9 +  h X)U{   Lf 8 Q ] ; '  U  vuh(}YGZ7+F3R\R`  G 5WdjK~w% 4 G _  '8BLMOXgr>.-8Fb?i1~Y5&Z"s*i 9Tey^GAnk,;: -   j".eHH'0r & l  SU |F .Z8n\QM>!-_D`B'}Jq_Q@)Q"% y \ . 4 ~ ) W 5Si}xdC p , 1 n { S 9 %  c~f&FEu18TpEpOQpZBJs|9VQQn # h   &$M y 8 v1i8XH4S}Pc%\5lTF9:?NgS.?.G\bPfe4 x R *  bmJ5OF  r  d  ~>tVFJ`m>0,&(h34nQb'p)=n8c-LvrV0n: E  L ~  ) R t     y G  L R  n P 2  ^,Ni?&&:\PT8[P\i;+?w_$ZxPA \ ` [ [ A C m s$w I%d]8 ^ j S  V7`   %R8 &1^('},zM)@{3,@*Zy5? X  A h  ; T g y u b L 0  S  B eJ1,Q/-R R69,yH/3Lz\ z;Ra3wi^WH3M l Z C 3 J D  o e , X2QSAe\z[K?NV#|U0 ucWNOU`p :m+p.E^!GP K  g J  \ 1 F ? 1-* l/Uu(jz#B[0r\w '58ChJ4[U*71-{Y6a < _   _ 4  ]pT7 ud+gYx@"u=  Bo;I paqn3T">2 vN ' % Q e V 0 ! " (*R# DD`|0\T*cD#'LtCy.N|+{oeR6 0h: D $ }   t 0 ; }  7Rw )%A2mN@wE}#|b]S:qt+'_R#i<@v'Ll%C]woV8i7w\9 i^;WvR{eXR_N:rKUZ"[U~(Kg 0)`{AD }  A 'Ab(_#!!6js,g(e&q< nP1eM4!/CZw 7f*L!H@(<=4$]  ; G D .  j $ ;(eI!5|.5zXQ=_25dW$Xq,^C/C-n"Z H%R~$@\v-<JTYXXOH9)\4qW6gje#o# 'GiQ 6tB5A?ZAN}Lie;HA?t#mY\ ]@m2rB^+SZ1y^F)rh`]]`hp{Ck1X.![^8D.n>Z/\zkK Bu'8MGs~kTHX,:Tr3Q/#qQ8=ZhB!QCu#Jm%AXo `@~c9if/no&`LNrXNN\qKCb4}$XGE=!?#h=2Tjl^A[~;q.ZikCf6 ]2iE$v_H23RpE|~r l094L~vN#VY_4r *Ixk WXwpx G@z'a!fCZ1_!Jo%Ea~'9Mbv{fO5tM)P_m+s7\j> 8X{+];pS,<g"z^M1bi9e0i7ORrEhG$dG.|jXF2$"4Jaw-[5`5YL^T%5??8*zQ'j: w>}19<]vB{O%&Ju*V/`2g4`-Kg*BYo%5FSalx}uj_N=+d7v"qf}8JsC=70-$ ~dC& ~gQ>, "1;LXiz$:K^o~xncXL?4)|wtpnige`\[XURNOKJIFGFGEFIFKJMNRUW\_dgkorwz .;HR^ip{|soha\TKF;5)   "!$'&((+**,-./-0.1/13022112100./..+,+))'%$#" garden-1.0.9/data/beat/dline.wav0000644000175000017500000007446412457263310013362 00000000000000RIFF,yWAVEfmt DXdatay  !'.8ELbi -HtH|#g4$4mM _  { G  ^ T;A<Vc$U*|!{+R  K!""#u$$n%%^&&6'''I(( )^))*|**-+++:,v,,,->- L1hO ?xf7RzD>{|<4{t42np$1\y6Ot6Cr-Ah'=ax8]s1Ss 0Ho~a~ѥ2Û,Û%Þæñ÷ þ*Zjn]2r lOR>>q2V4w/U4t;@E[S)]@r  ĶûijįĩIJĺóðåÕËujb1P=BH9<9=9P<9=:]<:"=S:F<_:<:#<:<:; ;;B;;W;*;;;;:;;;:;;;o:;;;^:;;;f:;;;l:;;;:;;;:;;|;:h;;c;:S;;R;;C;;G;;:;;=;4;0;;<;<;0;;<;H;5;;<;Q;8;y;?;Y;<;b;F;\;@;L;K;^;J;<;I;b;M;-;P;`;N;#;S;_;R;;Q;b;K;;N;f;M;;N;c;N;;D;d;I;;B;e;D;;>;d;?;;=;`;9;;7;];6;;2;U;5;!;2;K;7; ;.;K;2;(;,;A;.;*;,}{kijxzhS1# &Fbt_`DN-B*B.G:TJ_]tm{zoutrtsvvr}|L؅ňŋņřņśŅťŏŚŐŕţŐŴŇ90T2=b,* %'GTo]g~UoL<~5-|1/z/.s56h9>_HNPOXFX_>cl:hqn;ojkX(VeN/E^}pvzq~t{ytngdhggjjsqwxȖȕȜ ȝ Ȧȳǵ   ȯSHMP_]^mr{h69#69469#69<6|9J6a9j699696868 78H7X8a7*878777777)8}78p7L8c718Y7^8Q778U7W8X7/8\7L8a78i708w78787777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777 upslsrvy~(ʞȶƯȯʣȝƨȽʪȝƩȽʰȨƪȪʶȾƦȖʻƥoʿǨ:@ǫʿxǧ T Sb#+z9[hdQXNAX:_@tYneuXRA<**q! W)#H-'2/ -#0*..2,,>+/?'(J*H$"P"!P&&Q!"D&$F!C !;"#6$ !2"2",BʢǁʑrʧQ(tx-;bɶqɞyɰsɯbN<,(=5!+" ")&%%$$&"*# $,'%&-&)),-(.,'./.*10-/11/-8115535/536596:8;96;@:7@:>>;AC?:;1;:><:75,%S9H4 9l4i8s57566g676t75O75[767K6666666t66n66t66r666666666666666666666666|6666}666666666666|6666~6666~6666y6666}666666666666}66}66{6z66|66z6w666z6x6w6|6w6v6v6|6s6q6x6{6t6n6s6w6p6q6n6r6t6j6s6t6o6i6o6q6i6f6p6n6l6j6i6p6l6b6j6k6i6a6j6k6g6_6f6f6d6_6g6`6g6x-S'z6e\*P-<p^*IZYM>+"+-+))"!' "# " !" "! &"  ZMjdX8_6 b H1|LE/B{9X,wݢBމ>'߃/r j6! GM~E#u&]c_\<_6zm<n U7DQv4p4;T~cE+*u"j>Xt>g1`w)dBOY:)-sV_d I!0J{Pk#Ua ϏƲP0̎,X͂'>΅4+*(a>o>ϴΜv1FvЧЫUAџѡ-Mvҙ 8ZӗӨ,Joԛ;\Վժ&It֙9[ׅשIsؖ 4\ه٪!Hkژڻ 2^ہۥAp܏ܸ 0U݀ݩݎ's~Z7$$p\$Y}k? .sw a%)<31/r@f / F \ 4!x!w!!!"""d"""""V#J#;#####2$$$n$$$%%%a%%%%%P&N&G&&&&&+'z'''' (((e(((((4)N)^))))*,*\*****+?+a+++++,I,r,,,,-)-M-y----.F.`.v.... /I/x////0)0?0y0000 1D1Z1u1111 2B2m2222 3(3?3r3333454X4t44445 W## *<qeD"dT`JEb g2 Of  d [  D Q  H `  * J x 8 \  @j&Jq *R|4`<fFm,Iy .Y|5Rm:\߆$:tSROKWo%}(SWSJE'[N[jMA*~{\ABoJ( r jWD7" e;Mb*_z5Z>k"2j6I]$a{ T$5H}G_t =l8c!B6b]5z(Δ4#Ρh H(CBkЬЕ^%ѯy00b҈ҳ->}ӄ&T|Ԟ2a|ղEh֋ִ Nvט׶ 2R|ؠ4`ق٫@eڌڳEnے۹'Otܙ .U|ݡ5^}ޤ=b߄ߩߣK!qcY:wS5_noOOoi&+rHy#cda?{_3 R k W!!! e!!!{!!j"9""~"""" #x#N#,#####$$f$K$$%$$.%%{%t%%&& &E&&&&&''/'Z'''''(,(Q(m((((()<)k)}))))**Q***** ++'+^+++++#,.,5,q,,,,,4-;-I-----.?.N.[...../K/Z/s/////&0M0k00000 1#*j|O'[T^a6.u%3_y ; M v # H g  8 ^  ( L q < b 5Vt'Gd4]{'Ek<X} +Nk5y d* R;)mOA<[^b/kzGt=c6Z| L~ !0c"6G}7O^O_v,awFo1W{&Ji:\*Lo:] )Bo9X,Hi=TtHj5QqA[ )j=o,ҮmҢ[ҷ5csӷӱC?Ԇԉ$EmՇյCWք֜ ,Pwב׽Gd؊ج2Yxٟ,Jlڒڱ>\ۀۢ .Nsܑܴ;c݅ݨ ,Trޕ޻Cd߈ߥ1Ou>b /kc0#L9v&YCx[K5tJtc3ErjL)u Chv?xT+As6@<t$D3s&9 2 q 0 %! +!!k!=!! "!!"~"g"P"""""#^#`#^#####$C$Z$k$$$$$ %,%M%x%%%%%&&D&{&&&&&&'<'s'}'|'''''3(t(u(q(((((()d)i)g)))))*X*_*_*****+H+Q+\+++++ ,1,I,X,,,,,WD.xIw&q:*AU UNA^h : Z m  ; O l 5 L l  + H e & A a 9]|3Uv*Lh%Gc};[u9)m?,rG0lE2l8/%k00.m$(7n0Bf (Ge}'Jdz"N`oJYgHTc@Pb4LZ*C]"9Tz/Sk *HfBaw8Qq.Eh@Wz/Jn 'd Ery%V\k'@Wu"AWr ' t_/C.@*U87rg_2jaVC4$f 2]l6blx->Lp ";Wt%:]r $?[m &;[s #@Vq " ? V p !!!9!Q!n!!!!!!""5"P"l""""""##5#L#h#~#####$$3$I$b$|$$$$$$%*%E%]% !0h0q9?,Sk4\@~17hk .@]{ * E a z  / C d y  0 I ^ }  - G _ {  0 B a z .E]v)D`sh # _r$7biHS^:%(.R}';b /Xft&;Jj!=Rq %?\u(F\y-I`{0K`|P@FQO|}(chd Y\N;er4wyd5n;uf"In'Qy1V{5\|:bCc S7IDjIq#an 4ZBc&Fo(My 1\x4_>dDj%Il * L t  / Q y 5 T |  9 X  9 ^  3 .fE.bg{`+8$WO1q2Z)Z>,~ubL:$@fN)Dt >Xo7\<]|>i:bAi!Al&Dk!Kl!Lk$Gk"Gk#Ei!EjGdAd_ZXY" WB9*y|!>lIc Kj$Eo$Do!Lk"Ll#Am!HjBh?g>b=_~9[}.Zz +Pt*Gp#BiBa4[ 2Py&KnEg;^ 1Uq(Hn@a 2 X t % K n  = a  + U v $ J e 7]{(Np:_,Os@d/Tt"@b ,RwA`)Qo<_6=^ K$eF7rN bW4&rv(Yk&>j-Wr$@d/RuAc1PsAb ) P n  : W  # K f  0 S p *Q- 7.' sJ1FeW=%"Ep0-2`9wiGU(@f6hvCv$S{$;`+Qo4]yEh-Pp7\{"Dg *Oo7Wy=\%Ff ,Nj0Sv,ef((b0k K*?#_+mG)Qw GQ Eg2Gt4Vy=b'Eh ,Om0Ot:Xu=[@_%Cb(Hf ,Ik 'Oj/Kn.Km /Mm /Ik *Ik'Gm$Ge"Cb~  > ]  8 ] y  9 R x - O l  * F j A]~6[s.Qm &Gb;Wy/Mn$Be;Vu +3Iut pd9MI)WU A.kIN2Rn'IhA]|4Ro &Hd=X})Pj  B \   1 P n  ! @ $z> } ^x *B`-Le1Ok6Oq3Sra^P]xB[*Fuk:l` .:mt-Un#8\x +Ee/Pk9VsAZv (B_| *Ga} *Gd -Ce,Fb (Ad{%B]y!?Xs7Ul-Kh (A^|!:Sn,Jb!=Yp/Jh| # 9 R r  + E a x  0 N i ! 9 U q  # @ ] w )D^x.Ha|/Ga{-Ha{/G^y1:8!7.I%E!`k)[N;Jk @Xr -Cax/Mb6Mk;Qi :Ql"7Sj  9 O g  @I HfL1i\QI3e-]l{8\fx*3Hi2Tg~3Ogx.F^})CXs&8Vk/Hcz 'AWp1Oew &=Zk.F^w 4Of~ '9Tk(AVp'\7EOffJ"obCFxz4K_~'?Zq2Mg|%>[k1Gcx ;Qf'@Vo*FZs,E]t1Ebt2F\t)F[r&CXh ":Qf~3J^{*BTo"4I`x%@Th.GYs 5J`v ! 9 L ` z  $ 7 M c w  # 6 N b s 3 N ^ u   1 H V s *=Vc}!6K^r6U3N?gz 71]_(HPr4E[o0G]o.KWo-AZl*<Yf}<Kbs 1DYk+:Hd" Bj] @hpx1@Ri3?Jh '9Lbu/KXm(@Ocz/FYk$4K\q(:Pbx+;Qew*>Pgv(=Keq '2LZt~ -DXly&7Nb,)H]MMKJXp5SLl&)NSr '/MXq!3J]r 4H[k.DXk)Sfw!5GYjx(7KVl~$:JYjy  $ 5 F Y g w ! 1 > P ` r   ) 7 I [ i y  + = L [ 4 (_l)VB/4(x1Ls '8@`W}'6G[g|#8E\g}"3CWbw 0=P\n&5DVgz&9I[i{aDYASc & LxhZ:42Osx}"@R_b&+DXbr)9GSfy%:GWey#5EV^y1?N[p|(5IUbr -7KViu *<G\gs s B X,Od r?{s)DAYgv %2CR`n*;EXd{-MVdt/6HQ^nw%.?FY_r| ".:IVdk~   * 8 B Q Y l w .$CD^r)xT -,DJVkq*8GN`gz+=@S^iz )4CN_er !,;IQ`k|BJp>],ed43`blhh; 'fG&X}i+)*@aZ\x (2>L[ery /5DM^mq~):AN[hs &2;HVaj{'3AIXemy%3>HR^jyI](9I:Y[iyx+2DM\atz ".9FO_gr  .9BP]as)0BDUbju #2>IOaev|  /4CJWdqw );AJY_lu*-<ERZanz"19?MXakx */;FQWdmv ,8>LR[hpy +6=JOZ`mx| +7 *-6J@bUth",;BKY[js~ '1;BOW\ms| %15<JRZcou#+7=FPX^jtz70LLENN{j2J.?Uk+za +@7-Mk^Qt}").AKOT^rrx !'46>OV]ao{| )/6BGR[ekr} &,8>GQX_iru).5?/;GH]Yog|$*0@ELXaeuv &.6KRX_hnv{ $*,7AHIVZbhnz !"'1<;ENSYafnuy  (-38=IKTW`hmtwAS'_:hLnc{v}  #+14?FIQX^hjt{ "'269BKKW\bklw{ !'147BGKQX]dmoT7"j/oF6VadYHvvMe   )()8JD;PjbQlyt"*59=AQQR`cmlu|  (,37?FIPV^`jnuy~ "&-68;DIKVWafkpx} %4$C1K?UP_]jjsz{ %(-38=IHNV[ahivv !!*.3;>EHOWV`ciqp}| "$+01;?CEMTT]ceksr{  !+*25><HJMQV\`gjqpv !)(028=@DGNRUZ]cgior|{{ "',0077BBGILPYjs.v>xLrcsvux (&2.6=;DFIMUUY]`hjlpv{|##*/-46<?ABK%Xee~+x]  $((/:66ALIGN_[Ucnkhty~"'+*33==?BINPRY]bddmnrw|~  *%-22:;>>HGKLUT]_^dflnsvx|;FHH$D:FHBVF\PeVjbolvtv  $(.,268==BFILQTX[X_ggjnpxs| !'&,0514<9ABEJJOOVS[[]ddgknnsxu}}  $$+)-2257<;=?BEHHLNPUUVY___aiihjppquxx|{E% '''$'-..-:0<8;?AAEJGKMRRUU][[`defdknnqowtx{}   d #+$&3-%/:638@B>GEHNMOQXYVZfa^hijhptrvyz  !'#))'//.5176;:>?CFEDKIOMQRUWWY\\`b`geghjppqsow{x{|C)-(,,02252;9<>@@EEIHLNPQOSVY]Y^_^ciegknnonqxwwy}{    ! #$'#''*+-+/-5317377;9>;;>C@B@FCDKEHLKNKMMRRSTUSYWYZY]\_^a`bbededieljklmpmonsrrvtvxywx|{|~|b/8:<39A><>?DAEBGIGIJJNHRPPTQYRVYV\X_Z`]^bdbcheihjjkmgqlqqoqvswwxw{y~z|}garden-1.0.9/data/beat/line3.wav0000644000175000017500000007405012457263310013270 00000000000000RIFF xWAVEfmt DXdataw1L(|q^EK?USb JH+;A0`Px n!"#$%s&l'Q(A)**+,9--.H//i00W112[2222333222u221T10R0//o.-,+$+)-)'&q%$""R d* 0#$J')[+,'/02?4UE? {O  L  .bPX;o+A; W 5;2 x O p 2 4VC@po*V cj; Aѳ0 U ΰް$rرHβd [D4=Noսt=÷4Tʚ@ϯm5؝jCQ7Yڛػ 3ӇѾf?:Er?s2+IF@~Zb i S8 nE+A|  S rt' @!A#$&q(*+.h/p124579:<=>z@ABCFEFRGH)IIJZKLL,MMNSNNNNNNNNNNMVMLLLKK[JuIHGFEDfCFB@?N><}; :86[532m0.,?+~)'%$F"y d ;"$%'l))+,.W013?2vR ^ k l G B B4\M2 %k4bOk _ . 5 u * G] G.QA;hޏGoտVДP+Ⱦ.\@&-aI:˲p#ⱼ%qղCWd? +[ҿzOQm ͳ`ӆKڤvFbو ZҤRͽ?dr f@3m\_B894{SuP'"/Db@<D[ sdo@ ",$&'),+"-.01356189 ;<=g?z@AB)D E4FG HHIAJJKLLL=M|MMMMMMMzMML]LK\KJJrIHGFEDCBA<@ ?=U<:y97r64H310Q.,*()l'%# "F u!H#%&(U*,-~/12& x ??Z  Z C8CT,gRjK) t b@YilyDW-I@|Gݕ۸3֞Bl6#T'µF> 2> `ܴO鳃8ͲIJ$zʳBMߵJպA|W\˅#y'՘Zܫs8`ߨXء9{8έ\B2uW\y>P`ggcPJv{z _K]JU % vT`3!t#Q%&(b*9,-/12=45I78*:;|?@ACDEEFGH/IIlJJkKK$LeLLLLLLLmL!LKkKJnJI3IHGFFEDCA@?T>=;M:8b75[4221/-=,*(']%#! Kr "]$ &')E+,.401_,]y]({  r  .-YJlceb&>(C y % inc/UZYr|Ց,DM2øLZ<LTɷ(yiLdzó˳'}ȴ>Bʶ'˹޾>sņhnΜ5҃8עfޤZ\ޕlײ ^$ό[lZ{ U [M uc~e. 1#Og@lgIq M W BC !"$9&')^+,.301[34Z67>9:;B=y>?@ABCDEFfGHHUIISJJ KUKKKKKKKgK!KJoJJ}IHJHGFF-EBDJC@B,A@>=Z< ;9E86\53L20#/-+.*(&%Z#![' !#N%'(t*,-Q/0z2LMp ; f W  "<tiF!-*=B w`~ &78k'+۳پT_ͿIBĸUn$Q,hgݸFg%ٴĴѴӴ -µ@:s 幣su qľ"ǁiyХEԐF٩b Rݝ0،=Ӟ v ">Z\)%^ RyV:w0(_}DgAuHs/C ;>o S "#~%('(~*(,-[/0w23o56I89:1?@ABCDEGFGG<;c:97C64S31E0.-x+)'(x&$#]!x#!"$L&')3+,p. 01Xs(,# s p L Mt oM \ QP:>ҭ΢˴Q:iu?]Dyͺ`)4϶z> ҵݵ3ƶ8.YƺpFLD`u`ɋx·ұH֗Dۡ[vUܮV׶wY޹H{ZjM&Kx/+@eskl'DI(  Z"t<_!#$W&()Z+,./1245V789%;x<=>?@ABCtD)EEF#GG#HHH%I`IIIIIIMI"IHzH HGGuFEELD~CBA@?>n=6<;9n8 75>42L1/8.,+s)'%&$" !k3 o ,"#%'(e*,-(/0 l6~ 1nd]  ) dCBHV &   F*e^sc6t9J9x޴*b!֩Ҋς̚ a6{€Tj]rȹCH淒S<ɷ.GẤgC! #2_Å ]ȵ˃vцԴLؗ?ݕH#j t۾-|UAgN~81;KdGm|CwEeA[iEyhLZDl P q1@Q <" $%R'(*+-/0134e679:v;x<=>?@A}B_CDDmE FFGlGGHHHtHHHHyHHHHGG GFFED4DeCBA@?>=<;V: 97p6 53H20L/-;,*)t'%1$" 3lo!#$[&'))+,C./mdB8mo @ W 2V?%T}ngNd>o > 8 l Ia+)j/vUu+u"~+߂5ڡt[c~k-ſĒmpz2Tչeg1F̸) -ͻIAtƶOʴ̈́wְ҅Fڈ,y,-4܆Q/Դ',=w6.K-xG&wM.FH[ , b9pW; !M#$&')+,./123x56 8 9|:c;<=>?@aARBBCODDpEESFFF3G^GtGGyGoG=;:9\8)75431D0.K-+<*('~%#?" Oi X"#%,'(L*+\-.s_*B/ 8 ] l~D8T1$l "r  U C sI^<Tpt`5Qk!7ޝc<0=j̳o#ƼŦąÄzؾPlz|G$  (Pй%k*Ͽ¸"_ȟA̤ qԄأ9p\u+MءՖ ҡЈ#s*) LHe" /~ c{e'-q '( .sVJ "#%$'(B*+D-.+012d456 8[9r:;<=>?_@%AABGCCeDD?EEEFNFaFwFlFbF7F FEzEED/DC C]BA@@1?D>K=H<3;:87y69532-1/P.,X+)N(&(%#!W |(e !3#$\&'|)+{,-(c_# C  /+T9`Mv p 8 & % h NqMLv6 @O>l5z9N+ګחԟ1^ʹd,ƦřċÑ¡"`*ݺ_4 /Xк#s XԿltsČŤ@ʆ/Δk`nً#ݳW&j9߻ܔ{r҉7=8qBD}K Im*IQUx8ul??@@A#BB>CC!DDDE5EPEdEaEUE2EEDDDC;CBB~A@ @:?b>{=<;|:b9D8754U320E/-d,*s)'c&$G#! R8 `" $%'("*+ -%c`[v1 I  &=QK'=!G * E C z\}KNj!i $rA{H%ޒvux[~qt&^Vz^ʊkɽ&ʎ.eh˜-$̀sdvͭ%AwΑ3fς϶)P{Р>mёѻ 2YҀҭ"Jsӛ7bԎԳ-R|բBmּ֑ 0[ׂ׭%Krؚ1N0+10,11C11x1X212!222 32:3U3w33343Z4K4444405K5w55556;6W66666%7B7k77778.8S8|8888999e99999$:K:o:::: ;2;[;};;;;5>\>>>>>?D?i????@-@Q@x@@@@A8A[AAAAAG {"cOĹD ~˽W.JRȿBͿ̿}ٿ (s2t,!\f¯®SSÛè/T{ħHfřŵ0ZƀƨJmǘǽ 9ZȈȫ!Mqɟ=^ʌʯ)Ovˠ>c̱̍*Q{ͣ@eΒδ-V|ϥCiАл .Uрѣ@mҕҹ 2Y}өFlԕԻ /ZՁզ!Dlֽ֓ 1VׄצDjؖغ 1Wق٧B<+1+2*,1*-P1`.0/200/K1/1"0 20*21:21E2#2\22232`333]33344W4v4444"55m5n5555 6D6b666677N7j77778-8T8}88889;9^99999:D:f::::;#;O;q;;;; ?>l>>>>>&?K?u???? @/@U@z@@@@1PJFRڸJXk뻭oվľFſk2(ѿs \0¸p¥€EVäØ?;čĒ;bŏŭ-J|ƚ7cdžǮ%Hwș4]Ʌɩ!Ioʖ 3]}˦Dj̼̐/V{ͥ?fΌα(RuϞ;cІЯ"Lqї 6ZҩCiӕӸ+Uyԡ=dՌձ$Lu֚8YׄקDlؑع-R|١;aډگ\(3'3)3*1,F0.!/E0u.G1H.1.1/1/101a1l11{1q21213]2.32V3:333343U4744444'5-5i55555$676q666677J7e77778%8R8m88889.9P9x9999:1:Y:}::::;5;];;;;;<=F>j>>>>?(?H?r????$3ZL76>0|9redj}f(oP!Î 4Jčē'-sŁŸ&Kwƕ2\|ǪBhȏȸ'Quɞ :^ʀʨClː˸,Sx̚;[ͫͅ!BjΒι*Rxϟ8]ЄЬCjёѷ+OtҜ5ZӁө?gԐԲ(Ls՛ 3V֧=b׊ׯ"Jqؒؼ.S{ٞ8^چګ?jۑ~%5\%4&3)1+/.-./?-0,1?-1-h1.1/000D101021Q2k1o212Z2222.3 33O33343L4I444445A5R55555626g6|6666787e777778A8]888889?9b99999:B:d:::::;@;e;;;;;<@D>f>>>>,D98N ]⿹d3c‹ ¢€V0éw<y{ĸ%?yń \pƢƾ 7\ǁǫEbȎȮ$Hjɖɸ-Svʚ2\ˁ˪@b̯̋"Hl͒͹-MvΛο 6W~Ϣ:aІЬBkюѵ'JpҙҼ ,Tzӝ5^}ԧékÓÁG2Ĕ{'grŪ2jxƲF^NJǬEfȐȱ#Fpɓɸ (Nsʗʿ -Uw˞ 2Y̡8Zͨͅ>_Έά@eόϭEkЏг%Hnєѷ&LrҗҼ*QuӛӾ .UyԠ 1X}բ5Zց֤:^ׂק9_؆ة>`ى٬AfډڳBeۍ۴"Bi܏ܶe/'s/(.I*-+/-,,-e,.z,.,.U-.-... /./!//_/ 0/]0 00g00001-1n1j11111D2H222223-3N3w3333 4!4L4i444445C5g555556;6_66666727Z7}7777 808M8u88889&9I9n99999:A:d:::::;9;\;~;;;; <12{ĉķ1;ņRmƕƼ'Poǚǹ.MvȖȾ.Lwɛ *Suʜʿ1Uu˞˾2Sx̜.Tx͞.UwΟο /SzϞ -U{К 2Vyў -VwҠ 3Qxӝ 0Syԟ ,Rwՙ-Qv֛ .Muך׼,Otؚغ(Ppٗٻ(Lqڑڼ%Kn۔۷%Gm܏ܸFN ,$),),*+,++`,+,+F-7,-,---u---.G.2..m...(//d/V/////0C0W000001*1]1s11112$2L2m22222"3>3d33333434Z4}44445,5L5q55555!6C6d66666757Z7y77778,8M8p888889A9f99999:3:Y:{::::;*;J;n;;;;M3)`$|ý0ùKLĬJē:tDŪŠQSƞƠ-3pǀdz=dȲA[Ɉɥ:\ʄʦ6Z}ˣ2V|̝ .Su͚*PtΖμ'Lpϒϸ$FlЎб!CgьѬ@b҆ҭ9\Ӏӧ 8YԠ 0S|՜տ.Nuּ֔&Knא׷ Gf؊ذ?cه٨8\ڃڤ 5Xz۠۽ +Ovܗܾ&KkݓݶX*E*6**>*N+j*+*++++,+1,U,Z,,,,,A---f----.0.U.n.....)/9/p/////050X0v00001(1D1n11111292[2|22223(3K3q333334;4]44444 5+5O5t555556@6c66666 707R7r77778 8?8f88888929S9x99999!:D:d:::: oUUo wMyM<]ƨ!„ĠņHƭēŴƂƍm'gȶC vgȬȾ"^gɪɯ3@vʎʶ'=n˅˳>\̨̅4U͟ .RtΕκ$Hnϐϴ?gЇЩ:^|ѣ 1Rvқ(KoӐӶBeԇԫ9\դ ,Sxֽ֗$Jkד׳?b؆ب5X~٠ٿ )SqڕڻGiۆ۲:_܂ܣ 0Tuݚݽ$Il޿&D,&,O'b,5(+H)X+R**5+*+*M,*,5+,+,',,,,-,m-%--i---1. ._.\..... /E/J/////00M0c00000191O1{111122A2c22222 313L3u33333!4A4c44444545T5w55556$6F6f66666767Y7z77778&8I8j888889;9\99999 V&!6csƫYŜ.)Puǩŏ'ƐǴƌAǏǾǥ&~ \ȱ( YcɊɹdm3P˜6i̦@}ͭXΈο-eϖsM%_8mDyS-a;rK"sm Kt 6vS|] r_*Kdp@|m - . K P d q { !!$!.!xM*]9m /Mt Ce2Uw&Eh5\z'Jn > ^ , Q q  @ c  2 S v " D f 7Yy&Ji7\ *Om@`0Qu!Dg2Vz'Gk`@?+n]9[*~<^9Hw&8l} 3Xu%Eh4Y{(Ho:]},Oo@b 2Rt#Dg8Ww&Ii9W +Kq=` /Rv Ce4V{%Ej7]|(Nm>^-PtBd/Vx$Fi 5 X |  ) H j  7 `  , O p  @ a -Tv#Fe5Xy'Gj;]*Lq>` .St"Bf"J*0JFqMM!M_&)fr&Nk8d~-PpAb/Uu#Fh6Y{(Im;] )Or>b.Py!Ee4X{&Hk;],Nn;d .Su!Ae3Uz&Ek7\~ (Lk<^ /PsAe 3 T w  $ E h  9 X x  ' M l  : ] +Op@a /Su Gc5Zx&Ji:Y +Op=`Y$nO49i0jC7M P`8W$Nj=])QoB^4Qv!Fh9V})Im;^~,OqBb /Vv#?j4X{'Ij:X+Mm;a 0Rt"Cc3Xv#Fm9Z*Kl=] . O s  @ b  4 T u # E j  6 Y } 'Lm:^~ -PqBc 0Rw$Ah7U{(Hj9]S rTN/Y T=M(h#XS@F Nb9V 'Jm<` .NqBb2Tx"Gg6W}(Ml;\.Mq?d1Tu"Bg4W{&Kl9Z~+Jq@_-RtBe0Vz"Hi8]{ ) K n  : a , Q r  ? f  2 R y 'Ff7Wy)Lj;^~,Np=d 1Sv Cf7Wzv~7KvTk}] L+^G?? MZ 7Q}!Fh:W}*Km<^ /Lr>c1Uv"Eg5X|(Im9`~,Pn@`0Rv Df6Xx&Ij8[|-Kp<` /QtFe2Ty $ G i  8 Y   ) K n  ; ] + R p @c 3Uw"Dh7Y|%Jm9\ )Pq?a 2Tq Ia )E;tn/8`@@5u IV3LzDe5R{"If9X|)Mm>] .Mu@b0Vw Fi6Zz'Jk<[ )Pn=a /Pv!Ch6U{&Gi6\~(Ko<[)Lk 5 ^ |  ' G h  8 S w " @ d  - O o ;]{"Eh 0Ks9Wz ?c (Jm2Qt9Z}!S-%YJEht#,nIx` a-]j24r~5Xr$?i/Tr>c ,Nn:[{#Hh 1Rw<_(Gi/Rp:[{$B` )Ll 2Rr6Wy =]"Cd(Hh+Nj-On0Rp 2St5Rt 4 Q w  2 W r  2 S r  5 P o  - N o *Kk 'Hd!E`>\}7Ws0Rm )Hfi Q4A!G/*@v: -mWAxbFVGY&?c#?h$Cc"Fb!C_@_>[]y3Oi ! C [ }  3 L n   @ [ y  , K i  8 X u 'Bb+Ml;Xr(>_|+Kf5OnVLnhIUGXNhU/ 1oe&"]d*Agz3Xt *Ih;Wz .Kj;Zv+Ji;Vt&Cb2Pm?Zu *Hc4Ml:St#@`w *Dc-Ik4Pl7Tq6Xs:Zu"8[s;[s=Vr  ; V o  7 O o  1 O l  / I f ' E b z #<Yu8Rq0He &CZw6Rn6OQLY:n<1lw6:nu*Fe*Kf-Kf+Jg-Gb &Gc{ )B^x#=Xv9Up2Pj-Cf|%A[w5Tm-Hd&<Zv2Mg $@^w3Ln(AXw/Mg <Tr*D^z1Mf ! ; T n & = \ s  , C _ z  - H a ~  1 M c 4Ng3Kk4Oe3wH`5M&YUO6S1p;$o_)Q]#8Rr&F]y3Kh;Tm &@Zs/E`|6Hc2Nl8Qk7Sk9TjUk !5Ody0E\t $ < U j   2 I a s  ( < S i ~   . G [ p " 8 M d v '>Qj$ BRj.BUn-AWo.AWo-?Ui(=Re|#9L`w2E[m*=Rdz  5 F [ r  ' < P d y   - A V l ~   3 G ] p  " 8 J _ r mmDRp GrIzxPz:[3zk.+YX 7Gco .G[p+?Sj{ %8K^v/CUo}"4O`t+@Qiz0CZl5I[p#4L\t%4M\r "5G]o 3DWl~+>Rfw$6L^s /@Ug{!6H[n*;Oas  , ? P g r  . = S f w   - = Q b w  * : O ` >h!~`@A,bN`joe}&F1cd 35Yaz(7L]u /DWjz%9Ias-@Tfv 0DVi}"5FYm|!6GYm~"3FVjz 0?Qcy);M]o2ETfy)6K]k ,<N`o 0@Obq ->S]o);L^k$7FXiw  + > N _ q ~   ! 1 C V c s   ) }Fzyo'gqk| 8PJf{-4LZo /,p@]%+KHik1;QZp{)7JWdx1=L_k{"4@Nbm$2AQal|/@KZlx (9HTbp!.;JYiv /?M[fw",<HUft (5AR^lx.8GSco}!+7FVbpz)5AQ\hx -<ETbq{!/;EVanz +5EQ\fx$b9 Z"tFk /)GJ`jy-4IRcn{*:FU`p| '5EP]kz 0;JW`r}&0f(Kr)?;NWdp{ $,9FR[hr !.7@PZip}'3?GSaks&1HR\hpx '09DNU`jr|%.7@IT[dpw",6>FQXakuz !*5;EKV^gnx  !(07AIRXbkn} #*3<ALRYcisz $+2;BINZ_emyz$,57CKOX]dlu{ \ NX.$/Hf % /3=IH[Zlhz{(-8HIST\aghqvy+!|Ngyaeo} %'36@BIPW[fhpt !$-46?BHOU[`bmoy $*03=>EKPR_^gjmww~ ##-047@AHMOV[_ciluv|~ #"*-/79?BEKPTT\``gkqtv|~ $"(,1387<ABHKNRVZY]dghknsvy|W,=Tl &-,2::@FJNPW\]bglpvx} )'0076BHJFPOMUVXX_]`bgfjjorqvxy{z  "$#$#&'&'+)+,,-,-1.012342718565:69:7;8>:==:><=?>?A>@B@ACCAAABAEAFADDHAFDCEBCEEFCDGDDFCEFDDCDDDCBCDE@E?DBBB=C?A@@=@<A?;<==>;999;9797946442 garden-1.0.9/data/beat/line2.wav0000644000175000017500000007405012457263310013267 00000000000000RIFF xWAVEfmt DXdataw -5KZpKdZ4r2Ya^K  u a  I B?x7p0g$bYQ IB};t2k(d"\UMDZ    0 4 *  0aQ C|g43Tlqb`^ahruhXG4$ .{l^Q!D-89.D%MU[^abca`\ Y#W&T*R1K6I9H=CC@E>H=M:M;P;Q;Q:S;T@@>@=?==>;=<=;<;;9;8;99vRIAS@QGE[.ux7Pa),u7l=iAiBj@m=t4*!VH??@KTfy~hS>) &+,0,+(# w8,.2-06'BSjl U$?:,M] ku|{u mh_&X.R4K=mZ2:YrtgZI=2'$,3 6<>@B>?<:41, ( "!                       &09961(#     "#"!" $!##&"%$'$&$&%''(&*'*()(+***,+*,-.*....--/04cA[D];g+}(XP0u pg(_*[-[*\&agr z 9p#aR& %9Oemu`ZX[^ezlvroxnzm{n|pzryuwvwxxzxzx{x|y|z}||||}}}}~ Q)hj!$  @nkG3+/:}ImX^bTiNmMiOfRbT^YY[V\T[SZUYUWUWTTUSTTTRUQTPSQPRPPNPOONPLNNMMKMLKJLIKIIHJHIGIGHGFGFEFDECECEBDBBBB@AAA??A>?@=>?=;><;<<;;;9:;9997:7967J L1mj*Vj `&5,_$,L[1JhpfMg,ayLm5^"Mp8a&Ns;b'Ow;d'Qw=d(Pw<d(Py=d)Pv < a ( M u  9 a & K u  7 ` #Jq 5]!Go 1XCi/R~@f*Pw8a$Kp 4ZDkeD(%Pw4y,& _5e;n.h+Pyi'Ot 6ZBh+Nv7]Aj)Nv4\?i&N2nC9,D[hAxj%k,X @#v>4#(f~#?q *Ww:d"Lq 1XCf&Nt5\Cj*Pw7^Ej+Ox7^Fj)Qv7[@i(Ot 4Z?e$Jp0U{9a Dk)Qv 3 [  ? d $ I o  . S x  7 \ >g%Ho-Rz7\@d"Hm+Ov1X~:`Ci%Kq69~\o9_z_&s:#w})>}"]s6bFe%Oq 2V~;`Ek)Nt 1X:b Dj'Nt /X|9`Bf$Kn+Sx 4[=`Bj&Kq.Rw 5X<_Af!Hm)Lu 1 R z  5 [   ; `  ? e E k &Kq+Pu 0U|6Z9_>cBh"Fl&Iq)Nr+Sw=v"Ee7i+LC/,s~%@q Qm+Sw 5W9_@dFi%Jq+Pv 0Uz5[:^@cCi$Hm&Lr,Pu /Ty 2Y|7[8`<d?e@g Fi!Gl%Jm&Lq ' N q  * O s  , P v  - Q w , T y /Tx 1Vy 1Vz1Vz1W{2W{ 2W{ 2Vz1U| 2Uy6U%T!fN8mwUP Be(=q!Il"Lk'Lp)Mq)Ot+Qu ,Sv 0Tw .Uy 0Vy 1U| 2W{2V{1X{2V{ 3U{ 1U{ 1Wz 0Uz .Ty .Qw,Pv*Pt)Nr(Kp%Ko#Il! F j  B g  A c  ; c  9 ^ 7\}4Xz /Ux*Qt'Lq$Hj Df?b9_5Y|MIy )N <V;V[93}!CnJb@e=d<`;]7Z4X} 1Sx.Qs*Nq'Ho GiBf?`9]4X| 0Tv*Oq%Hn Dh=d7\1U{-Ot&In!Cg = _  4 X | / Q w  ' K m  D f <^4Xz -Ot&El?b7Y~ .Qt$Hj@c5 MWseT>fCu5[]T!r FoLV8]0Yx+Ps&Gm@d:^4Wz*Qr#Gi?a4[} /Pu%JlAc7[} /Qv%Hk?c5X{ *Nq!Cg:[ /Tv%Gl>a 2 T y  ' K m  > a  3 W x  & J m ?`2Tx'Ik<` 1Rt"Fh7\}+NqBcQEGM-q17% 9*T( Xf TM.Yy "Rh!?e5Zz*Mp Bd5Z|+NpCc5W{(Kn?a3Uw$Hj;] ,Qs!Af3Wz&Jk;] .OrAb1Uu"Fg7W{ % J m  ; \ ~  * L o  > _ - P q ?b/Ru Dg4Wx&Gj7]}*Lo?_ 0Qs57ynEwjTxc;-\@;4y EX1Iv@a2Qv!Ef6V}'Hm;[ *Mq=b 0Ru!Bf6Vx$Gj9[~*Lp=_ .Qs Ad2Vw#Ek7Y|'Lm<^ -Or > c  1 U u  " E h  6 Y z  ( H l :\+Oo?a 0Rv!De3Wy&Hj9Z~ )Nm?b.0$/.(f PNKE07xy `.St"Be4Wx%Ii8\|(Nl?` .OtBe2Uw%Fh6Z}(In > ^ , P r  @ b  2 S v # E g 5Yz&Jj:\ *Op@a /St!De3Wz'Gi`A<+o \:[+}<^;Iu(7k| 3Tw%Di7Xz)In;],Pq?b1St"Cg7Wy&Hl:Z +Lq>a /RuCe3Wy%Gk7\|)Lo>^ .OsBe1Ty$Gi 6 Y |  ( J k  : _ + P q  ? b 0Sw#Ef6Xy&Hk:]+Mp>a .St De!L'0IHsNK$K_%)gr'Mk8c~ -Pp@c0Uu#Ei6Y{(Jl;] +Nr?c0Rv"Dg4Xy&Ik9],Mp=b.Qv!Bf4Wy&Gj7\}*Kn=_ /OrAe 2 U w % E h  7 Y z  ' K l  ; ^ ,PqAb/Sw"Ef6Xy&Il:[,Np>a[#nO4:i0kA6LP`8X %Nk<^ +Qp@b2Sw"Eh8W{'Jm;^~ -Mq@b 0Sv!Bh5Xz(Ij9Z+Lp<a 0Rs Dd3Ww$Gk:[})Ml=_ - P s  A d  3 T v " F i  6 Z { 'Kl<] ,PqAb0Sv#Bh6Wz%Kj8]T qTM.X V;O'g"ZQ>H Md:V %Ll=^ -OpAa2Tw"Ff6W|'Ll;\,Mp?c 0Tu Ch5Wz'Ik8[~*Lp?_ /Qu Be3Vx#Gi8\} ( J o  ; ` - Q s  A e  2 S y %Fh7Xz(Jk;^ ,Mq>c 0Sv Ed5Xyv~7JuSl}^ M,_F>? J] 9O}!Gh9X})Jm;^ -Nr?b0Tv"Eh5W|(Il:^,Oo@_ 0Su!Cf5Wy&Ii8[~*Np>a /QsCe2Ux $ E j  7 [ |  ( J n  < ^ , Q p @b 2Tw$Dh6X}&Il:\ *Oq@a 1SsIa 'E:to08b>@3w GW4IzCc6Q{#Hh7Y{)Km<^ -NsAb1Tw"Fg6Zz(Il;\ +Oo>b 0Qu!Bg3Wy%Gk8[(Ln:\)Kk 8 [ }  ' F i  5 T w A d - N p 9\{#Ff .Nq9Yz @b )Jl2Qt;Y| U+&XIF kr"-lJx_ _ .^j33s2Xs&?g/Tr>b +No9\{#Gh2Pu>]&Gh 0Rq:Y|#Bb (Lk1Rs7Xz=^"Bd'Hg *Mk.No1Pr2Sr3Ss 4 R t  3 T r  4 S r  1 Q p  . M p +Lj (Ff"Da>]{7Wu0Oo (Ifi Q3C H.+?x9.kW@wbET F[#?f}&@d$Cb#Cd"Ba A^=\~;Zz7Wv0Sq -Nl(He!>_~9Wv1Pm &Ff;]z1Qp'Fe:Yw,Mj ?\z2Nl ! A ^ |  1 M l   > \ y  . J i  8 U u &Bc}/Ll:Xt&@`|-Jf4PnULniIUHWNiV/!1mf%"\d*?h{4Xs +Gi;Xy /Ij:Zw ,Ih:Uu &Cc2Pm=Zw *Gd2Nm9Vs#A^y )Ed.Kj2Pl7Sp7Ws;Xt :Yu :Zt;Xr  : V p  7 Q n  2 O k  . J e ) D b { "=Yt7Ro-Jd &A\w6Qn4NRJ \8m?0kw5:nu*He*Ke.Je,Jf,Gd (Ga} (B^y"=Yv9Up3Oj,Fd~%?[x6Tn-He$<Zu2Nh %A]w5Mk &@Zw1Lg <Uq*D^{2Mg ; T n ' ? [ s  + D ^ y  / G c }  2 K e 3Mh4Mi5Nf3wHb4M$[WN6Q4n;$n^)O\#7Uo&F[{2Lg:Tn&AZt-F`z3Je~4Mj7Qk8Sk 8Tk9Rl7Pi5Kg1H`}*B]u $=Up5Ni.E^v "<Tl1Ibz $ > U n  / I _ y : Q k  * B [ r   2 H b x 7Oh~ $:Uk $Wrk06LYc=pBmK7;kl (=Xq9Lh+F\w ":Qj,F_w"8Oi)B[r2Lbz";Qi(>Wo,C[s/G^v2H`w3Iav2H_w.H[u,BYp&>Uj !6Ndz0E[t % < U h   2 H ` t  & = S j    / F [ r " 7 N b y '=Ri~# F=J;m&|xtCuFj8wOG|y#?Ro~ "8Oh{0K_w*BWo "9Pe|/EZq":Pe{-BZn6I`w%;Ne|)@Rj,AWl,CWm,CWn,?Ui);Qe} $8M_x1FZo)=Sfy  2 G \ p  & < P d x   - C V k   4 G \ n  # 7 K ^ s olCRp GsI|wPz;\1yj/*[V 8Fdp.FZp,>Ti} #8J`u-CVl!7M_t+?Rhz 0DYl 5H[q"6K]r#6J^r!4H]o 1EWm},?Qfx%7J_p .AUf|"6I\m);Nbs  + ? P e u  - ? S e w  - > Q d u   * ; O _ >h$~`@C+aN`ipd}%G0db28Wa{)6M\s 0CVjz&9K`q-@Sfw 1CXi|!4GZk}!5GYk!2FVj{ 0?Sdx);L]q 1DUgw'8J\m ,;P_p .@Oar ->Q_p )<J^l%4GWgw  , > N _ o    # 3 B U d r   ' }Fyxn'hqk}8OLfz ,4L\m 0=Qbr2DSdv!3DUex!2BSdv.@Q_q(8JZl{!0@Rcp'5FUgv (7IWgw(7FWgv#5CTdq->M]j|$3CSbq (6GUeu )8EUeq#5BQbm.<KYhu  % 2 A O ] m z !@+p@_'*KGli1M^l{"3AO`o~$2@R_n| .?L[ly )8GUcq /L[gw-;IVfr (5BR^kz,9GSco},9FTbo|(6AP^iw!,;GUao{ .<FV`n{+7DP]hw&a9 Y%sGk-+GI`jy,7GRbm| +9EVan{(6EP]jy!0;JVbq} $1=KXdq| #-IS_jt%1:EQZfo}'2;HQZgqz*V[#Ho) ?h (Kr'<;PUepy "-:CR[hs !-8BO[gq|)2=HT`kt'2=HS_ht  -5BMWblu !)6?JU_it#,8BKV`ju~ (2<GRXemx &2:CMW`jt} )0:BMV^jp| !(19DLT^gqw!)1<D4W//j2W#/-@CQ[atr -5?HSZhpy '0:DMU`js{#/8@HT[fow#,6?FPYalr}"+3<DLV^fpw '18?IRYakp{ ",3;CKRZcjrz $*2;AIOX_fnw|%-3:AKOV_emt{ \ OW/#.Ff&04GNU^fmu}%,5;EKQYbhqx~ '-5:DHRX`eotz !'-4;CJNW]bkpw~ &,19@FKPY^diqw~ $+25<CGNTY_ejqv{  ',15;AGJRU[bfiqvz~+!{Ohxadm} $(36>CKNY[fhpu} %,37>CINT[`flpx}  &)/4;?EKOU\^fjouz~ "%+/58>BHMPUZ`cimrwz "#*-05;>BEJOSV[`aglotv| "$(,0289<BCGLMRUYZ_dehlotvy|Y+=Tk  %+.39:BDJMRWZ^cglpty~  '(/157=@EFKPSUZ]`fglosu{} #%**.248;>?CDIKOQSXX]]adgimoqsxz{   !!&$(+*-0013679:<<@@BDEGHKINMOQTSVXYX][^_abdcfgiji !#&(*,0337:<>@BEIIMOOTUYY^^`cfgjkopsuvz{|  ! ##$#&'''))++,.,./0002333536658869:8;:;;<=;>==?>>@A?B?BABBACBBDBDCDCFCEDCFCDFDECEFEEECFDFCECCDDCCECBCACBAB?B?B?A>>>?>><<<=;9<99:787857443 garden-1.0.9/data/beat/multi2.wav0000644000175000017500000023721612457263310013477 00000000000000RIFF>WAVEfmt DXdatab>,[R#h?by}kM(\''qm6  U  w p>  H e c O %n.{lTYzobvt3yTj3;dRsCQG>F׉j~c8ṮUGxˏf\yϨ>O<׏׻eAn{_pæǯRLݽ6I*b(A(?Jܧeٍ"ؒrٽ܈}JAbf  RFP ! #u$%'<)+,.0 3+5P7o9;|=Y?%ABCEE=FgF9FEDCXB@>m< :74;2/,s*(% $h"! p%2d n!"b$-&!(7*H,c.i0L24567.8W88j7X6430<.a+K(%!Mq @ D Z 4J"&'+/48;?BDFGHIHGYF=DA>;72s.)%6 sC Ol?)l9>O?3dL5RZ zK%hg li!+ښ>3ʐZoȿB 5>wĮȑ @&ʲȶ,H ‡.ׯu.*=Z䙫 SuߴŽ^Ph;& eTn @PG:4Rߠ!֕ҬҐӣ!5ڴ܋߈B7\^3Pp  61 "@$r&(+k-/2b4{6p87:;=6>>v????s>=b<;z976J4|20/-<,++*}))())3*++F,- /0)23`56899w::::97 631.+Y($:!E Wg L"',g16s:>[BEHJLM\NONMXLxJH#EA >95.1,'H#pOv )e') ; H Z N  ?0 K M EU5@n&(.# t@aGU1ΠϤ'Ф >PѣQ̓` *,5HʘG6_u˟Ҩۭ<˸z<ɒL>QP@c+TۛqHχ6TY"Fշp`Tk!!`0#x t x ! !%B8 N#%V(*&-M/;12y45678=8@8877f65433O21 10d0Q0s00Z1234A567J9:;=>>??v?P?>=< ;9630Q-)%! =] e.!},% c1"$+)".37? ;62}.5*& "=5'v0 c 8 U%xp }6 j 8 CU1M<.%js 3/}"BI3 =nZ\ޕ܋P=Ea܁ܦܭl'՟UɖŘ\w`⦎s6.!C l~1f͜@)kobƟ˥H՗n]cY5uKоY8u"=FHҤձIߵ)Tx^`(Nd9 J K { "$-'8)+,-//0B11122!2$2;2T2}22'33Z4,5!6:7s89;<=`?@ABC*DcDODCCAP@L>;%962. +&"ZGP3 /i<ZbA # 3nK#*(-1h6:>>B]EG JK|LLLKnJHCFCw@=952?.*&# V@]q+0}a0 "5$%&'$(g(U(' '%h$"v  ! is[Ztnjb2_~q = 5k ?GRYˑ7daRfuڎՍs˔~~qj5,8 ٣f݇"P~ٓy/`ɟ< 6_TùĖnfΙ؆R dR=D%`%NoxZ@s<  ~0: "O$%='w()~*d+8,,-q.8/0013S4578C:;=7?@_BCDEFPG{GEGFEDB@>7;8|40,(o$2 }' = .9W * !$U/$(-X1d509@Nt@ ^^ }' W{F! 4*(< "N#$%&*(q)*1,-F/0246x8o:b$@AsCDEF7GnGOGFEiDB@>P;-84)1j-{)%!i~ :  kN  P ##'Z+/258;6=> @@@@?>=;86J3_0b-X*r'$"X^ g#0&-)[,/258;R>@lBCDyEEEDB@Q>;[841-($r 99 X WRNr0i&p 4u S OMw3$Z0<,xߩ&}ҴH[F3QeDsy5kwpu[.ǔNj;rÓ{=Ժd~ﭦJQݫfzcʩϢԖمK('Bte =?jy*YL, K1 q u@d{U !s#!%&(*, /;1r3579;=?@BCCCC7CTBAo?v=8;852/-,(l%"%~YkX4<KZ9E!i$'*-0!3y5r79F: ;a;H;:9E8y6[41I/w,)&# *u '&s" &)-159=rADGJLNPPPPONLIF9C?|;472E.)1% }b Z(`4 y-pZz*$vI":DVD"VWؔϲ\(&edzHKکδ"4 ھV]­G+W֨Z)y͞ku2ɬ[,D^ڗߍ9e'$|107;ڳܓx E v@j*  { O8R)!M#%'1*,.51_3g5A78R:t;[<<=<<;:9_7`5,30H.+)&$!ov_G@J!"z$&w)+\.0246O7$88888j7,642<0-*'$!kZK0%6H! J$(S-26s;@cDH=LOvRTVWXXXVBU SZP3MIEAK=8P4/P+&"@D e   k & Y J)  &  Z0X2:Z!iY\[b36+x~L[ĺjTzG-Jپ*m™l?4 bHܴ<Ϫ_ƠÝ $r+>ݠdzPĪqsیVzA S uە~ՀՋ֞پھb_vl~p[] : 0 F { i=X!#"&i(*,f.0c12h3324!43.3M271/~.,<+)'5&$F#"!P $ !#$8&(*,".-0235688(9*987675<307.B+($K!V) cn UdK!&,61u6;@TEIMQTSW]YZ[[[ZYVhTiQ NWJoFRB>95e1b-)%"#X18By=%Rq#b 3 k j J(\eߏܱi ~11ʇ Y_r ͑lͮ̑>>C>=A<:8673 0,( % !3 U njvY3W $=wo %*0553:>ZCpGK.NPRgTRUUUTSQOEMJG_D!A=:y7|41A/-7+)(''''~(_)*+Z-.023466777765420.,@)M&8# cJP {(ks,HGc KNh<2@wq 'g'pW`Ȩþ~~uΔߌaNċkٕ՝P ۿmRy*[%ۡQؔ֫ԏ{J2=ƼY2Ĉ@g9R]q%sy&?cSB\qS%K6d r WnUe1T !2#$&(*,.$1\357}9;;<=>p??f?>=G~;85f30.-+*)))2*+[,-/1 4n68-;~=?AtCDFF'G!GFEYDBU@=:7a40-E)a%!!H.`  dJDVnWKxujMc:%);uo%b~=ws{QOZڥTY/θЩ9+Йߖ|ve[ƣJfZéfɴ˔[^r̶ʿȹƔ|u߼xf^vKMڅޱb<<DR>$ KZDv|>eF3qQn  >[wuL'$A!~#%@(*#-/154O6889E;\<=q=`=< <: 96v41.A+' $U V '-H x"&*+4/ 36: =?AiCDCA?=R;87631.i,s*(n'w&%%<&'E()+`.14&7[:=AUDiGYJLNOGQRSvTT&T8SQOMJG-Do@<\8(4/+I'7#H`  o %~l#? M@(mT6gz mVޓ+>HI^񳖯触̡z{śޜ:;Ť3iqK/%ijƖ-?PiN `ڱ! ѭ52޼0żxV8t>*\ljp>W@^!%[^1aްrhp(IXU3D R, i ( Z(3mL^"$'*,.02456777Y76B531v/,*&'$ ( 5  @ ! j \lg!%(,_/t2B579;<=>=b=o<;e9d7520}-*O(%#!J ^ < !#m&h),c0O4e8<@EIMP TWY[>]O^^^^\0[XAV*SOKGC2?:V61-)%!|aE9{ Y 7 !   ? , ~ l@kz}?Ry ~W)XDܢ/ӥ(ōʹ\.9a|v9T:ľĞu:6`/`Bl .:Ч誈 ϻƇ_ֿhs 9Y,wCks=Nܡ@/'|w_RXq, I0Mp!e$&(z*,b-c. /W/B/..-+*,(&#}!e+Kkwupf)!$'),t/145o7879v9F98756c4G2/G-x*'$!GI)!!%*.<38=BFK(P[T1X[^`bdddmd[ca_]ZVRNJF8B=951-J* ' $!=DF1aKn/XY r M 0` .JC}Y:H VO Oܲ#ъ$k!8ɹsc[Ii=E'cj)ȝȽr_œcMɮ>̧rKr<-ܗ^^̪մNy58V}v,6 kEDnR[#ڑ: 5QbYQ2k6G1j A,#'  !##a$$u$$v#"!J sqtm>>(!+$&i)+a.0245 77 87`7c64)30.+(%Y"J < e eV % *;/4 :m?DINnSW][^bac%ef{f@f{e"dDb_:]"ZV S@OXKdGmC?;L841/,x*('%$E$##{#########'#"! 7  bvo|2=d.IRPB6>]٘ԪўL;ʢU\ɪ.˽̿ϪU&ҿm·9ʌǃ.xC XcNĐˏuBt>袽XLiԑnmh#)y~/;@ݾة֙xiԷRAx؟ڋ܅ޝ9'IWGVgizwE =5[T@"3B."$!')",.0246J78~8x88(7541p/,{)*&"ufk " G3+ !&K,1j7853\210Q/...//00111D22222J210/.`,X*8(%e# ^2B gKR3 =ID=R<y%`\h1=ف؍*٪|Fݩ!URQI4&ѻŗaݮ(9"a -ِf@WGr .Jb4ӶjߟBf@f:g*>ҜF%b;Ԟ֭KJHAfIV]'8^Ul i q 2Rv->3%8!#R&(+.^02h4 6[7J88887642e0-u*'r#^d I 6Y,OJ   "(i-2:8p=rB(G~KpORU_XPZ[t\\q\[uZXVTQ7OdL|IFCA>\<`:8M7B6505&5j55678':};<>U?g@BAAFBaB"BA@w?=;9B741w.6+'y$!cm AkJK~{A[]gn$#o3YUG>.@Z)ѦָQ1?6ΐ ړF8|7gzʚ^ҵէ ݇{߆߹ރTf]JAQDKFGHSI\IH!HF`ECAO?=:j8;6A4q20/..../124 79r:862-) &o" j3U 3 < i  |Y M{}Tl?$&PGS0Ila_C޿=`˃̰c\ܧϥTgã奈8lKƼʨ ΅ϛFσg!ņT[޳@ Qj$a=“Ƭρح8{..N`*Tj:>;܎xڢ$lHޠ {hXkB%CoKYV1 #:R[N'f"$&^()*E+{+@+*)0(z&~$-"Gd W t  !!%)P-0(4$79<=R?E@@@X@y?=><:8a641%/,*(3'%$$$$%N';)+P.}148<@#E^IMQUYX\9_ac+efyfWfeqdbr`]Z[WSOKJGB>l:2602R.*N')$M!ob  W\ [.%MQ.On0[2pTDXMգN.1} ѵ!#rE+Gb1jk-˝̼tί%0%ȸ&VmlzӱGw!G&ζۺD(Ojbq4Dߓݸ'9{% (]ܞ:yi68G}8"<]/ ~ ytC8 ! g }n~ha ` , N  0?!%t(+.1&4W6#89|::;:9}8642)0-*(S%"V 4]dSf!;$'+ 04p9Q>bCVHAMQVZ^adBginjk?kjiMhFfc`]ZOVLR9N JEA=&:6%3/-*-(&G$"n!Q ^/Z.` SnyC/Wj- Mf:T2RҗϐH+nR%zǫɀP΋ҤԗӺ~Tˎ~+¯ i0G9%@J;˨Vmⴲ;ĕϓ%8k5n#I08v <=ߪس֊gֈօOXoڝ]ߕt$Y#d"%SxA b N>X5#} ?   B G1h  (0"^%u(q+7.024K6`77*87!75`4`2 0q-*'t$K!/1c^tBWDLP $).3?9>&DINS,XZ\$`hc)fXhijhkIkjZigpeb_\ZYU RfNJGCB@=5:7253A1/b.U-u,+B+*x*+*)u)(z('&%$n#!* UL"[ f lj)F39y7Z-: ilw^ՃѺ"\ ]L2ٍں۳dyݨy^ՅMñhͲ ˠQ_/xIIfYEӃ؅ElVsNP?{dws]כ:;֩[?b٥rZPeC&[( 5"FB F R^.(da58wN!w 8[04Rv"%(+@.02J45g666$6531/,)&r# " : N0h $9*/O5:s@EKOTXY\_/bIdef%gfBfezcwa _{\YVhS?PMJGGDA\?K=;98776f6Z6r666"7`7777?76655420 /,* (|%"Pf -aBg8kK/ <4-9LC'B.3e_,=ܣK@~ۨܟݾb+~P/Aj&oIԼO̰M E XMKk6S]ٶݰ5L @1i#l@ӿԝvՕ׀>" suZXkT0LAަ߻dW"<@UL:k_B v % <~\"%(W+-01Z3`4454320.,A)&"0` +?W;~ $F*/5}:?DeIMQ.U3XZ\ ^^<__l^Z][YWUSqPM*KH(FCA@>e=<;;;;p<*=> ?"@?AYB\C@DEEEEEEDBUAv?>=:8)52.+($M!"T K } cmW`tUmiaE(suI .yE*zbE@\ٶػ z7MӦУ[s)zh#5HOйmð>̘жԅߨt]bg޷܌aT`Ԝ e'JΤc7Gֆ|D8!=Eb~OPtܨۑ+Mٻڶ2ކGl],s=*@F cTI"%(+-.20 1r1a10/\.x,6*'$~!: B-Q U0 h.# (,-127;<@RDHgKDNPRST.UUTS>RPNLgJHECkAv?=8<;":9h99:: ՞ׄ؛٧ڿߝl1{Huex)%~ 27}e!#&'[)W** +*)(&$" /. @V/UD g 3"&A+/38;:?@BDGHIJJJIHGE DA?=Z;B9E75421t1V11a2}3569;Y>IA[DGJMPSDVXZ(\b]%^r^D^]~\ZXVSPCMIEA=951-)L&"RNy5    ;l|y]|&uir,P9=@#b^Ca=]#Րǥܿng˶`Vϱ. Bĺ61pբyۖܺr۪*cHq<˘ƯÀ Ż𻇼/3Ãư2,1>\-~5 b8ۺWӒG8gҲ'Ӽg#֍M٫J]=ܩ݊ ޺nEJx|XkK 3cd =lf ^!!F! %hi-M/ g Adm  s !%)-|148:(=?@AB,BAA?@>s^&X U?@txniف@a3v)Vy{rŝɅ Ϛeֆk2qsؙ̹xQ1H6/njc޼DmНMߘ/`O3os ׻ՉԜҀOH҉ARԑ%֨'׍)`؇؝ش?ْٛ^X܊ޠgUgDsuS e r`w/+ % [ ^ ("L ! [$(+.14 78:;: .%S*/ 5m:?DIvNRVZ\h_AabMcc?c{b@a_]P[X V(S:PCM]JGDRB?=<:,98E76:66555555555b43{231/-+)\'$&"cB i fnT@+0T\fckz94ck'0v mS`_B'TȚ ú޶g\򫟪ͩ[GfzIԀ<2-b`JS$s@?ۯhh׹XSֈ׽פ f$߄xQ[6uiI|A5YӽP1҄ RZܧItn.!j3o>'68U & { $`'b*-O/(12p333 31X0M.+)%"5  a\y2sL l0 %>*z/49>CGKORzUWYYZ&[L[Z0ZXqWUxS)QN;LI?GDB@>E=<;J:9997::y;N<8='>"??@^AA BAAA#@>e=;s9 7q41.+[(%!yq{4 'p`)/\i,dwK+ g;n>;[|M#-+"Lvt[kDFe}#^I,V`[fЊjT\LH\>wR1Mǀ 0/rW]`I|l1}ܪڸy@`ҲX*GէF&&E_kf;?k?[߁qjه0ҤЧsτϼ1ЬёҍӝԲںv!ݵ0ޟZ߹!.&s wet l8#)&(*,-..z.-p,*($&_#S Ht yL@ n ~#b(>- 26;F?CFIL&NOP\QwQQ[P8OMKJGEdCA><;{9(87h6 66L667 9|:<=?ACEG0IJKL_MMMM)LJTI\GEzB?r<295=2.+v'# Q?],  v  2Z{_j|S S/8w_ _Zf}.xm6lQ@»- 5i'i,^'Ǒ%qpܨߔ<_UlEGNݻ9Տӊ[@͆0>̟̽zeҞ׼ّnQ4O7sG/ިN!Qt`|KT͈E^ϴT~vBԐ!i&֣= Fyw8.; 8_ "O$%y&&&& %#!!p / wNd =u"W'+/47Z;~>8ACYEFGGGqGFKECA?=^;96420|/Q.---]-.@/024279;R73/(,(+%!S 9 nO*q! :6-iu4"3TD u P 2BWw^f ԎaͣYȃ*Y2Ń|R ߨCB>b4T^hӧ͔nɡ2:ŨďĹDZJ:Ӊّ.E?|\oV'fTAoCـlՍя[mζ.̨̣'eͬ.jΕQϟЩvxҺ?o mt|oS  4a~|~EIt ! (%* (X>E[!n%e)=-084B790<>b?F@@@$@9?=:q1ѰE0 @٠#޻R2h]UBy_K9^vBODZb#˽l7R)ϝӥ 76-I[vYڽسf 0{ΪtUU_}ΏΘΜΗ΀[+͠P̤_'+{ Еg|~We.@2Ws 9 hI u  vpNfW* K E#h'+m.1]468X:p;<,<;;9863&1^.s+|(%"t8^B1~g #\'X+/3i8;;741.#,)n'`%~#!E hG" 1G * O jvJK=6\Xo*I, "JBݍoܦKUޭN5ONEZ ٮՇхͲ!W5~`ʻĽ;%x'#UҬە3? Uf<>A+^ކܐ8JҜnejzҘҧҳҒJъgжG·8̯K %ˈ-Cζg[ӌ׎T=21+MV]KQY3JnuJp f5#t'*>.%1357899t98e7531K.:+'$?!Q0P x `t #"V' ,05:t?DsHLCPSVXZN\4]]w]\[PZkX0VSPNKGDA>;8a631/-Z,*)('&)&u%$ $D#f"s!_ 1ZM VVm mL]7[T0qF;GsBh_&$Q u(H2 )=hDQ1~,ӺʓA5k=[ FѬ"ړ5=kzP I T#zVM e"@>֢֖`)ؒDoكf4N؝ԲӁV' C̣A j9Ͼ~hw֣Cݒ~cLTv00? -Wrr U$'_+z.11u3E56k7776~531.,(w%!5f} 8|{(! +Y"&+05v: ?CG7KN[QSUVW$XXkWcVTAS&QNgLIGlDA?;97504210c0&0(0_00f1 22345^677777K765:420.z,)@'|$!ZX ABP8[,u S{k;PZg HLX<|  /qXn0 0y٫ԩc^ȾѨUߔ'alBE+oi/;;9؟C;ցׅ0|/+`Z_ ڵأ֬љ@(N̪8 T˶:̩͔tU6ҦFDէ+W}֤}ط؝ٻa:Dy !_!$' *,-...0.-v+f)&/$!ku $]\sXr 2$(,%1&58B<9?ACEFkGGhGFEIDB@>`<:7~5U3U1/-,+#+**C++,./.12468P:<=>?@-ASAA@?X><:8)630-*`'6$!_}X^  m3R}Uh [-z~VDlr:!!& 0cMTu8 \ ]7>*)^#RԥתBw`PH-$p#MzT ՏnҴaiѣLOۮ"~w[l݃,+ѫX?6@=@??=:<]:98531. ,)'%G$#"!f!!M"T#$v&(*O-/25r84;=B@zB_DFGG-HHHkHGF$EKCA>;962/G,(%"on U 1 x3oY10cpId%[S6$ @QUz2uh OkaG ?w rSش׆פ{tݾ:}>}AM m߅gwxzͮ˧|̌ӖZViޓYnbyd@Aܻ~sդ҈M=cͲ>ˍ^5ʝb!ɇ+Ȃ: Cȭ\CwV)ق jYA KU:9=W@  k ) ]%Q  ^x]2#&*-13@6989:l;;/;Z:9y7x5530-'+@(i%" ?8tz!$,(+//2f69F=t@PCE-HJKLM4ML,L KIGREB@-=!:63}0G-'*'7$p!b)2ri d 9  T r/6xoY4UvdtZ 4PCN pG 22b) &{)&#Cc Agm 3ziXȣ bUɧ͝ЕM݋4?^nUe:f^@ֹV/8bй0y$͚PͮHF˰dɹ m^hZ}KRה ޫo9W 3 G  F K9z\>i+d y [y",&)-/246+89}9f987?6N42_/p,R)&"j)-;W N L TSd-!$%E)i-159>=@CFHJrL~M N!NMMKHJdH3FC A=>N;Q8N5R2g/,)>'$" Yv_KKF4"x <)YE5[YK >qy O5 q{ F < t5`3+vwv    4 J  glվp·%ǼĒī9׍oY4)*$3)>!w\tܸ57ՙ&ӄO#Ҿ҇3OѶDi΁͎̒˒ʞɹ?ǼcEejZȐLӘրهܥ. F<A8o6_?F4 nhbM"&),/24678988642+05-)v&"\&  ZsFLh * [ $(X-159F=@nCEGIJ^KKLKJIH]FWDB?=l:75e2/l-+)'R%#Z"(! /i}E |N .A.TTFW)kvV W r Q ( 9?[u@/`g. D +> i}% q(cۍיbRŎŚF؝vU)eWd>] J^jJ_ګ*جدKlؤ~Uل!6* Ҍ@ΪwafʛțuȐȉnʓ̑ovҙ.ي:rm oB1 ^{sNwsP| 1w"&O*-031567\8S87642A0R-*l&"% Sm*$ZD zcN $)R-d1158;>ACqDnEEFEDCdB@>gY܎Qz7ݿފ=I\?]Lݷ5ک`ռ(ҫR!C̤D A˛+ UFWSٸ@D"d@JD-D{gGe0 l}"&`*-?0}2-4Z5565t420<.H+ (s$ 2 Oa7" rn %&),03692;<>>>>J>g=.<:864b20-+)'%p$,#+"j! !!+""#$%&'S((n)))))V(N'&$"!Xq$  -qn{<$<?,5}?j 7ycs R' "M$B%%%$#!4 }[Ls"WoQҿҬ2ۛޤ E]b4d2rEYx4SP߆Z,:ٗ7'rPMXiFGhB0I1Vձ<@͑ͣͅ_άd(ѮcԳ,Ս!շէմ-֪okظVGݑ/2~%HJ g!=%s(,+h- /L0000/-+)&#F X b`3/<;z oS/!$l(+.X13o567U8g8 8C7&643 1.,3*'~%E#1!LD,inc!"$&j(+*+B-./C0000"0H/*.,+5)'$T"H#' " ]=Fx1>ezNVVCR=G|CX ? _ "$\&X''' '%-$!I!# NQ#5jB#ޅs0xD,5zLslfWU|T4٫{ֱD8Վ>V׬G&eh  "$8%% &%$t#![G 4_ecs0*p[jUeP!w\#]d#*r3ԪҋдѲK#NؽUdj fP_}U1G9b sQHbۦص֍ՆԢOх.Оd#vύu"r*ʘ"ȮȻɖtʟ#/Ѿӟe,5qT]#P3  rnT@' G  Lxm ; [#&X)+&./`1T222B2L1/.+p)&#~ F7 K(d K  } gG_ r #'(*-/+2=45:7,88887654'2/-J+(5&#!!R ] > > E Vk{~g@ND xDt< C[AR} 1KD| 6E f} I b g7@Brl !  $  .T}uJ #Ո҉ ΁mK҃ e e9beG8;cW).\H_r+!Oםր շPwӀ)hЖϴIɛȽǞǽ!('Ӻ`J k7|QC <@%4. r!$(*-/12343L3$2}0d.+ )%k"To 1 <uf[a^ ^ u6" &i),\/13567S8i88i7`65i31u/6-*(&#b!TUN + H P D!z6z_Xw*7-9 o  '1rd 6f,@ , S&3t:cd s!#%%2&&K%$3" XS6>fRӹB\ EE#՝sډ,K=WchV(Yf*#N5Mޥޓޣ޺8fm\0l;7ؔBԘW'7~͵ʹu;FЕ:ۋP7< @oh-s{Xg&DHf|U /q#'/+c.013v567776Y5d30.*'#{I $ 08UfoqrP <!3$&h)z+$-g.?///V/.-`,*")B'@%>#6!9K{N>pOOuYEqw^84 ;  <k@a8@j"r'd-kv$ls|v XS #%c(}**,]-.3.-,8+)q&?#MS $bJjM_!D$|:bݐ~<#hcnqߏcm߶/g"r6}V@msQ 8޷8dUҫҫ]:׏xzjuK\aE +5$pe":0cL  }"&b*-034H67N7664{2/-)%!o| fV$_~ )9+!!$&'())))('C&$" O>"%:SpCTDY  LTAX%G*/!a<udA^i%Pe L%#q&})(,p.B01c22O2e1/-L+6($ a JT(sF~E.߆6F"Q N; YAi bU&߉ޫ!]xsc0kj##W ݹۍڇٵ؜mYx׼#تI{/mOަުmް9?q4"<۟?.u i:oyS f#&#*-t/Z12q33A3V20.l,)S&" " uJ1W\bEf NV- !#$%%%\%$Q#! +]  J B /^d ( |oT"JSD_~5;dv  E H;Y>*]r--F $'+`TBE  6$'*%-S/ 152222|1/-4+$($ `D }l,V?A-TCphsz[3DtpzjftNuٵذ ܴ݈z#vWE{M02X}>./=Rpۈۜ۸۬ۋUۗڀ^ןL]%'f ו؅܃ߑw" 0Ah"b%')\+V,,,+*!)'$!z  b Z>-F# "-,u n"#$$%$#k" d  d`KY]/I N#!!n""""]!X VW ; ~wZeYJ#zsA7"[d K K>+l #&?)f+%-`./T/ /7.,+(*&(#>  q hO ; e s M{f>#,P2Ն_ԕ:F֯oyNS,vPD;#!/" nv}?[J( ) U]EZ` ""k##\#" " > 9h$ i q#`5"$ % -Nh5(t|.h 17!k#G%&')(3('&%#! z*#x0U9^`A 74n<zLq 2m%Gݰװӡцѹcҍ Lۤޞh K|4a"V63YW bzPߊޭݶܫۄYָ՚ԑӪd MѻәՋwdߝ}a_R97 L+"  4o u`ew| Pb #,&H(*Y+9,,t,+*)&P$T!byn@ hq]GwW6T  u r !!!Y! )gR*x L G Z ^vFVNjf7)udxQ,Xlws; }cW ]dX r,  HRWEABz 9S "#$$$#" qT #n%~եVҍKёYҤOhلmߍ0%h2v`#L%rO6t}1jI>@]fMݍ?ټ؜חּգtԉԍՐ׉uۦ >k}8 )$ % - K od$o fLf[IAO4  _Zy B$Q'"*,.-0C111e1S0.,)&a#^{ 5 %QG#"D"~I'/zn uB67 y2   _ k#$*q~&V\`67o kgPLh9]  T ]W+X[0 ; !+S"%7(d*/,-c...-s,*"('%! O mߎ٣\_\3mݸY`rk]X6Jq7s kpQZ~/޾ݭ}*N}ۀ2g^v Th0FA>Gmnt{] "%0)^,&/1s345654e3f1.+V(w$A @b 7J\"h@a:}C.XZ 0 Oa43$X C G.@bK%  " # a{U (BE.*lu~ z'# 4 E NGDPO_pqF l Vv""%),.*13~4`55u542301.+'#rz, NIt]ߢ۝ڮADܴ}ߥ ['R g/FcmXoy[0i_ htkG?}jWo)4>6dm!1 Al"&<*-z024[677|7+7C642$0-)%p!T `pb&Hso^a^< +/' Z & CbZ,LB^N V z 3  '  U f [ %^EKK"u?15y@(WcN!b."a( |qnS )Oiq"S&)f-k03F56 888%86752 0,($G r i|4 3ao?-7)[\N.Eak$aj;)F0??3SA.VWW6<&t1WovpW$,#nx%CdrzyE=!h ?D|!z%,)s,P/13455K5N420. +'#.S :|uF7mN?qf[> Z F&R XZ{IY0 = S=H 2 8rys ,q:>!|@inMm{PT}X/9 b;e j$)(+.1356z77,7'642/,p)%!=;8 E B'&cMucl=uXj;+@ZܫoTކ @ 4~Q`e, azG& -Mw"$ rzF Vߧ߸(|{Qu 4) # ')Q,8./k00l0/I.w,3*'x$%!&S "c'TkV  $ iX5iQ = nyqfg}*&V2nl5c" A.@^>It \ , j_nD]tW,' ^zdTv{cwq$ 1j@#&)Q,.J01B2w2 2K1/.+&)%&"Jn `3r b0D 5 ]d ~0]6u1ؿ׻ڞvݗ1f1*MqP1;&4' rjsBSy_DC(d{[ySߌACޘLWT@|$n Nj "$&'R(x((G'%E$7"%I< u#&?jd2c g h"L5' OF~0 +~IF#@~9H*qs|{Al n DDH\ Y G (  2r9l%n?Y<;bN6QAkm|{E_1Z #c (#D%&0((R)0)(''&Z$<""O_]_r  hbL72 ~ !V^7UNm p(7ݠږ@ u?o6ݼwRHF?.QGe~Sa $qlbH@9 $SrjG PQ;V"`@'q `l.y5V + >2_3B / @bh !"0#9#"!r 1c; R`Vw`cZUܱ F/@-O s ] Q f = ; <n vikp|tX&i$MO4')5wZk8 r,9MM} ihEoF;F(l > 1 TD4y}9\  (9&8 "#$:%b% %<$"! G!onJf/OqEբh֢?8ہRWk]e g>w7YD5?],O_ZA nMG= j8.t Ij7 , (x J5GGj { #N%1'()`*r**)'%#  ?9/} =YgۍێST(*w2vk $6O{,\(%LN% KVCa`,2K7JHKNp _]am-^ J og~ y0 $^~s"#%|')$+Q,-2-,+*(&)#G kJ.ڦخUbۨ/q9 n*k'YD5 3.6C8=,c56u.XW  \ k [ iC ,yqK ,u"%`(*,4.6////-N,*g'4$ W - Mgu%޹LVq'<jb4hOT1\r:! H/M1aZ7Mt   1IUTN R :|^#{&^)+-/011C1J0.,"*'#|Ky !y j@e߷ހ}ߎ]FXnQWp?MYB~72dAQ.\Z  t;nS|PD/_qnEs }P:vT ;O L z:C!$'*-/0132-21{0.,)&7#O W TO/t2a 2gO$b4OEtC@]ki\x`-/lw vlQPm<}9_>BuM jn" 5\D*aO;  "~%(\+-/11O2$2m1*0g.,^)-&"== ;ND_RtN?Yym nh5(0N1e[Od|`A[V2A ~5o}MjY r^l_ds  IA"P%(^*B,-.//f.L-+)0'X$%! (/ R"e-` yZ8"]wM0Sb+%T5)Q? p.-dpQ#K)>& m^j:z:,of d(KAm`9KI>Fi1 7!$m')i+,---@-%,*(1&u#g +o $J0p$2W_'VdARxNuX2sނބޗߙ{HLpkRla*-ZNvte-4n}wER0h>S>$Y +i% 3e!#%&'((7(_'&h$V"BU:g '  M=Y[ZU;l     m P4BGYtH!T%4|()XY : gn/$P}V@|] r/o\o~! u;!g#/%&'(((''%X$q"3  9\]RXsD)  Vm2 9 p btZZqg? ;&Ypf|TY{H Xn(/^BP`JM>#mX2%,q R {r;~t_k U) 37TbL 3'o\ 7+T\ܐ]TާG.fDFR( E ^sqc# Q j m ` 1 T7CbDT.6>8K; _  1!)! uUq + >!b}O@J b qycE|G"Kt L"NgqAEUf)֖֩uPfޭ%72: V= .HI}(u&}:QK&n6,nF2R+N ;?|| o  3'k'xKKY Ihl} yary zeݬB&FU."np<dgU)w;%i*"? 4  * )  _ NGC WHV}3 } Q;oS28z %~ Jf#}! _ 3g@e { BF iݏ۳88מvֵRTء:KW$) C3iYc>A {  p[;B A K ~ Ke=Wfkotyh c7z!g#$%&&&%$" R^vr 2pߢ%u9gd)Xrx/Xu%]WY5FC 1U{(( VCp n@ 7%Q"+ud3DkUm Pi[ | T"#$%%$#3"Q XIV Vt*IU lId\b;AeI I<   } PxqI U M fvoDd Q L H Z c[DMi:E% Z  \<JifL} x n~&!#%e'()2*?*)(~'%c# Ai .01$Bg$!oq7kxtU=)$5V)u`+6bnX1y\H} qNLs(Q]%t5VJ d\l4Fxv%@k 7~pJ(!"#G$k$$G#"P 5yF }-7hR{8w'\1[AP#HJEW : q v2%bva-%H  . / d"#Ee v O|fQ9z o 4Z~|b"c$r&(()e***m*),(g&1$! c 9&e,n)Ed> tf;pqNCu}_}~Tb4s0~\XTR [MFhwZav(u#n)a&,\ @pw> J O YZ|bm8u$^k>rATq>8hm)9 0\qzmE ,5L bMHNhi6IXK#g|g+" { ;s(}|DC0f 4 "$&'( ))('&$" , a$34$g7~7.C~j-vKG~C\)(m߭ޱܒsܧ9S@TqlbE"?IXykSk#o mOQa%;ch>$Oy ^Se!5nE}o > v6 m.8D2^Mt<6HyFa&s __3%y3 ""  v gMEtJ UUr ( , ^  ddt_BpCc 6< )!"#$]%%[%$#" ~)Xz - (?@7,ltC.kY=;Kh>G&m^~ۘڡثذ٨ٓ+ޖw.@j2K ^rgf el`y79;Q5" V L `tBm)r |OO6[Z rilZ8 m ) e M 7E*eDD>.P>`mO:ZP< |093m'q, ;P/Q&^a9v . k h~y^QI f  C`fD]d A!/!  >rsK7 v 8 4~PIsM anfr"yyl b zr!`U"܆:Lظyד׸ظrq#4JW\gcvBhefM-T|h,nqrj';ubk ( H }>e1rgL;{cF ~& 'Nk 6 !K\S@?GpFc j%9<*u){ tEqr L # 8 j-,be+IZ r7^dKy g  %-Y ` HWMr gyOg /aWjNh-  G7j:|x dOln|qZޢ?4ڋ44ن$&|ޝ[,Ec LPs~tmX7.'0Px{$~2,.X7u{V$c_{zwkiQj ?.w:OFM fOVvN7S >yW&&   OWAa >nS|THUzvouQI  O  SMy"Bl[ ~ M H p E :kP2R9RPQ  I%7 <#_X+Rff' 1$|``A'bޫݑA[@QJsKNS <|sbX@"W>h b3Z,I G=ybI2WLF!Wui;dVt^:  S >tNTv | sbjSp 2]mL9#b3fqV6$^.YWn ' :46t9_a@/RLfN[7^i2JPO$5kl;U  * E nmn?9ryPa d_F<l !X"""y"! 2oR jFV ^$I8,.h24\M&uP`ogGxs0\{^/:gbMUyb\Rg"4kt%u )fUw0# Ct'SZ`o6 1q`jCVWN.D|%;vMm 2/k>;c1x)| . T(dW:dpfHS-6o *ICfy77 JS c1ok MO:C !"####"!E tTGib: |M9Q ,3Z)&9;3k* 9\jXAe7&t?k CYpq`>S +z:! uDVAb{k/O8pBL6n{{y^7S&pG  Q a ' -L[ riUhF;W[,&&ZO0% f]{SxV?5 w 4OA[)m2UDyrx`BWQ5~KO / ZxW \P r hN\Id !`""#"a"!O k GeHyPS;bQ-WT /f?O#BTLPRR[`zZ s:+Wlb5l-9qO?Ql\s)SGt ] b  z H X{tgDf{c~=tnx/wN5WGD/ T&F6gu 3  dv> SuLH_*E0 T  F;;<^ ] mkCao[{ ; $ 0?QQ;  Ds,U j S8M;bG2Q3.D! OQ/7|. W`-5 "L[Eb\9 Sy7lN vUuygXy9O&~lu$s'6)3 -E!uAiY& =dZm%S KL/["/=[Z_ t+4  ZtENl6w,X&2 !! \k+Hx68 8~B 1 \ MLZ&ln,wDjnT9  aIFwanSl s =@ l q  ZnQ.t]p;5ka0Dߕ%: rIVE ~ wJ#[5y{v4qCQl$ S 6 ]{0.9fa[~M|]2HMF(&;Wum$i < v fzSBzE[. Q ` P ( Dt+p uL3b5NJUH#Kn?/8i F = K :q/\sl?^mt-Qt 9Egpt ! r  ._rO ? /K]rC$?@*W2F@W&?g* B": Pv|`2JmHGd J4NbCEZ '.OfDis(.] -gi0"km, ]  e Jq$tmd$.t@kj;x*N*8(^x g N H s #_w qV+?Yh_Peq dE)<#Ya<TlFs  RCs3XJs^  S&hn3Gq`o? C  D*Catfl|Qz7isHnAGnCESZXA,CdiE'+Nwu=z$*~: +$>-wgTvh@_i\ M9 xS A  i  T Z |C+.}Z8lF BH."7n,drC + V^~. `!v?-[r ^~Niux-Rm kE~%f [ Z_V> ZW}ou J B=<# ^VR+r*IZnMvrmr;MoS4+7j yl:!i/|%TiY#B=GQdSO<T`K){(l(%GKA829Zabqc<7$u\uA  kv- d A UQD{jQ;,(/HmE"RbWDD3R | 6e{J }XD6Mg9)#, %'uMTtt?:i=J\Nzf ,|yVDRf{lkqpsdK+P]XFy.q_[a}'w#{ Gjtc2cQ36u EV߄|߽C dV0WU&/W<:KoG3{OM<}ifO.=zg.MD$\Im ' ~ Re,x7sEf]gwp 2!m!!!i!.! $ brY4)Jo 8 U#&b,>\  _4,it@0`gT% \KXu70_iAKpm>sd$i *_DL +|@ 0GPSC%>6*2=A;:82;Nk?2LuZ%sr)6R jM=hrXyz[tGq)A2Y6BF3HXw 3g6epQZUs~DU,dteN P 7SWC(C>68S+vJ W!!",">"("!! !W zvJ mC7 I  L| }} b t (]Z#)t O"?xt`;!nI/TF--W nkjE6VoF65DWmytT sz4y6Tq6#{;<{guu*uxr'!Mez-m+ VrCc_:PQ(TP"`fw2Lheo!T6*BICnY W#I> Z }:5q_ |ATw K!~!!s!2! I ` -)6M = P k r  P 0 . J{-d}?GVK|xHs5}  ]:LBo]5l *  ] q R wql[WoIgq-p-Bgb g8?_WqFMPZ=ArX_y<*.Ny=SR2wOxw^0`5_EhQI.kS2B *BH.VS, 5X z6| 9UE&GT M 4  4z hAlP.z Vy9Rp@ZJ U` qQ*uK<3>" B 8p$9'l7 [ '^J [) #j[^ S/ H"R (B[YuR(DF) Y,5 ec[*q1J;Wp<[prr1(PY1EbA9;HLI*]tRYey! p{(1qwAebZSk p {  G xO.guaJ/_,Z*'Tu<'7& W`c 5  wyj^=A 7m !  yR/il4&\ w o [6WzPX\Us+8Fw[./LIvv a,$aW,Ws"^'X.u7($Xn yO/O30Z&/>D1Ht))ut' `0%>zs-(oV $ V  vf =9 1u U M]e~,7 / 2 2-4GnJ&/fc! NDmr-io9!/08yFAc-z,hQ^:Xkpmg^]dzot 'BW_S6YZ)GWZVF7) ;`$~N4u 6G;S<1 L  /VkeP o mr~,{ v  I |N= }"t]r eG`h&Z:,~SALojm5lh9^heP(o'FoXQUgHpmRiD y0P߄pߒ߁LFvDPv hy68'q+-~daxyZt91_1^DYF  | <cS|x:.`dE/ _f_"||b A4z 0<5$ ;a^xcd3v$\ %16**aBpi$<2@`u%GkGXQAL;dOh 21,(,:\ajaLk +']4Au#Ct   ElL:B_-bzb.:+-q7O = 7bt (Pho_-]f/[aI # n"NxHEd7yKDL &   ^ Z h`q^xq]SzFc]$r %8IPUUU^m~JT1JRE" so9=KJ+.N.H{4BP0U)S[AccnJvhEv~a94k@nx;$Sz } C I q$H+<N%tB4xD\3  # ; x S o O  |DUj ^{V " l73~}:1hJpijhf U 9  <  d  > >  !7Fw+E6jIRftbk *8KR]dis|0k@$dGN _q$C?a6 ~2^HV=,6M^l{[h&"^f' P|1%b}M}2i ?Wwx5Q2AIA1jV r   B0[ \cn)ec)^(lD 5 V   A  cc o*;VYG $ d>.0LlpV:6Fe 3 O   3,<Q76W/4= |G#Sxs`OFFHXi'lS3m5WQxp^PKQc {) t(0!$H[d^XTSf$5J 'e8T)4=b_*:GWpeMRx*T d:m)`7 ' Y ` !s:q0=gtrP]a+> G )o/  k%0$** Q"wcY{D[  4=+$|l ~ C v(m/4/1t}NeH|?zO=9Js-~`g3dv^<, zv|- 7`"LC[)JEK CsV YafM6# v4cJ=mFK9 u A  O?43?8z-2R:}%Si'<cmcC  g+ RXYU$\ * h b{J>N= N o7%]/|K4~CfMFk;Q%'./ R| .nTpS.*Cy>ipU5oAq $4;AEKTei>PL [ # W &m$FU^\RJ<.&"#0FdUh-9~w Yq ?  [/ !K aFXx%Dw %*  vd@1<`,K ] ` UvMO<P`0fV8JyD!AeQVPIymhPaG4]vrI+b[#']OeCadM4Kd$'}J%n:LJS7 x  b  V $Oz F$G!o/~-a p A  jP=N`ojly d 3|J~{Eu4m !PcW7.Bm_D<(7pu7|o[;u^Bo# ;xD8fmG!cE0"#.C^y1K]\Q2^[1.TupHQ}0@MoS#wPQKyiN'A8k#tc^E [LY,FGrY.>Pzq]`t+ZbkJbZ3Q f # e V Z kl"gGh Bp " ZNZ8 $h _ z  @ O D !  V #_4<)cM g   a K e  [ CtlppYYbz'\7Vlx|xl`N;, 9U5bw2r]1Ysc.V EeetgLouW!xi0y7>+X?8=QkGPp,qvmM/!+Iz}t2rHnyh<MKW! { {   / 5|?^h^Bn l * 6 s&%zL@ 6    K g l ] 4 5 $ a,y@PA0u4U % > @  h t ! ^ 'K| h_`2)Jl5Ti{lU9o`ZX]i}3]@}z: Bx.u.%i)@h]7JI6 D>hwPL~}>>rHLCHtx|N @\k]24CD,N3,3 C A # ) a h / > r  * _  o<=q U j  j  ( *  n  p Z[juI/v3{W , S ] &3 C 7  R 8wys p:3Qs%//+c/X#7[|j07SI%hS\PFy! 69>L`| ?  ] = |  %  < ^ @ 8{@C2t7>Ie |?L : /   & H ; }YQvjKA?OfN%;FE:!F9n 5sE &*+ Vc!l5~",,&3bQR1c"wS|2CuUh1l:cr5PVhL<>Np0jht|Z RpQ9! !9]TWFV/l:Sk Hx&j Q @  B l l 9 A L ")|#Ug mft#~J>{  n  5 L Q F % \ %6Ff]&[(s=xt0(IXiV|E"(*% Y3 {dM>405=M\qL73Q$e4OUoNDPnM1H|KeQHx{MNv7Ff_r.6ye4qD"Eu7*.(u?{ 9^$Q,nPF:  9 ^ z v X + I njH wK%+R)tu~tO6eZ+O.dS qXOTh62KDL3PWZh(}5w^LE?AGLU^hmruqjbVF2iYK@>>DN\n"*+ @"`n(do o=&Km9T X \GO%9sv_s+PbNWf1|BwV=.(+8Op=[: H LxJwJ`PF[j&Hax ?W En,MH `z!ko(xnoMZ,n1EnrO<p 6_S fE&kS<&&;SkU>t zmr2\.8e[/q7Q`e]J,Wz._$M\L^5@',km@ WqC5ba>l FY; I#'g(HVv9}4q= H~ Ru$x#>tp|,w*kM(C'@IE2he0\06~P-s\B& }qda__gp~ZH:r C4b- +R{KK]a5zhO7uT5uJk)ZQfK5(#$)6EWoj8t%.9n<?x d. nP|VY-`?%(Gg ;i9Yy  *;Mb{-YJw9SiwwkZE3;`)Lj~]5Lo!H tQ<..9On UNdqQ ]&m+q9iO;/$#%.8>GLTUSQJ>0c?fE,oN+Y-jM7  ,;IZeqw|xreO6Iw(=`jTHHRg!eY k"zb6Vp}}o\D) t[G7-&&-8I^y1[#Db} <[} ,Oo    &5H`z>`n@ ]^Z7  ;\0sJ!d :]znQ/ ]3v]H5)"$*7CQ`o|xbJ.zT.dJ5"t^F+uh\ROJMPV^ht~oU4 y@=x=tP5!';YIH;r':CLLF>1 uiffks%Jp /Omxwruw ";Sk "(,18>GR_l,IglCZ+`@+ #9SsOCp '#lM4.AObnx{pbN; fD#t_N;/$ vfZNA8/'" !',2=DNV`flpppkaXH3mBQ!}]B+ &:Rp#Mt/DS`gkii`YKA/  8Sp2Powrmifjmrx $3:DNV^blqv*AVk~eH* gSA1)!!&/<N`v8Smr^N>--<L`qqZD*~m]PE;4+&! iT=  78  44/0+)$'"   "$"$$$#%%%#$&##$"                            ))<;007733348810;>0-?@+,DC+*EF)*GF*+HG*)GH-,GH-+HH/.GJ//GG20EG34EE56FC88BC;:CC=?AAA@@@ABAACCAAEE>@GF@AHG@AHH@?IIBBIIBBIJCBKJBBKJCFKKEELLFEJKGGKKIIMKHJKMKJKLLLLJLNKLOMKMOMLMOONONNNOQPNOQPOPRQOPSRPPTSPRRQRSTTRSVSSSUVTTUUTTWVUTWWUWWVVUYWWYWXWWZYYYXXZ[ZXXZZ[[\ZZ\[Z[]]\\]\\]]\]]]^^^]]____^````^`_ab`ac``baabbbdbbcbedcadfbdecdefedcefgfeggefgiggghjggihhiiiiihikjjliilkjklkllllkmnkmnnmmnnmmnnnopnnppnorqpooqqqqqrpqssrsrssrttrrtstttutttuvuuvwxvuuwxxwvxyxwvyzwxyxyzyz{yzzz{zz{{z{{{||||||}}~}}}|}~~'((*>>CC;:%&(&WWOPCCedij>= $#|{/1no<;baGHTUTQHJ\Y@Acc9:ih23nm+,pr*)rr('rr''rq&(nn((ml++hi,+ee//``23\\75WX::RR;<PO>?JJBBGHFEDCEG@@II><JI;;KK8:LK88KJ66KL55JI55KJ66GG45GG56GD56DE75BC86@A86=?89=<99;:::9:999899789847976698457942891189216810760055004500440/32/022//10.//0/--/.-./..-.-----,+,,-++,**,,**)++)(*+''+)&**)'%')&&))%%)($%&&%$&'$"%%$$$###"%##$" ##!!"## !  !"!  !                                       ''BA^^{{jiOO35(*::FFNNUTZXZZXYVUQQLLGE?>88/1**#"  %" (&*+-...//01/./0 ./ ,,**)))'&(%%#" "#"!!"%$!&' )(*)+*!,*!,*""-,!#-,!".-##..$#-.%%-/('-.'(0.(*/.*+/,,,./-,0.,/.-10-.10-/110.32/13200231153016402462157336632883377468865887888659989;88;;999;;9;::<:<=;<;9==;;>?==?==>>=>?@>>?@@?>@AB?AB?@AAABBABADCACCBCDFBDEDECDFFFDDFGEFFEFFFHHGHFFIHFJJGHHIIIIJKJIJIJLKKLJKMMLLLLKMNLLMNPNNOMLNOPNOPOPPOPQQPQQPRSPQRQRSQSRSUSRSTUSSUTSVUUVTVVUUVVUWVXXVWXVXXXWXZXXYXYYZ[ZZZZ[[ZZ[\[[[]\[\\\\^]]]\\___^^^^_aa^__]aa_`b``aa``acccbbcbccbdbdcdeccdefecffdfffgffgefgghhe yzbbHH,,$#@@ZZspzxfhZZQPGFBBB@@@CAFFLJQQVW_^ffmmuu{z}zyuspqmmmlkkkiijjikklloponqrqssr~}tv{zwxxxxwvvyzssyxrr{zqpy{no{znlx{nnzxlnywjmxwllvwmlttlkstmmsrklsskmqpmlookknoklnmllkllkkmjkkjjjiiklhgjkgfhihgiiffihffhgdehhcdhiccfeeccfddddcbddbacc`bbbbaaaa``b`_`_ab^^^_`^_`^_^]\]]^\\^\\\\[Z\]][[\ZZZ[[XXZ[YXYXXXXZYXWYYUVWTUWXWVVVTTUUTTVVTSTVUTQSURSSRSRQQSPQRRPPPQPPQPPPPQOMNOONMNNNMNNMMMMMLMKLKKKKKKLLKJIJJKKHHIHJJJHHGHHHHHGFHFFHFEEGFEFEDEDDDDDDDCCDCCBBCCBCBCC@@BB@AB@@A@@A@@=>????>>>>=<=?==><:==;;>=<:;<9;;:;:;989::8889:878889776776666656644654465345332333333122 #$rqA@PPgg**$#npSTA?,-{{@@mlNMbaVW\^\Y[\]\]^YYcdTSlmJJvv@A44()              ! !" !"" !#"!###""####$%%$#%%%%%%%%%''&&&('''%(()(()'()*()+)(***++**+*,-+**---++,-/.+,./.../--01./0/00/0100001122211221342232355444435556~~~}}~|~{~}{|||{|||{z||zyz{zzzyyywyyzwwxxyxwxwxxuvwxwvuvutuuvuvutusstttstrqtsqrssqqpqrqrronpqoqpppoonnnnpnlonlnmllmnmlmnklkjllkijkikljiikiiihiigiigghghgegheeeffgfdeeefdeIG"#,- 66CCPQ`_jm}|#$117632## ''EEgfwwTU34 ! /0::BDFFHGFGCA>>54,-$#9 9 :A@>@@@??@>@>=>>=>?><<=>=<<<==;;<;:<<<;:8:;:;:89989:78967878967967765676545546435433354422521331131100110/10/0010.//.0/.--..---.,-.--+,-,,*)*,*++*)+*)(*('(**)(''')'&'''''%''&%&&$$%%%%%#$$$%%#!"$$""""#""!""!   ! "!                                   tt^_VTKI_^TUpp^],,&&:;A@>=13%# ""     !  !" !"! ##""!##""$%$"$$%$$%%%&&%%$%%%&''&('&'(''()'')*)()+()))))**,,*+,++-,*,.-----,..-.......000/0//0011/01021102311244233345345444454555666567578866897897798999:;999:<<::9<=::;;<==;<;>><<>>>===>?@@?>??@?@??B@?AABBBA@ACBBCAADDBDCAEDEEDDDFGEDEGGFGEFHGGGGHGGHHIGHHJJHIKHIKJIKJKJILLKKJLMMLMLLNNLLNNMNONNMMOPPNNPQOPRPORRPPQRRPRTRRQQTSTTSRSTUTTUTSUUUTUWVUVXWUWWWWXWWWYYXXXYZXW[ZXYZ[ZYZ[\\Z[\[[\\\][\]]^\]]^^^__^___^`____`ab_`a`bb`bcaabcbbccdcdebcdeecdefedeegffffgeeghieehiiihggiiijjiiikjjkjklkkjklcb `a$$ON !#??65%$WWggYYYXcbom{|||wxxv{{~~~~~~~}}~~}~}~|}~{|~|{}|z||{{zz}{z{zyyzzyyzxxzyxyyxwxywwuvxwvxvvwtvvtvuutstuttutsrrstsrrstqpsspqpqqpopqqnpponnonoomonlnnnmlmmnmlllljjlllkjjjjjjijkjihgiihhghhghgfihefgggdeffedeeffcccedceeccadccbacbaaba`ba`aa`a_^`a_`^^__^_^]^^^\[^]\^^\\[[\]\[Y[\[YY[[ZZYXXYZYXZYXXVWYWVVWXWUUWVUVUVVUTVVTTUSTSSTSSRSSRRRRQQRSRQOQSPOQRONQQOONONNPNNPMNOLLMNNMLLMLLLKKKKLKIKKKJIJKJIIIIHHHGGJIHHFGGHHFGGEEFFEEEEEDCDDDEDDEBCDBCBACCABBAB@AA?AA@@@@?@>>@??>>?>=>?<<==>=>=<=:<<;;;<::;;:9;;97::999:8897799756767656677565465454344253233243112310321121//010/1..0/.0-...DD:<{|BBNNyy          "! !! "!!!"" "$$""""$$$$#%$$%$$&%%&$%'%'&%'('('''('()(('&*+))*()**++)+++*+-+*,,+--,,-..--...--.//11...02./11/1201203412222342333445633565455587567665787777789988989::8ffij$$*)32LMghy{xw  DCjmpr^`bctt~~~}}~}}}|~~{{{}}|{{{zz{}zzzxzz{zwzzwxywxywwyxwvvwxwuvvwuvvtttuutttttutttrrsssrpqrsqpqrqqspqpoqqnopooponnmnpmnolmmmnlllmmllkjkklkjjjjkjhjkiihiiihhgiigfgggggehgdegfffeefeccedcddccdccbaccaacbaaaaaaa54VU64OQss42?=ghdbmm~KK}}  $$  OQqqusqrZ[88  87ab.-a` }|CDMMkk--#"}|33kjBE\[RSOO][FHcbCCcbBCacIG]^LLYYQPTTTTQRVVPPWXOOXWQPVWPQWVPPTTSRTTRTRQTUQQTTRSTUSQSSSSUTQRSSTURRTSRSTTRSTUUSSRSTRSTSSTRTTRSTSSSSRRTTRSSSSSTRRUSRTSSTTSRSSRTSSTRTURSRRTSSSTTSSQSSRSSSRTSSTRRUSRSRTUSSSRSSRSSTTTSQSTSSRSSRSSTSSTQRSTSTURRSSSSSSSSRTSSSTSSSSTRRTSRTRSTTSRTUSRTTRSTRSTSRRSSTTRSTSRSTRRSTTTRSSSTSRRTTSRTTQRTTRSUSRSSSRRTTSTTSRRTSTTRRTTRSTSRTTSSRRSTTTSSTRRTTSSSSSSTSSSSRSUSRTSRSTTRTTRSTRTSRTSRSSSTTSSTRRTTRTURRTSSRSTRSTSSSSTTSRRTTSSSSTSRSTSRUSQTUQRUTRRSSSSRTSSTTRSSSSSTSTTQSURRSSSTTRTTRSTSSTRSSRSSRTSSTTSSSSTRTTSRSTSSSQRTTTSSSSSSSTSRTURQSSUSRRTTRTTSSRRSUSQTUSRRTTSTQTSSTTSSRRUTRRSUSSSQSTTTSSRRUTSRSTRTS~{lmnotsGH ceCB('mned%$Y[on22ggKJQR]]BCjk;8nn79nm<?jj==hh@BbaGF\\MNVUUUPPXYOMXZOLY[LMZXNPUWPOWVQQUTRTSSSSRSVUPPUURPUVRRSTSSTSRTSSSRSRSVSSTTRRTUTSTSSSSTSTTQRUTRSSRTSSSTSSRTTRRTTSSSTRSTRSSRSTUSSSRSTTTSRTSRTTSRRTTQSSSSUUSRRSSSRTSSRUTSRRSSTSSSRTTRSSSTRSTSSSTSSSSRTTRRSUSRTRRSSTTRSTSTRRUTSTRSTSRSTRRSSTTSSRRSUURRSSTTRRUSRSSTTSRSTSRTTRTTRTTRRSTTSSSRRSSRTTRSSTSSTRRSUTSRRTTTSSTSSQRURSTSRSTRSTSSTRRTTSTTSQRTSRSSSTTSSSSSRTTTRSSRTSSSTRRTSSSSTTSSSSTRSTSRRSTSRSTTSRUTRQRSSUSSSSSSSSTRSTSSRRRTTSTRRSUTSTSSSSSSRRUTSSRSTUQRUTSSSSSRTTQTSTSQUTQSSSTRTSSRSUSSSRTSRSTSRUUSSQSSRUTRSSRSTTSRSUTRSSRTSSTSSTSRSSRRTTSRSTSSSSSSRSTSRSSSTTSRTSSSRSTTSSSRSRSTRSSSSTTRRSTUSRSSTSRTSSTRRTSTSSSSTRQSURRSRTTSTSQSSRURSSRTSSTRSSQSUURSTSSSSSTSSTTTSRQTUSSSSRSSTUSRSSRTTSTSRSRSUSSSSRSUSSTRSTRRRSSTRSURSSSTTSSSRTTSRTTSSSSSTSSRSSSSRTSRTTRTSQTTRRSSTSRRTTSRSSRTSRRRSTSTUSRSSRRTSRTTTRQTSSSTSRTTRRSTSTSRTUTRSSSSSUTRRTSRSUSRSSSSUUSQSSSTSSTSRRTSSTSRTSSSRTSRTSSTSSSRRTTRRSTSTTRTTRTSSSSTRSSSSSSRRUTRRSTSSSSTRRRUTSSSTTRTTQRSSTSRSRSSRSSTTSSTSRRTSSSSTSRSTSSSRTSRSTTRSSTSRTTSSTSRSTSTTRTTSSRQTSSTQRSSSTSQTSTURRTTSTSRSSTTSTRRUSSSRSTSRTTSRSSSTTRRSTSRTUaa`_ik|UVrr<<ihiilk]^_bqq!mk]]""pnZZ.0+,mnEDWVXYFFff;>YZrq>='(..)(:<UW{y<<GG77!"yxGI;:<=IIyx "#wx;:__QRLLa`?Ajj<:lm<hgAAddGF^]LNWUSSRRWWOOYYMLYZNNZYMNWXPPUURQTUSSRQUVQPUUQQUVRRUURQUUQQSTTTSRSTSQTUSSUSRTUSSSSTRTTSRRSTTRTTRSTSRSSTTSRRTURRUSSTTSRSSSSTSSURSTRSTTRRSSSRSSTTSRSTSRSSSTSSRTSSSSTTRRTSRTSSTRSSSSSTTTRRUTRSSSTTRRTRSSTTSRRUTRSSSSRSSTSRSSSTURQTSTTRTRSSRTTSSSRSRSUSRSTRSSSUSRTSRTTRRSTTRSTSSSRSTSSSRRTTRTTRRSTTRSTRRTTRRSSSSTSRRTSRSTTSRRRSTTRRSSTSRSSTTRTTRRUTSRSUTSSSSSSTSSRSSSTTSRTSSURRUSRTTQRUTSSRSTRTTSSSTSRTRRTTSSTTSSSSTTSRRTTRSRSSRTTSTTRRRSTUSRSTSSTSSTSRRTUSRSSSTRRSTTRRSUSSSRTRRSRSUTQSSTTRSRTTSSSRRSTRTSRSSTSRSUTSSSSRSSTTSSSRSUSRSTTSRSSRTTRSUTRTTRSSRSTSRTUSSSRSSRSTSRSRSTSTSSTRTTRSTSSSRSSRSSUSSSSSRTTSTTSRTTSTQRUSRSSSTSSURRTSRTSSUSSTSSRSTTSSTRTSSUTRRTTSSRSSSSTSSSRSTTTSSTSSSRRTSRTSSTSSSRTSSTRSSSUSSSSRSRSUTSSRRSTTTRQSSSTTTTSRRSTSSSSUSRTSRSUSRTSSSRTTRRSUSRTTRSTSSRRSTSSSRRSTSTTSSRTSSTSSSSRSTRTURSSSSRSTSTRTTSSSRQSTTSRTRTTSSSSRSTRSTTSSRSTSTRRTSSSRTTSSSTQRTTRSSTSRTSSSSTSRTSTTSSRSSRTTSRSTSSTSSRTTRRSSSTTSSSTSSRSTTRRTSSSSSSURRSSTSSSTTSSSSTTRQSTSSRTTRRSSSRTTSTSRRRSSSUSSSSSRSTSRSSSSRTURQTURRSSSSSTTTSSTSSRRTSSTTSSSSSRSTSSTTRSTSRTSRTSSSRSSTTRSTRSRSS  _^SRLL~jlfeno11nn ccnp_]aapp JIwyQO! opKKKIij22||&''&|~.-ts99feIHYYRSPO[[JJ_^FF``FH__JJ[[NMVVRRTSSTRRWVOPXXOOXWPOVWPPVTSTSTSRRUTSRSUTQRUUQQVTQQUTRRSUSSSQTSSSRTTRRSSSTTRRSUSRSTTRSTSRSTTTRRSSTSRUSQSTTTSSRTSRTSSTRRSTSTTSSSSRRTUTRSTSSRRTURRTTTRRTSSTRSSSSTRSTRRTUSRRTTSSSSSSTTSTSSSTTRRSSRSTSRSTSRSTSSSRSSTTSTTQRTSSSSUSRTSSTRSSTSTTSRSSSSQSUURRTTSRRSSTTSSRRSTRSTRSTTRSURQSTSSSSTSSRSTSSSSRRTUSRSTSSSTSQSSSTTSSRTTQTSRSSTRTTSSSTRRSUSSSSSSSRTUQQTTSRTSTSRSTTSRSUTQSTRTSSSRRSSRTTSSQSTRSSTTRSSSSSRSTSTSSSSRSSTSSTTSRQSSTTSRSSSUUQQUSRUTRRSTSSSUSRTSSSTSRSSRSTTSSRRTSRTTSSSRRUURRSTSRUSRRRTTRSTSSSSSSSSRTTSSTSRRSUSRSSSTSRTTTSRRSSTURQSSUTRSTSTTRSTSQRUSRRTSSSSSSTSRQSTUSSRRUTRTSRSRTSRSSUSQTTRTSSTSSRSSRSTSRTUSRTSRSSRSSRUSRSTSSSSTTRQTSSTTSRTSSTRSTSSTSSRRTTSTRRSTTRSTSTSSTRSSTSRSTTRTTQQTSRUUSSSTRSSQSTSRSTTSTSSRQTTSTTRRSSSRTUSSTTTQRSSTSSRSTRSSSTSSSQSTSRSSSSTSTTSRRTRSTSSSTSRSTRSTSTSSRTTRRSTTRTSRSTSSSRTSSTTSRSSSSTTSSSRSUSRTRSSSSRUURSRSSRSTTSSSSSSTSSSRSTSTSQTTTSRRTSRSSSTSTTRSTTRSTSSSSSRRSSUTSTSSSSTSRRSTTSSSSSTSRSSSSSTQSTSSRSRSTSRUTRTSRTRSTRRTUSSRSTSSSRSTSRRTUTSRTTRRRTTRSTTRSTRTTRSRTSRTSSTSTTSRSSTTSSSSRTSSTRRTSRSSUSRTTSRSRTTRSRSTTRRUSRSSSSS56yx--}}##rr%&HH  PP8954bb~)(;=+, CD}| " '&&(-,..006667<;;=CCBCHGJIOPQPUVWXZZ_^__ddggjjnmqpruxwzz}|  !!"&%*(,,..236697:;@@AAEFHILJNORRUTWZ\\_]acddigklnprqttww{|~ $$''*),-003465::<=@?BCGFIILLPPSQUWYX]]__ccdejillopsqvwzyz{ !!%$''*+-,115577;:>>A@DDGFJKKLQRTRVW[[\\abccgfjimmqqrswwzy~~ "!%&('+-/-135498::>?BACFHGKKNORQVUWW[[^^abdchgjknoqpttywy{~} #$'&((--0/137689==@>BCDEJILMNOTRUWZX\]_^cdfdihjmoorqwuxz{{~~  "%"%(+).-12437799==@@CDGFJKMLOQSTWUZZ]]_`dbhgiinloqrtxv:;  :;xyVTVVfh;;pn,.ml$&ed%#UV&&FF),64--((..+)%#    ~~|}yxvvrtqnllijffbb``][YZXUQSQPLNJHFFBD@>==::5655/. ST45 hgrskkHH))46QQ __dcac-+\\>>XXNOTS^^TSikWUqs\[vweezzoo|}xy~   !$#%%**-.102376:;==??CCHFIJLNPOSSWUYY]]_`abgfhinkopqswvyy{|  " %$&'++/.123388;<>=A@DDHGILNLRRSRWX[Z]]`bedffiinmprssxv{{|} "#$%*',,/0006689<:@@ABFDHIKKMORPTVXV]\^_aaedigklmmrsusvy{{}}  !$$%&)(.-012266::<<@@BDGDGKMLPOSRUWZXZ\a`abffihmlnpsrvuyxz| !"$$(&)*//005456<<==?@DDGFJLNLPQSTVUY\_]`_bdhfijnmopttwu{z}~ !#&#((,+..015578;ABDFHFKKNNQRUTWWZ[^]baddggjknmppttvw|z~ ##%$(*-,./325599<;>?BAFFHGKLONRSUUYXZ\^]bbffhhjkomqruuyw{{} !##'')).,013267::<A@CDHGIJONPQUSVV[Z]^a`cdgfijmnqpsswwxy}  "#&$((-,//116578;<@>@BFDFIMKNNQSVTWW[\^^aceeifilnnsrssxwz|}garden-1.0.9/data/beat/nice2.wav0000644000175000017500000014132612457263310013257 00000000000000RIFFWAVEfmt "VDdata#08|}A$AP-^]7t=]U'Ls`-,ZtRd7) i  ^Px $|~  ip'J'" Yh` Bh@iI7bJGz (S &"fm #lO'd>9n_̯ԥ9+W$l3 9 *  '4&(h!Y! 3iq(e >ܩ!   -&!p "M,F!u ,*j-g4!t; " Z 2!S'Q)Z&*@$%')uuhic F + t 0 dߕ؆{ A͟QI=E@֎nf9SgkuD#5w@ $Q431$'=15,~2g@<:(;3$RcP\AE{vT D f ti z% , Rt Zn$ 3U$% 1^<)$p%A1r'CI'  ;A  w_ơJ v pvP عB&$%֖ٖRٮ՚U9׮y 7 Se ])= Cs4#嶉+w>;ubv W )'`O1#!4B&VF"EMy{B BmQ: z!*'+:! n `4]-ISe%6 ۪o  n ; t)(U&10t1&D " %/?$ O S@&~ տG<ȶ70]Ex.ǃX|o3U-ۓχ+"ݫMɬ7 5 1ex'&, $6u675?9>9=y" !(#fe =@ּ.y5l . p Z cO u?h$ >p&. - A! 3~ + K sU  e B 8 >HLҒs1ݐ- D ~@Ym+ncٲh#Ԅ˵ä=8' P?#l WB<E&4)|((s Vd <M$RE!o)&!3# Pk~Y ,HS3BM4!TFUc  x!_00.+I%MOd,0'z)/(1;+!( Dۓ&xn/aQɵsڣ"}| f|b3FrؔϜƊDُ3* 7#(,*o/751&F#(#$CZ *;&2̈́ig p  4{>3nW 09cI#1gw  Y mJ3$*G-q,(T ZpU0-$(Ho"$ o0҄O>"4cq'~HշsR a 47 0TD BL`u#6Ỻ1ja n$ r  /29waԺՅl#@"2P/o %VnN!4'! ^ KեABU)"hO&ִF = du&?%N"3/ 9M +n0D`Ie+( ,r5ZYNTѬĹϱrb ݤ1kG1'+Y=mqIažM]&!$b )F#=&(x0'l# 3T.!1"_ 'sBȍ^T X _%. }  A^P q s G"u( 0_׎9 < x+#,!"3! 227''G'((!9V PfMs^شݱ́NF݈Dݠli hTEY I8 [BN593VJuѹUN x ~ t_ x   #^Iz]c ~>{" ux\V)u  J{o=DuAk{ ccbۚOe ^E;Jv!,)r\%)b&Y2).A6NC47*p( h P?=|Aʹ4ިA9{ye k5 ;k)ƕؿv;@]*6) .'@<Z0-%X!%%* ,![c o "u't9{@Bٰ%dI?PCN U/^ w  Ge 1f E ._ P U( w&D*! c A0. &F+(66C < "Zԅ؜f >γ8j\z{Jhw 5 G _%,:[׵i])Q  KQ4W3Y7c|Q I" Z\u=8 < G!$6I 5#;dvvޚիd0l{ݻi%G  YTf-?lt (3/%&/9D,Q2&3%*3U/,} bѓ Kqư۪\WwG~L5/[ӶN~لۏe kq\:n %.~ Q8%x0|)%,%L&_5b%& CwK1EQ[Kao@  B]Ym N87VJ 1H, 9Q .s<.$g%)*A ^!^+\('$"= vAy eCOzٺg̗;U! A yXjDZ~.XMRهͮȵ!,h kXI ZL h  4UO& 6    hCu"'!$R9se&pcQb s"?-Dp &"*.54 x OteT} @Onf P ' I':ֶ׳ͼ]#>h_&C"x Z. *l p 7$%(tH Su> -3]4 "f ޗM-4dAQ8 %03.;B '&7!&L7 2 /h'[+0+M !* Vj 0BH˻`$Mm΀t͝ѕ%4sߪe$݃q;*T:{"!k 'J=pzO# dkgUs}}\3 bl & _Tku m>  eP* cb& (9#Evt-&g A> F} 2l '](ba*pw  uHVܟi "),^ w >%_з{ v 9~rb##3 Q ht8F PgG {) L;  %23mS= `xxlj ۴:"?{ =&+  -%r()"V  ^qaB m jT2&5-Z  )ޝK}rȷˢ̞ҫ=M?߰Ы:ߋ(HeMNoJ<QAO hM s 1 { 4  p/͐ӤY^sI\8r `P  "  *%b# &9(k'.1: x~  &k5&R=#1  m ]8/>yϣt6!e*6m]Qڟ1 n"pzP )P:$ %!! E;R0W 1;'3s+TS t]\   ! UG#B!Z`1%= re$k+$&0>?+52E0B!u  Japϱ ٗVkم l j+FK+O c/ 2 *$x$F. R"j52n ] Ubd>5v z\8^0 R ~ ܥ %#6/! N|%J D ]7 #r ',2j(-&%t c`!_ u C\hD jU &+ؽpχ)q? Mttˏi6R MOi&+Dvv1$ T&N \ r\!%sY64,7\|[77^D$} ZJLA!x?%ch'r j %E/}+7"S&=1{<4:5&DZ V9 sO%*ĊQDfNl1$(g &([Js{)!D*(*& RD, [ o"nr=HM#%ө[ ++0]+"5c=J=kGPPmOd^JO9jqp^$ω@ҁ΂ķL#ە$2WJ:gj| 3i!(1X(222df }? QMy+0 A,h"  EZ (9+H*sKo0C@~v ܖ^Y&>R5}]h/IU811 Pk# 21,)+*>@7$["w  y#! p,K &> X Y̏SXNxs^b&–ѡɟJ)Y@ MU+#@&U$O@  ttW =m3JlKN'97AFz`\\LVPA*_ PU \ 5֬ړnضFxʖ~a6O y% du6*T &*/!)Q  Y, 4 J#*#+166&"".j/fW˔}܈߸ͣZ;ބ]?v3ݎaPuHzx )5 3i(c7=K; \g= 01rQ~Z_nac!ݠ70Ԓ --h;7 Cu?8# sdkիAg>i߹X\l'"1&o2+4c MI+&,$74; 42.8-|'(.*0a <.5"dC66:)h'(++#*('Oe ц4躦ߚXK$$]5WaB  e(-&mgL =EMR]&0 +:1:N>F,4=Y!ώи崁ЖL†]Dm+;V`,D7Y( R%!$*"2T"'(r uڂл|:{Ƽ!C "r59n% NNBZ y:DGrlG@ޱn(-!!E U"-.w&+.K83$#/$"sRv H `^ \ -!z#2:H=mJAU0b=N y 1xzէncɴ<{䥆53 aGοJd~ =;D} , ] H]' .D_ӂXQ"3s *{;gB-*N,&{%,<)(%446%*,&* >UEJ?IaK` "et 4* C g$f 5xa/SB"):3H>J2&M^"7(a=3 G: 5|jޖ] ]al--!: &'## 1(}3W hI*T}:l_C:e  "Tu!R)3#_on \Lq/؂R T֞Ds\ IPF" 5*q+Sp mJ#./X7 Q1 ,_d$/~ e&H205;8,(v!%a+!H$$q4V-&' "& &O?,ͮ)c_>Afd?ծ 9) U&u+1%A T} 6ڢ;2 =)Mq29 CLy"%:(9-0{O)qzٓt ,> 7)8.\.+.P!D=p:$5?'&)-m0A.i  [[܄ɦҷ[p›uƉä ْv{}W0cu@ ?" y f7 DҲJ5G6>Z HLv ( , !*'KU*39 4. b# <N9_R6p( si  r e .%)/)u]0l %/w+(: va8$/~ #w!&!) # bD|H ڟîǍ>!(ȃūV/ڵ| YL( Z30j')+&HQ h_I fw m&Лd(z=ZpTs e<? #t] 1t  rrߘpgl_ oK -]72G} t'mWV#)5,+Z*')8(5(&($*i h%R1/". ?%#>@a6o(7655P [mq\NJ%<7TO ĭ0A϶+]7+ug;@X 4̡"~Gu dU  Y  v! 7 %A()&j f#M(!'*N$L"l`,V<b7-YI(6)qA3+ Y‚ʏMX<+ ; {Kp!-92t h ;g#sI&p@&t-*@ LrI p [.2\ҹ,-0 Z%)#*)B%ET 9 Mx )3 R\6QG8yNغ)c4(_$#  * m_5:~ [Iuh SzRݶ\hB? 6}"Y+,R ?UG< P s $e!"( 0y & &01g -/S2v-7/:*"J%\k t L-?۝֥Ӡгo^Ŷ4p1Ȫ{GD < "i uD( ހ,hs {:i[d* .W"(;XnJN"(+* '(~7e/'Qg  &h`8  A4} OʇϺʸҦ.0x ! M P %T)&U$.T!IL ^_$ a l J g gQպ4FrҴUI+Pp!)%+ %a &J# ;p -r V d 'gͰk^ll؈"o |( J'=a. !Y"" Odg/GT^ G!M/'>a Fuj Uid+n '78.6#NAv7!y#P,i7)5550 //4* .'/?T̮˹I5؀(4֧Ȩn^< YOV+FU:s"cD~09Pejj.`?>Lo .#!"!,~(m2.52o/_* *@/Ayt (R |H+4l o.* :XhȢ+}OZ~ Lf, [^ev %5!m$Z6(#o ;Voٻ'])jl!]cumEHv dG# ~[_)v v\  ܅SX`@Sce%|y j+j [ , 6?: FbV ]Fml6,J~{+\@ y"_ *B*v.W,+)+,> *.9&- G|t(1#Q4]-'W$7|6)vkܯ}ŷՁI!wՐՀh^P-S}nD "0Bo $ I v ۙ{ ' z >{o hY} 8X'7'!K):'e t$io%_-% !020+<"61-4Y0"*(R< zwxəޘ3):'=WmcnSNzydaQw`iԊҫ* O &!F(<14>%(%# _h7V 2  w.! N&#t"%nbM 0 j 61t2mݯ{URA pCRv= p>S 5F!#!y!Iti0r>7Z ݭג5O9Pu? (g>  WgK 7گ̐ܮw"6+ k   s!np6r ] !f mߋn#Y|\ "p - 0?Kcj&1"C&br l !*n"v$|(3,0 ),V(Q3/%`c  v HO!iެ܎ ad:8M9 ^y"G?usF>0߸^85t~x+%&!8 <'M K ~/''~'- S31')K#QO KE԰?  X\Lvxٵ>':&OY#8t" l *0 IZg#Hr7Y Yw oo)6$c)\ 8   e*" vFօ?`W3zR ?ElC2[o0 (ES fiFQB|q;X G  R D6q*+ hriR`L"f/(,+P5Z0?6x-+am ( 4yT! > :ލ֐ÞYƩgz(=ɛf8m A),O =%=Ӧ1.9"Bz "#!(oUt'i"!_'W G)bp$ gtZ @F)Oj  3"XZ8 Dv){ݳ uW|D+a%!ry_Gso C " M+  S%,2l !) m ] *cs> J BGv}Z޲PςΡ9y_uVNXܸٗ #*k  rm| "9k1YT7=O L  Vz.\% 9yeOWYf~"C!(,7/5/*Qt  6;6!/*"P$ \f3>ÁeNq18 d0*$0 ML9BZAf֭XϷُTҵ؂;@4rB { [ $!'"A)+j /!!] F x  C\Kx  @:+*6& n W D r  1xP7A 'ۮV[!q(P I&&'' 2In+ Y ! "~" Tb_v]Ž4^$n('cu Q A! } *HR([P^ {q Z٪< Xv` ob5b aku_  t %*# U; k7Dtkfv;x]jO0ZWs#)$].,&N j(8  T!*+D/&k,~w\g#iz3o Wgwm(~_I6 ? Qދ_.ĖqkE9ߡecwU [Be Y_$+$#{02 $A%H7 L9 ,< |3K*4 4 " (+ruq% :*aF,Q4 1 )p 2m!80VC 0b&*[\y nG*8n %Dv Bu9W$ܧJqJO RL Hl_, ; X QU*UNm0Ig !0W! ? B#  F9 E=atxߧ J ! ;!'o %4W0&$4%h% }ZoCf )6g){A '6خB2UKs9FuD T|& ~ ! !,%k&\) ' ZdKUh Vr, l&''d*43/] qlFGk3i3Z{KLVQ  e_oA} x8y v  M dY Z<*}<6d* 3T$@*8#$ZmU |&~DM Rښ 6DT( Vc|5 Q.=Sl  sn} is%9xf. {,#_#o  3*ٴLj0o6L7 -jvq,C L2oOBp U/"',2"{"2$ R; _e|׋>CxGWZ*wg jT;ԧȝƼ=ͷА =ߚK_t0۪ N?w.8 p ?`! 7h*% 2eon mK$ /;5+#%:378,+ JILrNބwR_u # * q8! }/`$J[T s7cd  #WL,65x&294 ZY"wfkwF8BIT$iv W w:Zw2*c'؉J-!|g))9 '%p3! vK6"{w<O$q" e &:O a u#!(:'Z _ ~ .mIn_[-`)+fy9 &j*%N#4c6vҦ٢ͭPiCo 0f#ܷVAtX,7"/8 X  w i.;4%   (kec7(  \$!%]'Y"3K609=4=?ZG0'S  $-] ?p(g S ~ w. LHsVeR8 q2<j"~U5،ֻb; ~a[L+&(1(/74A37# ٷQw myS1,slC  e r_kS!'-7oQ )׀LfG  e#"@1>*)" 'US=ߘ`[*ΌGC;|A!O tOY[+ `{%+eU 'V t ^ p .xC).N/wpK";& s B #ω@ߦ2r%uݴؘު?Tw*b}!U["% r/%A   [S8`b 9^}'+.,8T;>'#h  k5 0 5 rj6tqOf%| \MH,S ;\\p~oFX T?&73,!#//" N"I eE3%mW_x%b8Of(7v  ?P/3  Q ]D2|% HyӔܚ ߸lP_&2; F,=m#@  cwr RW#' !<85 )](d\JV J s4+",Hu I!~/$8Bn:<=2('I72{{E$CC7ԊS2bCD\P-}ZYߕ=3_Nl  "M ;J5_- + CeRc!_'09)&1qu+ I EQ > SO^(qZ+ -`oOס<"K`w8)oL b8,:6 MP   3 >^,B3a(iIڷ ( W2z AjL5b- E u=fyc15e%uJ 5E8G;Gyr @ }` ًD* }  @O K"d-x(^ Z3H B "#1& z3.xP +=:i.3:#<_l ^9$Cr1ԯgi;'ulAzjF Nq  /}g[Z I&!! M$hfq 6%9)?1d g TWPj^Zb!w *<<ص0\8 z?) 1V+6&wC& +Q]LzBht -]Fn`S1 Osq]i d!1R-jB3|uv |+   W W 8+3Z xmݻS1!2W( vtY   gT&Wuz$ %ee  Ut0 #&;)&"kn.H! >Xjixsۉ'֝Ҽ`'c,ݓݻWQH<0H  f O ?|d,J(:$# #Y {Wd @.w ~ (_9[~/-Mm [DT2 ~~>+^XEL BGd$[[ ~\M${{'v'W+\ u3|x#RXt(Yu( 9iRT<^ r  h `2 {a%V -TON[ /&m ~&v0{ R/so a[m W -yN% isnno 1S Gud'og4# H##|!0*K(N$2P*#.Y($ Pp NdʯL9ȸ9/K4 J[m4*kPq[ R{ 8 |zK, r 1f1 d T 1 #-!$XT= r #|'HNY n < s/_#L8 c# ^ٙI[g{ 3>!FR&21l "p[> q' mi&G q`|MI  ES: N "qP Raevh&ws l m; _[@Z9C_6a $O QX2] @ O; /% Bq'"=2>-#b"X3.! ,P) s,u ]γF5}kkeJ*zUJ [L+kV>&cf >y Qf[ d h}-H 9& b\%/2F H j P$ 6f$s  _t|t eR~ # c: !ՙ3_ ;Inl.b fTY,C?j W.}ڼAX8  k21%+L-("M> 9%i cVB!5׳4{Rk F56ec G@->~|W$B q I 4 r u(n8TMBK2,%-`8@v & g hZb4WfsDFm;ݏhf~;].SL.  L<\6( B au+YFU L(J9+ :ieaWL F15v wsNt pr#Q}^X!+ oߝɟʻjh-'nb[(  )! 1  X R HZ2hsiY *, i 0 H G ci 5ɳ< t E : =/% {_ G ]7 d\ B<n M = ` ~  )_6[i 5%.&$7*s!53-&1z 1܂ڛr 'u>7ܽ&i,/C]$ T5h?GPHCNc ,"7)  h} g;w "  WO']1 -dj [b > 4@,b6Mm>DJ&/ aT6a=`I@:|]T N $*M& () y)b&* d CD. b4 -"t;Em r܏> ML`I lm \W O+rg)O y~S d8Uw. 9v9N@?P4Xd4%A  8~ f  r ^ RU)p% !L#. -  60 \ ( 5 g[_x .IRIUN ;F +6 eqf<Pe*>VM,wS5BӰ3 e7&e!H!v+)$nT IfS &  >#Io% (B6G(m|hj2u#v z   2g(~ =7Wt t (Cy!&bO>+ q B N6 G: \ MI v]5~8Q(S<,/g3(5(* **]5%!5 4'lA'1fՒϣZ-q1w$}(tJ `ު=% b]Tޫ@x b \$J j Mo>c : . | ]  U @*YW0_a M ms aZ/[QY:s {Nؼ) }f7 L#Q($ d _0 B6 nx T} .jSb!΋{DO}>}`^9A rG1S! m4F *> _g+#e9<OY ܢK r4  Mup 3 C4G ST i vT TYW$| !*7.-2 zn ,O$-! gn*~(Rf6^НQ5($|p4^[ez j! e ; ~ ^K> HX]zu6IGaA HQ73-z(xٚO6QݺF%5"JV T  l cC = !b3it5wD3T9Gq 0 f ] L7zA!>Ih # Z"!t gW]c J Cb.JM4 l@$Z= $ p  p jFBFPߖT`"k;;B4&%U#6 %B&Xm$ }!\<rJLN7 v)J@YqݽԞY88.2?ջ 4C36qZTy)N Dx}`kmU { q i ;4I3MF)G1fqvK.Q_'k > 5tOs"|. >~8tz >  ^)aALyTsսKdM<;bZP^ ,j'V Vy# d% !  !)7u s ~ bIlI4G NyW D2+l 5 .Fm{gE'LW r mK qH Q # r (O-L1j G {FonNF }yT 0Sy lS F.- QA}o~F > @|t;w7`)r/g Q_  C|hl=  E O P S Q?> . q9 L " &-2"B,s7x2VY5BjLݭ&,s` N  3} ' >6t  =@? i f!=W aT]5vXw^ 7\SKCҫ(M8>V ko  !jyb7c Jln!OpA  2O2 {Y$je7K{1:$5.F1gwh<h   Ma1Zv  [,x'? 7 i 2 e B b^ +HR' bEBWV!2th8X_\X T tA <> !Y s&8[4 Ctf& "yr[ T ^~[ i %f  :w:o dA-vu*  w6 VF`)hx ]dy  $f( i 3HAZ9 "cjf vl-Z+ Y: 1_{  { 5 'jEp`HU^=] ~f fda-rD y;;4c(-Gr1srz!n:. " 74 1 6 5E g/l~. O  wI   Y5tpE n0g @Vg55\4Y> ] ;[8+AbW  lWt  (3D a  vR o7j,,:bo   q mc(:#0[LOKlxGbNe4[   ,=  c < WE  _ p { c C a e3(M?; YZ j5 c0 wJ %3u+(= rFNtfdނZK~ Q i 8 ( D 0  q 6 > \ q Hc Vb ׻LJ_s';`@[f!#Q"aU& aAn`?)QjOc   5 v    w qar c d9zOs'/: s -k; 58  )  DepUyc;)  qj2  GY9)e 5 rRz5 y   1POxKE  w N 9 V5p~R  b( M ~` drw1SY  q0 T"csgy.hMs 3yScS |0l 7(/  :N ^ jKF7ZXJ   kE0OZ)1GlN^o&j < w5))7.= 0ev d B & u\&S+mU ?h &  mf { w Y@f 90F7Bmv0<_)?h>ZFl T Y.|&@? ) . AN /e ebQWamRlMn35 |?  &KQ jI#c z8^k ? `  >W ; k =I~ty!#%j \F|`X1   7 p 7 \ ~r.$ *T G&s^ `b M' M[yi. RIܷ=;Ud 5!- WJzR h=x "  CN''o h# = ~ }epB E&kQ4_0? ) E]d,o(Mr9r3l' *n!`]%15q a IB_ KY (=:[A3DX~HsNXtj g  CfQ}aG  M SU Yo(/bv|]j O(  { T j#Jy e 2Vc3VtL P@v  x3 QV  +  <E' SDS 7 .M  g V I z{q'*_lyY4 58-9jdGO4 2JA5 y(k  5 Y 'F M * 3 4 1 B<,{4E?k%#+pp|/ sNe#A(|'o&Mh^ o ] 4hkY_SAV: F \wNG7_ F(  =fJ! K ~E }%ZX{DfZYj; & 2Z B{ ExIIIy+^P>5Mi"5doH 6 2 F 3Mj( dx2;kf^TYD#BnK  u `A@abAIxt@Th=_?b5bBh K4Q;k"^f69S!pz Z   lcY  < BoUC *?c;(J$bz@hb3WX+ g*" rZ" ) b#_,0|HF'mZB0(TRgI^E = = =l _d]!P  4 ` . s O ss AB<A}"^lP>#p ]Hc, ~  f g c vZ Zz >p||q^NX 'q ^ q xpF2 Nw\x:tzuL]gsQJ@02 f$o|Za |0  N c}  [,U# U LtMHt_ (E'_,XI, ,egVTDc4. =|+z(z?s6S ! D0/R @8SND^-+ENn4bm USU"vy n&~Ke(wC O/gE# .tQW.50|HFnBg!(5/X4 J C[{IrJk[v|{ah E/ 2 1 Z@ H X5 eB:  4n@b6:tK',1f (T=6@+Lw = Z g  1t F j !#J { WLKu1RtUZm/?s wAO$4?H="y. wP|TwY)wg$[=QF5 : c.N 0[qJ jt5.;Ce.`@ )[SCg/ V u E[bYcQjU\19/$r] fc%>~; Yx?ksSO  @ { (( ! <7 x[   } d'`_5z;6;C7ah}x~P3s~^oL@j|-J K@a~6@_S]<\P*Xu &N55'k 0 ZO6Ce7xHy r sf_FI4Z3wPn l G XkcMtK][@!l^-FBaF  t[!rxV Lq3  [M&}wc SvW  UW&%z j|  <X 6%-\ MNM2oP4o_,I3kdq =v2Px2Y'-=wFTP?|~HdYtyTDgW;]5eY(L`C"O8*fFpbCa} e,5 wab.7 zKe&Yda[kV5G3QP]u(Z:q[r}wq.[R | ZQ ty ';cgtTIt1=uE00Zx.0Ti)Ddw* JsEW<5_vOtFcF=)N:D <L)'KQ\yCd83twFVL<OL%mQXy2Zmf# i<C1;3U[ BY $ 8`Wz;X@t7Y ,KkXgXfV&JHK? ! QcJR2CghOFgp l 5 B},nZHC~$${r(9"Cm:>XX.2M    P%A~[kR >^ 1( Bg%@3BS ?>`g?i"X$'P>) h[k*atu6O!;N_mw Rn@q {e`Bf"OYZ5f<95/h'# A /K` Cem 8I7V^1*&j6gcS "6?Fj VQPr.Nb2C^VlMy#B2I Siy2h"P2~{Xw{Z +wV'R| gXnB0$;}` M $ ob;d+MHP1Ix hDJtg2j2wvzZ/j<525&:fl,pW$@hrzU N38%QU+}YGmhy{*9G%Ojh2v?, |] 8K GgA X]z#3D,sn{hOKpc));g*3 (#MY 4`&}`!,)|ukDW&]&VW7C=/xS!%QgyD 7 Y*;4"QY( ` JA;)KYf--y4+'lSZb&K)*^NE5xdycYI%.AOI8|C %5\tRB02f?6|:w9b=;CpI%8Z=ZsV"HcJkh}5'3y2?Mf~@u<nmp.aR>*Y z. D{j]PB` z^PP-z?{YEh}s127ifFeXi9u/0qliS|)8%jOxp V7"^7;@`H'3W2h 9;_ XPqqrKZf.ck1Pt02`}?eM}[tT@`gW<B+}dc&bbQUR ZV e<uk`7h #|Om) ~QtBVlB(7Xzt}S`=>>JP+h6*QI^BgK)t=4Sg#42Se5 X  2E ,E@fHlNYWuZk M_7rG+_J 2FGdCp4PgJ=Uh{I#jy#J h=^U)s\!kLE1^sEp>9Yd}>V>A|(@B,K 6Es>~Vz~\&TcyG32dd#[X[v Y-XnQ<awQVF4[Bov||vI5`O&S38~Vw-U'5R UATiY<Zq{YqN?G`mYC3Zb?X}>] UP<e?%Zi#\g2HP /v)1)>^RRP=`=@WJTfR8/?G=R`j'1jO*$"$#''      garden-1.0.9/data/beat/food.wav0000644000175000017500000007572212457263310013214 00000000000000RIFF{WAVEfmt DXdata{ <C{ IlsLP|N \d'% " <-q#]/`, .ҩw#-hE^/Q#iy6"sO]+F~ۚ6_7f|ي?{>( LF]<=O<ܗ8b/dy3 CQ}J1(sc5kZ a+eC<F lVJgx&hv==X+}8S9y1z=z)iaG;&& F-z;7V s}'lS;%E:'-v-5<KBY\g qts_!fwgX^ˊKhЗ>q1y$ 5c_)A56fnw=tӁ'voELKggMÿ^T" ʇVo[:Na+>uEgx<mLiNX4q'+cv(j z({;GsClWkK».9b`S:QeZlZO/{Nԕȝ U#AO&PReDf⸌DW_i!CY|%?{%-Mk7z!4>/x:S&v@@Xk7ZÞ- $a  &KC=Gq הns-)f%G\.gR7?H_W_P+^:{cjA xE"[}V~hzۅvEUnjet]# T,[B]4Ϧ4fI_rͿ\f SműkIOtR?@z%6G͠,D2#`dO |coޟݩ\4o@4VEp:f"-s4Ej l@<dyCՎ6]RJ|ɬI~D&p-*`=mos3H]Y[7H̖\ Y#\X[~7,U~=hN"~B7=uH}G}FNji\X躏ć:f_9>#tt(NwzzYc[T~]^^hfXl`I.SWbjB^p*qV1{"O9VG?]p*Ed xm#J- iNgfeRCa&Vbp\*Yk2JW[}R7Q]$LB_h?ٚޛa4%ni}-BIv5G%n=N[gEg:ڝ_(L5LjYӾWR OY"ՎG^/18?Qd; 75|F8߄~/y"LTrª9wa@]2vENM]?MEbߏX=&hI4lNq].u}w`~y k~= kS{"/ b A$Y0 +:q95bDM/<4'NB4@]sLGX^|dwj,0pq='.ȶH#w\'i?%l:` uqo0ZZ|d<DduGh._h#+lyw>jɳKX;%/O1ɋdlxeR*}1].ErE>Eӭ/nWecXH+4Vu(Ԩθ!T8#C#A糼 =RDBԂ+JnѼIc:O*A idi7[ѲRx3r'E־= =5vo2>iՉe1aI( fѻXYQyTːG`[,5*!:.Bx4-7p*T:Vq 頧C*r8N4w 8 &'7"vS 6%]w%5A / 糴.1 7Ϳ]f+4#c;&Ggҷ%=#H6 0Q<w BN';\F$6MC֦l8`Om2i6FIG@O-M; 9YM Ё?5/nO=M 695ۢ 97L8Ѥ[*I6 Np65 ${ (2贽~k '*xž_ &xD׫$ÖK@#17ƾ!jq/Дms̪(:!ysʆy#2:&8v*8l [6E/%u1 m<> ]`7}@'e. C1@. 06=/6Y8lsS_4cĘ;D{xC`z1lFX)5xCU^8 ^5qTD"#V{l/2<_5G#(<*wNJA7{&b{hD$[ 'WϿcT4=ڟ@" Q=}$SG2ȳ6?}S p&@/'^::ߊJPK_U9%ɚ9l^OۤTg9VE0ޖ HMRt,:; Uf6XP=g:-Yw-@)K9:9:=ٝ $@& |Mz6E'i8j=A=8;{ /)wZ^z)BR.떶^K=Q;g3L)ܡtBpAE3V~H@8.32F#P͘P<@VԺB7 HE/sB-,W;̰ 7V?­F%T;8`#nLoP-vd.OJ"]7QC!R3FL&E/>` c@KR,(#9;K5;#M 6J)>:؆m'>TI4 M0x8HD:H 1LG>= $/˳4[OY^B(VT"FL*9DA|dq;EߺxJS. tGB(2Rk^1},nAp,0_x'޾Xa #I!bW]+$A}Dz W\#\5! ɺD_`"Lt|ê?>A /Rխj1,D;3ذř3`>>vJ)^MQ4]s;aQE$!HO7H җ 6~N}G$<ؚ֤bTCN:ԇ$ p&?,4z?`j3=2)KQJ:'&,,1%HJ)3z{[¤D2t*e. C 98?b*] 4?9&(3 .>*YZƿ4] GQaNG˩u84 J6'8 )EG-=CRvBAՖ:vD{(J4PJŒ/=D3IpnAWGty)2ASN(5>ȪIS.B0K\OuF&Qn-vIwM48s֨a\D,,RxLlS@mPF&1, IfN:ܴ>͡+IH?*:.9{1YSYBAޯ/S0U4C%hg <#VTM;%CЬ+-K4~U̯-w( K̯C)45!3HW\7xD6%-Dg̎):B1 9޽D23O;>A-<Ā2pD^ZS:I+̧\XAԻs/LVaJ&Ƞaǩ_k/q4"o؟N/r2/3I],@2;fT#M ,#CQN!@ʯK-i;"BL? ,̶ʷi>nPN9r8cC^(bL$%.9=ZaO*ɵ߿h8I ?R!Ӻ2Zʨ[6}GB8* ީ3tĨ -]>7r/C B6TqM/+Aި.A2B?<,IM;Ƹ =8.JO>H?G޲v%g7@1~؍? &32"֛X4-34,IPѲ3AA3 Swk z';B;)UZA . Ck8Fj&' iwJ' '\#(<-|+w5/t Rܼb1 < t a\Վb ad k PݖY%/(m Q m"T7ɫY a׻-b) -Kܐ$F( w+ $'=%ߜݨ Z" '%|mB'%&!,  >!-&$\UdN$% ڐۼ+ *0,_!t"#$-/'G" *^N 6#C!uh%+%^صԍS;))s Tث)O5<\1)wŭӥ%+ qrDzcܐS)'vt҈a'IVJ(ᱪ>8>QRR<$" ESI*EE1ޚ ^3:RH^T6̦őB(Y [G$R!ˆ.C8q1\*MZȮ"H*%i,[m&)Z ^ה"b&$p'U5hھԉD`he~ZZ%$GVۄ4&q) DFWd-_z& LuRxuف"BӾղ-Q3  Ex?G 3MHygX  P,o,1-S!mrlTu&/0u(*t *0`-!s{@;).&(&& l WO#&# /%%R i#7LbߓY}pu%- -$.:! B]!Ԋ" '.(Ma~ү)W-a;#> MD(;J٤I=.FJ-9& 4:JC]*ݩݑG0<;.G&Zv&6v<5$.Qay ?a zoW `OaJu & bXK<#|<sEQ>3@ @T JR}agqf 3}A5C%guR4WCJB5< 5r#V)W(1AG06J* ?k%  %Pyq#Dnq\ $ U?jx =>1M -  PaIe33 2 V P L |rP`M@I>=f F7 )o1+r<ؙ-/# 0V]  ?V?y(d 3JhA`3XoVr$:c#(#S(++Sw'b+C'37 " *$2br+ޡ*&s(Cb CN9٩eIm(TY6%<$%! rZK":! "/Z!ym?sn p|u\S06Apr_e /} aA u/ (*&%$ o= 8V$)|(_ S% R($'$f Q && j 'M4#'d$96ӧTߒ| Y 04g D vSde T]kN_Js8 L$1 z %f,P-x  ^EOfN&'"W. zR R|$tO/l]U) :lTYB v;h @ U evוkް\ s Ss- + ؼHr+4m' t F{*+>NEf6p-YBJ{ ZE: N{V) 7S km)t  zp{Re D GO&)2$4,h  f|,31G%20 q9 ,%x `,P1 - 2 G%9//'ZqWi *$0,~!yyަ)1nDrx XGT-<  $3H Z Y9o־n! W)j8rP #" ,A~#h@;݈u^c"Ry ="+h.!M xF$} Ts2 GAte vc%ٛ* |Β߀q) uЅn ( 7qJ@? R r|:#Vh ޼ӵSy4"z#/W2#WPO)!" PQ }"D YT,)-8k9U.k "4395%{\U`2 -N[ v{Uv  ek$ dD&vqًkf0ly % tpsh} o{ ="e!rznV$".A/'ܠ}%)"b 9׋ _( 'o>M6Cw4 )^ I 3PJgC 27zXd 5 o8p5V <PH%GR` vp7 u eZal I;#Wc 5t a @ 0o$2y \ %}^4  w  d =a ] [wXV`   "q+^KO% 1-dsA)b sj0K}p%e  ;wPN Z)jN ! % Kb&78!, d7!R8:  s?2t .(|u~ '77^ G.l֝d&Y AI370]PNa7# [5k $bw=1}y61R R7x 1GJz[) i m!'' E&2  /Z/Qb %*_(XTx8CgQ (-*$( Zk }$) (lgDBe+4ufih F-f vP&h}WRry{L%0 cS EGb1Cw_ )9&d P |G[ UiAY2#$ ~ 6 k3^Wwb  Pzm M7 * nQl T}*o \G ,8 pI^y*̓{ t &*܉И1[ .^֔ Oe + ^QZ{:sa ^ + -Πh = PS$I c kAmU)  &s EJ P&i; ^ mXoO[ g;f*^un1X N  R-~U rE_ W! bKQ'[A.  rz(~C kJ`QZ?i c|=D #/-2 a Q q.Rw9u d- b/ d5S W ?47  b dig[ Od p 3ݶTIv?&IMU3x\/ +  RڻD)y  4v g  g  ~M aZ>"  %=Gn=* "AhO8% _ <O# $ij "XKo vLO  dTE% Es#+  7+Z@J_92} 'P-*! k9!D*' հ*$+97V3 I9Ѷ4m%  *(O ՠHq%*P#C Rєۜd  IWj1m J0 eTWu'vq%| 8Y oI[La9@t,k\n4$ z:8V]9zG ^O Y%B(  &*+d  fn8{fU v s  g ,f-  ! 7" < h% L 0a Z?OA#f M^ q*J -J @:Hr' 36 S($@eݢ$' `[و+L "N4;6&'N.Qc m1'&yBA|"'&BH`O". U[Zf3!< `ITWΥ]g )XC? 2O  ux +Pi6 U . B\- a /?I\ٍHT63ٺӘդE>f ~zuWٹG } OTDuxi) =x\"&P+.X#%( @5 N`]3y  a R|g^]Y/c  RS#&cS`!= %9&  ni"J&"$ F<$%  3 m(4Zzp qUWRq l  Ѭ A,}-#!= .,JҢ| &-(gҼڹ]!#8C@ 0PL@ !E!VލL  =!0^] LD6 %~x%=#J" [ 5IPM0 s }u00e$'$$)g@C{} a;I&S f]בE&ܖ?]t\i]kA4 l  = eG{Z / _ %80 iT`T  A M!i|V6  WfpU -D -02@ )b. ZeV#K6SP1F#` !!9gXKG U$67jW  [Gru~<   C- %! haiÿՕP )&Z|=C@%) * }#5L=C8 (YP'N,$06 i*)S { !(p$pG bz8%'  \#٥9 d('4܂E"m X9: !P  0ޝ>o4@6?\0`6 9 J j}<  T UvPa> @K$vvPBf}  | IF_b6|n d6 ?(j8.VE Z uHdL*[/ y ?xUc+ T}]P%~.B/n'Exg v*k/-,;!@,#-{.'I} g=V <?"Wfo\ &'"s7@4 V>d'u [s!^T{VY7%'#\a )A %"-'%F l>_ZX"b' !,hm%wVc%7*"u.֨ vb('dO0eה {Gv5 [ g v?V{O ' R;?&*o-(%Sni\t|{ M$` V[5?QT+՗L͘|  I>AxQ : /_J?k!v.-K\i(.'w%OѵF,, V 4ҍՁ[w%S-';Ӻ۪y*+k Ph#+0'xZٞ6' $#-,a"7/3`. nHFs(11(e c-2%.y!3T$~ Y'W& H 8",.# [5Tӝ$ NzhLs))*i .ߤחG#**t#  '%+'w g+jdT Oxr }=R + @#a",HA7J٢"%~zSrO0 Kx$#JfYK"3$` m?/1  E9zv\V ֑Ԙ^wJֲYu4 WKՉڋSL(h69 1^6:~ /3)·ͩڌ;%B2>0M Sͮ>V,Q2)'um "0I/  iMJ')0{)hf*˭׺ ;i=Y(++&O [ Q#0*D)~!(~6';*& 1i I{ycdW1OX fQ@<^BgR) sF ~[ !z: l^!  Re@@/0=5[@oi$'G^Zـ &$@(ɍs$8 pR4\,:7%pČEH3:D5%GHs+73!,7ȵ+_%* &3O/ۮ`7##?/ݕ:uNڠ!eC),تݮCpc 3ۂڒ*K2;-9+Wc& AvRsq(be2. gk| 7` w%Vo/g#zyD c  +fi2"K%!?k 8d$$e 3=+:`*v B")@)`m޼iI#B*N$&ќ5R.%(N:&J'( ,ߗD !t[H/1el j Ŧ3ŧ׬>ϹIe9v eۋhš}N4^&u//u'fkH 7%h.J~CX ] 1gOHl:.Te BNrvKtDBBڐ '549D1) &. 8G6)4FZ%3711D! \) "YC3nXy:D N2vY5WGW/tZYP(:+& ^Na #*)"Ste'  a)Fj& B eg@ X{X0BJMz g'y5I{SUDQ 1"r~ )]6  q =u'33-. >@ ѽvv>{iFK+Q% 5әQӼj N f_ 4 ] d 'J !9 \}Geu^-mZ b  Y<vK׮1&8)y%o&V Y!''m!N |$g(R%Ccm{mst<= _  Jivh;<4 1R6gZ =m RG! 3 x%$ 25@:"%s"` ~TRK XceeF(x }($ ݨe98Ht&ہ0XޤL !Qb&$'6O;3*" DZшӌ"&.)dpѬ_ !M_wV!%( gߧ1E Z߮vBcߨ0B?,u`k+ BTnn.U!RL(qN $o)ez*3kr0NvY3w5$9I lNZ2I dA  I!S 2 [ S h`}Lf'-%B **qAt݌v k$? ;Q*220%BJz".2>,X <iup(0/h&hvaա>[+0'DO]UFD u ڎUM$EDCϧ LVk :VM %,*!l^ߧڽ+X"$: ܿ*H , SAR g xT<֛v$Pپ֕,g!ng XLl  w:P`/ ]rY 'b T[FAeqw2кʞmT+ ;PF &(E,9(!pJ#**#B- B"^6/ 2zdl(3.TFXYg`3.&2'qJ 7 g(#;FXCY13>vf.yAVF;E%8lޟ5 8D|B 2e!`ާD , q'  d{aڢ-k;,!*!1YQ ( &$HM5 E [LE Z Շςґ݁u l v T5Kׯ~ )|? /'6L;3" 7CxvW  N1+z2CPDc j2E!sXIr:Zl   K7  !()-0* m( !  {s Xb]7E U " M?L; O|65G :z!(a)"nB 6sjkg%)&_#~1y=  x@e) cH}S~L | v% ο!F( D&]&h ' :kT#&$upq E%%  5U} ]$  tf A8ӔZ B I5!c^}hO}  :kݘKdE -x1,' I Q}{ : ^3I ] r0' q A g( v 0 ;'ZyҶ"#$M t!##k |of H "5V%aD!F' W߼<] 4QMpiQO Clh j[ (%v ; D `mX~p$ z g~0G9 4TD >g `#$" n9T  t$@"hpxlu9 '%x&)C?S GZn> ({1)A &&^|!'.!Aܼq$$rr7j (;; ?5 LtC//b-Jtd Y Lpmk ;O=  |!$! zwNY R 5H >  * i cF8q{=Wtf Q F gv@2 rGD {6wE#Ta= jq=|} cn 2/7!+U!M" ; v=" "VI N5 S il6ip, #cgh BT>'+  (( F ^ L}]|z0<{Aq#u=D[{'QH?^L[3 W2 @kY! J W 6 ."-vKSL/  [Hx O  O  t cHsYv{ V UrDz6 ~s  + 7223N>=#^!Tb  . $YN>d:d R JSP7 L OH4 v|  M_S{'/=RFSW1\MU AVfb .b d3R" _ <![d~  A  RBa7  ]'#Q A EX x{*\ M  :){u nz U %}ZMY\{ Ak #?i56vIO~gs57C"huLv G W5D"u>^/`e!WP*/`JY nCeTV U ,% mQIc'Kk'CTh#uC(lq05yo "lI6eCZZ3mx9g^t(eio0Mlr_=:`4u)<"3aNUqF f, ln,wULe$FVD)_m?NN}_35bHkf  '4Gm47tDojPl ;?1(1/)BG9%., garden-1.0.9/data/init.txt0000644000175000017500000000007212457263300012320 00000000000000[Scores] Easy = 0 Normal = 0 Hard = 0 [Misc] Windowed = 0 garden-1.0.9/data/Makefile.am0000644000175000017500000000257712457270605012672 00000000000000gardendir=@DATADIR_NAME@ NUL = nobase_dist_garden_DATA = init.txt # wavsdir=$(gardendir)/wavs nobase_dist_garden_DATA += \ wavs/bang2.wav \ wavs/cannon.wav \ wavs/level.wav \ wavs/mouth.wav \ wavs/rect.wav \ wavs/whoosh.wav \ wavs/bang.wav \ wavs/extra.wav \ wavs/lwbeam.wav \ wavs/p_bang.wav \ wavs/scatter.wav \ wavs/worms.wav \ wavs/blop.wav \ wavs/fire.wav \ wavs/mgun.wav \ wavs/rect2.wav \ wavs/swbeam.wav \ $(NUL) # beatdir=$(gardendir)/beat nobase_dist_garden_DATA += \ beat/arp.wav \ beat/drum3.wav \ beat/funny.wav \ beat/multi2.wav \ beat/spinner.wav \ beat/thing4.wav \ beat/beam.wav \ beat/drum4.wav \ beat/light.wav \ beat/multi.wav \ beat/square.wav \ beat/voice.wav \ beat/blip.wav \ beat/flute2_l.wav \ beat/line1.wav \ beat/nice2.wav \ beat/stage4.wav \ beat/walker.wav \ beat/cymbal1.wav \ beat/flute2_s.wav \ beat/line2.wav \ beat/nice.wav \ beat/string.wav \ beat/xline.wav \ beat/dline.wav \ beat/flute_l.wav \ beat/line3.wav \ beat/pan.wav \ beat/sweet2.wav \ beat/drum1.wav \ beat/flute.wav \ beat/long2.wav \ beat/piano.wav \ beat/sweet.wav \ beat/drum2.wav \ beat/food.wav \ beat/long.wav \ beat/saw.wav \ beat/synth.wav \ $(NUL) # gfxdir=$(gardendir)/gfx nobase_dist_garden_DATA += \ gfx/garden.dat \ gfx/multi.bmp \ gfx/small.bmp \ gfx/trans.bmp \ gfx/large.bmp \ gfx/platform.bmp \ gfx/splash.bmp \ $(NUL) garden-1.0.9/data/Makefile.in0000644000175000017500000003646212457276735012715 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ subdir = data DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(nobase_dist_garden_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/allegro.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/configure.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac 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)$(gardendir)" DATA = $(nobase_dist_garden_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLEGRO_CONFIG = @ALLEGRO_CONFIG@ ALLEGRO_LIB = @ALLEGRO_LIB@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIR_NAME = @DATADIR_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ RANLIB = @RANLIB@ RC = @RC@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ allegro_CFLAGS = @allegro_CFLAGS@ allegro_LIBS = @allegro_LIBS@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ have_freedesktop = @have_freedesktop@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ gardendir = @DATADIR_NAME@ NUL = # wavsdir=$(gardendir)/wavs # beatdir=$(gardendir)/beat # gfxdir=$(gardendir)/gfx nobase_dist_garden_DATA = init.txt wavs/bang2.wav wavs/cannon.wav \ wavs/level.wav wavs/mouth.wav wavs/rect.wav wavs/whoosh.wav \ wavs/bang.wav wavs/extra.wav wavs/lwbeam.wav wavs/p_bang.wav \ wavs/scatter.wav wavs/worms.wav wavs/blop.wav wavs/fire.wav \ wavs/mgun.wav wavs/rect2.wav wavs/swbeam.wav $(NUL) \ beat/arp.wav beat/drum3.wav beat/funny.wav beat/multi2.wav \ beat/spinner.wav beat/thing4.wav beat/beam.wav beat/drum4.wav \ beat/light.wav beat/multi.wav beat/square.wav beat/voice.wav \ beat/blip.wav beat/flute2_l.wav beat/line1.wav beat/nice2.wav \ beat/stage4.wav beat/walker.wav beat/cymbal1.wav \ beat/flute2_s.wav beat/line2.wav beat/nice.wav beat/string.wav \ beat/xline.wav beat/dline.wav beat/flute_l.wav beat/line3.wav \ beat/pan.wav beat/sweet2.wav beat/drum1.wav beat/flute.wav \ beat/long2.wav beat/piano.wav beat/sweet.wav beat/drum2.wav \ beat/food.wav beat/long.wav beat/saw.wav beat/synth.wav $(NUL) \ gfx/garden.dat gfx/multi.bmp gfx/small.bmp gfx/trans.bmp \ gfx/large.bmp gfx/platform.bmp gfx/splash.bmp $(NUL) 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) --gnu data/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu data/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): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-nobase_dist_gardenDATA: $(nobase_dist_garden_DATA) @$(NORMAL_INSTALL) @list='$(nobase_dist_garden_DATA)'; test -n "$(gardendir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(gardendir)'"; \ $(MKDIR_P) "$(DESTDIR)$(gardendir)" || exit 1; \ fi; \ $(am__nobase_list) | while read dir files; do \ xfiles=; for file in $$files; do \ if test -f "$$file"; then xfiles="$$xfiles $$file"; \ else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \ test -z "$$xfiles" || { \ test "x$$dir" = x. || { \ echo " $(MKDIR_P) '$(DESTDIR)$(gardendir)/$$dir'"; \ $(MKDIR_P) "$(DESTDIR)$(gardendir)/$$dir"; }; \ echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(gardendir)/$$dir'"; \ $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(gardendir)/$$dir" || exit $$?; }; \ done uninstall-nobase_dist_gardenDATA: @$(NORMAL_UNINSTALL) @list='$(nobase_dist_garden_DATA)'; test -n "$(gardendir)" || list=; \ $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \ dir='$(DESTDIR)$(gardendir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: 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 $(DATA) installdirs: for dir in "$(DESTDIR)$(gardendir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done 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 clean-libtool 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-nobase_dist_gardenDATA 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 mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-nobase_dist_gardenDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool 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-nobase_dist_gardenDATA install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-nobase_dist_gardenDATA # 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: