geexbox-generator-1.2.x86_64.glibc/0000755000175000017500000000000011141052120015072 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/0000755000175000017500000000000011141051776015704 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/0000755000175000017500000000000011141052116016772 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/sbin/0000755000175000017500000000000011141052021017720 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/sbin/init0000755000175000017500000000126111141051776020631 0ustar benben#!/bin/sh /bin/busybox test ! -e /proc/cpuinfo && /bin/busybox mount -t proc none /proc /bin/busybox test ! -e /sys/kernel && /bin/busybox mount -t sysfs none /sys /bin/busybox test ! -e /bin/cp && /bin/busybox --install -s progress() { if test -f /proc/splash; then echo "show $1" > /proc/splash fi } count=0 for script in /etc/init.d/*; do grep -q -e "^# runlevels:.*$1" $script && count=$(($count+1)); done pos=47000 step=$(((65535-$pos)/$count)) RET=0 for script in /etc/init.d/*; do if grep -q -e "^# runlevels:.*$1" $script; then pos=$(($pos+$step)) progress $pos /bin/sh $script S_RET=$? test $S_RET -ge $RET && RET=$S_RET fi done exit $RET geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/sbin/setup_tvcard_options0000755000175000017500000000141011141051776024140 0ustar benben#!/bin/sh # # Setup TV modules options for modprobe test $# -lt 2 && echo "usage: $0 module_name has_radio" && exit 1 append_tv_option () { TV_OPTIONS="$TV_OPTIONS $1" } append_radio_option () { RADIO_OPTIONS="$RADIO_OPTIONS $1" } set_module_options () { OPT_FILE=/etc/modprobe.d/options # check if options file is not already set for this module grep -q "options $1" $OPT_FILE 2>/dev/null && return echo "options $1 $2" >> $OPT_FILE } . /etc/tvcard [ -f /etc/radio ] && . /etc/radio test "$TV_CARD" != "AUTO" && append_tv_option "card=$TV_CARD" test "$TV_TUNER" != "AUTO" && append_tv_option "tuner=$TV_TUNER" test "$RADIO" = yes && test "$2" = 1 && append_radio_option "radio=1" set_module_options $1 "$TV_OPTIONS $RADIO_OPTIONS" echo "" > /var/tvcard geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/sbin/geexbox-debug0000755000175000017500000000374211141052013022402 0ustar benben######################## # GeeXboX Debug Traces # ######################## #!/bin/sh DBG_FILE=/tmp/geexbox-debug.txt clean_log () { echo "" > $DBG_FILE } log () { echo "$1" >> $DBG_FILE } section_log () { log " " log "################################" log "# $1 " log "################################" log " " } clean_log # System section_log "Kernel Messages" log "`dmesg`" section_log "Hardware Description" log "`cat /tmp/pci`" section_log "CPU Model" log "`cat /proc/cpuinfo`" section_log "Memory Information" log "`cat /proc/meminfo`" section_log "Command Line" log "`cat /proc/cmdline`" section_log "Loaded Modules" log "`lsmod`" section_log "Disks and Partitions" log "`cat /proc/partitions`" section_log "Mount Points" log "`mount`" # Sound section_log "Sound Cards" log "`cat /proc/asound/cards`" section_log "Sound Devices" log "`cat /proc/asound/devices`" section_log "Audio Configuration" log "`cat /etc/audio`" # Network section_log "Network Interfaces" log "`ifconfig`" section_log "Wireless Interfaces" iwconfig >> $DBG_FILE 2>&1 # X.org related stuff pidof Xorg 2>&1 > /dev/null if [ $? = 0 ]; then if [ -f /tmp/modes ]; then section_log "Video Resolution" log "`cat /tmp/modes`" fi if [ -f /tmp/edid-xorg ]; then section_log "EDID Info" log "`cat /tmp/edid-xorg`" fi if [ -f /etc/X/X.cfg ]; then section_log "X User Configuration" log "`cat /etc/X/X.cfg`" fi if [ -f /xorg.conf.new ]; then section_log "X.org autodetection" log "`cat /xorg.conf.new`" fi if [ -f /etc/X11/xorg.conf ]; then section_log "X.org configuration file" log "`cat /etc/X11/xorg.conf`" fi if [ -f /tmp/xrandr ]; then section_log "XRandR Resolutions" log "`cat /tmp/xrandr`" fi if [ -f /var/log/Xorg.0.log ]; then section_log "X.Org Log status" log "`cat /var/log/Xorg.0.log`" fi fi # MPlayer section_log "MPlayer Configuration" log "`cat /etc/mplayer/mplayer.conf`" echo "File $DBG_FILE has been generated" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/sbin/installator0000755000175000017500000005212511141052016022213 0ustar benben#!/bin/sh LOGFILE=/tmp/install.log # Acts just like echo cmd, with automatic redirection dbglg () { echo "$@" >> $LOGFILE } # Detect whether partition ($1) mounted at ($2) with type ($3) is microsoft. detect_os_microsoft () { local LONGNAME if [ "$3" != ntfs -a "$3" != vfat -a "$3" != msdos ]; then return fi if [ -e "$2/ntldr" -a -e "$2/NTDETECT.COM" ]; then LONGNAME="Windows NT/2000/XP/Vista" elif [ -e "$2/windows/win.com" ]; then LONGNAME="Windows 95/98/Me" elif [ -d "$2/dos" ]; then LONGNAME="MS-DOS 5.x/6.x/Win3.1" else return fi echo "$1:$LONGNAME:chain" } detect_os () { local PARTNAME PARTITION TYPE MPOINT mkdir -p tmpmnt for PARTNAME in `sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *[0-9][0-9][0-9]*\ \([a-z]*[0-9][0-9]*\)/\1/p" /proc/partitions`; do PARTITION="/dev/$PARTNAME" if ! grep -q "^$PARTITION " /proc/mounts; then if mount -o ro $PARTITION tmpmnt >/dev/null 2>&1; then TYPE=$(grep "^$PARTITION " /proc/mounts | cut -d " " -f 3) detect_os_microsoft $PARTITION tmpmnt $TYPE umount tmpmnt >/dev/null || return fi else MPOINT=$(grep "^$PARTITION " /proc/mounts | cut -d " " -f 2) TYPE=$(grep "^$PARTITION " /proc/mounts | cut -d " " -f 3) detect_os_microsoft $PARTITION $MPOINT $TYPE fi done rmdir tmpmnt } # Usage: convert os_device # Convert an OS device to the corresponding GRUB drive. # This part is OS-specific. # -- taken from `grub-install` # $1 is DEV # $2 is DEVICE_MAP convert () { local TMP_DRIVE TMP_DISK TMP_PART if test ! -e "$1"; then echo "$1: $MSG_DEV_NO_BLOCK" 1>&2 exit 1 fi TMP_DISK=`echo "$1" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%'` TMP_PART=`echo "$1" | sed -e 's%.*/[sh]d[a-z]\([0-9]*\)$%\1%'` TMP_DRIVE=`grep -v '^#' $2 | grep "$TMP_DISK *$" \ | sed 's%.*\(([hf]d[0-9][a-g0-9,]*)\).*%\1%'` if [ -z "$TMP_DRIVE" ]; then echo "$1 $MSG_BIOS_NO_DRIVE" 1>&2 exit 1 fi if [ -n "$TMP_PART" ]; then # If a partition is specified, we need to translate it into the # GRUB's syntax. echo "$TMP_DRIVE" | sed "s%)$%,$(($TMP_PART-1)))%" else # If no partition is specified, just print the drive name. echo "$TMP_DRIVE" fi } # Create grub.conf file helper functions # Replace original value ($2) with new value ($3) in GRUB config file ($1) update_grub_conf_bootargs () { # don't try to set an item with a non-existing value test -z "$3" && return; sed -i "s/$2=[^ ]*/$2=$3/g" "$1" } # Use the replacement values ($2-$5) in GRUB config file ($1) append_grub_conf () { local TMP_GRUB_CONF=/tmp/grub.conf cp /etc/grub/grub.conf $TMP_GRUB_CONF sed -i "s/_TITLE_/$2/" $TMP_GRUB_CONF sed -i "s/_HDTV_/$3/" $TMP_GRUB_CONF sed -i "s/_DEBUG_/$4/" $TMP_GRUB_CONF sed -i "s/_CONFIG_/$5/" $TMP_GRUB_CONF cat $TMP_GRUB_CONF >> $1 echo "" >> $1 } # Setup of GRUB config file using initial base config file ($1) and the # boot device UUID ($2) and boot device GRUB descriptor (ROOTDEV as $3) # with additional entries for Xorg if appropriate (USE_XORG as $4) # and an option according to the type of FS ($5). setup_grub () { local OPT_FS_TYPE # conditional HDTV menu entry if X.org is found if [ "$4" = yes ]; then append_grub_conf $1 "GeeXboX HDTV $VERSION" hdtv "" "" append_grub_conf $1 "GeeXboX HDTV $VERSION (debug)" hdtv debugging "" append_grub_conf $1 "GeeXboX HDTV $VERSION (reconfigure)" hdtv "" configure fi # add console mode menu append_grub_conf $1 "GeeXboX $VERSION " "" "" "" append_grub_conf $1 "GeeXboX $VERSION (debug)" "" debugging "" append_grub_conf $1 "GeeXboX $VERSION (reconfigure)" "" "" configure # put default options update_grub_conf_bootargs $1 lang `cmdline_default lang en` update_grub_conf_bootargs $1 remote `cmdline_default remote atiusb` update_grub_conf_bootargs $1 receiver `cmdline_default receiver atiusb` update_grub_conf_bootargs $1 keymap `cmdline_default keymap qwerty` # now setup installation specific options sed -i "s/_ROOTDEV_/$3/g" $1 sed -i "s/_DEVNAME_/UUID=${2}/g" $1 } # Returns the value to use for a given variable ($1) as was found # in the boot arguments, otherwise returns a default value ($2) cmdline_default () { local RET=`sed -n "s/.*$1=\([^ ]*\).*/\1/p" /proc/cmdline` test -z $RET && RET=$2 echo $RET } # Select language definitions setup_lang () { LANG=`cmdline_default lang en` . /etc/installator/en.install # default language file, always present [ -f /etc/installator/${LANG}.install ] && . /etc/installator/${LANG}.install } # Select keymap: Prompts users for available keymaps, and loads the selected one setup_keymap () { local i local KEYMAP_OLD=`cmdline_default keymap qwerty` local KEYMAPS="qwerty qwerty" for i in `ls /etc/keymaps`; do KEYMAPS="$KEYMAPS $i $i" done KEYMAP=`dialog --no-cancel --stdout \ --backtitle "$BACKTITLE : $MSG_KEYMAP_CONFIG" --title "$MSG_KEYMAP" \ --default-item $KEYMAP_OLD --menu "$MSG_KEYMAP_DESC" 0 0 0 $KEYMAPS ` \ || exit 1 test -f "/etc/keymaps/$KEYMAP" && loadkmap < "/etc/keymaps/$KEYMAP" } # Offer a list of possible disks on which to install to the user, # and return with the selected disk name choose_disk () { local DISK_LIST SELECTED_DISK SIZE VENDOR MODEL DISKNAME i while true; do DISK_LIST="" for i in `cat /proc/partitions | sed -n "s/\ *[0-9][0-9]*\ *[0-9][0-9]*\ *[0-9][0-9]*\ \([a-z]*\)$/\1/p"`; do SIZE=`sfdisk -s /dev/$i | sed 's/\([0-9]*\)[0-9]\{3\}/\1/'` VENDOR=`[ -f /sys/block/$i/device/vendor ] \ && cat /sys/block/$i/device/vendor` MODEL=`[ -f /sys/block/$i/device/model ] \ && cat /sys/block/$i/device/model` DISKNAME=`echo $VENDOR $MODEL ${SIZE}MB | sed 's/ /_/g'` DISK_LIST="$DISK_LIST $i $DISKNAME" done if [ -z "$DISK_LIST" ]; then dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_ERROR" \ --yesno "\n${MSG_DISK_NOT_FOUND}" 0 0 1>&2 || exit 1 else DISK_LIST="$DISK_LIST $MSG_DISK_REFRESH" SELECTED_DISK=`dialog --stdout --backtitle "$BACKTITLE" \ --title "$MSG_DISK_DEVICE" \ --menu "\n${MSG_DISK_DEVICE_DESC}" 0 0 0 $DISK_LIST` [ -z "$SELECTED_DISK" ] && break [ $SELECTED_DISK != refresh ] && break fi done echo $SELECTED_DISK } # Prompt and get the desired partition name from the selected disk ($1), # and returns the device name of that partition choose_partition_dev () { local LOC_DISK="$1" local DEV_SEL DEV_LIST SIZE VENDOR MODEL DEVNAME i dbglg "Input arg for DISK is $1" while [ ! -b "$DEV_SEL" ]; do DEV_LIST="" for i in `sfdisk -lq /dev/$LOC_DISK 2>/dev/null | grep ${LOC_DISK%disc} | \ cut -f1 -d' ' | grep dev`; do case `sfdisk --print-id ${i%%[0-9]*} ${i#${i%%[0-9]*}}` in 1|11|6|e|16|1e|b|c|1b|1c) #FAT12/16/32 are supported syslinux SIZE=`sfdisk -s "$i" | sed 's/\([0-9]*\)[0-9]\{3\}/\1/'` VENDOR=`cat /sys/block/$LOC_DISK/device/vendor` MODEL=`cat /sys/block/$LOC_DISK/device/model` DEVNAME=`echo $VENDOR $MODEL ${SIZE}MB | sed 's/ /_/g'` DEV_LIST="$DEV_LIST $i $DEVNAME" ;; 83) #Linux is supported only in grub. SIZE=`sfdisk -s "$i" | sed 's/\([0-9]*\)[0-9]\{3\}/\1/'` VENDOR=`cat /sys/block/$LOC_DISK/device/vendor` MODEL=`cat /sys/block/$LOC_DISK/device/model` DEVNAME=`echo $VENDOR $MODEL ${SIZE}MB | sed 's/ /_/g'` DEV_LIST="$DEV_LIST $i $DEVNAME" ;; esac done if [ -z "$DEV_LIST" ]; then dbglg "DEV_LIST var empty!" dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_ERROR" \ --msgbox "\n$MSG_INSTALL_DEV_NOPART_BEGIN $MSG_DISK_PART $MSG_INSTALL_DEV_NOPART_END\n" 0 0 1>&2 exit 1 else DEV_SEL=`dialog --stdout --aspect 15 --backtitle "$BACKTITLE" \ --title "$MSG_INSTALL_DEV_CONFIG" --menu "$MSG_INSTALL_DEV_DESC" \ 0 0 0 $DEV_LIST` fi [ -z "$DEV_SEL" ] && exit 1 if [ ! -b "$DEV_SEL" ]; then dbglg "DEV_SEL $DEV_SEL is not a block device!" dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_ERROR" \ --msgbox "\n'$DEV_SEL' $MSG_INSTALL_DEV_BAD_BLOCK\n" 0 0 1>&2 \ || exit 1 fi done echo "$DEV_SEL" } # Runs configurator on device to configure ($1) configure () { local IDISK=/mnt/install_disk mkdir -p $IDISK mount $1 $IDISK configurator umount $IDISK } # Try to guess current partition fs type of dev ($1). guess_partition_type () { local type FS_TYPE="" for type in vfat ext3 ext2 auto; do if mount -o ro -t $type "$1" di 2>/dev/null; then FS_TYPE=`grep "^$1 " /proc/mounts | cut -d " " -f 3` umount di break fi done dbglg "guess_partition_type() returned \"$FS_TYPE\"" echo $FS_TYPE } # Decides if a format is needed (or desired) and manages the process # $1 is global MKFS_TYPE, and also updates MKFS_TYPE variable # $2 is DEV format_if_needed () { local NEED_FORMAT=yes local FORMAT_DEFAULT="--defaultno" local LOC_MKFS_TYPE="$1" local LOC_DEV="$2" local FORMAT_MSG FORMAT MKFS MKFS_OPT MKFS_TYPENAME FORMAT local SUPPORTED_TYPES PART_TYPE # Set valid FS types based on selected install partition case `sfdisk --print-id ${LOC_DEV%%[0-9]*} ${LOC_DEV#${LOC_DEV%%[0-9]*}}` in 1|11|6|e|16|1e|14|b|c|1b|1c) SUPPORTED_TYPES="vfat" PART_TYPE="FAT" ;; 83) # Linux SUPPORTED_TYPES="ext3 ext2" PART_TYPE="Linux" ;; esac dbglg "SUPPORTED_TYPES $SUPPORTED_TYPES PART_TYPE $PART_TYPE" dbglg "LOC_MKFS_TYPE \"$LOC_MKFS_TYPE\" LOC_DEV \"$LOC_DEV\"" if [ -z "$LOC_MKFS_TYPE" ]; then FORMAT_MSG="$MSG_INSTALL_DEV_NO_FORMAT" FORMAT_DEFAULT="" else for type in $SUPPORTED_TYPES; do [ $type = $LOC_MKFS_TYPE ] && NEED_FORMAT=no done if [ "$NEED_FORMAT" = yes ]; then FORMAT_MSG="$MSG_INSTALL_DEV_FORMAT_BEGIN ($LOC_MKFS_TYPE) $MSG_INSTALL_DEV_FORMAT_END ($PART_TYPE)." FORMAT_DEFAULT="" else FORMAT_MSG="$MSG_INSTALL_DEV_FORMATED" fi fi dialog --aspect 15 --backtitle "$BACKTITLE" \ --title "$MSG_INSTALL_DEV_FORMAT" $FORMAT_DEFAULT \ --yesno "${FORMAT_MSG}\n${MSG_INSTALL_DEV_FORMAT_DESC} '$LOC_DEV' ?\n" \ 0 0 1>&2 \ && FORMAT=yes if [ "$FORMAT" = yes ]; then case `sfdisk --print-id ${LOC_DEV%%[0-9]*} ${LOC_DEV#${LOC_DEV%%[0-9]*}}` in 1|11|6|e|16|1e|14) # FAT12 and FAT16 MKFS=mkdosfs MKFS_OPT="-n GEEXBOX" LOC_MKFS_TYPE=vfat MKFS_TYPENAME="FAT" ;; b|c|1b|1c) # FAT32 MKFS=mkdosfs MKFS_OPT="-n GEEXBOX -F 32" LOC_MKFS_TYPE=vfat MKFS_TYPENAME="FAT" ;; 83) # Linux LOC_MKFS_TYPE=`dialog --stdout --aspect 15 --backtitle "$BACKTITLE" \ --title "$MSG_INSTALL_PART_TYPE" --menu "$MSG_INSTALL_PART_TYPE_DESC"\ 0 0 0 ext2 "Linux ext2" ext3 "Linux ext3" ` \ || exit 1 case $LOC_MKFS_TYPE in ext2) MKFS=mke2fs MKFS_OPT="-L GEEXBOX" MKFS_TYPENAME="Linux ext2" ;; ext3) MKFS=mke2fs MKFS_OPT="-L GEEXBOX -j" MKFS_TYPENAME="Linux ext3" ;; esac ;; esac if [ -z "$MKFS" ]; then if [ "$NEED_FORMAT" = yes ]; then dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_ERROR" \ --msgbox "\n${MSG_INSTALL_DEV_NO_FORMAT} ('$LOC_DEV'). ${MSG_INSTALL_FORMAT_NO_TOOLS}\n" 0 0 1>&2 rmdir di exit 1 else dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_WARNING"\ --msgbox "\n'$LOC_DEV' $MSG_INSTALL_FORMAT_BAD_TYPE $MKFS_TYPENAME. ${MSG_INSTALL_FORMAT_NO_TOOLS}. ${MSG_INSTALL_FORMAT_ALREADY}\n" 0 0 1>&2 \ || exit 1 fi else dbglg "$MKFS $MKFS_OPT \"$LOC_DEV\"" dialog --backtitle "$BACKTITLE" \ --infobox "$MSG_INSTALL_DEV_FORMATTING_WAIT_BEGIN '$LOC_DEV'$MSG_INSTALL_DEV_FORMATTING_WAIT_END" 0 0 $MKFS $MKFS_OPT "$LOC_DEV" >> $LOGFILE 2>&1 fi elif [ "$NEED_FORMAT" = yes ]; then dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_ERROR" \ --msgbox "\n${MSG_INSTALL_DEV_NO_FORMAT} ('$LOC_DEV')\n" 0 0 1>&2 rmdir di exit 1 fi dbglg "format_if_needed() returned \"$LOC_MKFS_TYPE\"" # Update the global variable MKFS_TYPE="$LOC_MKFS_TYPE" } # Get the uuid of the device given by input $1 get_uuid () { local DEV_REALNAME NAME LOC_DEV LOC_UUID # restart UDEV scan to get device UUID if # user just created/formatted a new disk/partition udevadm trigger udevadm settle --timeout=180 DEV_REALNAME=`echo ${1##/dev/}` for LOC_DEV in `ls /dev/disk/by-uuid/*`; do NAME=`ls -l "$LOC_DEV" | sed "s/.*-> \(.*\)/\1/" | sed 's%../../%%'` if [ "$NAME" = "$DEV_REALNAME" ]; then LOC_UUID="`echo $LOC_DEV | sed 's%/dev/disk/by-uuid/%%'`" dbglg "get_uuid() returned \"$LOC_UUID\"" DEV_UUID="$LOC_UUID" break fi done } # Setup syslinux.cfg file in the /tmp dir # $1 is GEEXBOX dir setup_syslinux () { # Setup syslinux.cfg file sed -e "s/boot=cdrom/boot=hdd/g" -e "s%^#CFG#%%" \ "$1/boot/isolinux.cfg" > /tmp/syslinux.cfg dbglg "*** Start Syslinux.cfg ***" cat /tmp/syslinux.cfg >> $LOGFILE dbglg "*** End Syslinux.cfg ***" } # Installs and configures the GRUB bootloader # $1 is DEV # $2 is USE_XORG # $3 is MKFS_TYPE install_grub (){ local ROOTDEV local GRUBPREFIX=/boot/grub local GRUBDIR=di$GRUBPREFIX local DEVICE_MAP=$GRUBDIR/device.map local SPLASHIMAGE="$GRUBPREFIX/grub-splash.xpm.gz" local LOC_DEV=$1 local LOC_USE_XORG=$2 local LOC_MKFS_TYPE=$3 TMP_DISK=`echo "$LOC_DEV" | sed -e 's%\([sh]d[a-z]\)[0-9]*$%\1%'` TMP_DISKNAME="${TMP_DISK#/dev/}" rm -rf $GRUBDIR mkdir -p $GRUBDIR [ -f "di/GEEXBOX/usr/share/grub-i386-pc.tar.lzma" ] \ && tar xaf "di/GEEXBOX/usr/share/grub-i386-pc.tar.lzma" -C $GRUBDIR \ >> $LOGFILE 2>&1 if [ -f "di/GEEXBOX/usr/share/grub-splash.xpm.gz" ]; then DISABLE_SPLASHIMAGE= cp -f "di/GEEXBOX/usr/share/grub-splash.xpm.gz" $GRUBDIR \ || DISABLE_SPLASHIMAGE="#" else DISABLE_SPLASHIMAGE="#" fi cp $GRUBDIR/stage2 $GRUBDIR/stage2_single echo "quit" | grub --batch --no-floppy --device-map=$DEVICE_MAP \ >> $LOGFILE 2>&1 ROOTDEV=$(convert $LOC_DEV $DEVICE_MAP) dbglg "ROOTDEV \"$ROOTDEV\" DEV \"$LOC_DEV\"" dbglg "XORG \"$LOC_USE_XORG\"" if [ -z "$ROOTDEV" ]; then dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_ERROR" \ --msgbox "\n${MSG_GRUB_NO_ROOTDEV}\n" 0 0 1>&2 umount di rmdir di exit 1 fi dbglg "GRUB setup is: grub --batch --no-floppy --device-map=$DEVICE_MAP" dbglg "root $ROOTDEV" dbglg "install --stage2=$GRUBDIR/stage2_single $GRUBPREFIX/stage1 $ROOTDEV $GRUBPREFIX/stage2_single p $GRUBPREFIX/single.lst" grub --batch --no-floppy --device-map=$DEVICE_MAP < $GRUBDIR/single.lst <> $LOGFILE dbglg "*** End GRUB Single.lst ***" # Detect others OS and ask for MBR only in the case where GeeXboX # is not installed on a removable device. if [ "`cat /sys/block/$TMP_DISKNAME/removable`" = 0 ]; then oslist=$(detect_os) supported_os_list="" saveifs=$IFS IFS=' ' for os in $oslist; do title=$(echo "$os" | cut -d: -f2) if [ -n "$supported_os_list" ]; then supported_os_list="$supported_os_list, $title" else supported_os_list="$title" fi done IFS=$saveifs if [ -n "$supported_os_list" ]; then dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_BOOTLOADER" \ --defaultno --yesno "\n'$LOC_DEV' $MSG_LOADER_MULTIBOOT_BEGIN $supported_os_list\n${MSG_LOADER_MULTIBOOT_END}\n" 0 0 1>&2 \ && MBR=yes else dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_BOOTLOADER" \ --yesno "\n'$LOC_DEV' ${MSG_LOADER_NONE}\n" 0 0 1>&2 \ && MBR=yes fi else oslist= MBR=yes fi if [ "$MBR" = "yes" ]; then dbglg "grub --batch --no-floppy --device-map=$DEVICE_MAP" dbglg "root $ROOTDEV" dbglg "setup --stage2=$GRUBDIR/stage2 --prefix=$GRUBPREFIX (hd0)" grub --batch --no-floppy --device-map=$DEVICE_MAP < $GRUBDIR/menu.lst <> $GRUBDIR/menu.lst <> $GRUBDIR/menu.lst <> $GRUBDIR/menu.lst <> $LOGFILE dbglg "*** End GRUB menu.lst ***" else dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_BOOTLOADER" \ --msgbox "\n${MSG_LOADER_ERROR}\n" 0 0 1>&2 fi # Special care for removable devices # if one intend to boot from removable disk, it'll be considered as # primary disk for BIOS if [ "`cat /sys/block/$TMP_DISKNAME/removable`" = 1 ]; then for file in menu.lst single.lst; do [ -f "$GRUBDIR/$file" ] && sed -i 's%(hd[0-9],%(hd0,%g' "$GRUBDIR/$file" done fi } VERSION=1.2 BACKTITLE="GeeXboX $VERSION installator" # should not be present in install mode, but in case of ... killall -9 automountd >/dev/null 2>&1 setup_lang # disable kernel messages to avoid screen corruption echo 0 > /proc/sys/kernel/printk setup_keymap DISK="`choose_disk`" [ -z "$DISK" ] && exit 1 # Make sure disk partitions are not already mounted umount /dev/${DISK}* 2>/dev/null # Create directory for the install partition to be mounted mkdir di if [ -n "$NET" ]; then GEEXBOX="$NET" else GEEXBOX="$CDROM/GEEXBOX" fi # Configure X.Org if [ -f /etc/X11/X.cfg.sample -o -f /etc/X11/X.cfg ]; then USE_XORG=yes # default is to use X if present dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_CFG_HDTV" \ --yesno "\n${MSG_CFG_HDTV_DESC}\n" 0 0 \ || USE_XORG=no else USE_XORG=no fi CFDISK_MSG="$MSG_CFDISK_BEGIN $MSG_DISK_PART $MSG_CFDISK_END" # Guide user on how to setup with cfdisk tool in the next step dialog --stdout --backtitle "$BACKTITLE" --title "$MSG_INSTALL_DEV_CONFIG" \ --msgbox "$CFDISK_MSG" 0 0 \ || exit 1 cfdisk /dev/$DISK DEV="`choose_partition_dev $DISK`" [ -z "$DEV" ] && exit 1 MKFS_TYPE="`guess_partition_type $DEV`" format_if_needed "$MKFS_TYPE" "$DEV" # Attempt to mount the prepared partition using the given partition fs type dbglg "mount -t $MKFS_TYPE $DEV di" mount -t $MKFS_TYPE "$DEV" di ret=$? if [ $ret -ne 0 ]; then # FS is not mountable! Return an error msg and exit dbglg "mount returned $ret" dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_DISK_ERROR" \ --msgbox "\n${MSG_INSTALL_MOUNT_FAILED} '$DEV' ($MKFS_TYPENAME).\n" 0 0 rmdir di exit 1 fi dialog --backtitle "$BACKTITLE" --infobox "$MSG_INSTALLING_WAIT" 0 0 # Cleanup if was left in a messy state previously- remove previous installs rm -rf di/GEEXBOX 2>&1 >> $LOGFILE # Copy the main files to the install partition cp -a "$GEEXBOX" di/GEEXBOX >> $LOGFILE 2>&1 # Adjust the location of core boot files to suit non-CDROM install mv di/GEEXBOX/boot/vmlinuz di/GEEXBOX/boot/initrd.gz di/ install_grub "$DEV" "$USE_XORG" "$MKFS_TYPE" # Remove unneeded boot dir from mounted install drive rm -rf di/GEEXBOX/boot if [ "$USE_XORG" != "yes" ]; then # Since X is disabled, remove the files from HDD install to speed up boot rm -f di/GEEXBOX/X.tar.lzma di/GEEXBOX/X.tar.gz di/GEEXBOX/X.tar fi # Cleanup umount di rmdir di # Eject CD if it was the boot media [ -n "$CDROM" ] && eject -s /dev/cdrom & # Prompt to view logging file dialog --aspect 15 --backtitle "$BACKTITLE" \ --title "$MSG_LOG" --defaultno \ --yesno "$MSG_LOG_DESC" 0 0 \ && dialog --textbox $LOGFILE 0 0 # Prompt to run the configurator to adjust the config of the new installation dialog --aspect 15 --backtitle "$BACKTITLE" --title "$MSG_SUCCESS" \ --yesno "\n${MSG_SUCCESS_DESC_BEGIN} '$DEV' !! ${MSG_SUCCESS_DESC_END}\n" \ 0 0 \ && configure $DEV # Exit cleanly return 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/sbin/configurator0000755000175000017500000000224311141052021022351 0ustar benben#!/bin/sh DONE=0 msgbox_save () { dialog --aspect 15 --stdout --yes-label "$MSG_YES" --no-label "$MSG_NO" --backtitle "$MSG_CFG_TITLE" --title "$MSG_MENU_SAVE ?" --yesno "$MSG_SAVE_DESC" 0 0 && $CONFIG_PLUGINS_PATH/save } msgbox_exit () { dialog --aspect 15 --stdout --yes-label "$MSG_YES" --no-label "$MSG_NO" --backtitle "$MSG_CFG_TITLE" --title "$MSG_MENU_EXIT ?" --defaultno --yesno "$MSG_EXIT_DESC" 0 0 && DONE=1 } main_menu () { menu=`dialog --no-cancel --aspect 15 --stdout --backtitle "$MSG_CFG_TITLE" --title "$MSG_WELCOME $MSG_CFG_TITLE" --menu "$MSG_MENU_DESC" 0 0 0 lang "$MSG_MENU_LANG ..." video "$MSG_MENU_VIDEO ..." net "$MSG_MENU_NETWORK ..." tv "$MSG_MENU_TV ..." remote "$MSG_MENU_REMOTE ..." "" "" save "$MSG_MENU_SAVE ..." "" "" quit "$MSG_MENU_EXIT ..."` case $menu in lang|video|net|tv|remote) $CONFIG_PLUGINS_PATH/$menu ;; save) msgbox_save ;; quit) msgbox_exit ;; esac } # disable kernel messages to avoid screen corruption echo 0 > /proc/sys/kernel/printk # include configurator common file . /usr/share/configurator/common # get i18n strings get_i18n while [ $DONE != 1 ]; do main_menu done geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/0000755000175000017500000000000011141052116017545 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/0000755000175000017500000000000011141052115020731 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/01_date0000755000175000017500000000012711141052114022073 0ustar benben#!/bin/sh # # store boot time # # runlevels: geexbox, debug /bin/date > /tmp/bootdate geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/20_modules0000755000175000017500000000034611141052114022632 0ustar benben#!/bin/sh # # load modules # # runlevels: geexbox, debug, install, configure echo "### Loading kernel modules ###" IFS=' ' for module in `cat /etc/modules|grep "^[^#]"`; do eval "modprobe $module" >/dev/null 2>&1 done exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/83_halt0000755000175000017500000000033311141052114022117 0ustar benben#!/bin/sh # # Shutdown procedure (mostly mandatory hacks) # # runlevels: geexbox, debug, configure # Some chipsets using Intel HD-Audio ALSA driver have # difficulties to properly shutdown. rmmod snd_hda_intel exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/40_alsa0000755000175000017500000000522411141052000022076 0ustar benben#!/bin/sh # # setup alsa (especially the mixer config) # # runlevels: geexbox, debug, configure echo "### Setting up sound card ###" # include audio configuration file . /etc/audio [ ! -f /etc/asound.conf ] && echo "" > /etc/asound.conf mixer() { parm=${3:-on} amixer -c $ALSA_CARD sset "$1" "$2" $parm >/dev/null 2>&1 amixer -c $ALSA_CARD sset "$1" $parm >/dev/null 2>&1 } # set alsa channel mode (6ch, 4ch, 2ch) mixer 'Channel Mode' "${CHANNELS}ch" # set common mixer params mixer Master 90% mixer Front 90% mixer PCM 90% mixer Synth 90% # mute CD, since using digital audio instead mixer CD 0% mute # Only unmute Line and Aux if they are possibly used. if [ -e /var/use_dxr3 -o -e /var/tvcard -o -e /var/dvbcard -o -e /var/digimatrix ]; then mixer Line 90% mixer Aux 90% else mixer Line 0% mute mixer Aux 0% mute fi # mute mic mixer Mic 0% mute # ESS 1969 chipset has 2 PCM channels mixer PCM,1 90% # Trident/YMFPCI/emu10k1 mixer Wave 100% mixer Music 100% mixer AC97 100% mixer Surround 90% mixer 'Surround Digital' 90% mixer 'Wave Surround' 90% if [ "$CHANNELS" = 6 ]; then mixer 'Duplicate Front' 0% off else mixer 'Duplicate Front' 90% fi mixer 'Sigmatel 4-Speaker Stereo' 90% # CS4237B chipset: mixer 'Master Digital' 90% # DRC mixer 'Dynamic Range Compression' 90% # Envy24 chips with analog outs mixer DAC 90% mixer DAC,0 90% mixer DAC,1 90% # some notebooks use headphone instead of master mixer Headphone 90% mixer 'Internal Speaker' 75% mixer Playback 100% mixer Center 90% mixer LFE 90% mixer Center/LFE 90% # Required for newer Via hardware mixer 'VIA DXS,0' 80% mixer 'VIA DXS,1' 80% mixer 'VIA DXS,2' 80% mixer 'VIA DXS,3' 80% # Intel P4P800-MX (Ubuntu bug #5813) mixer 'Master Playback Switch' on # Required at least for Via 823x hardware on DFI K8M800-MLVF Mobo mixer 'IEC958 Capture Monitor' 0% off # Required on some notebooks with ICH4: mixer 'Headphone Jack Sense' 0% off mixer 'Line Jack Sense' 0% off # Required on some Vaio notebooks (B3XP): mixer 'External Amplifier' 0% mute # Required for either Analog or Digital output mixer 'SB Live Analog/Digital Output Jack' $SBL_AUDIGY mixer 'Audigy Analog/Digital Output Jack' $SBL_AUDIGY # set SPDIF mixer params if [ "$SOUNDCARD_MODE" = SPDIF ]; then mixer 'IEC958' 90% mixer 'IEC958 Output' 90% mixer 'IEC958 Playback AC97-SPSA' $AC97_SPSA mixer 'IEC958 Coaxial' 90% mixer 'IEC958 LiveDrive' 90% mixer 'IEC958 Optical Raw' 90% mixer 'SPDIF Out' 90% mixer 'SPDIF Front' 90% mixer 'SPDIF Rear' 90% mixer 'SPDIF Center/LFE' 90% mixer 'Master Digital' 80% else mixer 'SPDIF Out' 0% off mixer 'Analog Front' 90% mixer 'Analog Rear' 90% mixer 'Analog Center/LFE' 90% fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/05_lspci0000755000175000017500000000014411141052000022265 0ustar benben#!/bin/sh # # cache pci devices # # runlevels: geexbox, debug, install, configure lspci > /tmp/pci geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/65_xorg0000755000175000017500000000355411141052001022151 0ustar benben#!/bin/sh # # configure X.Org video settings # # runlevels: geexbox XORG_SAMPLE=/etc/X11/X.cfg.sample XORG_CFG=/etc/X11/X.cfg # tty used for the video display TTY=4 start_xorg () { # use Screen0 if present to workaround a bug with some graphic drivers # that report 2 screens and prevent Xorg from loading correctly SCREEN= [ -f /etc/X11/xorg.conf ] && grep -q Screen0 /etc/X11/xorg.conf && SCREEN="-screen Screen0" # starts X.org with a black background Xorg vt$TTY -br -allowMouseOpenFail $SCREEN > /dev/null 2>&1 & } if [ -f /usr/bin/Xorg -a -f /usr/bin/xorgconfig -a -f /var/use_xorg ]; then echo "### Configuring X.Org video settings ###" # Fix the /etc/X11 case-insensitive fs directory creation issue [ -d /etc/x11 ] && ln -s /etc/x11 /etc/X11 # Try to detect manual user settings grep -q "xorg=" /proc/cmdline && XORG=`sed 's/.*xorg=\([^\ ]*\).*/\1/' /proc/cmdline` if [ -n "$XORG" ]; then RATE="auto" if [ "$XORG" = 1080p ]; then XRES=1920 YRES=1080 elif [ "$XORG" = 720p ]; then XRES=1280 YRES=720 elif [ "$XORG" = 480p ]; then XRES=720 YRES=480 else XRES=`echo $XORG | sed 's%\(.*\)x.*%\1%'` echo $XORG | grep -q @ if [ "$?" = 0 ]; then YRES=`echo $XORG | sed 's%.*x\(.*\)@.*%\1%'` RATE=`echo $XORG | sed 's%.*@\(.*\)%\1%'` else YRES=`echo $XORG | sed 's%.*x\(.*\)%\1%'` fi fi cp $XORG_SAMPLE $XORG_CFG sed -i "s%XORG_RESX=.*%XORG_RESX=$XRES%" $XORG_CFG sed -i "s%XORG_RESY=.*%XORG_RESY=$YRES%" $XORG_CFG sed -i "s%XORG_RATE=.*%XORG_RATE=$RATE%" $XORG_CFG fi # Select which Xorg configuration file method to use # Do not overwrite user generated settings if any ... if [ ! -f /etc/X11/xorg.conf ]; then [ -f $XORG_CFG ] && xorgconfig > /dev/null 2>&1 fi echo "### Starting X.Org ###" start_xorg fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/68_mp-fonts0000755000175000017500000000373311141052013022742 0ustar benben#!/bin/sh # # put the right font in the right place # # runlevels: geexbox, debug, configure echo "### Setting up fonts ###" . /etc/lang.conf . /etc/lang.funcs readfirstword() { head -n 1 $1 | sed 's/^\([[:graph:]]*\).*$/\1/' } # set menu and help files according to language setting MENU_LANG=`sed -n "s/.*lang=\([^ ]*\).*/\1/p" /proc/cmdline` [ -z $MENU_LANG ] && MENU_LANG=en . /etc/mplayer/en.lang # default language file, always present [ -f /etc/mplayer/${MENU_LANG}.lang ] && . /etc/mplayer/${MENU_LANG}.lang TAGS=`grep "#.*#" /etc/mplayer/menu.conf | sed 's%.*#\(.*\)#.*%\1%'` for i in $TAGS; do v=`eval echo \\\$$i` sed -i "s%#${i}#%$v%" /etc/mplayer/menu.conf; done cp -f /usr/share/mplayer/help_en.txt /etc/mplayer/help.txt [ -f /usr/share/mplayer/help_${MENU_LANG}.txt ] && cp -f /usr/share/mplayer/help_${MENU_LANG}.txt /etc/mplayer/help.txt MENU_CHARSET=`lang2charset $MENU_LANG` [ -z "$MENU_CHARSET" ] && exit 1 MENU_FONT=`lang2font "$MENU_LANG" menu` if [ -f /etc/theme.conf -a -f /usr/share/fonts/themefont.ttf ]; then . /etc/theme.conf [ -z "$FONT_CHARSETS" ] && FONT_CHARSETS="windows-1252" for i in $FONT_CHARSETS; do [ "$i" = "$MENU_CHARSET" ] && MENU_FONT="themefont.ttf" && break done fi MENU_FONT="/usr/share/fonts/$MENU_FONT" [ ! -f "$MENU_FONT" ] && exit 1 mp_set_option font "$MENU_FONT" # set subtitles font according to subfont setting if test -f /etc/subfont; then SUB_CHARSET=`readfirstword /etc/subfont` SUB_CHARSET=`lang2charset "$SUB_CHARSET"` [ -z "$SUB_CHARSET" ] && exit 1 SUB_FONT=`lang2font "$SUB_CHARSET" sub` SUB_FONT="/usr/share/fonts/$SUB_FONT" [ ! -f "$SUB_FONT" ] && exit 1 mp_set_option subfont "$SUB_FONT" mp_set_option subcp "$SUB_CHARSET" fribidi_mp_set_option "$SUB_CHARSET" fi # set font settings according to theme if test -f /etc/theme.conf; then . /etc/theme.conf mp_set_option subfont-osd-scale "$FONT_SIZE" [ -f /usr/bin/Xorg -a -f /var/use_xorg ] && mp_set_option subfont-osd-scale 2 fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/70_mp-menu0000755000175000017500000000137211141052013022543 0ustar benben#!/bin/sh # # configure MPlayer's menu # # runlevels: geexbox, debug, configure echo "### Configuring MPlayer's menu ###" if [ -e /var/use_xorg ]; then test -x /usr/bin/feh || ( echo -n "" > /etc/img_ext; sed -i 's/.*set_menu view_img_timeout.*//' /etc/mplayer/menu.conf ) else test -x /usr/bin/fbi -a -e /dev/fb0 || ( echo -n "" > /etc/img_ext; sed -i 's/.*set_menu view_img_timeout.*//' /etc/mplayer/menu.conf ) fi # build a single file extensions filter cat /etc/file_ext > /etc/extensions cat /etc/list_ext >> /etc/extensions cat /etc/img_ext >> /etc/extensions # use fuseiso if it exists if [ -x /usr/bin/fuseiso ]; then modprobe fuse echo > /var/mount_cdvdimg else sed -i 's/.*set_menu cdvdimg_settings.*//' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/72_mp-audio0000755000175000017500000000350511141052013022702 0ustar benben#!/bin/sh # # configure MPlayer's audio settings # # runlevels: geexbox, debug, configure echo "### Configuring MPlayer's audio settings ###" # include audio configuration file . /etc/audio echo $ALSA_CARD | grep -q ".." || ALSA_CARD="0$ALSA_CARD" case $SOUNDCARD_MODE in SPDIF) ALSA_REAL_MODE=IEC958 ALSA_INTERFACE=plughw ;; analog) ALSA_REAL_MODE=DAC ALSA_INTERFACE=hw ;; esac ALSA_DEVICE=`sed -n "s/^$ALSA_CARD-\(..\): .*$ALSA_REAL_MODE.*/\1/p" /proc/asound/pcm | tail -n 1` [ -z "$ALSA_DEVICE" ] && ALSA_DEVICE=`grep -iv Modem /proc/asound/pcm | sed -n "s/^$ALSA_CARD-\(..\): .*playback.*/\1/p" | tail -n 1` [ -z "$ALSA_DEVICE" ] && ALSA_DEVICE=`sed -n "s/^$ALSA_CARD-\(..\): .*playback.*/\1/p" /proc/asound/pcm | tail -n 1` [ -n "$ALSA_DEVICE" ] && AO_DEVICE=":device=$ALSA_INTERFACE=$ALSA_CARD.$ALSA_DEVICE" # set alsa as audio output isn't forced already. mp_set_option ao "alsa$AO_DEVICE" # enable hardware output via S/PDIF if audio codec isn't forced already. if [ "$SOUNDCARD_MODE" = SPDIF ]; then if [ "$SPDIF_PT_MODE" = ac3 ]; then mp_set_option ac "hwac3," elif [ "$SPDIF_PT_MODE" = dts ]; then mp_set_option ac "hwdts," elif [ "$SPDIF_PT_MODE" = ac3dts ]; then mp_set_option afm "hwac3" fi fi # don't use Master mixer channel when not available if [ -z "`amixer -c $ALSA_CARD simple | grep "'Master'"`" ]; then sed -i 's/mixer-channel=Master//' /etc/mplayer/mplayer.conf fi # set number of playback channels if isn't forced already. mp_set_option channels "$CHANNELS" # set DVD default language LANG="`sed -n 's/.*lang=\([^ ]*\).*/\1/p' /proc/cmdline | head -n 1`,en" mp_set_option alang "$LANG" # set softvol for VIA 8235 rev80 and SiS SI7012 rev16 cards if grep -q -e '0401: 1106:3059 (rev 80)' -e '0401: 13f6:0111 (rev 16)' /tmp/pci; then mp_set_option softvol "yes" fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/74_mp-video0000755000175000017500000000337711141052013022720 0ustar benben#!/bin/sh # # configure MPlayer's video settings # # runlevels: geexbox, debug, configure echo "### Configuring MPlayer's video settings ###" # set mplayer for X server if [ -f /usr/bin/Xorg -a -f /var/use_xorg ]; then mp_set_option vo "xv,xvidix,x11" mp_set_option display ":0" mp_set_option vsync "no" mp_set_option fixed-vo "no" mp_set_option nomouseinput "yes" mp_set_option nograbpointer "yes" mp_set_option stop-xscreensaver "yes" exit 0 fi # include tvout configuration file . /etc/tvout # set mplayer resolution when using offb if [ -e /dev/fb0 ]; then RES=`/usr/sbin/fbset | sed -n 's/mode "\(.*\)-.*"/\1/p'` RESX=`echo $RES | cut -f1 -dx` RESY=`echo $RES | cut -f2 -dx` mp_set_option screenw "$RESX" mp_set_option screenh "$RESY" else mp_set_option screenw 800 mp_set_option screenh 600 fi # set double to no for nvidia, sis and Kyro cards and VMWare for i in '0300: 10de:' '0300: 1039:' '0300: 104a:0010' '0300: 15ad:'; do if grep -q "$i" /tmp/pci; then if [ "$i" = '0300: 10de:' -a ! -f /etc/mplayer/no_unstable_vidix ]; then # except if we want to try nvidia vidix mp_set_option vf "format=yuy2" concat elif [ "$i" = '0300: 1039:' -a ! -f /etc/mplayer/no_unstable_vidix ]; then # or if we want to try sis vidix echo > /dev/null # need a no-op here else mp_set_option vo "vesa" mp_set_option double "no" mp_set_option vf "expand=-1:-1:-1:-1:1" concat fi fi done # Force -vo vesa for some ATI Mobility Radeons if grep -q '0300: 1002:4c59' /tmp/pci; then mp_set_option vo "vesa" fi # do not use VESA Direct Graphic Access on Intel cards grep -q -e '0300: 8086:' /tmp/pci && mp_set_option vo "vesa:nodga" # set the tvout aspect mp_set_option monitoraspect "$TVOUT_ASPECT" exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/75_mp-tvcard0000755000175000017500000000737211141052013023075 0ustar benben#!/bin/sh # # configure MPlayer's v4l2 settings # # runlevels: geexbox, debug, configure echo "### Configuring MPlayer's v4l2 support ###" if [ -f /var/tvcard -a -c /dev/video0 ]; then . /etc/tvcard # configure mplayer v4l2 driver if [ -n "$TV_WIDTH" -a -n "$TV_HEIGHT" ]; then TV_OPTIONS=":width=$TV_WIDTH:height=$TV_HEIGHT" fi if [ -n "$TV_BRIGHTNESS" ]; then TV_OPTIONS="$TV_OPTIONS:brightness=$TV_BRIGHTNESS" fi if [ -n "$TV_CONTRAST" ]; then TV_OPTIONS="$TV_OPTIONS:contrast=$TV_CONTRAST" fi if [ -n "$TV_HUE" ]; then TV_OPTIONS="$TV_OPTIONS:hue=$TV_HUE" fi if [ -n "$TV_SATURATION" ]; then TV_OPTIONS="$TV_OPTIONS:saturation=$TV_SATURATION" fi if [ -c /dev/vbi0 ]; then TV_OPTIONS="$TV_OPTIONS:tdevice=/dev/vbi0" [ -n "$TELETEXT_LANG" ] && TV_OPTIONS="$TV_OPTIONS:tlang=$TELETEXT_LANG" fi if [ `grep -c ^CHAN /etc/tvcard` -gt 0 ]; then if [ `grep -c "tv=channels" /etc/mplayer/mplayer.conf` -eq 0 ]; then for CHAN in `sed -n 's/^CHAN="\(.*\):\(.*\)"/\1-\2/p' /etc/tvcard | sed 'y/ /_/' `; do mp_set_option tv=channels "$CHAN" concat done fi else sed "s/.*set_menu tv_chan.*//" /etc/mplayer/menu.conf fi echo "tv=driver=v4l2:norm=$TVIN_STANDARD:chanlist=$CHANLIST$TV_OPTIONS" >> /etc/mplayer/mplayer.conf IFS=' ' # set mplayer TV channels list echo "" >> /etc/mplayer/menu.conf for CHNAME in `sed -n 's/^tv=channels=//p' /etc/mplayer/mplayer.conf | sed -e 's/,/\n/g' -e 's/_/ /g' | sed 's/\(.*\)-\(.*\)/\2/'`; do echo "" >> /etc/mplayer/menu.conf done echo "" >> /etc/mplayer/menu.conf # Configure external input names EXT_INPUTS=`mplayer tv:// -really-quiet -msglevel tv=4 -vo null -ao null -frames 0 2>/dev/null | sed -n "s/^ inputs: \(.*\)/\1/p"` COMPOSITE_NUM=`echo $EXT_INPUTS | sed -n "s/\([0-9*]\) = Composite.*/\1/p" | sed "s/.*; //"` SVIDEO_NUM=`echo $EXT_INPUTS | sed -n "s/\([0-9*]\) = S-Video.*/\1/p" | sed "s/.*; //"` [ -z $COMPOSITE_NUM ] && sed "s#.*tv:///COMPOSITE_NUM.*##" -i /etc/mplayer/menu.conf || sed "s#tv:///COMPOSITE_NUM#tv:///$COMPOSITE_NUM#" -i /etc/mplayer/menu.conf [ -z $SVIDEO_NUM ] && sed "s#.*tv:///SVIDEO_NUM.*##" -i /etc/mplayer/menu.conf || sed "s#tv:///SVIDEO_NUM#tv:///$SVIDEO_NUM#" -i /etc/mplayer/menu.conf else # remove tv options from menu sed -i 's/.*ok="set_menu tv_settings".*//' /etc/mplayer/menu.conf sed -i 's/.*ok="set_menu tv_norm".*//' /etc/mplayer/menu.conf fi [ -f /var/digimatrix ] && sed -i 's/set_menu radio_settings/set_menu digimatrix_radio/' /etc/mplayer/menu.conf [ -f /etc/radio ] && . /etc/radio if [ "$RADIO" = yes ]; then # set mplayer menu radio stations list if [ `grep -c ^CHAN /etc/radio` -gt 0 ]; then for CHAN in `sed -n 's/^CHAN="\(.*\):\(.*\)"/\1-\2/p' /etc/radio | sed 'y/ /_/' `; do mp_set_option radio=channels "$CHAN" concat done else sed "s/.*set_menu radio_chan.*//" /etc/mplayer/menu.conf sed -i 's/^radio=.*//' /etc/mplayer/menu.conf fi # set mplayer Radio channels list n=0 echo "" >> /etc/mplayer/menu.conf for CHNAME in `sed -n 's/^radio=channels=//p' /etc/mplayer/mplayer.conf | sed -e 's/,/\n/g' -e 's/_/ /g' | sed 's/\(.*\)-\(.*\)/\2/'`; do echo "" >> /etc/mplayer/menu.conf done echo "" >> /etc/mplayer/menu.conf else # no supported radio card specified sed -i 's/.*ok="set_menu radio.*//' /etc/mplayer/menu.conf sed -i 's/^radio=.*//' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/76_mp-dvbcard0000755000175000017500000000136711141052013023216 0ustar benben#!/bin/sh # # configure MPlayer's DVB settings # # runlevels: geexbox, debug, configure CHANNELS_CONF=/etc/mplayer/channels.conf echo "### Configuring MPlayer's DVB support ###" if [ -f /var/dvbcard ]; then # build DVB channels configuration file if [ ! -f $CHANNELS_CONF -a -f /etc/dvb.conf ]; then dvbscan -x 0 /etc/dvb.conf > $CHANNELS_CONF if [ -s $CHANNELS_CONF ]; then # remove non-coherent detected channels grep -v "^\[.*\]:" $CHANNELS_CONF > /tmp/channels.conf mv /tmp/channels.conf $CHANNELS_CONF fi fi fi # no DVB card or no configured channels if [ ! -f /var/dvbcard -o ! -s $CHANNELS_CONF ]; then # remove DVB options from menu sed -i 's/.*ok="set_menu dvb_sel".*//' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/78_mp-pvr0000755000175000017500000000115011141052013022410 0ustar benben#!/bin/sh # # configure PVR (mostly IVTV based) cards for MPlayer # # runlevels: geexbox, debug, configure # set pvr arguments for PVR cards. if [ -e /var/use_pvr ]; then echo "### Configuring PVR cards for MPlayer ###" # include PVR configuration file . /etc/pvr mp_set_option pvr "aspect=$PVR_ASPECT:arate=$PVR_AUDIO_RATE:alayer=$PVR_AUDIO_LAYER:abitrate=$PVR_AUDIO_BITRATE:amode=$PVR_AUDIO_MODE:vbitrate=$PVR_VIDEO_BITRATE:vmode=$PVR_VIDEO_MODE:vpeak=$PVR_VIDEO_PEAK_BITRATE:fmt=$PVR_VIDEO_FORMAT" else # remove pvr from menu sed -i 's%.*ok="loadfile pvr://".*%%' /etc/mplayer/menu.conf fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/79_mp-utils0000755000175000017500000000115611141052013022750 0ustar benben#!/bin/sh # # start MPlayer's utilities # # runlevels: geexbox, debug, configure echo "### Starting MPlayer's utilities ###" # create the mplayer control pipe for external programs mkfifo /var/mp_control # start the autolaunching script . /etc/autoplay [ $AUTOPLAY == "yes" ] && echo -n "" > /var/autoplay # proceed to dvdnav setting . /etc/dvd [ $DVDNAV == "yes" ] && echo -n "" > /var/dvdnav # start the file copy daemon /usr/bin/cpd & # Dump MPlayer revision/version for creating libmenu info text file [ ! -e /etc/mp_version ] && mplayer -ao null -vo null | grep MPlayer | cut -f2 -d\ > /etc/mp_version exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/82_mplayer0000755000175000017500000000475511141052013022651 0ustar benben#!/bin/sh # # configure and launch mplayer # # runlevels: geexbox, debug echo "### Starting MPlayer ###" # initialise return values echo "0" > /tmp/mp_result # get MPlayer to load config files from /etc/mplayer directory export MPLAYER_HOME=/etc/mplayer # tty used for the video display and commands input and debugging TTY=4 DBGTTY=1 player_loop() { # start mplayer or fbi and keep them launched while true; do if [ -n "`pidof lircd`" ]; then irpty /etc/lircrc -- mp_wrapper else mp_wrapper fi test `cat /tmp/mp_result` -eq 165 -a -x /usr/bin/fbi && fbi_wrapper test `cat /tmp/mp_result` -eq 166 && break test `cat /tmp/mp_result` -eq 167 && ( [ -f /var/dvdnav ] && mplayer dvdnav:// || mplayer dvd:// ) > /dev/null 2>&1 test `cat /tmp/mp_result` -eq 169 && (chvt $DBGTTY; /bin/sh < /dev/tty$DBGTTY; chvt $TTY) done } # Set suitable background movie when playing audio-only. set_bgvideo() { local BACKGROUND BACK_WIDE BACKGROUND=background.avi BACK_WIDE=background-wide.avi [ -f /tmp/widescreen -a -f "/usr/share/mplayer/$BACK_WIDE" ] && BACKGROUND="$BACK_WIDE" for i in background-audio.avi $BACKGROUND; do if [ -f /usr/share/mplayer/$i ]; then mp_set_option bgvideo "/usr/share/mplayer/$i" break fi done } # disable console blanking and cursor blinking for a proper MPlayer start echo -e "\033[9;0]\033[?25l\033[?1;;c" >/dev/tty$TTY # disable kernel messages to avoid MPlayer screen corruption echo 0 > /proc/sys/kernel/printk # default directory echo -n /mnt/ > /tmp/mp_current_path if [ -f /var/use_xorg ]; then # get the resolution X.org has actually started # it's not necessary the one requested in /etc/X11/X.cfg file XRANDR_INFO=/tmp/xrandr while true; do xrandr -display :0.0 -q > $XRANDR_INFO [ -s $XRANDR_INFO ] && break done RES=`cat $XRANDR_INFO | grep "Screen 0" | sed 's/.* current \([0-9]*\) x \([0-9]*\),.*/\1x\2/'` RESX=`echo $RES | cut -f1 -dx` RESY=`echo $RES | cut -f2 -dx` # finally set MPlayer video settings accurately mp_set_option screenw "$RESX" mp_set_option screenh "$RESY" mp_set_option monitoraspect "${RESX}/${RESY}" # check for screen aspect ratio # usually found values are 1.25, 1.33 (4:3), 1.6 and 1.77 (16:9) ASPECT=$((${RESX}*1000/${RESY})) if [ "$ASPECT" -gt 1333 ]; then # use the wide HD background screen echo "" > /tmp/widescreen fi set_bgvideo player_loop else # non-HDTV version chvt $TTY set_bgvideo player_loop < /dev/tty$TTY fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/48_lirc0000755000175000017500000000165711141052013022131 0ustar benben#!/bin/sh # # setup lirc # # runlevels: geexbox, debug, configure echo "### Starting LIRC daemon ###" # check for remote: if not found or invalid, use default remote REMOTE=`sed -n "s/.*remote=\([^ ]*\).*/\1/p" /proc/cmdline` if test -z "$REMOTE" \ -o ! -f "/etc/lirc/lircrc_$REMOTE" \ -o ! -f "/etc/lirc/lircd_$REMOTE.conf"; then REMOTE="atiusb" fi # check for receiver: if not found or invalid, use default receiver RECEIVER=`sed -n "s/.*receiver=\([^ ]*\).*/\1/p" /proc/cmdline` if test -z "$RECEIVER" \ -o ! -f "/etc/lirc/lircd_$RECEIVER"; then RECEIVER="atiusb" fi cp -f "/etc/lirc/lircrc_$REMOTE" /etc/lircrc cp -f "/etc/lirc/lircd_$RECEIVER" /etc/lircd cp -f "/etc/lirc/lircd_$REMOTE.conf" /etc/lircd.conf . /etc/lircd # insert needed modules IFS='|' for module in $LIRC_MODULES; do eval "modprobe $module" >/dev/null 2>&1 done # start lircd lircd --driver=$LIRC_DRIVER --device=$LIRC_DEVICE exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/82_install0000755000175000017500000000021711141052016022636 0ustar benben#!/bin/sh # # start GeeXboX installator # # runlevels: install echo "### Starting installator ###" sleep 3 /bin/sh /sbin/installator exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/82_configure0000755000175000017500000000022411141052020023142 0ustar benben#!/bin/sh # # start GeeXboX configurator # # runlevels: configure echo "### Starting configurator ###" sleep 3 /bin/sh /sbin/configurator exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/10_keymap0000755000175000017500000000046411141052022022446 0ustar benben#!/bin/sh # # load keymap # # runlevels: geexbox, debug, install, configure echo "### Loading keymap ###" # check for keymap: if not found or invalid, use default keymap KEYMAP=`sed -n "s/.*keymap=\([^ ]*\).*/\1/p" /proc/cmdline` test -f "/etc/keymaps/$KEYMAP" && loadkmap < "/etc/keymaps/$KEYMAP" exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/60_sleeptimer0000755000175000017500000000023511141052022023332 0ustar benben#!/bin/sh # # start sleeptimer script # runlevels: geexbox echo "0" > /var/downtime echo "### starting sleeptimer daemon ###" /usr/bin/sleeptimer & exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/25_acpi0000755000175000017500000000024511141052023022100 0ustar benben#!/bin/sh # # start the ACPI daemon subsystem # # runlevels: geexbox, debug, configure echo "### Starting ACPI daemon subsystem ###" acpid 2>&1 > /dev/null exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/21_automountd0000755000175000017500000000033411141052024023357 0ustar benben#!/bin/sh # # start D-BUS/HAL automounter daemon # # runlevels: geexbox, debug, configure if test -f /usr/bin/automountd; then echo "### Starting D-BUS/HAL automounter ###" automountd -d > /dev/null 2>&1 fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/15_dbus0000755000175000017500000000026311141052025022122 0ustar benben#!/bin/sh # # start D-BUS daemon # # runlevels: geexbox, debug, configure if test -f /usr/bin/dbus-daemon; then echo "### Starting D-BUS ###" dbus-daemon --system fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/20_hal0000755000175000017500000000031111141052024021716 0ustar benben#!/bin/sh # # start HAL daemon # # runlevels: geexbox, debug, configure if test -f /usr/bin/hald; then echo "### Starting Hardware Abstraction Layer ###" hald --verbose=no --daemon=yes fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/11_lcddisplay0000755000175000017500000000062611141052026023315 0ustar benben#!/bin/sh # # start lcd display # # runlevels: geexbox, debug, configure # get options test -f /etc/lcddisplay || exit 1 . /etc/lcddisplay CONFIG=/etc/lcd4linux.conf if test "$LCD_ENABLED" = "yes" -a -f $CONFIG; then echo "### Starting LCD Display ###" sed -i -e "s/LCD_WIDTH/$LCD_WIDTH/g" -e "s/LCD_HEIGHT/$LCD_HEIGHT/g" $CONFIG /usr/bin/lcd4linux -c "Display='$LCD_MODEL'" -f $CONFIG fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/50_networking0000755000175000017500000000642011141052027023356 0ustar benben#!/bin/sh # # setup the network # # runlevels: geexbox, debug, configure echo "### Setting up network ###" WPA_CONFIG=/etc/wpa_supplicant.conf wpa_config_gen() { cat > $WPA_CONFIG <&1 | grep -q -e "Cell:" -e "Access Point: ..:" } # bring lo up, whether we have network card or not ifconfig lo 127.0.0.1 up # create /etc/hosts file, useful for gethostbyname(localhost) echo -e "127.0.0.1\tlocalhost geexbox" > /etc/hosts # get options test -f /etc/network || exit 1 . /etc/network test -z "$HOST" && HOST=0.0.0.0 if [ -x /usr/bin/iwconfig ]; then for i in `iwconfig 2>&1 | grep '^[^\ ]' | grep -v '^lo' | cut -f1 -d' '`; do ifconfig $i up >/dev/null 2>&1 done WIFI=`iwconfig 2>&1 | grep '^[^\ ]' | grep ESSID | cut -f1 -d' ' | head -n 1` ETH=`iwconfig 2>&1 | grep '^[^\ ]' | grep -v '^lo' | grep "no wireless extensions" | cut -f1 -d' ' | head -n 1` else ETH=eth0 fi ( # select device if test $PHY_TYPE = wifi -o $PHY_TYPE = auto; then DEV=$WIFI if test -n "$DEV"; then test -n "$WIFI_MODE" && iwconfig "$DEV" mode "$WIFI_MODE" test -n "$WIFI_CHANNEL" && iwconfig "$DEV" channel "$WIFI_CHANNEL" test -n "$WIFI_ESSID" && iwconfig "$DEV" essid "$WIFI_ESSID" if test $WIFI_ENC = WEP; then test -n "$WIFI_KEY" && iwconfig "$DEV" key "$WIFI_KEY" elif test $WIFI_ENC = WPA; then if test -x /usr/bin/wpa_supplicant; then if test ! -f $WPA_CONFIG; then wpa_config_gen "$WIFI_ESSID" "$WIFI_KEY" $WPA_AP_SCAN $WPA_SCAN_SSID [ $WPA_CIPHER != "none" ] && sed -i "s/}/pairwise=$WPA_CIPHER\ngroup=$WPA_CIPHER\n}/" $WPA_CONFIG fi wpa_supplicant -B -i $DEV -c $WPA_CONFIG -D $WPA_DRV fi if test -x /usr/bin/iwpriv; then # WPA may not be up, try using iwpriv as well iwpriv $DEV set AuthMode=WPAPSK >/dev/null 2>&1 iwpriv $DEV set EncrypType=TKIP >/dev/null 2>&1 iwpriv $DEV set WPAPSK="$WIFI_KEY" >/dev/null 2>&1 fi fi fi if [ $PHY_TYPE = auto ]; then COUNT=0 while [ $COUNT -lt 10 ]; do wifi_connection_up $DEV && break sleep 1 COUNT=$((COUNT + 1)) done wifi_connection_up $DEV || unset DEV fi fi if test $PHY_TYPE = ethernet -o $PHY_TYPE = auto -a -z "$DEV"; then DEV=$ETH fi test -n "$DEV" || exit 1 [ -n "$SUBNET" ] && NETMASK="netmask $SUBNET" # bring interface up if ifconfig $DEV $HOST $NETMASK >/dev/null 2>&1; then if test $HOST = 0.0.0.0; then [ $DHCP_TIMEOUT = "0" ] && DHCP_WAIT="-n" || DHCP_WAIT="-T $DHCP_TIMEOUT" udhcpc -H geexbox $DHCP_WAIT -i $DEV >/dev/null 2>&1 && NET=yes test "$NET" != yes && ifconfig $DEV 192.168.0.54 netmask 255.255.255.0 && NET=yes else metric=0 for i in $GATEWAY; do route add default gw $i dev $DEV metric $((metric++)) done NET=yes fi echo "" > /var/ifup fi if test "$UPNP" = "yes"; then # add UPnP multicast route route add -net 239.0.0.0 netmask 255.0.0.0 $DEV fi # adding DNS server if [ "$NET" = yes ]; then for i in $DNS_SERVER; do echo "nameserver $i" >> /etc/resolv.conf done fi )& exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/56_nfs0000755000175000017500000000027011141052027021760 0ustar benben#!/bin/sh # # mount nfs shares # # runlevels: geexbox, debug, configure if test -f /etc/nfs -a -f /etc/network; then echo "### Mounting NFS shares ###" automount_nfs & fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/57_9p0000755000175000017500000000030411141052027021521 0ustar benben#!/bin/sh # # mount 9p.2000u resource sharing # # runlevels: geexbox, debug, configure if test -f /etc/9p -a -f /etc/network; then echo "### Mounting 9P shares ###" automount_9p & fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/79_mp-netstream0000755000175000017500000001261211141052027023616 0ustar benben#!/bin/sh # # Network Stream Setting # # runlevels: geexbox, debug, configure CONF=/etc/netstream TMP=/tmp/streamtmp [ -f /etc/network -a -f $CONF ] || exit 1 . /etc/network # Disable streams if not utilized. test "$SHOUTCAST" = "no" -a "$SHOUTCASTTV" = "no" -a "$ICECAST" = "no" -a `grep -c ^STREAM $CONF` -eq 0 -a `grep -c ^EXTM3U $CONF` -eq 0 -a `grep -c ^EXTPLS $CONF` -eq 0 && exit 1 echo "### Network Stream Configuration ###" DAY=`date '+%d'` MONTH=`date '+%m'` YEAR=`date '+%Y'` year=`date '+%y'` BASEDIR="/mnt/Network Streams" # network stream DIR="$BASEDIR" for I in `grep "^STREAM" $CONF | sed "s# #%20#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" URL="$(echo $I |sed -e "s#^STREAM=\"\(.*\)\":.*#\1#" -e "s#%DD#$DAY#g" -e "s#%MM#$MONTH#g" -e "s#%YY#$YEAR#g" -e "s#%yy#$year#g")" FILE="$(echo $I |sed -e "s#^STREAM=\"\(.*\)\":\(.*\)#\2#" -e "s#%20# #g" -e "s#/# #g")" echo "$URL" > "$DIR/$FILE.pls" done SC_TUNE=$(sed -n -e "s#^SHOUTCASTTUNE_URI=\"\(.*\)\"#\1#p" $CONF) ( while [ ! -f /var/ifup ]; do sleep 1 done if [ "$ICECAST" = "yes" ]; then # icecast radio unset FILE URL rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^ICECAST_URI=\"\(.*\)\"#\1#p" $CONF` 2>/dev/null || echo "" > $TMP DIR="$BASEDIR/Icecast Radio" for I in `sed -n -e "s#.*\(.*\).*#\1#p" -e "s#.*\(.*\).*#\1#p" $TMP | sed "s# #%20#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" [ `echo $I | grep -c -e "://"` -gt 0 ] && URL="$I" [ `echo $I | grep -c -e "://"` -eq 0 ] && FILE="$(echo $I | sed -e "s#%20# #g" -e "s#/# #g")" if [ -n "$FILE" -a -n "$URL" ]; then echo "$URL" > "$DIR/$FILE.pls" unset FILE URL fi done fi if [ "$SHOUTCAST" = "yes" ]; then # shoutcast radio for GENRE in `sed -n -e "s#^SHOUTCAST_GENRE=\"\(.*\)\"#\1#p" $CONF`; do rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^SHOUTCAST_URI=\"\(.*\)\"#\1$GENRE#p" $CONF` 2>/dev/null || echo "" > $TMP DIR="$BASEDIR/SHOUTcast Radio/`echo $GENRE | sed -e "s#/#-#g" -e "s#%20# #g" -e "s#%26#&#g"`" for I in `sed "s#\&#\&#g" $TMP |sed -n "s#.*name=\"\([^\"]*\)\".*id=\"\([0-9]*\)\".*#\1_TAG_\2#p"| sed -e "s#\ #_#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" FILE="$(echo $I | sed -e "s#\(.*\)_TAG_[0-9]*#\1#" | sed -e "s#[_/]# #g" -e "s#://##g")" URL="$SC_TUNE?id=$(echo $I | sed -e "s#.*_TAG_\([0-9]*\)#\1#")" echo "$URL" > "$DIR/$FILE.pls" done done fi if [ "$SHOUTCASTTV" = "yes" ]; then # SHOUTcast TV content filter if [ -n "$BLACKLIST" ]; then BL="-v" for I in $BLACKLIST; do BL="$BL -e genre=\"[^\"]*$I[^\"]*\"" done else # Accept all Genre BL="-e genre=\"[^\"]*\"" fi if [ -n "$WHITELIST" ]; then for I in $WHITELIST; do WL="$WL -e genre=\"[^\"]*$I[^\"]*\"" done else # Accept all Genre WL="-e genre=\"[^\"]*\"" fi # SHOUTcast TV rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP `sed -n -e "s#^SHOUTCASTTV_URI=\"\(.*\)\"#\1#p" $CONF` 2>/dev/null || echo "" > $TMP DIR="$BASEDIR/SHOUTcast TV" for I in `grep -i $BL $TMP | grep -i $WL | sed "s#\&#\&#g" | sed -n "s#.*name=\"\([^\"]*\)\".*id=\"\([0-9]*\)\".*#\1_TAG_\2#p"|sed "s#\ #_#g"`; do [ ! -d "$DIR" ] && mkdir -p "$DIR" FILE="$(echo $I | sed -e "s#\(.*\)_TAG_[0-9]*#\1#" | sed -e "s#[_/]# #g" -e "s#://##g")" URL="$SC_TUNE?id=$(echo $I | sed -e "s#.*_TAG_\(.*\)#\1#")" echo "$URL" > "$DIR/$FILE.pls" done fi # extended m3u playlists unset FILE URL for J in `grep "^EXTM3U" $CONF | sed "s# #%20#g"`; do DIR="$BASEDIR/$(echo $J | sed -e "s#^EXTM3U=\".*\":\(.*\)#\1#" -e "s#%20# #g")" M3UURL="$(echo $J | sed "s#^EXTM3U=\"\(.*\)\":.*#\1#")" rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP "$M3UURL" 2>/dev/null || continue for I in `sed -n -e "s/#EXTINF:[-]*[0-9]*,\(.*\)/\1/p" -e "s#\(.*\)://\(.*\)#\1://\2#p" $TMP | sed "s# #%20#g"`; do [ -n "$FILE" ] || FILE="$(echo $I | sed -e "s#%20# #g" -e "s#/# #g")" [ -n "$URL" ] || URL="$(echo $I | sed -n -e "s#\(.*\)://\(.*\)#\1://\2#p" | sed -e "s#%DD#$DAY#g" -e "s#%MM#$MONTH#g" -e "s#%YY#$YEAR#g" -e "s#%yy#$year#g")" if [ -n "$FILE" -a -n "$URL" ]; then [ ! -d "$DIR" ] && mkdir -p "$DIR" echo "$URL" > "$DIR/$FILE.pls" unset FILE URL fi done done # extended pls playlists for J in `grep "^EXTPLS" $CONF | sed "s# #%20#g"`; do DIR="$BASEDIR/$(echo $J | sed -e "s#^EXTPLS=\".*\":\(.*\)#\1#" -e "s#%20# #g")" [ ! -d "$DIR" ] && mkdir -p "$DIR" EXTPLSURL="$(echo $J | sed "s#^EXTPLS=\"\(.*\)\":.*#\1#")" FNUM=0; TNUM=0 rm -f $TMP wget -q -T $TIMEOUT -t $TRIES -O $TMP "$EXTPLSURL" 2>/dev/null || continue cat $TMP | while read LINE; do # strip unwanted chars LINE=`echo $LINE | sed -e "s%\]\[%_%g" -e "s%^M%%g" | sed -e "s%\]%%g" -e "s%\[%%g"` [ `echo $LINE | grep -c -i "title[0-9]*="` -eq 1 ] && \ TITLE=`echo $LINE | sed "s%[Tt]itle[0-9]*=\(.*\)%\1%"` && \ TNUM=`echo $LINE |sed "s%[Tt]itle\([0-9]*\)=.*%\1%"` [ `echo $LINE | grep -c -i "file[0-9]*="` -eq 1 ] && \ FILE=`echo $LINE | sed "s%[Ff]ile[0-9]*=\(.*\)%\1%"` && \ FNUM=`echo $LINE |sed "s%[Ff]ile\([0-9]*\)=.*%\1%"` [ $FNUM -eq $TNUM -a $FNUM -gt 0 ] && echo $FILE > "$DIR/$TITLE.pls" done done )& rm -f $TMP exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/54_ftp0000755000175000017500000000054011141052027021761 0ustar benben#!/bin/sh # # start ftp server # # runlevels: geexbox, debug, configure # get options test -f /etc/network || exit 1 . /etc/network if test "$FTP_SERVER" = "yes" -a -f /etc/bftpd.conf -a -f /etc/ftp; then echo "### Starting FTP server ###" . /etc/ftp echo "$USERNAME $PASSWORD root /" > /etc/bftpdpwd bftpd -d -c /etc/bftpd.conf & fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/58_samba0000755000175000017500000000112711141052027022261 0ustar benben#!/bin/sh # # mount samba shares # # runlevels: geexbox, debug, configure if test -x /usr/bin/mount.cifs -a -f /etc/network; then echo "### Mounting Samba shares ###" . /etc/network automount_samba static >/dev/null 2>&1 & automount_samba dynamic >/dev/null 2>&1 & if [ -n "$NET_RESCAN_DELAY" -a $NET_RESCAN_DELAY -gt 0 ]; then echo -e "*/$NET_RESCAN_DELAY * * * *\t/usr/bin/automount_samba dynamic > /dev/null 2>&1" >> /var/spool/cron/crontabs/root fi fi if test -x /usr/bin/smbd -a "$SAMBA_SERVER" = yes; then echo "### Starting Samba server ###" /usr/bin/smbd fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/59_upnp0000755000175000017500000000034311141052030022152 0ustar benben#!/bin/sh # # mount UPnP VFS # # runlevels: geexbox, debug, configure # get options test -f /etc/network || exit 1 . /etc/network if test "$UPNP" = "yes"; then echo "### Mounting UPnP VFS ###" automount_upnp & fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/77_mp-dxr30000755000175000017500000000163411141052031022467 0ustar benben#!/bin/sh # # configure DXR3/Hollywood+ cards for MPlayer # # runlevels: geexbox, debug, configure # include audio configuration file . /etc/audio # include tvout configuration file . /etc/tvout # set ao, vo and vf for DXR3/Hollywood+ cards and upload microcode. if [ -e /var/use_dxr3 ]; then echo "### Configuring DXR3/Hollywood+ cards for MPlayer ###" mp_set_option vo "dxr3:sync:norm=0" mp_set_option ao "oss:/dev/em8300_ma-0" mp_set_option vf "expand=-1:-1:-1:-1:1" concat sed -i "s%ok=.*play_dvd.*%ok=\"quit 167\"/>%" /etc/mplayer/menu.conf em8300setup -p -a -o >/dev/null 2>&1 # TVOut standard (default is PAL) [ "$TVOUT_STANDARD" = "ntsc" ] && em8300setup -n >/dev/null 2>&1 # set display to WideScreen format (default is 4:3) [ "$TVOUT_ASPECT" = "16:9" ] && em8300setup -w >/dev/null 2>&1 # use SPDIF output ? [ "$SOUNDCARD_MODE" = SPDIF ] && em8300setup -d >/dev/null 2>&1 fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/01_syslog0000644000175000017500000000015011141052115022470 0ustar benben#!/bin/sh # # run the system logging daemon # # runlevels: geexbox, debug syslogd -C & klogd & exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/10_eject0000755000175000017500000000153411141052115022254 0ustar benben#!/bin/sh # # eject CD if booted from cdrom and their is no media files on it # # runlevels: geexbox, debug, configure if test -n "$CDROM"; then echo "### Eject CDROM ###" ( # add recognized files extension to the EXTS list for i in `cat /etc/file_ext`; do if [ -z "$EXTS" ]; then EXTS="$i" else EXTS="$EXTS\|$i" fi done # add recognized images extension to the EXTS list if [ -x /usr/bin/fbi -a -e /dev/fb0 ]; then for i in `cat /etc/img_ext`; do EXTS="$EXTS\|$i"; done fi # add recognized playlists extension to the EXTS list for i in `cat /etc/list_ext`; do EXTS="$EXTS\|$i"; done # check if their is recognized media files on the CD if [ -z "`find "$CDROM" | grep -v /GEEXBOX/ | grep -i "\.\($EXTS\)\$"`" ]; then # eject the CD [ -e /dev/cdrom ] && eject -s /dev/cdrom fi )& fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/52_telnet0000755000175000017500000000043611141052115022463 0ustar benben#!/bin/sh # # start telnet daemon # # runlevels: geexbox, debug, configure # get options test -f /etc/network || exit 1 . /etc/network if test "$TELNET_SERVER" = "yes" -a -f /etc/issue; then echo "### Starting telnet daemon ###" telnetd -f /etc/issue >/dev/null 2>&1 & fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/53_httpd0000755000175000017500000000040311141052115022306 0ustar benben#!/bin/sh # # start http daemon # # runlevels: geexbox, debug, configure # get options test -f /etc/network || exit 1 . /etc/network if test "$HTTP_SERVER" = "yes"; then echo "### Starting http daemon ###" httpd -h /var/www >/dev/null 2>&1 & fi exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/54_crond0000755000175000017500000000022611141052115022274 0ustar benben#!/bin/sh # # start cron daemon # # runlevels: geexbox, debug echo "### Starting CRON daemon ###" mkdir -p /var/spool/cron/crontabs crond -S exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/80_debug0000755000175000017500000000057611141052115022264 0ustar benben#!/bin/sh # # start a debugging shell # # runlevels: debug # give a shell to MPlayer in debug mode echo "### Starting debugging shell ###" sed -i 's%ok=\"quit 166\"/>%ok=\"quit 166\"/> %' /etc/mplayer/menu.conf # start shell /bin/sh # Add option to return to shell with F12 key echo "F12 quit 169" >> /etc/mplayer/input.conf exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/init.d/90_umount0000755000175000017500000000040111141052115022511 0ustar benben#!/bin/sh # # umount all mounted disks # # runlevels: geexbox, debug, configure echo "### Unmounting disks and shares ###" # umount samba shares for DIR in /mnt/shares/*/*; do test -d "$DIR" && umount "$DIR" >/dev/null 2>&1 && rmdir "$DIR" done exit 0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/ndiswrapper/0000755000175000017500000000000011141051776022116 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/file_ext0000644000175000017500000000032411141051776021301 0ustar benben3gp aac ape apl asf avi bin dat divx dvr-ms evo flac flv ifo img iso m1v m2v m4a m4p m4v mac mdf mka mkv mov mp2 mp3 mp4 mp4v mpc mpe mpeg mpg nrg nsv ogg ogm qt ra rm rmvb shn swf ts vdr vob vro wav wma wmv y4m geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/list_ext0000644000175000017500000000002511141051776021333 0ustar benbenasx m3u pls ram smil geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/subs_ext0000644000175000017500000000007011141051776021334 0ustar benbenass dks idx mpl pjs psb scr srt ssa stl sub tts vsf zeg geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/modprobe.d/0000755000175000017500000000000011141052031021572 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/modprobe.d/options0000644000175000017500000000117411141051776023232 0ustar benben# Ignore HPA by default. options libata ignore_hpa=1 # ISA Network Adapters # options wd mem_end=0xca000 mem=0xc8000 irq=5 io=0x2a0 # options smc-ultra io=0x2a0 irq=7 # Drivers for ISA radio cards # options radio-aimslab io=0x20f # or 0x30f # options radio-sf16fmi io=0x284 # or 0x384 # options radio-rtrack2 io=0x30c # or 0x20c # options radio-aztech io=0x350 # or 0x358 # options radio-gemtek io=0x34c # or 0x20c, 0x30c, 0x24c, io=0x248 # options radio-terratec io=0x590 # or 0x591 # options radio-trust io=0x350 # or 0x358 # options radio-typhoon io=0x316 mutefreq=87000 # or io=0x336 # options radio-zoltrix io=0x20c # or 0x30c geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/modprobe.d/blacklist0000644000175000017500000000030011141051776023475 0ustar benben# This file lists those modules which we don't want to be loaded by # alias expansion, usually so some other driver will be loaded for the # device instead. blacklist 8250 blacklist 8250_pnp geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/modprobe.d/tv0000644000175000017500000000064711141051776022174 0ustar benben# Below are the default GeeXboX settings for the all TV cards drivers install bttv /sbin/setup_tvcard_options bttv 1 && /sbin/modprobe --ignore-install bttv install saa7134 /sbin/setup_tvcard_options saa7134 0 && /sbin/modprobe --ignore-install saa7134 install cx88xx /sbin/setup_tvcard_options cx88xx 0 && /sbin/modprobe --ignore-install cx88xx install ivtv /sbin/modprobe --ignore-install ivtv && echo '' > /var/use_pvr geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/modprobe.d/alsa-base0000644000175000017500000000104211141052000023336 0ustar benben############################# # ALSA drivers load options # ############################# # Prevent abnormal drivers from grabbing index 0 options snd-bt87x index=-2 options cx88-alsa index=-2 options saa7134-alsa index=-2 options snd-atiixp-modem index=-2 options snd-intel8x0m index=-2 options snd-via82xx-modem index=-2 options snd-usb-audio index=-2 options snd-usb-usx2y index=-2 options snd-usb-caiaq index=-2 options snd-cmipci mpu_port=0x330 fm_port=0x388 # Some Toshiba laptops might require this # options snd-hda-intel model=toshiba geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/modprobe.d/em83000000644000175000017500000000222211141052031022427 0ustar benben# Below are the default GeeXboX settings for the adv717x and em8300 # modules: options adv717x pixelport_16bit=0 # Other settings that have been reported # (http://dxr3.sourceforge.net/) to commonly fix the "green screen" # or "only 1/2 screen" problems for many users are included below- # remove the "#" before the option to activate it: ## Option 1 ## #options adv717x pixelport_16bit=1 pixelport_other_pal=1 #options em8300 dicom_fix=1 dicom_control=1 dicom_other_pal=1 ## Option 2 ## #options adv717x pixelport_16bit=0 pixelport_other_pal=0 #options em8300 dicom_fix=1 dicom_control=1 dicom_other_pal=0 ## Option 3 ## #options adv717x pixelport_16bit=0 pixelport_other_pal=1 #options em8300 dicom_fix=1 dicom_control=1 dicom_other_pal=1 ## Option 4 ## #options adv717x pixelport_16bit=1 pixelport_other_pal=0 #options em8300 dicom_fix=0 dicom_control=0 dicom_other_pal=0 # If none of these options work for you, you can try other combinations # based on the information: # http://dxr3.sourceforge.net/howto.html#modparam install em8300 { /sbin/modprobe bt865 ; /sbin/modprobe adv717x ; } && /sbin/modprobe --ignore-install em8300 && echo '' > /var/use_dxr3 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/modules0000644000175000017500000000032211141051776021150 0ustar benben# /etc/modules: force some kernel modules to be loaded at boot time. # # This file contains the names of kernel modules that should be loaded # at boot time, one per line. Lines beginning with "#" are ignored. geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/tvcard0000644000175000017500000000406211141051776020770 0ustar benben# # TV Card Options # # TV card model (AUTO for autodetection or look at the following urls) # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.bttv;filenode=-1;style=raw # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.cx88;filenode=-1;style=raw # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.saa7134;filenode=-1;style=raw TV_CARD=AUTO # TV tuner (AUTO for autodetection or look at the following url) # http://linuxtv.org/hg/v4l-dvb?cmd=file;file=linux/Documentation/video4linux/CARDLIST.tuner;filenode=-1;style=raw TV_TUNER=AUTO # TV Input Standard (ntsc/ntsc-m/ntsc-jp/pal/pal-bg/pal-dk/pal-i/pal-m/pal-n/ # pal-nc/pal-60/secam/secam-l/secam-dk) TVIN_STANDARD=pal # TV Channels # Syntax : CHAN="Channel Frequency:Channel Title" # Example: #CHAN="29:France 2" #CHAN="K08:Canal +" # TV Channels List # Available : us-bcast, us-cable, us-cable-hrc, japan-bcast, japan-cable, # europe-west, europe-east, italy, newzealand, australia, # ireland, france, china-bcast, southafrica, argentina, # australia-optus, russia CHANLIST=europe-west # Teletext language # Available: 0 (English) 1 (French), 2 (Swedish/Finnish/Hungarian), # 3 (Czech/Slovak), 4 (German), 5 (Portuguese/Spanish), # 6 (Italian), 8 (Polish), 9 (French), # 10 (Swedish/Finnish/Hungarian), 11 (Czech/Slovak), # 12 (German), 14 (Italian), 16 (English), 17 (French), # 18 (Swedish/Finnish/Hungarian), 19 (Turkish), 20 (German), # 21 (Portuguese/Spanish), 22 (Italian), # 29 (Serbian/Croatian/Slovenian {Latin}), # 32 (Serbian/Croatian {Cyrillic}), 33 (Russian, Bulgarian), # 34 (Estonian), 35 (Czech/Slovak), 36 (German), 37 (Ukrainian), # 38 (Lettish/Lithuanian), 51 (Turkish), 55 (Greek), 64 (English), # 65 (French) TELETEXT_LANG=0 # TV Video Settings TV_WIDTH=768 TV_HEIGHT=576 TV_BRIGHTNESS=0 TV_CONTRAST=0 TV_HUE=0 TV_SATURATION=0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/pvr0000644000175000017500000000160411141051776020313 0ustar benben# Below are the default GeeXboX input/encoding settings for the PVR cards # See MPlayer man pages for more details # Aspect ratio (0 for 1:1, 1 for 4:3, 2 for 16:9 and 3 for 2.21:1) PVR_ASPECT=1 # Encoding audio rate (32000, 44100 and 48000 Hz) PVR_AUDIO_RATE=48000 # MPEG audio layer encoding (1, 2, 3) PVR_AUDIO_LAYER=2 # Audio encoding bitrate in kbps PVR_AUDIO_BITRATE=384 # Audio encoding mode (stereo, joint_stereo, dual and mono) PVR_AUDIO_MODE=stereo # Average video bitrate encoding in Mbps PVR_VIDEO_BITRATE=6 # Peak video bitrate encoding in Mbps PVR_VIDEO_PEAK_BITRATE=9 # Video encoding mode (vbr, cbr) PVR_VIDEO_MODE=vbr # MPEG encoding format # ps: MPEG-2 Program Stream (default) # ts: MPEG-2 Transport Stream # mpeg1: MPEG-1 System Stream # vcd: Video CD compatible stream # svcd: Super Video CD compatible stream # dvd: DVD compatible stream PVR_VIDEO_FORMAT=ps geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/audio0000644000175000017500000000200111141052000020552 0ustar benben# Soundcard Configuration File # Soundcard's ID (0 for first card, 1 for second, ...) ALSA_CARD="0" # Output mode (SPDIF or analog) SOUNDCARD_MODE="analog" # SPDIF passthrough mode (none, ac3, dts or ac3dts) # (Note: in analog mode this option is ignored) # none : software audio decoding for all streams # ac3 : enable hardware passthrough for AC-3 streams only # dts : enable hardware passthrough for DTS streams only # ac3dts : enable hardware passthrough for both AC-3 and DTS streams SPDIF_PT_MODE="none" # IEC958 Playback AC97-SPSA Mode: # 0. PCM1 # 1. PCM2,PCM1 (rear) # 2. Centre and LFE # 3. PCM3,Modem,Dedicated S/PDIF # For SPDIF most users will want 0, but some users may need 3. AC97_SPSA="0" # Playback channels # 2 - Stereo # 4 - Surround # 6 - Full 5.1 # note: in SPDIF and hardware AC3 decoder mode this option is ignored. CHANNELS="2" # SB Live/Audigy Analog/Digital Output Mode: # 0: Suitable for some older SB Live! cards # 1: Suitable for newer SB Live! and all Audigy cards SBL_AUDIGY="1" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/0000755000175000017500000000000011141052024020636 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/system.d/0000755000175000017500000000000011141052026022406 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/system.d/xorg-server.conf0000644000175000017500000000075411141052006025544 0ustar benben geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/system.d/hal.conf0000644000175000017500000000424511141052026024026 0ustar benben geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/event.d/0000755000175000017500000000000011141052024022201 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/session.d/0000755000175000017500000000000011141052024022543 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/session.conf0000644000175000017500000000474511141052026023204 0ustar benben session unix:tmpdir=/var/run/dbus session.d session-local.conf contexts/dbus_contexts 1000000000 1000000000 1000000000 120000 240000 100000 10000 100000 10000 50000 50000 50000 300000 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dbus-1/system.conf0000644000175000017500000000527311141052026023042 0ustar benben system root /usr/lib/dbus-1.0/dbus-daemon-launch-helper /var/run/dbus/pid EXTERNAL unix:path=/var/run/dbus/system_bus_socket system.d system-local.conf contexts/dbus_contexts geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/0000755000175000017500000000000011141052014020473 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_animax0000644000175000017500000000267011141052014023236 0ustar benbenbegin prog = mplayer button = TV_DOWN config = run /usr/bin/tvswitch end begin prog = mplayer button = MENU_DOWN config = pause end begin prog = mplayer button = STOP_DOWN config = quit end begin prog = mplayer button = MUTE_DOWN config = mute end begin prog = mplayer button = 1_DOWN repeat = 1 config = seek -120 end begin prog = mplayer button = 3_DOWN repeat = 1 config = seek 120 end begin prog = mplayer button = REWIND_DOWN repeat = 1 config = seek -10 end begin prog = mplayer button = FORWARD_DOWN repeat = 1 config = seek 10 end begin prog = mplayer button = VOLUME_DOWN_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VOLUME_UP_DOWN repeat = 1 config = volume 1 end begin prog = mplayer button = BLUE_BUTTON_DOWN config = osd end begin prog = mplayer button = POWER_DOWN config = quit 166 end begin prog = mplayer button = RED_BUTTON_DOWN config = menu toggle end begin prog = mplayer button = GREEN_BUTTON_DOWN config = set_menu open_file end begin prog = mplayer button = LEFT_MOUSE_BUTTON_TOUCH_DOWN config = menu ok end begin prog = mplayer button = MOUSE_S repeat = 0 config = menu cancel end begin prog = mplayer button = LEFT_MOUSE_BUTTON_DOWN config = menu up end begin prog = mplayer button = RIGHT_MOUSE_BUTTON_DOWN config = menu down end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_askey0000644000175000017500000000340511141052014023072 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 5 config = pause end begin prog = mplayer button = FREEZE config = pause end begin prog = mplayer button = 8 repeat = 1 config = seek -120 end begin prog = mplayer button = 2 repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = seek 10 end begin prog = mplayer button = 1 repeat = 1 config = volume 1 end begin prog = mplayer button = 7 repeat = 1 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 1 config = volume 1 end begin prog = mplayer button = VOL_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VIDEO config = osd end begin prog = mplayer button = PREVIEW config = menu toggle end begin prog = mplayer button = PLAY config = set_menu open_file end begin prog = mplayer button = RECORD config = menu ok end begin prog = mplayer button = STOP config = menu cancel end begin prog = mplayer button = CH_UP repeat = 2 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 2 config = menu down end begin prog = mplayer button = FINE_UP(PLUS) repeat = 2 config = menu down end begin prog = mplayer button = FINE_DOWN(MINUS) repeat = 2 config = menu up end begin prog = mplayer button = 3 config = audio_delay 0.1 end begin prog = mplayer button = 9 config = audio_delay -0.1 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = ZOOM config = vo_fullscreen end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_atiusb0000644000175000017500000001127511141052014023251 0ustar benbenbegin prog = mplayer button = launch_setup config = run /usr/bin/tvswitch end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -120 end begin prog = mplayer button = fast_forward repeat = 3 config = seek 120 end begin prog = mplayer button = c repeat = 3 config = seek -10 end begin prog = mplayer button = d repeat = 3 config = seek 10 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = chan-down repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = chan-up repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = tv_on_demand config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = dvd-root_menu config = menu toggle end begin prog = mplayer button = web config = set_menu open_file end begin prog = mplayer button = dvd config = menu hide\nrun play_dvd\n end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = drag config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = cursor-right config = menu ok end begin prog = mplayer button = mouse-right config = menu ok end begin prog = mplayer button = cursor-left config = menu cancel end begin prog = mplayer button = mouse-left config = menu cancel end begin prog = mplayer button = cursor-up repeat = 2 config = menu up end begin prog = mplayer button = mouse-up repeat = 6 config = menu up end begin prog = mplayer button = cursor-down repeat = 2 config = menu down end begin prog = mplayer button = mouse-down repeat = 6 config = menu down end begin prog = mplayer button = a repeat = 3 config = sub_pos -1 end begin prog = mplayer button = b repeat = 3 config = sub_pos +1 end begin prog = mplayer button = e repeat = 3 config = sub_select end begin prog = mplayer button = f repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = record config = record end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = max_window config = set_menu aspect end begin prog = mplayer button = media_library config = set_menu jump_to end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = irpty button = mouse-button_left config = set_menu properties end begin prog = fbi button = power config = q end begin prog = fbi button = cursor-right config = n end begin prog = fbi button = mouse-right config = n end begin prog = fbi button = fast_forward config = n end begin prog = fbi button = cursor-left config = b end begin prog = fbi button = mouse-left config = b end begin prog = fbi button = rewind config = b end begin prog = fbi button = cursor-up config = + end begin prog = fbi button = mouse-up config = + end begin prog = fbi button = cursor-down config = - end begin prog = fbi button = mouse-down config = - end begin prog = fbi button = max_window config = a end begin prog = fbi button = dvd-root_menu config = h end begin prog = fbi button = tv_on_demand config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_atiusb20000644000175000017500000000713311141052014023331 0ustar benbenbegin prog = mplayer button = hand config = run /usr/bin/tvswitch end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -120 end begin prog = mplayer button = ffwd repeat = 3 config = seek 120 end begin prog = mplayer button = c repeat = 3 config = seek -10 end begin prog = mplayer button = d repeat = 3 config = seek 10 end begin prog = mplayer button = chan-down config = seek -10 end begin prog = mplayer button = chan-up config = seek 10 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = info config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = timer config = menu toggle end begin prog = mplayer button = ati config = set_menu open_file end begin prog = mplayer button = dvd config = menu hide\nrun play_dvd\n end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = check config = sub_visibility end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = cursor-right config = menu ok end begin prog = mplayer button = mouse-right config = menu ok end begin prog = mplayer button = cursor-left config = menu cancel end begin prog = mplayer button = mouse-left config = menu cancel end begin prog = mplayer button = cursor-up repeat = 2 config = menu up end begin prog = mplayer button = mouse-up repeat = 6 config = menu up end begin prog = mplayer button = cursor-down repeat = 2 config = menu down end begin prog = mplayer button = mouse-down repeat = 6 config = menu down end begin prog = mplayer button = e repeat = 3 config = sub_pos -1 end begin prog = mplayer button = f repeat = 3 config = sub_pos +1 end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = max_window config = set_menu aspect end begin prog = mplayer button = a config = set_menu jump_to end begin prog = mplayer button = b config = set_menu audio_sel end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = fbi button = power config = q end begin prog = fbi button = cursor-right config = n end begin prog = fbi button = mouse-right config = n end begin prog = fbi button = fast_forward config = n end begin prog = fbi button = cursor-left config = b end begin prog = fbi button = mouse-left config = b end begin prog = fbi button = rewind config = b end begin prog = fbi button = cursor-up config = + end begin prog = fbi button = mouse-up config = + end begin prog = fbi button = cursor-down config = - end begin prog = fbi button = mouse-down config = - end begin prog = fbi button = max_window config = a end begin prog = fbi button = dvd-root_menu config = h end begin prog = fbi button = tv_on_demand config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_avermedia0000644000175000017500000000325211141052014023713 0ustar benbenbegin prog = mplayer button = DISPLAY config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = CH_DOWN repeat = 3 config = seek -60 end begin prog = mplayer button = CH_UP repeat = 3 config = seek 60 end begin prog = mplayer button = VOL_DOWN repeat = 2 config = volume -2 end begin prog = mplayer button = VOL_UP repeat = 2 config = volume 2 end begin prog = mplayer button = TELETEXT config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = TV/FM config = menu toggle end begin prog = mplayer button = 0 config = set_menu open_file end begin prog = mplayer button = VIDEO config = menu hide\nrun play_dvd\n end begin prog = mplayer button = TV/FM config = set_menu tv_settings end begin prog = mplayer button = PREVIEW config = set_menu view_img end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = 6 config = menu ok end begin prog = mplayer button = 4 config = menu cancel end begin prog = mplayer button = 2 repeat = 4 config = menu up end begin prog = mplayer button = 8 repeat = 4 config = menu down end begin prog = mplayer button = GREEN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = RED repeat = 3 config = sub_pos +1 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = FULLSCREEN config = set_menu aspect end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_cinergy14000000644000175000017500000000656411141052014023734 0ustar benbenbegin prog = mplayer button = KEY_GREEN config = run /usr/bin/tvswitch end begin prog = mplayer button = KEY_PAUSE config = pause end begin prog = mplayer button = KEY_PREVIOUS repeat = 3 config = seek -120 end begin prog = mplayer button = KEY_NEXT repeat = 3 config = seek 120 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = KEY_SELECT config = osd end begin prog = mplayer button = KEY_POWER config = quit 166 end begin prog = mplayer button = KEY_INFO config = menu toggle end begin prog = mplayer button = KEY_TEXT config = set_menu open_file end begin prog = mplayer button = KEY_RED config = menu hide\nrun play_dvd\n end begin prog = mplayer button = KEY_EPG config = set_menu view_img end begin prog = mplayer button = KEY_PLAY config = seek 0 end begin prog = mplayer button = KEY_OK config = menu ok end begin prog = mplayer button = KEY_RIGHT config = menu ok end begin prog = mplayer button = KEY_LEFT config = menu cancel end begin prog = mplayer button = KEY_UP repeat = 2 config = menu up end begin prog = mplayer button = KEY_DOWN repeat = 2 config = menu down end begin prog = mplayer button = KEY_BLUE repeat = 3 config = sub_select end begin prog = mplayer button = KEY_YELLOW repeat = 3 config = switch_audio end begin prog = mplayer button = KEY_MUTE config = mute end begin prog = mplayer button = KEY_RECORD config = record end begin prog = mplayer button = KEY_STOP config = quit end begin prog = mplayer button = KEY_VIDEO config = set_menu aspect end begin prog = mplayer button = KEY_REFRESH config = set_menu jump_to end begin prog = mplayer button = KEY_8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = KEY_2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = KEY_4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = KEY_6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = KEY_0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = KEY_5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = KEY_7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = KEY_9 repeat = 2 config = pt_step +1 end begin prog = irpty button = KEY_3 config = p end begin prog = irpty button = KEY_1 config = l end begin prog = fbi button = KEY_POWER config = q end begin prog = fbi button = KEY_RIGHT config = n end begin prog = fbi button = KEY_NEXT config = n end begin prog = fbi button = KEY_LEFT config = b end begin prog = fbi button = KEY_PREVIOUS config = b end begin prog = fbi button = KEY_UP config = + end begin prog = fbi button = KEY_DOWN config = - end begin prog = fbi button = KEY_PLAY config = p end begin prog = fbi button = KEY_PAUSE config = p end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_creative0000644000175000017500000000240711141052014023561 0ustar benbenbegin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = rrev repeat = 1 config = seek -120 end begin prog = mplayer button = ffwd repeat = 1 config = seek 120 end begin prog = mplayer button = last repeat = 1 config = seek -10 end begin prog = mplayer button = next repeat = 1 config = seek 10 end begin prog = mplayer button = vol- repeat = 1 config = volume -1 end begin prog = mplayer button = vol+ repeat = 1 config = volume 1 end begin prog = mplayer button = 1 config = osd end begin prog = mplayer button = shift config = quit 166 end begin prog = mplayer button = start config = menu toggle end begin prog = mplayer button = eject config = set_menu open_file end begin prog = mplayer button = 6 config = menu ok end begin prog = mplayer button = 4 config = menu cancel end begin prog = mplayer button = 2 repeat = 1 config = menu up end begin prog = mplayer button = 8 repeat = 1 config = menu down end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_D-100000644000175000017500000000550011141052014022355 0ustar benbenbegin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = EJECT config = run /usr/bin/eject -s /dev/cdrom end begin prog = mplayer button = ANGLE config = run /usr/bin/tvswitch end begin prog = mplayer button = INDEX config = set_menu jump_to end begin prog = mplayer button = A-B config = osd end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 1 config = seek -10 end begin prog = mplayer button = 2 repeat = 1 config = seek 10 end begin prog = mplayer button = 4 repeat = 3 config = seek -60 end begin prog = mplayer button = 5 repeat = 3 config = seek 60 end begin prog = mplayer button = 7 repeat = 1 config = sub_delay -0.2 end begin prog = mplayer button = 8 repeat = 1 config = sub_delay +0.2 end begin prog = mplayer button = 3 repeat = 1 config = brightness 1 end begin prog = mplayer button = 6 repeat = 1 config = brightness -1 end begin prog = mplayer button = 0 repeat = 1 config = sub_visibility end begin prog = mplayer button = MENU config = set_menu main end begin prog = mplayer button = TITLE config = set_menu open_file end begin prog = mplayer button = SUBTITLE config = set_menu sub_sel end begin prog = mplayer button = AUDIO config = set_menu audio_sel end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = ACTIVE_MENU repeat = 0 config = menu toggle end begin prog = mplayer button = EXIT config = menu cancel end begin prog = mplayer button = LEFT_RW repeat = 2 config = volume -1 end begin prog = mplayer button = RIGHT_FW repeat = 2 config = volume 1 end begin prog = mplayer button = UP_FW repeat = 3 config = menu up end begin prog = mplayer button = DOWN_RW repeat = 3 config = menu down end begin prog = mplayer button = OK_PLAY config = menu ok end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = SKIP_BACK repeat = 2 config = pt_step -1 end begin prog = mplayer button = SKIP_FORWARD repeat = 2 config = pt_step 1 end begin prog = fbi button = EXIT config = q end begin prog = fbi button = RIGHT_FW config = n end begin prog = fbi button = LEFT_RW config = b end begin prog = fbi button = UP_FW config = + end begin prog = fbi button = DOWN_RW config = - end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = ANGLE config = h end begin prog = fbi button = INDEX config = i end begin prog = fbi button = A-B config = v end begin prog = fbi button = MUTE config = a end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_digimatrix0000644000175000017500000001030611141052014024115 0ustar benbenbegin prog = mplayer button = 0 config = dvdnav 5 end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = pre repeat = 2 config = seek -120 end begin prog = mplayer button = next repeat = 2 config = seek 120 end begin prog = mplayer button = step- repeat = 2 config = seek -10 end begin prog = mplayer button = step+ repeat = 2 config = seek 10 end begin prog = mplayer button = ch+ repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = ch- repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = vol- repeat = 2 config = volume -1 end begin prog = mplayer button = vol+ repeat = 2 config = volume 1 end begin prog = mplayer button = ui_on_off config = osd end begin prog = mplayer button = os_start config = quit 166 end begin prog = mplayer button = rec config = set_menu recorder end begin prog = mplayer button = menu config = menu toggle end begin prog = mplayer button = dvd_vcd config = menu hide\nplay_dvd\nplay_vcd end begin prog = mplayer button = music config = menu hide\nplay_cdda end begin prog = mplayer button = photo config = set_menu open_file end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = enter config = menu ok end begin prog = mplayer button = right config = menu ok end begin prog = mplayer button = left config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = 1 repeat = 2 config = set_menu options end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 3 repeat = 2 config = sub_select end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 7 repeat = 2 config = set_menu controls end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 9 repeat = 2 config = set_menu properties end begin prog = mplayer button = subtitle repeat = 2 config = sub_visibility end begin prog = mplayer button = dvd_audio repeat = 2 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = ui_size config = set_menu aspect end begin prog = mplayer button = home config = set_menu jump_to end begin prog = irpty button = 1 repeat = 2 config = p end begin prog = irpty button = 4 repeat = 2 config = l end begin prog = irpty button = back config = u end begin prog = fbi button = stop config = q end begin prog = fbi button = up config = u end begin prog = fbi button = down config = d end begin prog = fbi button = left config = < end begin prog = fbi button = right config = > end begin prog = fbi button = next config = n end begin prog = fbi button = step+ config = n end begin prog = fbi button = pre config = b end begin prog = fbi button = step- config = b end begin prog = fbi button = ch+ config = + end begin prog = fbi button = vol+ config = + end begin prog = fbi button = ch- config = - end begin prog = fbi button = vol- config = - end begin prog = fbi button = enter config = a end begin prog = fbi button = ui_size config = a end begin prog = fbi button = menu config = h end begin prog = fbi button = ui_on_off config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = subtitle config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_digimatrixmk20000644000175000017500000000734011141052014024533 0ustar benbenbegin prog = mplayer button = 0 config = set_menu controls end begin prog = mplayer button = tv_dvr config = set_menu tv_settings end begin prog = mplayer button = dvd_menu config = menu hide\nrun play_dvd\n end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rew repeat = 3 config = seek -120 end begin prog = mplayer button = fwd repeat = 3 config = seek 120 end begin prog = mplayer button = step- repeat = 3 config = seek -10 end begin prog = mplayer button = step+ repeat = 3 config = seek 10 end begin prog = mplayer button = ch+ repeat = 3 config = tv_step_channel +1 end begin prog = mplayer button = ch- repeat = 3 config = tv_step_channel -1 end begin prog = mplayer button = vol- repeat = 2 config = volume -1 end begin prog = mplayer button = vol+ repeat = 2 config = volume 1 end begin prog = mplayer button = ui_size config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = back_fwd config = menu toggle end begin prog = mplayer button = fm config = set_menu open_file end begin prog = mplayer button = music config = play_cdda end begin prog = mplayer button = pictures config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = right config = menu ok end begin prog = mplayer button = left config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = 1 repeat = 3 config = sub_pos -1 end begin prog = mplayer button = 4 repeat = 3 config = sub_pos +1 end begin prog = mplayer button = 2 repeat = 3 config = sub_select +1 end begin prog = mplayer button = 5 repeat = 3 config = sub_select end begin prog = mplayer button = 8 repeat = 3 config = sub_select -1 end begin prog = mplayer button = 3 repeat = 3 config = vobsub_lang +1 end begin prog = mplayer button = 6 repeat = 3 config = vobsub_lang -1 end begin prog = mplayer button = 7 repeat = 3 config = panscan -0.1 end begin prog = mplayer button = 9 repeat = 3 config = panscan +0.1 end begin prog = mplayer button = pc repeat = 3 config = sub_visibility end begin prog = mplayer button = repeat repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = ui_size config = set_menu aspect end begin prog = mplayer button = video config = play_vcd end begin prog = irpty button = step- config = p end begin prog = irpty button = step+ config = l end begin prog = fbi button = stop config = q end begin prog = fbi button = right config = n end begin prog = fbi button = step+ config = n end begin prog = fbi button = left config = b end begin prog = fbi button = step- config = b end begin prog = fbi button = up config = + end begin prog = fbi button = down config = - end begin prog = fbi button = ui_size config = a end begin prog = fbi button = menu config = h end begin prog = fbi button = tv_dvr config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = 0 config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_dvico0000644000175000017500000001005611141052014023062 0ustar benben # --------------------------------- # Lirc Key Mapping for standard DVICO remote # # Keys available to MAP # +---------------------------+ # | Power PC Off | # | 1 2 3 | # | 4 5 6 | # | 7 8 9 | # | Camera 0 Record | # | | # | CHUP | # | VOLDOWN PLAYPAUSE VOLUP| # | CHDOWN | # | | # | REW STOP FF | # | | # | FOLDER ATVDTV DVHS | # | MENU ASPECT ZOOM | # | | # |EPG MUTE BACK HD | # |RED GREEN YELLOW BLUE | # +---------------------------+ # # Command Mapping # +---------------------------+ # | PC Off | # | frame bk MNUUP frame fwd| # | MNULEFT OK MNURIGHT | # | bk 30s MNUDOWN fw 30s | # | OSD | # | | # | | # | VOLDOWN PLAYPAUSE VOLUP| # | | # | | # | SLOW NORMAL FAST | # | | # | OPEN SUBTITLE SUBSELCT| # | MENU ASPECT | # | | # |MNUJMP MUTE MNUCNCL AUDSL | # |QUIT | # +---------------------------+ # # begin prog = mplayer button = 1 config = seek -1 end begin prog = mplayer button = pcoff repeat = 2 config = quit 166 end begin prog = mplayer button = 2 config = menu up end begin prog = mplayer button = 3 config = frame_step end begin prog = mplayer button = 4 config = menu cancel end begin prog = mplayer button = 5 config = menu ok end begin prog = mplayer button = 6 config = menu ok end begin prog = mplayer button = 7 config = seek 30 end begin prog = mplayer button = 8 config = menu down end begin prog = mplayer button = 9 config = seek -30 end begin prog = mplayer button = playpause config = pause end begin prog = mplayer button = rew config = speed_incr -0.1 end begin prog = mplayer button = stop config = speed_set 1 end begin prog = mplayer button = ff config = speed_incr 0.1 end begin prog = mplayer button = voldown repeat = 2 config = volume -1 end begin prog = mplayer button = volup repeat = 2 config = volume 1 end begin prog = mplayer button = camera config = osd end begin prog = mplayer button = folder config = set_menu open_file end begin prog = mplayer button = atvdtv config = sub_visibility end begin prog = mplayer button = dvhs config = sub_select end begin prog = mplayer button = menu config = menu toggle end begin prog = mplayer button = aspect config = set_menu aspect end begin prog = mplayer button = epg config = set_menu jump_to end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = back config = menu cancel end begin prog = mplayer button = hd config = set_menu audio_sel end begin prog = mplayer button = red config = quit end begin prog = mplayer button = green config = set_menu audio_sel end begin prog = mplayer button = yellow config = set_menu audio_sel end begin prog = mplayer button = blue config = set_menu audio_sel end begin prog = irpty button = 3 config = p end begin prog = irpty button = c config = l end begin prog = fbi button = power config = q end begin prog = fbi button = 6 config = n end begin prog = fbi button = 4 config = b end begin prog = fbi button = 2 config = + end begin prog = fbi button = 8 config = - end begin prog = fbi button = zoom config = a end begin prog = fbi button = folder config = h end begin prog = fbi button = menu config = i end begin prog = fbi button = playpause config = p end begin prog = fbi button = launch_setup config = hd end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_flytv-prime0000644000175000017500000000341711141052014024237 0ustar benbenbegin prog = mplayer button = ZOOM config = run /usr/bin/tvswitch end begin prog = mplayer button = 7 config = pause end begin prog = mplayer button = AGAIN repeat = 3 config = seek -120 end begin prog = mplayer button = ENTER repeat = 3 config = seek 120 end begin prog = mplayer button = VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = TUNER config = menu toggle end begin prog = mplayer button = 1 config = seek 0 end begin prog = mplayer button = VIDEO config = menu ok end begin prog = mplayer button = MODE config = menu cancel end begin prog = mplayer button = AUDIO repeat = 2 config = menu up end begin prog = mplayer button = LANGUAGE repeat = 2 config = menu down end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 9 config = record end begin prog = mplayer button = 3 config = quit end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_hauppauge0000644000175000017500000000234411141052014023736 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 5 config = pause end begin prog = mplayer button = 8 repeat = 1 config = seek -120 end begin prog = mplayer button = 2 repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = seek 10 end begin prog = mplayer button = 1 repeat = 1 config = volume 1 end begin prog = mplayer button = 7 repeat = 1 config = volume -1 end begin prog = mplayer button = FULL_SCREEN config = osd end begin prog = mplayer button = MINIMIZE config = menu toggle end begin prog = mplayer button = SOURCE config = set_menu open_file end begin prog = mplayer button = VOL+ config = menu ok end begin prog = mplayer button = VOL- config = menu cancel end begin prog = mplayer button = CH+ repeat = 2 config = menu up end begin prog = mplayer button = CH- repeat = 2 config = menu down end begin prog = mplayer button = 3 config = audio_delay 0.1 end begin prog = mplayer button = 9 config = audio_delay -0.1 end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_imonknob0000644000175000017500000001204411141052014023571 0ustar benbenbegin prog = mplayer button = MyTV config = run /usr/bin/tvswitch end begin prog = mplayer button = AppExit config = run /usr/bin/eject -s /dev/cdrom end begin prog = mplayer button = Eject config = run /usr/bin/eject -s -T /dev/cdrom end begin prog = mplayer button = Pause config = pause end begin prog = mplayer button = Rewind repeat = 3 config = seek -120 end begin prog = mplayer button = FastForward repeat = 3 config = seek 120 end begin prog = mplayer button = Backspace repeat = 3 config = seek -10 end begin prog = mplayer button = SelectSpace repeat = 3 config = seek 10 end begin prog = mplayer button = VolDown repeat = 2 config = volume -1 end begin prog = mplayer button = VolUp repeat = 2 config = volume 1 end begin prog = mplayer button = KnobVolDown repeat = 2 config = volume -1 end begin prog = mplayer button = KnobVolUp repeat = 2 config = volume 1 end begin prog = mplayer button = ChDown repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = ChUp repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = Bookmark config = osd end begin prog = mplayer button = Power config = quit 166 end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = Open config = set_menu open_file end begin prog = mplayer button = MyDVD config = menu hide\nrun play_dvd\n end begin prog = mplayer button = Bookmark config = set_menu tv_settings end begin prog = mplayer button = MyPhoto config = set_menu view_img end begin prog = mplayer button = MyMusic config = play_cdda end begin prog = mplayer button = MyMovie config = play_vcd end begin prog = mplayer button = Play config = seek 0 end begin prog = mplayer button = Enter config = menu ok end begin prog = mplayer button = Esc config = menu cancel end begin prog = mplayer button = CursorUp repeat = 1 config = menu up end begin prog = mplayer button = CursorDown repeat = 1 config = menu down end begin prog = mplayer button = WindowsKey repeat = 1 config = menu up end begin prog = mplayer button = MouseMenu repeat = 1 config = menu down end begin prog = mplayer button = MouseLeftClick repeat = 3 config = sub_pos -1 end begin prog = mplayer button = MouseRightClick repeat = 3 config = sub_pos +1 end begin prog = mplayer button = Language repeat = 3 config = sub_select end begin prog = mplayer button = TaskSwitcher repeat = 3 config = switch_audio end begin prog = mplayer button = AppLauncher config = u end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Record config = record end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = AspectRatio config = set_menu aspect end begin prog = mplayer button = MultiMon config = set_menu jump_to end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = d config = p end begin prog = irpty button = c config = l end begin prog = irpty button = mouse-button_left config = set_menu properties end begin prog = fbi button = Power config = q end begin prog = fbi button = CursorRight config = n end begin prog = fbi button = MouseRight config = n end begin prog = fbi button = FastForward config = n end begin prog = fbi button = CursorLeft config = b end begin prog = fbi button = MouseLeft config = b end begin prog = fbi button = Rewind config = b end begin prog = fbi button = CursorUp config = + end begin prog = fbi button = WindowsKey config = + end begin prog = fbi button = CursorDown config = - end begin prog = fbi button = MouseMenu config = - end begin prog = fbi button = FullScreen config = a end begin prog = fbi button = Menu config = h end begin prog = fbi button = MyTV config = i end begin prog = fbi button = Play config = p end begin prog = fbi button = Pause config = p end begin prog = fbi button = launch_setup config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_leadtek0000644000175000017500000000245211141052014023370 0ustar benbenbegin prog = mplayer button = TV/FM config = run /usr/bin/tvswitch end begin prog = mplayer button = 9 config = pause end begin prog = mplayer button = 8 config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 6 config = seek -120 end begin prog = mplayer button = 3 repeat = 6 config = seek 120 end begin prog = mplayer button = 4 repeat = 6 config = seek -10 end begin prog = mplayer button = 6 repeat = 6 config = seek 10 end begin prog = mplayer button = FINE_DOWN repeat = 6 config = volume -1 end begin prog = mplayer button = FINE_UP repeat = 6 config = volume 1 end begin prog = mplayer button = SCAN config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = ENTER config = menu toggle end begin prog = mplayer button = FULLSCREEN config = set_menu open_file end begin prog = mplayer button = VOL_UP config = menu ok end begin prog = mplayer button = VOL_DOWN config = menu cancel end begin prog = mplayer button = CH_UP repeat = 6 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 6 config = menu down end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_leadtek-pvr20000000644000175000017500000000575511141052014024510 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = FM config = set_menu radio_settings end begin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = SLEEP config = set_menu view_sleeptimer end begin prog = mplayer button = REPLAY config = seek -120 end begin prog = mplayer button = SKIP config = seek 120 end begin prog = mplayer button = BACK config = seek -10 end begin prog = mplayer button = FORWARD config = seek 10 end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = MENU config = menu toggle end begin prog = mplayer button = DVD config = menu hide\nrun play_dvd\n end begin prog = mplayer button = ENTER config = menu ok end begin prog = mplayer button = VOL_UP repeat = 2 config = menu ok end begin prog = mplayer button = VOL_DOWN repeat = 2 config = menu cancel end begin prog = mplayer button = CH_UP repeat = 2 config = menu up end begin prog = mplayer button = CH_DOWN repeat = 2 config = menu down end begin prog = mplayer button = OSD config = sub_select end begin prog = mplayer button = LANGUAGE config = switch_audio end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = REC config = record end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = FULLSCREEN config = set_menu aspect end begin prog = mplayer button = DISPLAY config = osd end begin prog = mplayer button = 8 config = dvdnav 2 end begin prog = mplayer button = 2 config = dvdnav 1 end begin prog = mplayer button = 4 config = dvdnav 3 end begin prog = mplayer button = 6 config = dvdnav 4 end begin prog = mplayer button = 0 config = dvdnav 5 end begin prog = mplayer button = 5 config = dvdnav 6 end begin prog = mplayer button = 1 config = sub_delay -0.1 end begin prog = mplayer button = 3 config = sub_delay +0.1 end begin prog = mplayer button = 7 config = pt_step -1 end begin prog = mplayer button = 9 config = pt_step +1 end begin prog = irpty button = RED config = p end begin prog = irpty button = GREEN config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = VOL_UP config = n end begin prog = fbi button = SKIP config = n end begin prog = fbi button = VOL_DOWN config = b end begin prog = fbi button = REPLAY config = b end begin prog = fbi button = CH_UP config = + end begin prog = fbi button = CH_DOWN config = - end begin prog = fbi button = FULLSCREEN config = a end begin prog = fbi button = DVD config = h end begin prog = fbi button = TV config = i end begin prog = fbi button = PLAY config = p end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_LG0000644000175000017500000000313511141052014022260 0ustar benbenbegin prog = mplayer button = red repeat = 0 config = seek -60 end begin prog = mplayer button = green repeat = 0 config = seek 60 end begin prog = mplayer button = ok repeat = 0 config = PAUSE end begin prog = mplayer button = mute repeat = 0 config = quit end begin prog = mplayer button = blue repeat = 1 config = VOLUME +1 end begin prog = mplayer button = yellow repeat = 1 config = VOLUME -1 end begin prog = mplayer button = vol+ repeat = 0 config = menu ok end begin prog = mplayer button = vol- repeat = 0 config = menu cancel end begin prog = mplayer button = pr+ repeat = 0 config = menu up end begin prog = mplayer button = pr- repeat = 0 config = menu down end begin prog = mplayer button = sleep repeat = 1 config = menu toggle end begin prog = mplayer button = time repeat = 1 config = osd end begin prog = mplayer button = tv config = run /usr/bin/tvswitch end begin prog = irpty button = psm config = p: end begin prog = irpty button = picture config = l: end begin prog = fbi button = ok config = p end begin prog = fbi button = vol+ config = n end begin prog = fbi button = vol- config = b end begin prog = fbi button = mute config = q end begin prog = fbi button = sleep config = v end begin prog = fbi button = pr+ config = + end begin prog = fbi button = pr- config = - end begin prog = fbi button = tv config = a end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_logitech0000644000175000017500000000245311141052014023556 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = 1 repeat = 1 config = seek -120 end begin prog = mplayer button = 3 repeat = 1 config = seek 120 end begin prog = mplayer button = SEEK- repeat = 1 config = seek -10 end begin prog = mplayer button = SEEK+ repeat = 1 config = seek 10 end begin prog = mplayer button = VOL- repeat = 1 config = volume -1 end begin prog = mplayer button = VOL+ repeat = 1 config = volume 1 end begin prog = mplayer button = HELP config = osd end begin prog = mplayer button = CLOSE config = quit 166 end begin prog = mplayer button = ENTER config = menu toggle end begin prog = mplayer button = GDE config = set_menu open_file end begin prog = mplayer button = BUTTONL_DOWN config = menu ok end begin prog = mplayer button = BUTTONR_DOWN config = menu cancel end begin prog = mplayer button = CH+ repeat = 1 config = menu up end begin prog = mplayer button = CH- repeat = 1 config = menu down end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_mceusb0000644000175000017500000000565111141052014023241 0ustar benbenbegin prog = mplayer button = TV config = run /usr/bin/tvswitch end begin prog = mplayer button = Blue config = run /usr/bin/tvswitch end begin prog = mplayer button = Pause config = pause end begin prog = mplayer button = Rewind repeat = 1 config = seek -10 end begin prog = mplayer button = Forward repeat = 1 config = seek 10 end begin prog = mplayer button = Replay repeat = 3 config = seek -120 end begin prog = mplayer button = Skip repeat = 3 config = seek 120 end begin prog = mplayer button = VolUp repeat = 1 config = volume 1 end begin prog = mplayer button = VolDown repeat = 1 config = volume -1 end begin prog = mplayer button = More config = osd end begin prog = mplayer button = Home config = menu toggle end begin prog = mplayer button = Play config = set_menu open_file end begin prog = mplayer button = Enter config = menu ok end begin prog = mplayer button = OK config = menu ok end begin prog = mplayer button = Right config = menu ok end begin prog = mplayer button = Left config = menu cancel end begin prog = mplayer button = Up repeat = 2 config = menu up end begin prog = mplayer button = Down repeat = 2 config = menu down end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = ChanUp repeat = 3 config = sub_pos +1 end begin prog = mplayer button = ChanDown repeat = 3 config = sub_pos -1 end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = DVD config = menu hide\nrun play_dvd\n end begin prog = mplayer button = Guide config = set_menu view_img end begin prog = mplayer button = LiveTV config = set_menu tv_settings end begin prog = mplayer button = Record config = record end begin prog = mplayer button = Two repeat = 2 config = dvdnav 1 end begin prog = mplayer button = Eight repeat = 2 config = dvdnav 2 end begin prog = mplayer button = Four repeat = 2 config = dvdnav 3 end begin prog = mplayer button = Six repeat = 2 config = dvdnav 4 end begin prog = mplayer button = Zero repeat = 2 config = dvdnav 5 end begin prog = mplayer button = Five repeat = 2 config = dvdnav 6 end begin prog = mplayer button = Power config = quit 166 end begin prog = irpty button = Star config = p end begin prog = irpty button = Hash config = l end begin prog = fbi button = Power config = q end begin prog = fbi button = Right config = n end begin prog = fbi button = Left config = b end begin prog = fbi button = Up config = + end begin prog = fbi button = Down config = - end begin prog = fbi button = Play config = p end begin prog = fbi button = Pause config = p end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_MCE-X100000644000175000017500000001005411141052014022726 0ustar benbenbegin prog = mplayer button = KEY_POWER config = quit 166 end begin prog = mplayer button = KEY_RED repeat = 3 config = sub_pos +1 end begin prog = mplayer button = KEY_YELLOW repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = KEY_GREEN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = KEY_TEXT repeat = 3 config = sub_select end begin prog = mplayer button = KEY_BLUE repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = KEY_BACK config = set_menu jump_to end begin prog = mplayer button = KEY_INFO config = osd end begin prog = mplayer button = KEY_UP repeat = 2 config = menu up end begin prog = mplayer button = KEY_LEFT config = menu cancel end begin prog = mplayer button = KEY_OK config = menu ok end begin prog = mplayer button = KEY_RIGHT config = menu ok end begin prog = mplayer button = KEY_DOWN repeat = 2 config = menu down end begin prog = mplayer button = KEY_TIMESHIFTING config = set_menu aspect end begin prog = mplayer button = KEY_DVDMENU config = menu hide\nrun play_dvd\n end begin prog = mplayer button = KEY_EPG config = set_menu open_file end begin prog = mplayer button = KEY_LIVETV config = run /usr/bin/tvswitch end begin prog = mplayer button = KEY_VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = KEY_WINDOWS config = menu toggle end begin prog = mplayer button = KEY_CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = KEY_MUTE config = mute end begin prog = mplayer button = KEY_PREVIOUS repeat = 3 config = seek -120 end begin prog = mplayer button = KEY_NEXT repeat = 3 config = seek 120 end begin prog = mplayer button = KEY_RECORD config = record end begin prog = mplayer button = KEY_PAUSE config = pause end begin prog = mplayer button = KEY_STOP config = quit end begin prog = mplayer button = KEY_REWIND repeat = 3 config = seek -10 end begin prog = mplayer button = KEY_PLAY config = seek 0 end begin prog = mplayer button = KEY_FASTFORWARD config = seek 10 end begin prog = irpty button = KEY_1 config = l end begin prog = mplayer button = KEY_2 repeat = 2 config = dvdnav 1 end begin prog = irpty button = KEY_3 config = p end begin prog = mplayer button = KEY_4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = KEY_5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = KEY_6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = KEY_7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = KEY_8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = KEY_9 repeat = 2 config = pt_step +1 end begin prog = mplayer button = KEY_* config = set_menu view_img end begin prog = mplayer button = KEY_0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = KEY_# config = set_menu tv_settings end begin prog = mplayer button = KEY_CLEAR config = run /usr/bin/eject -s /dev/cdrom end begin prog = mplayer button = KEY_ENTER repeat = 3 config = switch_audio end begin prog = fbi button = KEY_POWER config = q end begin prog = fbi button = KEY_RIGHT config = n end begin prog = fbi button = KEY_NEXT config = n end begin prog = fbi button = KEY_LEFT config = b end begin prog = fbi button = KEY_PREVIOUS config = b end begin prog = fbi button = KEY_UP config = + end begin prog = fbi button = KEY_DOWN config = - end begin prog = fbi button = KEY_PLAY config = p end begin prog = fbi button = KEY_PAUSE config = p end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_Medion-X100000644000175000017500000001065411141052014023543 0ustar benbenbegin prog = mplayer button = channel_list config = set_menu tv_chan end begin prog = mplayer button = vcr config = set_menu record end begin prog = mplayer button = radio config = set_menu radio_chan end begin prog = mplayer button = setup config = run /usr/bin/tvswitch end begin prog = mplayer button = tv config = set_menu tv_settings end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = rewind repeat = 3 config = seek -10 end begin prog = mplayer button = fast_forward repeat = 3 config = seek 10 end begin prog = mplayer button = previous repeat = 3 config = seek -120 end begin prog = mplayer button = next repeat = 3 config = seek 120 end begin prog = mplayer button = vol-down repeat = 2 config = volume -1 end begin prog = mplayer button = vol-up repeat = 2 config = volume 1 end begin prog = mplayer button = chan-down repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = chan-up repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = video_desktop config = osd end begin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = dvd_menu config = menu toggle end begin prog = mplayer button = dvd config = menu hide\nrun play_dvd\n end begin prog = mplayer button = photo config = set_menu view_img end begin prog = mplayer button = play config = seek 0 end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = right repeat = 2 config = menu ok end begin prog = mplayer button = left repeat = 2 config = menu cancel end begin prog = mplayer button = up repeat = 2 config = menu up end begin prog = mplayer button = down repeat = 2 config = menu down end begin prog = mplayer button = red repeat = 3 config = sub_pos -1 end begin prog = mplayer button = green config = set_menu view_sleeptimer end begin prog = mplayer button = blue repeat = 3 config = sub_pos +1 end begin prog = mplayer button = txt repeat = 3 config = sub_select end begin prog = mplayer button = dvd_audio repeat = 3 config = switch_audio end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = rec config = record end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = fullscreen config = set_menu aspect end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = 1 repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 3 repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step -1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step +1 end begin prog = irpty button = delete config = d end begin prog = irpty button = ch_search config = o end begin prog = irpty button = rename config = d end begin prog = irpty button = snapshot config = c end begin prog = irpty button = acquire_image config = p end begin prog = irpty button = edit_image config = u end begin prog = fbi button = power config = q end begin prog = fbi button = right config = n end begin prog = fbi button = next config = n end begin prog = fbi button = left config = b end begin prog = fbi button = previous config = b end begin prog = fbi button = up config = + end begin prog = fbi button = down config = - end begin prog = fbi button = fullscreen config = a end begin prog = fbi button = dvd_menu config = h end begin prog = fbi button = tv config = i end begin prog = fbi button = play config = p end begin prog = fbi button = pause config = p end begin prog = fbi button = setup config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_nova-s-plus0000644000175000017500000001006411141052014024141 0ustar benbenbegin prog = mplayer button = KEY_TV config = set_menu tv_settings end begin prog = mplayer button = KEY_PAUSE config = pause end begin prog = mplayer button = KEY_REWIND repeat = 3 config = seek -10 end begin prog = mplayer button = KEY_FORWARD repeat = 3 config = seek 10 end begin prog = mplayer button = KEY_PREVIOUS repeat = 3 config = seek -120 end begin prog = mplayer button = KEY_NEXT repeat = 3 config = seek 120 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 2 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 2 config = volume 1 end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 2 config = tv_step_channel -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 2 config = tv_step_channel +1 end begin prog = mplayer button = KEY_GUIDE config = osd end begin prog = mplayer button = KEY_POWER config = quit 166 end begin prog = mplayer button = KEY_MENU config = menu toggle end begin prog = mplayer button = KEY_GO config = set_menu open_file end begin prog = irpty button = KEY_RADIO config = p end begin prog = irpty button = KEY_TEXT config = l end begin prog = mplayer button = KEY_PLAY config = seek 0 end begin prog = mplayer button = KEY_OK config = menu ok end begin prog = mplayer button = KEY_RIGHT config = menu ok end begin prog = mplayer button = KEY_LEFT config = menu cancel end begin prog = mplayer button = KEY_UP repeat = 2 config = menu up end begin prog = mplayer button = KEY_DOWN repeat = 2 config = menu down end begin prog = mplayer button = KEY_GREEN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = KEY_YELLOW repeat = 3 config = sub_pos +1 end begin prog = mplayer button = KEY_BLUE repeat = 2 config = sub_delay +0.1 end begin prog = mplayer button = KEY_RED repeat = 2 config = sub_delay -0.1 end begin prog = mplayer button = 7 repeat = 2 config = pt_step +1 end begin prog = mplayer button = 9 repeat = 2 config = pt_step -1 end begin prog = mplayer button = KEY_SUB repeat = 3 config = sub_select end begin prog = mplayer button = KEY_PREV repeat = 3 config = switch_audio end begin prog = mplayer button = KEY_MUTE config = mute end begin prog = mplayer button = KEY_RECORD config = record end begin prog = mplayer button = KEY_STOP config = quit end begin prog = mplayer button = KEY_VIDEO config = set_menu aspect end begin prog = mplayer button = KEY_EXIT config = set_menu jump_to end begin prog = mplayer button = KEY_8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = KEY_2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = KEY_4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = KEY_6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = KEY_0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = KEY_5 repeat = 2 config = dvdnav 6 end begin prog = fbi button = KEY_POWER config = q end begin prog = fbi button = KEY_STOP config = q end begin prog = fbi button = KEY_RIGHT config = n end begin prog = fbi button = KEY_LEFT config = b end begin prog = fbi button = KEY_UP config = + end begin prog = fbi button = KEY_DOWN config = - end begin prog = fbi button = KEY_NEXT config = n end begin prog = fbi button = KEY_PREVIOUS config = b end begin prog = fbi button = KEY_FORWARD config = + end begin prog = fbi button = KEY_REWIND config = - end begin prog = fbi button = KEY_OK config = a end begin prog = fbi button = KEY_0 config = h end begin prog = fbi button = KEY_GUIDE config = i end begin prog = fbi button = KEY_RECORD config = p end begin prog = fbi button = KEY_PREV config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_packard_bell0000644000175000017500000000522311141052014024361 0ustar benbenbegin prog = mplayer button = Aux3 config = run /usr/bin/tvswitch end begin prog = mplayer button = Enter config = pause end begin prog = mplayer button = Display config = set_menu aspect end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Hash config = sub_visibility end begin prog = mplayer button = One config = sub_delay 0.25 end begin prog = mplayer button = Three config = sub_delay -0.25 end begin prog = mplayer button = Left config = menu cancel end begin prog = mplayer button = Right config = menu ok end begin prog = mplayer button = CHDown repeat = 3 config = sub_pos -0.25 end begin prog = mplayer button = CHUp repeat = 3 config = sub_pos +0.25 end begin prog = mplayer button = VolDown repeat = 1 config = volume -1 end begin prog = mplayer button = VolUp repeat = 1 config = volume 1 end begin prog = mplayer button = Help config = osd end begin prog = mplayer button = SRS config = quit 166 end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = CD config = set_menu open_file end begin prog = mplayer button = RMB repeat = 1 config = seek 120 end begin prog = mplayer button = LMB repeat = 1 config = seek -120 end begin prog = mplayer button = Up repeat = 2 config = menu up end begin prog = mplayer button = Down repeat = 2 config = menu down end begin prog = mplayer button = Two repeat = 2 config = dvdnav 1 end begin prog = mplayer button = Four repeat = 2 config = dvdnav 3 end begin prog = mplayer button = Five repeat = 2 config = dvdnav 6 end begin prog = mplayer button = Six repeat = 2 config = dvdnav 4 end begin prog = mplayer button = Eight repeat = 2 config = dvdnav 2 end begin prog = mplayer button = Zero repeat = 2 config = dvdnav 5 end begin prog = irpty button = Phone config = p end begin prog = irpty button = Message config = l end begin prog = fbi button = Enter config = q end begin prog = fbi button = RMB config = n end begin prog = fbi button = LMB config = b end begin prog = fbi button = VolUp config = + end begin prog = fbi button = VolDown config = - end begin prog = fbi button = CD config = a end begin prog = fbi button = Help config = h end begin prog = fbi button = Aux1 config = i end begin prog = fbi button = Display config = p end begin prog = fbi button = Aux2 config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_pctv0000644000175000017500000000574411141052014022742 0ustar benbenbegin prog = mplayer button = F_TV config = run /usr/bin/tvswitch end begin prog = mplayer button = 0/AV repeat = 1 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 1 config = dvdnav 6 end begin prog = mplayer button = pause config = pause end begin prog = mplayer button = undo repeat = 1 config = seek -120 end begin prog = mplayer button = redo repeat = 1 config = seek 120 end begin prog = mplayer button = 4 repeat = 1 config = dvdnav 3 end begin prog = mplayer button = Rewind repeat = 1 config = seek -10 end begin prog = mplayer button = 6 repeat = 1 config = dvdnav 4 end begin prog = mplayer button = FForward repeat = 1 config = seek 10 end begin prog = mplayer button = vol- repeat = 1 config = volume -1 end begin prog = mplayer button = vol+ repeat = 1 config = volume 1 end begin prog = mplayer button = 2 repeat = 1 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 1 config = dvdnav 2 end begin prog = mplayer button = Fullscreen config = osd end begin prog = mplayer button = Power config = quit 166 end begin prog = mplayer button = Info config = menu toggle end begin prog = mplayer button = Menu config = menu toggle end begin prog = mplayer button = Chan_Last config = set_menu open_file end begin prog = mplayer button = Preview config = set_menu open_file end begin prog = mplayer button = Vol+FF config = menu ok end begin prog = mplayer button = Vol-Rew config = menu cancel end begin prog = mplayer button = Chan+Play repeat = 1 config = menu up end begin prog = mplayer button = Chan-Stop repeat = 1 config = menu down end begin prog = mplayer button = channel- repeat = 1 config = sub_pos -1 end begin prog = mplayer button = channel+ repeat = 1 config = sub_pos +1 end begin prog = mplayer button = Mute config = mute end begin prog = mplayer button = Stop config = quit end begin prog = mplayer button = Zoom config = set_menu aspect end begin prog = mplayer button = middle config = set_menu jump_to end begin prog = mplayer button = Record config = record end begin prog = irpty button = F_RADIO config = p end begin prog = irpty button = F_TELETEXT config = l end begin prog = fbi button = Power config = q end begin prog = fbi button = Vol+FF config = n end begin prog = fbi button = Vol-Rew config = b end begin prog = fbi button = Chan+Play config = + end begin prog = fbi button = Chan-Stop config = - end begin prog = fbi button = Fullscreen config = a end begin prog = fbi button = 0 config = h end begin prog = fbi button = Info config = i end begin prog = fbi button = Record config = p end begin prog = fbi button = Preview config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_realmagic0000644000175000017500000000536611141052014023712 0ustar benbenbegin prog = mplayer button = VGA config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = PLAY config = seek 0 end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = PREV repeat = 1 config = seek -120 end begin prog = mplayer button = NEXT repeat = 1 config = seek 120 end begin prog = mplayer button = REV repeat = 1 config = seek -10 end begin prog = mplayer button = FF repeat = 1 config = seek 10 end begin prog = mplayer button = VOL- repeat = 1 config = volume -1 end begin prog = mplayer button = VOL+ repeat = 1 config = volume 1 end begin prog = mplayer button = TITLE config = set_menu view_img end begin prog = mplayer button = OSD config = osd end begin prog = mplayer button = PRG config = set_menu tv_settings end begin prog = mplayer button = SUB config = sub_select end begin prog = mplayer button = LANG config = switch_audio end begin prog = mplayer button = ANGLE config = set_menu aspect end begin prog = mplayer button = QUIT config = quit 166 end begin prog = mplayer button = MENU config = menu toggle end begin prog = mplayer button = EJECT config = set_menu open_file end begin prog = mplayer button = SELECT config = menu ok end begin prog = mplayer button = LEFT config = menu cancel end begin prog = mplayer button = UP repeat = 1 config = menu up end begin prog = mplayer button = DOWN repeat = 1 config = menu down end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = irpty button = ENTER config = p end begin prog = irpty button = L-R config = l end begin prog = fbi button = QUIT config = q end begin prog = fbi button = RIGHT config = n end begin prog = fbi button = FF config = n end begin prog = fbi button = LEFT config = b end begin prog = fbi button = REV config = b end begin prog = fbi button = UP config = + end begin prog = fbi button = DOWN config = - end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_RM-S60000644000175000017500000000256511141052014022570 0ustar benbenbegin prog = mplayer button = TAPE config = run /usr/bin/tvswitch end begin prog = mplayer button = CD_PAUSE config = pause end begin prog = mplayer button = CD_STOP config = quit end begin prog = mplayer button = CD_PLAY config = mute end begin prog = mplayer button = CD_PREV_TRACK repeat = 1 config = seek -120 end begin prog = mplayer button = CD_NEXT_TRACK repeat = 1 config = seek 120 end begin prog = mplayer button = SLEEP repeat = 1 config = seek -10 end begin prog = mplayer button = CD repeat = 1 config = seek 10 end begin prog = mplayer button = AMP_VOL_DOWN repeat = 2 config = volume -1 end begin prog = mplayer button = AMP_VOL_UP repeat = 5 config = volume 1 end begin prog = mplayer button = CD_EJECT config = osd end begin prog = mplayer button = AMP_POWER config = quit 166 end begin prog = mplayer button = TUNER config = menu toggle end begin prog = mplayer button = TUNER_SHIFT config = set_menu open_file end begin prog = mplayer button = VIDEO/AUX config = menu ok end begin prog = mplayer button = PHONO config = menu cancel end begin prog = mplayer button = TUNER_PRESET_+ repeat = 5 config = menu up end begin prog = mplayer button = TUNER_PRESET_- repeat = 5 config = menu down end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_RX-V8500000644000175000017500000000265411141052014022754 0ustar benbenbegin prog = mplayer button = F_TV config = run /usr/bin/tvswitch end begin prog = mplayer button = CD_PLAY config = pause end begin prog = mplayer button = CD_PAUSE/STOP repeat = 1 config = seek -120 end begin prog = mplayer button = CD_SEARCH_FWD repeat = 1 config = seek 120 end begin prog = mplayer button = TAPE_DIR_A repeat = 1 config = seek -10 end begin prog = mplayer button = TAPE_DIR_B repeat = 1 config = seek 10 end begin prog = mplayer button = CD_SEARCH_REV repeat = 1 config = volume -1 end begin prog = mplayer button = CD_SKIP_FWD repeat = 1 config = volume 1 end begin prog = mplayer button = TUNER_+ repeat = 1 config = volume 1 end begin prog = mplayer button = 8 repeat = 1 config = volume -1 end begin prog = mplayer button = CD_SKIP_REV config = osd end begin prog = mplayer button = CD_DISK_SKIP config = quit 166 end begin prog = TAPE_PLAY button = Info config = menu toggle end begin prog = mplayer button = TAPE_STOP config = set_menu open_file end begin prog = mplayer button = TAPE_FFWD config = menu ok end begin prog = mplayer button = TAPE_REWIND config = menu cancel end begin prog = mplayer button = TAPE_REC/PAUSE repeat = 1 config = menu up end begin prog = mplayer button = TAPE_DECK_A/B repeat = 1 config = menu down end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_streamzap0000644000175000017500000000522711141052014023770 0ustar benbenbegin prog = mplayer button = RED config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = << repeat = 3 config = seek -10 end begin prog = mplayer button = >> repeat = 3 config = seek 10 end begin prog = mplayer button = |<< repeat = 3 config = seek -120 end begin prog = mplayer button = >>| repeat = 3 config = seek 120 end begin prog = mplayer button = VOL_DOWN repeat = 2 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 2 config = volume 1 end begin prog = mplayer button = GREEN config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = MENU config = menu hide end begin prog = mplayer button = YELLOW config = set_menu open_file end begin prog = mplayer button = BLUE config = play_dvd hide_menu end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = OK config = menu ok end begin prog = mplayer button = RIGHT config = menu ok end begin prog = mplayer button = LEFT config = menu cancel end begin prog = mplayer button = UP repeat = 2 config = menu up end begin prog = mplayer button = DOWN repeat = 2 config = menu down end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = RECORD config = record end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end begin prog = irpty button = CH_UP config = p end begin prog = irpty button = CH_DOWN config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = RIGHT config = n end begin prog = fbi button = >> config = n end begin prog = fbi button = LEFT config = b end begin prog = fbi button = << config = b end begin prog = fbi button = UP config = + end begin prog = fbi button = DOWN config = - end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = MENU config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_Toshiba-RM15000000644000175000017500000000510111141052014024164 0ustar benbenbegin prog = mplayer button = power config = quit 166 end begin prog = mplayer button = key1 config = tv_step_channel 1 end begin prog = mplayer button = key2 repeat = 2 config = dvdnav 1 end begin prog = mplayer button = key3 config = audio_delay 0.1 end begin prog = mplayer button = key4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = key5 repeat = 2 config = dvdnav 6 end begin prog = mplayer button = key6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = key7 config = tv_step_channel -1 end begin prog = mplayer button = key8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = key9 config = audio_delay -0.1 end begin prog = mplayer button = key0 repeat = 2 config = dvdnav 5 end begin prog = mplayer # Note: CMSS not supported by current Alsa driver button = CMSS config = run "umount /tmp/UPnP; /etc/init.d/59_upnp" end #begin # prog = mplayer # Note: EAX not supported by current Alsa driver # button = EAX # config = #end begin prog = mplayer button = mute config = mute end begin prog = mplayer button = vol- repeat = 1 config = volume -1 end begin prog = mplayer button = vol+ repeat = 1 config = volume 1 end begin prog = mplayer button = up repeat = 1 config = menu up end begin prog = mplayer button = down repeat = 1 config = menu down end begin prog = mplayer button = left repeat = 1 config = menu left end begin prog = mplayer button = right repeat = 1 config = menu right end begin prog = mplayer button = ok config = menu ok end begin prog = mplayer button = return config = dvdnav 7 end begin prog = mplayer button = start config = menu toggle end begin prog = mplayer button = cancel config = menu cancel end begin prog = mplayer button = record config = set_menu recorder end begin prog = mplayer button = options config = set_menu options end begin prog = mplayer button = display config = sub_visibility end begin prog = mplayer button = previous repeat = 3 config = seek -120 end begin prog = mplayer button = playpause config = pause end begin prog = mplayer button = next repeat = 3 config = seek 120 end begin prog = mplayer button = slow config = speed_incr -0.5 config = speed_incr 0.5 end begin prog = mplayer button = stop config = quit end begin prog = mplayer button = step config = frame_step end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_tosh-vt76f0000644000175000017500000000573511141052014023715 0ustar benbenbegin prog = mplayer button = TV/VCR config = run /usr/bin/tvswitch end begin prog = mplayer button = PAUSE config = pause end begin prog = mplayer button = FAST_REW repeat = 3 config = seek -120 end begin prog = mplayer button = FAST_FORW repeat = 3 config = seek 120 end begin prog = mplayer button = SHIFT<- repeat = 3 config = seek -10 end begin prog = mplayer button = SHIFT-> repeat = 3 config = seek 10 end begin prog = mplayer button = CLEARNESS_IMG- repeat = 2 config = volume -1 end begin prog = mplayer button = CLEARNESS_IMG+ repeat = 2 config = volume 1 end begin prog = mplayer button = A.SELECT config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = ZERO_BACK config = menu hide end begin prog = mplayer button = 1 config = set_menu open_file end begin prog = mplayer button = TIME_SEARCH config = play_dvd hide_menu end begin prog = mplayer button = TIME_LEFT/CLOCK config = set_menu tv_settings end begin prog = mplayer button = DT config = set_menu view_img end begin prog = mplayer button = PLAY config = seek 0 end begin prog = mplayer button = IMMEDIATE_REC config = menu ok end begin prog = mplayer button = OSP config = menu ok end begin prog = mplayer button = DISPLAY config = menu cancel end begin prog = mplayer button = CH+ repeat = 2 config = menu up end begin prog = mplayer button = CH- repeat = 2 config = menu down end begin prog = mplayer button = ALIGN_DOWN repeat = 3 config = sub_pos -1 end begin prog = mplayer button = ALIGN_UP repeat = 3 config = sub_pos +1 end begin prog = mplayer button = A.DUB config = mute end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = SP/LP config = set_menu aspect end begin prog = mplayer button = INDEX config = set_menu jump_to end begin prog = irpty button = SHIFT<- config = p end begin prog = irpty button = SHIFT-> config = l end begin prog = fbi button = POWER config = q end begin prog = fbi button = OSP config = n end begin prog = fbi button = SHIFT-> config = n end begin prog = fbi button = FAST_FORW config = n end begin prog = fbi button = DISPLAY config = b end begin prog = fbi button = FAST_REW config = b end begin prog = fbi button = SHIFT<- config = b end begin prog = fbi button = CH+ config = + end begin prog = fbi button = CH- config = - end begin prog = fbi button = SP/LP config = a end begin prog = fbi button = ZERO_BACK config = h end begin prog = fbi button = A.SELECT config = i end begin prog = fbi button = PLAY config = p end begin prog = fbi button = PAUSE config = p end begin prog = fbi button = TV/VCR config = v end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_twinhan0000644000175000017500000000406111141052014023425 0ustar benbenbegin prog = mplayer button = FULLSCREEN config = run /usr/bin/tvswitch end begin prog = mplayer button = TIMESHIFT config = pause end begin prog = mplayer button = STOP config = quit end begin prog = mplayer button = MUTE config = mute end begin prog = mplayer button = REWIND repeat = 1 config = seek -10 end begin prog = mplayer button = FORWARD repeat = 1 config = seek 10 end begin prog = mplayer button = VOL_DOWN repeat = 1 config = volume -1 end begin prog = mplayer button = VOL_UP repeat = 1 config = volume 1 end begin prog = mplayer button = EPG config = osd end begin prog = mplayer button = POWER config = quit 166 end begin prog = mplayer button = RECALL config = menu toggle end begin prog = mplayer button = PREVIEW config = set_menu open_file end begin prog = mplayer button = PLAY config = menu ok end begin prog = mplayer button = CANCEL repeat = 0 config = menu cancel end begin prog = mplayer button = CH_UP config = menu up end begin prog = mplayer button = CH_DOWN config = menu down end begin prog = mplayer button = CAPTURE config = set_menu recorder end begin prog = mplayer button = RECORDLIST config = set_menu dvb_sel end begin prog = mplayer button = TAB config = set_menu netstream_sel end begin prog = mplayer button = TELETEXT config = set_menu tv_chan end begin prog = mplayer button = FAVORITE config = menu cancel end begin prog = mplayer button = RECORD config = record end begin prog = mplayer button = 2 repeat = 2 config = dvdnav 1 end # DVD NAV begin prog = mplayer button = 8 repeat = 2 config = dvdnav 2 end begin prog = mplayer button = 4 repeat = 2 config = dvdnav 3 end begin prog = mplayer button = 6 repeat = 2 config = dvdnav 4 end begin prog = mplayer button = 0 repeat = 2 config = dvdnav 5 end begin prog = mplayer button = 5 repeat = 2 config = dvdnav 6 end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircrc_ultrax0000644000175000017500000000260511141052014023276 0ustar benbenbegin prog = mplayer button = KEY_PLAYPAUSE config = pause end begin prog = mplayer button = KEY_REWIND repeat = 1 config = seek -10 end begin prog = mplayer button = KEY_FASTFORWARD repeat = 1 config = seek 10 end begin prog = mplayer button = KEY_VOLUMEDOWN repeat = 1 config = volume -1 end begin prog = mplayer button = KEY_VOLUMEUP repeat = 1 config = volume 1 end begin prog = mplayer button = KEY_PROPS config = osd end begin prog = mplayer button = KEY_CLOSE config = quit 166 end begin prog = mplayer button = KEY_TEXT config = menu toggle end begin prog = mplayer button = KEY_HOME config = set_menu open_file end begin prog = mplayer button = KEY_VIDEO config = set_menu open_file end begin prog = mplayer button = KEY_CHANNELDOWN repeat = 1 config = sub_pos -1 end begin prog = mplayer button = KEY_CHANNELUP repeat = 1 config = sub_pos +1 end begin prog = mplayer button = KEY_MIN_INTERESTING config = mute end begin prog = mplayer button = KEY_STOPCD config = quit end begin prog = mplayer button = KEY_ANGLE config = set_menu aspect end begin prog = mplayer button = KEY_LAST config = set_menu jump_to end begin prog = mplayer button = KEY_RECORD config = record end begin prog = fbi button = KEY_CLOSE config = q end geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_animax.conf0000644000175000017500000001561411141052014024003 0ustar benben # # This is a space encoded remote control from AnimaX. # You need at least lirc-0.5.4 to use this config file # # contributed by Karsten Scheibler # # brand: AnimaX # model: Anir Remote Control # supported devices: This remote control comes with some TV Tuner cards from # Hauppauge. # begin remote name ANIMAX bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 2500 2500 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_gap 102937 repeat_bit 0 begin codes CD_DOWN 0x000000000000DB24 CD_UP 0x0000000000005BA4 TV_DOWN 0x000000000000DC23 TV_UP 0x0000000000005CA3 PHONE_DOWN 0x000000000000DD22 PHONE_UP 0x0000000000005DA2 RADIO_DOWN 0x000000000000DE21 RADIO_UP 0x0000000000005EA1 VIDEO_DOWN 0x000000000000DF20 VIDEO_UP 0x0000000000005FA0 AUX1_DOWN 0x000000000000E01F AUX1_UP 0x000000000000609F MAIL_DOWN 0x000000000000E11E MAIL_UP 0x000000000000619E AUX2_DOWN 0x000000000000E21D AUX2_UP 0x000000000000629D POWER_DOWN 0x000000000000E31C POWER_UP 0x000000000000639C LEFT_MOUSE_BUTTON_TOUCH_DOWN 0x000000000000E41B LEFT_MOUSE_BUTTON_TOUCH_UP 0x000000000000649B REWIND_DOWN 0x000000000000E51A REWIND_UP 0x000000000000659A PLAY_DOWN 0x000000000000E619 PLAY_UP 0x0000000000006699 FORWARD_DOWN 0x000000000000E718 FORWARD_UP 0x0000000000006798 SKIP_BACKWARD_DOWN 0x000000000000E817 SKIP_BACKWARD 0x0000000000006897 STOP_DOWN 0x000000000000E916 STOP_UP 0x0000000000006996 SKIP_FORWARD_DOWN 0x000000000000EA15 SKIP_FORWARD_UP 0x0000000000006A95 CHANNEL_UP_DOWN 0x000000000000EB14 CHANNEL_UP_UP 0x0000000000006B94 MENU_DOWN 0x000000000000EC13 MENU_UP 0x0000000000006C93 VOLUME_UP_DOWN 0x000000000000ED12 VOLUME_UP_UP 0x0000000000006D92 BLUE_BUTTON_DOWN 0x000000000000EE11 BLUE_BUTTON_UP 0x0000000000006E91 MUTE_DOWN 0x000000000000EF10 MUTE_UP 0x0000000000006F90 VOLUME_DOWN_DOWN 0x000000000000F00F VOLUME_DOWN_UP 0x000000000000708F RED_BUTTON_DOWN 0x000000000000F10E RED_BUTTON_UP 0x000000000000718E GREEN_BUTTON_DOWN 0x000000000000F20D GREEN_BUTTON_UP 0x000000000000728D CHANNEL_DOWN_DOWN 0x000000000000F30C CHANNEL_DOWN_UP 0x000000000000738C 1_DOWN 0x000000000000F40B 1_UP 0x000000000000748B 2_DOWN 0x000000000000F50A 2_UP 0x000000000000758A 3_DOWN 0x000000000000F609 3_UP 0x0000000000007689 4_DOWN 0x000000000000F708 4_UP 0x0000000000007788 5_DOWN 0x000000000000F807 5_UP 0x0000000000007887 6_DOWN 0x000000000000F906 6_UP 0x0000000000007986 7_DOWN 0x000000000000FA05 7_UP 0x0000000000007A85 8_DOWN 0x000000000000FB04 8_UP 0x0000000000007B84 9_DOWN 0x000000000000FC03 9_UP 0x0000000000007C83 SLASH_DOWN 0x000000000000FD02 SLASH_UP 0x0000000000007D82 0_DOWN 0x000000000000FE01 0_UP 0x0000000000007E81 MINUS_DOWN 0x000000000000FF00 MINUS_UP 0x0000000000007F80 end codes end remote begin remote name ANIMAX_MOUSE_BUTTONS bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 0 0 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_bit 0 begin codes RIGHT_MOUSE_BUTTON_DOWN 0x000000000000C639 RIGHT_MOUSE_BUTTON_UP 0x00000000000046B9 LEFT_MOUSE_BUTTON_DOWN 0x000000000000CE31 LEFT_MOUSE_BUTTON_UP 0x0000000000004EB1 end codes end remote begin remote name ANIMAX_MOUSE_PAD bits 16 flags SPACE_ENC|REVERSE eps 20 aeps 0 header 4500 4500 one 562 1682 zero 562 562 ptrail 562 plead 0 foot 0 0 repeat 2500 2500 pre_data_bits 8 pre_data 0xF0 post_data_bits 0 post_data 0x0 pre 0 0 post 0 0 gap 12937 repeat_gap 8437 repeat_bit 0 begin codes MOUSE_NNW 0x000000000000906F MOUSE_NW 0x000000000000D02F MOUSE_NWW 0x000000000000916E MOUSE_W 0x000000000000D12E MOUSE_SWW 0x000000000000926D MOUSE_SW 0x000000000000D22D MOUSE_SSW 0x000000000000936C MOUSE_S 0x000000000000D32C MOUSE_SSE 0x000000000000946B MOUSE_SE 0x000000000000D42B MOUSE_SEE 0x000000000000956A MOUSE_E 0x000000000000D52A MOUSE_NEE 0x0000000000009669 MOUSE_NE 0x000000000000D629 MOUSE_NNE 0x0000000000009768 MOUSE_N 0x000000000000D728 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_askey.conf0000644000175000017500000000461011141052014023634 0ustar benben# # this config file was automatically generated # using lirc-0.6.0 on Thu Apr 27 12:27:04 2000 # # contributed by Claas Langbehn # Please read the documentation, faq etc. # before sending me mails. # # brand: ASKEY # model: AS-218 / AS-220 # supported devices: ASKEY MagicTV # # comment: repeated keys are recognized, now. # begin remote name AS-218 bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9087 4424 one 629 1617 zero 629 495 ptrail 632 repeat 9088 2182 pre_data_bits 16 pre_data 0x61D6 gap 107905 repeat_bit 0 begin codes 0 0x00000000000000FF 1 0x000000000000807F 2 0x00000000000040BF 3 0x000000000000C03F 4 0x00000000000020DF 5 0x000000000000A05F 6 0x000000000000609F 7 0x000000000000E01F 8 0x00000000000010EF 9 0x000000000000906F LOOP 0x00000000000050AF # unused FINE_UP(PLUS) 0x00000000000030CF ZOOM 0x000000000000B04F RECORD 0x000000000000708F PREVIEW 0x000000000000F00F SCAN 0x00000000000008F7 VIDEO 0x0000000000008877 POWER 0x00000000000048B7 MUTE 0x000000000000C837 COLOR 0x00000000000028D7 #unused FREEZE 0x0000000000006897 100 0x000000000000E817 FINE_DOWN(MINUS) 0x00000000000018E7 PLAY 0x0000000000009867 CH_UP 0x00000000000058A7 VOL_UP 0x000000000000D827 TV 0x00000000000038C7 STOP 0x000000000000B847 CH_DOWN 0x0000000000007887 VOL_DOWN 0x000000000000F807 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_atiusb2.conf0000644000175000017500000000566111141052014024100 0ustar benben# this config file was automatically generated # using lirc-0.7.0(atiusb) on Sat Feb 12 13:22:29 2005 # # contributed by Steffen # # brand: ATI Sapphire Remote Bob II USB # model no. of remote control: 5000024400 # devices being controlled by this remote: ASUS Digimatrix MythTV PVR # modified for Geexbox by: JTS # fixed by flynn 01/14/06 begin remote name 5000024400 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x0 post_data_bits 16 post_data 0x0 gap 299851 toggle_bit 0 begin codes aux1 0x023F aux2 0x023F aux3 0x023F aux4 0x023F leftmouse 0x02A9 rightmouse 0x02AA a 0x0278 b 0x0279 power 0x020C dvd 0x0238 tv 0x0239 help 0x02BE pc 0x023F resize 0x02D5 hand 0x02D0 ati 0x028E vol-up 0x0210 vol-down 0x0211 mute 0x020D chan-up 0x0220 chan-down 0x0221 mouse-up 0x013F mouse-down 0x013F mouse-left 0x013F mouse-right 0x013F 1 0x0201 2 0x0202 3 0x0203 4 0x0204 5 0x0205 6 0x0206 7 0x0207 8 0x0208 9 0x0209 0 0x0200 max_window 0x0254 check 0x0282 info 0x02F9 timer 0x0296 cursor-up 0x0258 cursor-left 0x025A cursor-right 0x025B cursor-down 0x0259 ok 0x025C c 0x027A d 0x027B play 0x022C e 0x027C f 0x027D rewind 0x0229 record 0x0237 stop 0x0231 pause 0x0230 ffwd 0x0228 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_atiusb.conf0000644000175000017500000000572111141052014024013 0ustar benben# Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(atiusb) on Wed Oct 25 22:34:25 2006 # # contributed by Michail Pappas # # brand: atiusb # model no. of remote control: 5000015900A # 5000023600 # probably 5000022000 # devices being controlled by this remote: ATI USB Receiver (X10) # begin remote name atiusb bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x14 post_data_bits 16 post_data 0x0 gap 235966 min_repeat 1 toggle_bit 0 begin codes a 0xD500 b 0xD601 power 0xD702 tv 0xD803 dvd 0xD904 web 0xDA05 media_library 0xDB06 drag 0xDC07 mouse-button_left 0x4D78 mouse-button_right 0x517C mouse-up 0x4772 mouse-down 0x4873 mouse-left 0x4570 mouse-right 0x4671 mouse-left_up 0x4974 mouse-right_up 0x4A75 mouse-left_down 0x4C77 mouse-right_down 0x4B76 vol-up 0xDD08 vol-down 0xDE09 mute 0xDF0A chan-up 0xE00B chan-down 0xE10C 1 0xE20D 2 0xE30E 3 0xE40F 4 0xE510 5 0xE611 6 0xE712 7 0xE813 8 0xE914 9 0xEA15 0 0xEC17 dvd-root_menu 0xEB16 launch_setup 0xED18 c 0xEE19 d 0xF01B tv_on_demand 0xF11C max_window 0xF520 cursor-up 0xEF1A cursor-down 0xF722 cursor-left 0xF21D cursor-right 0xF41F ok 0xF31E e 0xF621 f 0xF823 rewind 0xF924 play 0xFA25 fast_forward 0xFB26 record 0xFC27 stop 0xFD28 pause 0xFE29 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_avermedia.conf0000644000175000017500000001326611141052014024464 0ustar benben# # this config file was automatically generated # using lirc-0.5.5 on Thu May 25 18:00:24 2000 # # contributed by Michal Kochanowicz & Jesus Bravo Alvarez # # brand: AVerMedia # model: ? # supported devices: some TVCapture98 (ID 0x00021461) and # some TVPhone98 (ID 0x00011461) cards begin remote name TVCapture98 bits 6 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 # pre_data_bits 16 # pre_data 0x40BF repeat 9080 2189 gap 108056 repeat_bit 0 begin codes TV/FM 0x0000000000000023 CD 0x0000000000000022 # TELETEXT 0x000000000000C03F POWER 0x0000000000000027 1 0x0000000000000018 2 0x0000000000000010 3 0x0000000000000008 VIDEO 0x0000000000000000 4 0x0000000000000019 5 0x0000000000000011 6 0x0000000000000009 AUDIO 0x0000000000000001 7 0x000000000000001A 8 0x0000000000000012 9 0x000000000000000A FULLSCREEN 0x0000000000000002 0 0x000000000000001B DISPLAY 0x0000000000000013 COLOR 0x000000000000000B LOOP 0x0000000000000003 UNLABELED 0x000000000000001C LEFT 0x0000000000000014 RIGHT 0x000000000000000C PREVIEW 0x0000000000000004 AUTOSCAN 0x000000000000001D FREEZE 0x0000000000000015 CAPTURE 0x000000000000000D MUTE 0x0000000000000005 RED 0x000000000000001E VOL_DOWN 0x0000000000000016 VOL_UP 0x000000000000000E YELLOW 0x0000000000000006 GREEN 0x000000000000001F CH_DOWN 0x0000000000000017 CH_UP 0x000000000000000F BLUE 0x0000000000000007 end codes end remote # # this config file was automatically generated # using lirc-0.6.1 on Tue Apr 25 14:31:21 2000 # # contributed by Christoph Bartelmus # # brand: AVerMedia # model: ? (36 buttons) # supported devices: TVPhone98 card (ID 0x00031461) # TVCapture98 card (ID 0x00041461) # # This config file does work with both homebrew receivers and # original AVerMedia TV cards !!! # begin remote name TVPhone98 bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 repeat 9080 2189 pre_data_bits 16 pre_data 0x40BF gap 108056 repeat_bit 0 begin codes POWER 0x00000000000000FF TV/FM 0x000000000000807F CD 0x00000000000040BF TELETEXT 0x000000000000C03F VIDEO 0x00000000000020DF 1 0x000000000000A05F 2 0x000000000000609F 3 0x000000000000E01F AUDIO 0x00000000000010EF 4 0x000000000000906F 5 0x00000000000050AF 6 0x000000000000D02F FULLSCREEN 0x00000000000030CF 7 0x000000000000B04F 8 0x000000000000708F 9 0x000000000000F00F PREVIEW 0x00000000000008F7 0 0x0000000000008877 DISPLAY 0x00000000000048B7 LOOP 0x000000000000C837 MUTE 0x00000000000028D7 AUTOSCAN 0x000000000000A857 FREEZE 0x0000000000006897 CAPTURE 0x000000000000E817 PLAY 0x00000000000018E7 RECORD 0x0000000000009867 PAUSE 0x00000000000058A7 STOP 0x000000000000D827 YELLOW 0x00000000000038C7 RED 0x000000000000B847 VOL_DOWN 0x0000000000007887 VOL_UP 0x000000000000F807 end codes end remote begin remote name TVPhone98_ext bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9078 4437 one 615 1631 zero 615 515 ptrail 620 repeat 9080 2189 pre_data_bits 16 pre_data 0xC03F gap 108056 repeat_bit 0 begin codes BLUE 0x00000000000000FF GREEN 0x000000000000807F CH_DOWN 0x00000000000040BF CH_UP 0x000000000000C03F end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_cinergy1400.conf0000644000175000017500000000417711141052014024475 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) on Fri May 12 18:28:46 2006 # # contributed by Laurent Peltier # # brand: Terratec # model no. of remote control: # devices being controlled by this remote: Cinergy 1400 DVB-T # begin remote name Terratec bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 135894 toggle_bit 0 begin codes KEY_POWER 0x0074 KEY_1 0x0002 KEY_2 0x0003 KEY_3 0x0004 KEY_4 0x0005 KEY_5 0x0006 KEY_6 0x0007 KEY_7 0x0008 KEY_8 0x0009 KEY_9 0x000A KEY_0 0x000B KEY_VIDEO 0x0189 KEY_REFRESH 0x00AD KEY_SELECT 0x0161 KEY_EPG 0x016D KEY_UP 0x0067 KEY_LEFT 0x0069 KEY_OK 0x0160 KEY_RIGHT 0x006A KEY_DOWN 0x006C KEY_TEXT 0x0184 KEY_INFO 0x0166 KEY_RED 0x018E KEY_GREEN 0x018F KEY_YELLOW 0x0190 KEY_BLUE 0x0191 KEY_CHANNELUP 0x0192 KEY_VOLUMEUP 0x0073 KEY_MUTE 0x0071 KEY_VOLUMEDOWN 0x0072 KEY_CHANNELDOWN 0x0193 KEY_PAUSE 0x0077 KEY_PLAY 0x00CF KEY_RECORD 0x00A7 KEY_PREVIOUS 0x019C KEY_STOP 0x0080 KEY_NEXT 0x0197 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_creative.conf0000644000175000017500000000360411141052014024324 0ustar benben# # this config file was automatically generated # using lirc-0.6.3 on Sat Jan 6 11:38:33 2001 # # contributed by Stephen White # # brand: Creative # model: PC-DVD Remote # supported devices: Creative-Infra-Receiver # begin remote name CREATIVE_INFRA_DVD bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9293 4302 one 771 1494 zero 771 358 ptrail 756 pre_data_bits 16 pre_data 0x8435 gap 108646 toggle_bit 0 begin codes play 0x00000000000005FA stop 0x00000000000016E9 pause 0x00000000000000FF eject 0x00000000000002FD last 0x00000000000017E8 rrev 0x00000000000004FB ffwd 0x00000000000006F9 next 0x00000000000001FE 1 0x00000000000008F7 2 0x00000000000009F6 3 0x0000000000000AF5 shift 0x00000000000014EB 4 0x0000000000000CF3 5 0x0000000000000DF2 6 0x0000000000000EF1 mouse 0x00000000000007F8 7 0x00000000000010EF 8 0x00000000000011EE 9 0x00000000000012ED vol+ 0x0000000000000FF0 start 0x00000000000003FC 0 0x00000000000015EA mute 0x0000000000000BF4 vol- 0x00000000000013EC end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_D-10.conf0000644000175000017500000000432711141052014023126 0ustar benben# # contributed by Bernardo Santos # # brand: Gradiente # model: D-10 # supported devices: Remote control for gradiente's D-10 DVD player. # # Automatic generation didn`t work well so I had to # figure out the protocol myself. It is similar to the one # on the generic RECS80.conf config file. # begin remote name D-10 bits 11 flags SPACE_ENC eps 25 aeps 100 one 270 7310 zero 270 4800 ptrail 270 toggle_bit 2 gap 49000 begin codes POWER 0x000000000000075E EJECT 0x0000000000000766 ANGLE 0x000000000000076E INDEX 0x000000000000075A A-B 0x000000000000075F MUTE 0x0000000000000758 1 0x0000000000000775 2 0x000000000000076D 3 0x0000000000000765 4 0x000000000000075D 5 0x0000000000000774 6 0x000000000000076C 7 0x0000000000000764 8 0x000000000000075C 9 0x0000000000000773 0 0x000000000000076B MENU 0x0000000000000767 TITLE 0x0000000000000776 SUBTITLE 0x0000000000000763 AUDIO 0x0000000000000760 PAUSE 0x0000000000000759 ACTIVE_MENU 0x000000000000076F EXIT 0x0000000000000770 UP_FW 0x0000000000000768 LEFT_RW 0x0000000000000771 OK_PLAY 0x0000000000000769 RIGHT_FW 0x0000000000000761 DOWN_RW 0x000000000000076A STOP 0x0000000000000762 SKIP_BACK 0x0000000000000777 SKIP_FORWARD 0x0000000000000772 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_digimatrix.conf0000644000175000017500000000520511141052014024662 0ustar benben # brand: Asus Digimatrix # model no. of remote control: Model 1 # devices being controlled by this remote: Asus Digimatrix # Contributed by: Members of the http://outertrack.com/digimatrix/ Forum begin remote name digi bits 16 flags SPACE_ENC eps 30 aeps 100 header 8057 4071 one 479 1534 zero 479 531 ptrail 491 pre_data_bits 8 pre_data 0x35 gap 25647 toggle_bit 0 begin codes up 0x000000000000E817 down 0x00000000000018E7 enter 0x000000000000D02F left 0x0000000000009867 right 0x00000000000058A7 1 0x00000000000000FF 2 0x000000000000807F 3 0x00000000000040BF 4 0x000000000000C03F 5 0x00000000000020DF 6 0x000000000000A05F 7 0x000000000000609F 8 0x000000000000E01F 9 0x00000000000010EF 0 0x000000000000906F music 0x000000000000B04F dvd_vcd 0x000000000000F00F tv 0x00000000000008F7 os_start 0x00000000000030CF photo 0x00000000000048B7 home 0x00000000000044BB back 0x000000000000A857 ch+ 0x000000000000B847 stop 0x000000000000946B play 0x000000000000C43B vol+ 0x000000000000F807 ch- 0x0000000000007887 step- 0x000000000000E41B step+ 0x000000000000649B vol- 0x00000000000004FB pause 0x00000000000024DB pre 0x00000000000014EB next 0x000000000000A45B mute 0x000000000000847B rec 0x000000000000D42B subtitle 0x000000000000C837 menu 0x00000000000038C7 dvd_audio 0x00000000000050AF ui_size 0x0000000000008877 ui_on_off 0x00000000000028D7 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_digimatrixmk2.conf0000644000175000017500000000506511141052014025300 0ustar benbenbegin remote name digi_mk2 bits 8 flags SPACE_ENC eps 30 aeps 100 header 2666 1378 one 260 741 zero 260 279 ptrail 251 pre_data_bits 1 pre_data 0x0 post_data_bits 8 post_data 0x3 gap 10826 min_repeat 1 toggle_bit 0 begin codes power 0x0000000000000084 tv_dvr 0x0000000000000044 fm 0x00000000000000C4 os_start 0x0000000000000024 music 0x00000000000000A4 pictures 0x0000000000000064 video 0x00000000000000E4 dvd_menu 0x0000000000000014 up 0x000000000000004C down 0x00000000000000E0 left 0x0000000000000010 right 0x0000000000000040 back 0x00000000000000B4 ok 0x0000000000000088 back_fwd 0x0000000000000074 rew 0x0000000000000094 play_pause 0x0000000000000054 fwd 0x00000000000000D4 step- 0x0000000000000098 stop 0x0000000000000048 step+ 0x0000000000000090 vol+ 0x0000000000000058 vol- 0x00000000000000D8 home 0x00000000000000C8 ch+ 0x0000000000000050 ch- 0x00000000000000D0 mute 0x0000000000000038 rec 0x0000000000000028 pc 0x0000000000000030 1 0x00000000000000B8 2 0x00000000000000A8 3 0x00000000000000B0 4 0x0000000000000078 5 0x0000000000000068 6 0x0000000000000070 7 0x00000000000000F8 8 0x00000000000000E8 9 0x00000000000000F0 0 0x0000000000000018 ui_size 0x0000000000000004 repeat 0x0000000000000008 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_dvico.conf0000644000175000017500000000452411141052014023630 0ustar benben# contributed by Chris Pascoe # # brand: DVICO # model no. of remote control: DVB-T # devices being controlled by this remote: # begin remote name DVICO bits 32 eps 0 aeps 0 one 0 0 zero 0 0 pre_data_bits 32 pre_data 0x10046 gap 195755 post_data_bits 0 toggle_bit 0 begin codes 1 0x00000000000011F9 2 0x00000000000012F9 3 0x00000000000013F9 4 0x00000000000014F9 5 0x00000000000015F9 6 0x00000000000016F9 7 0x00000000000017F9 8 0x00000000000018F9 9 0x00000000000019F9 0 0x00000000000010F9 power 0x0000000000000AF9 pcoff 0x0000000000000CF9 camera 0x0000000000001AF9 record 0x0000000000001BF9 chup 0x00000000000000F9 chdown 0x00000000000001F9 volup 0x00000000000002F9 voldown 0x00000000000003F9 playpause 0x0000000000001FF9 rew 0x0000000000001CF9 stop 0x0000000000001EF9 ff 0x0000000000001DF9 folder 0x00000000000040F9 atvdtv 0x00000000000006F9 dvhs 0x00000000000041F9 menu 0x00000000000008F9 aspect 0x00000000000007F9 zoom 0x00000000000004F9 epg 0x0000000000000BF9 mute 0x0000000000000DF9 back 0x0000000000000EF9 hd 0x0000000000000FF9 red 0x00000000000005F9 green 0x00000000000009F9 yellow 0x00000000000042F9 blue 0x00000000000043F9 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_flytv-prime.conf0000644000175000017500000000306411141052014025000 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) # # contributed by # # brand: Lifeview # model no. of remote control: # devices being controlled by this remote: FlyTV Prime/Platinium # begin remote name Lifeview bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 182794 toggle_bit 0 begin codes 0 0x0052 1 0x004F 2 0x0050 3 0x0051 4 0x004B 5 0x004C 6 0x004D 7 0x0047 8 0x0048 9 0x0049 MODE 0x0175 VIDEO 0x0189 AUDIO 0x0188 POWER 0x0074 TUNER 0x0182 ZOOM 0x0174 LANGUAGE 0x0170 MUTE 0x0071 VOLUMEDOWN 0x0072 VOLUMEUP 0x0073 CHANNELDOWN 0x0193 CHANNELUP 0x0192 AGAIN 0x0081 ENTER 0x001C end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_hauppauge.conf0000644000175000017500000001002411141052014024473 0ustar benben# # this config file was automatically generated # using lirc-0.5.5pre8 on Sun Apr 18 11:43:45 1999 # # contributed by Jens Leuschner # # brand: Hauppauge # model: # supported devices: WinTV primo; WinTV pci; WinTV radio # # This config file will work with both homebrew receivers and # original Hauppauge TV cards !!! # begin remote name Hauppauge bits 13 flags SHIFT_ENC eps 30 aeps 100 one 950 830 zero 950 830 plead 960 gap 89584 repeat_bit 2 begin codes TV 0x000000000000100F RADIO 0x000000000000100C FULL_SCREEN 0x000000000000102E CH+ 0x0000000000001020 CH- 0x0000000000001021 VOL- 0x0000000000001011 VOL+ 0x0000000000001010 MUTE 0x000000000000100D SOURCE 0x0000000000001022 1 0x0000000000001001 2 0x0000000000001002 3 0x0000000000001003 4 0x0000000000001004 5 0x0000000000001005 6 0x0000000000001006 7 0x0000000000001007 8 0x0000000000001008 9 0x0000000000001009 0 0x0000000000001000 RESERVED 0x000000000000101E MINIMIZE 0x0000000000001026 end codes end remote # # this config file was automatically generated # using lirc-0.6.6(animax) on Tue Apr 15 19:50:27 2003 # # contributed by # # brand: Hauppauge # model no. of remote control: # devices being controlled by this remote: PVR 2/350 # begin remote name hauppauge_pvr bits 13 flags RC5|CONST_LENGTH eps 30 aeps 100 one 969 811 zero 969 811 plead 1097 gap 114605 toggle_bit 2 begin codes Power 0x00000000000017FD Go 0x00000000000017FB 1 0x00000000000017C1 2 0x00000000000017C2 3 0x00000000000017C3 4 0x00000000000017C4 5 0x00000000000017C5 6 0x00000000000017C6 7 0x00000000000017C7 8 0x00000000000017C8 9 0x00000000000017C9 Back/Exit 0x00000000000017DF 0 0x00000000000017C0 Menu 0x00000000000017CD Red 0x00000000000017CB Green 0x00000000000017EE Yellow 0x00000000000017F8 Blue 0x00000000000017E9 Ch+ 0x00000000000017E0 Ch- 0x00000000000017E1 Vol- 0x00000000000017D1 Vol+ 0x00000000000017D0 Ok 0x00000000000017E5 Mute 0x00000000000017CF Blank 0x00000000000017CC Full 0x00000000000017FC Rewind 0x00000000000017F2 Play 0x00000000000017F5 Forward 0x00000000000017F4 Record 0x00000000000017F7 Stop 0x00000000000017F6 Pause 0x00000000000017F0 Replay 0x00000000000017E4 Skip 0x00000000000017DE end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_imonknob.conf0000644000175000017500000000652311141052014024341 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.7.1pre2(imon) on Tue Mar 1 23:15:44 2005 # # contributed by Venky Raju # # brand: iMON-New # model no. of remote control: iMON-PAD # devices being controlled by this remote: # begin remote name IMON_KNOB bits 32 eps 30 aeps 100 one 0 0 zero 0 0 gap 119990 min_repeat 15 toggle_bit 0 begin codes AppExit 0x288195B7 Power 0x289115B7 Record 0x298115B7 Play 0x2A8115B7 Open 0x29B195B7 KnobVolUp 0x010000FF KnobVolDown 0x010000FF KnobMute 0x000008FF Rewind 0x2A8195B7 Pause 0x2A9115B7 FastForward 0x2B8115B7 PrevChapter 0x2B9115B7 Stop 0x2B9715B7 NextChapter 0x298195BF WindowsKey 0x2B8195B7 Backspace 0x28A115B7 MouseKeyboard 0x299115B7 SelectSpace 0x2A9315B7 MouseMenu 0x28B715B7 MouseRightClick 0x688481B7 Enter 0x28A195B7 MouseLeftClick 0x688301B7 CursorLeft 0x6ABA81B7 CursorUp 0x6902F9B7 CursorRight 0x68A281B7 CursorDown 0x6882A1B7 Esc 0x2BB715B7 Eject 0x299395B7 AppLauncher 0x29B715B7 MultiMon 0x2AB195B7 TaskSwitcher 0x2A9395B7 Mute 0x2B9595B7 VolUp 0x28A395B7 VolDown 0x28A595B7 ChUp 0x289395B7 ChDown 0x288795B7 Timer 0x2B8395B7 1 0x28B595B7 2 0x2BB195B7 3 0x28B195B7 4 0x2A8595B7 5 0x299595B7 6 0x2AA595B7 7 0x2B9395B7 8 0x2A8515B7 9 0x2AA115B7 ShiftTab 0x28B515B7 0 0x2BA595BF Tab 0x29A115B7 MyMovie 0x2B8515B7 MyMusic 0x299195B7 MyPhoto 0x2BA115B7 MyTV 0x28A515B7 Bookmark 0x288515B7 Thumbnail 0x2AB715BF AspectRatio 0x29A595B7 FullScreen 0x2AA395BF MyDVD 0x29A295B7 Menu 0x2BA385B7 Caption 0x298595B7 Language 0x2B8595B7 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_leadtek.conf0000644000175000017500000000627711141052014024144 0ustar benben# # this config file was automatically generated # using WinLIRC 0.6.4 (LIRC 0.6.1pre3) on Sun Nov 03 14:25:14 2002 # # modified by CB # # contributed by Erik Christiansson, aka Sci # www.alphafish.com # erik@alphafish.com # # brand: Leadtek # model: RM-0010 (bundeled with TV2000 TV-card) # # modifications based on the config files from # Juan Toledo and # Markus Lischka begin remote name RM-0010 bits 16 flags SPACE_ENC|CONST_LENGTH eps 40 aeps 100 header 9000 4500 one 563 1687 zero 563 562 ptrail 563 repeat 9000 2250 pre_data_bits 16 pre_data 0xC03F gap 108000 toggle_bit 0 frequency 38000 duty_cycle 33 begin codes POWER 0x00000000000000FF TV/FM 0x00000000000040BF SCAN 0x000000000000A857 DISPLAY 0x0000000000006897 1 0x000000000000A05F 2 0x000000000000609F 3 0x000000000000E01F 4 0x000000000000906F 5 0x00000000000050AF 6 0x000000000000D02F 7 0x000000000000B04F 8 0x000000000000708F 9 0x000000000000F00F 0 0x00000000000048B7 RECALL 0x0000000000008877 ENTER 0x000000000000C837 CC 0x000000000000F807 MTS 0x000000000000D827 FINE_DOWN 0x0000000000009867 FINE_UP 0x00000000000018E7 VIDEO 0x0000000000007887 MUTE 0x00000000000028D7 CH_UP 0x00000000000030CF CH_DOWN 0x00000000000008F7 VOL_DOWN 0x00000000000010EF VOL_UP 0x00000000000020DF FULLSCREEN 0x000000000000C03F # The following are only supported by the remote control bundled with # the WinFast TV 2000 XP Deluxe card. SLEEP 0x00000000000004FB BOSS_KEY 0x000000000000946B RED 0x000000000000D42B GREEN 0x00000000000034CB YELLOW 0x000000000000B44B BLUE 0x000000000000748B PIP 0x00000000000054AB . 0x000000000000847B BACK 0x00000000000044BB PLAY 0x000000000000C43B NEXT 0x00000000000024DB TIMESHIFT 0x000000000000A45B STOP 0x000000000000649B REC 0x000000000000E41B SNAPSHOT 0x00000000000014EB end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_leadtek-pvr2000.conf0000644000175000017500000000604311141052014025242 0ustar benben# # this config file was written on Mon Dec 13 23:51:16 MET 2004 # by Thomas Reitmayr (treitmayr@yahoo.com) # # brand: Leadtek # model: Y0400052 (bundeled with Winfast PVR2000 TV-card) # # Only CH_UP, CH_DOWN, VOL_UP and VOL_DOWN will repeat. This seems to be a # limitation of the remote control. # begin remote name PVR2000 bits 8 flags SHIFT_ENC gap 120000 begin codes POWER 0x0000000000000070 TV 0x0000000000000026 FM 0x0000000000000027 DVD 0x0000000000000028 RED 0x000000000000003B GREEN 0x000000000000003C YELLOW 0x000000000000003D BLUE 0x000000000000003E TELETEXT 0x000000000000006F SLEEP 0x0000000000000030 MUTE 0x0000000000000064 BOSS_KEY 0x0000000000000039 CH_UP 0x000000000000007C CH_DOWN 0x0000000000000060 VOL_DOWN 0x0000000000000078 VOL_UP 0x0000000000000074 ENTER 0x0000000000000063 CC 0x0000000000000020 FULLSCREEN 0x0000000000000073 MENU 0x000000000000003F SCAN 0x0000000000000021 REPLAY 0x0000000000000032 PLAY 0x0000000000000033 SKIP 0x0000000000000034 OSD 0x0000000000000022 BACK 0x0000000000000024 STOP 0x0000000000000036 FORWARD 0x0000000000000025 LANGUAGE 0x0000000000000023 1 0x0000000000000075 2 0x0000000000000076 3 0x0000000000000077 4 0x0000000000000079 5 0x000000000000007A 6 0x000000000000007B 7 0x000000000000007D 8 0x000000000000007E 9 0x000000000000007F 0 0x0000000000000062 . 0x0000000000000031 RECALL 0x0000000000000061 VIDEO 0x000000000000006E AUDIO 0x000000000000006B DISPLAY 0x0000000000000066 SNAPSHOT 0x0000000000000038 PIP 0x000000000000003A RECSTOP 0x0000000000000036 REC 0x0000000000000037 TIMESHIFT 0x0000000000000035 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_LG.conf0000644000175000017500000000472111141052014023025 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.6.6(irman) on Fri May 14 17:48:53 2004 # # contributed by bufa # # brand: LG # model no. of remote control: # devices being controlled by this remote: # begin remote name LG bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0xFFFF post_data_bits 32 post_data 0x0 gap 25000 min_repeat 2 toggle_bit 0 begin codes power 0x000000000000FE60 mute 0x000000000000FE40 1 0x000000000000FFC0 2 0x000000000000FFA0 3 0x000000000000FF80 4 0x000000000000FF60 5 0x000000000000FF40 6 0x000000000000FF20 7 0x000000000000FF00 8 0x000000000000FEE0 9 0x000000000000FEC0 menu 0x000000000000F880 0 0x000000000000FFE0 tv 0x000000000000F8E0 red 0x000000000000F900 green 0x000000000000F920 yellow 0x000000000000F9A0 blue 0x000000000000F960 vol+ 0x000000000000FDE0 vol- 0x000000000000FDC0 pr+ 0x000000000000FBE0 pr- 0x000000000000FBC0 ok 0x000000000000FB40 text 0x000000000000F860 size 0x000000000000FA80 hold 0x000000000000FAC0 sleep 0x000000000000F820 update 0x000000000000FA40 time 0x000000000000FAA0 reveal 0x000000000000FA60 psm 0x000000000000FE20 ssm 0x000000000000FD20 picture 0x000000000000FD80 sound 0x000000000000FB60 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_logitech.conf0000644000175000017500000001064511141052014024323 0ustar benben# # # contributed by Isaac Lauer # # brand: Logitech # model: Value Infrared Remote Control # supported devices: # begin remote name Logitech bits 8 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 one 0 833 zero 833 0 pre_data_bits 8 pre_data 0xA0 gap 29858 repeat_bit 0 begin codes POWER 0x0000000000000002 1 0x0000000000000015 2 0x0000000000000016 3 0x0000000000000014 4 0x0000000000000018 5 0x0000000000000019 6 0x0000000000000017 7 0x000000000000001C 8 0x000000000000001B 9 0x000000000000001A 0 0x000000000000001D PAUSE 0x0000000000000013 EJECT 0x0000000000000011 SEEK- 0x000000000000000E PLAY 0x000000000000000F SEEK+ 0x0000000000000010 STOP 0x0000000000000012 HELP 0x0000000000000001 CH- 0x000000000000000D CH+ 0x000000000000000A VOL- 0x000000000000000C VOL+ 0x0000000000000009 * 0x000000000000001F # 0x000000000000001E MUTE 0x000000000000000B BUTTONL_DOWN 0x0000000000000039 BUTTONR_DOWN 0x000000000000003A BUTTON_UP 0x0000000000000038 ENTER 0x0000000000000008 CLOSE 0x0000000000000023 TV 0x0000000000000004 GDE 0x0000000000000005 CD 0x0000000000000006 MSG 0x0000000000000007 PHONE 0x0000000000000003 MOUSE_N 0x0000000000000040 MOUSE_NNE 0x0000000000000041 MOUSE_NE 0x0000000000000042 MOUSE_NEE 0x0000000000000043 MOUSE_E 0x0000000000000044 MOUSE_SEE 0x0000000000000045 MOUSE_SE 0x0000000000000046 MOUSE_SSE 0x0000000000000047 MOUSE_S 0x0000000000000048 MOUSE_SSW 0x0000000000000049 MOUSE_SW 0x000000000000004A MOUSE_SWW 0x000000000000004B MOUSE_W 0x000000000000004C MOUSE_NWW 0x000000000000004D MOUSE_NW 0x000000000000004E MOUSE_NNW 0x000000000000004F MOUSE_N 0x0000000000000050 MOUSE_NNE 0x0000000000000051 MOUSE_NE 0x0000000000000052 MOUSE_NEE 0x0000000000000053 MOUSE_E 0x0000000000000054 MOUSE_SEE 0x0000000000000055 MOUSE_SE 0x0000000000000056 MOUSE_SSE 0x0000000000000057 MOUSE_S 0x0000000000000058 MOUSE_SSW 0x0000000000000059 MOUSE_SW 0x000000000000005A MOUSE_SWW 0x000000000000005B MOUSE_W 0x000000000000005C MOUSE_NWW 0x000000000000005D MOUSE_NW 0x000000000000005E MOUSE_NNW 0x000000000000005F MOUSE_N 0x0000000000000060 MOUSE_NNE 0x0000000000000061 MOUSE_NE 0x0000000000000062 MOUSE_NEE 0x0000000000000063 MOUSE_E 0x0000000000000064 MOUSE_SEE 0x0000000000000065 MOUSE_SE 0x0000000000000066 MOUSE_SSE 0x0000000000000067 MOUSE_S 0x0000000000000068 MOUSE_SSW 0x0000000000000069 MOUSE_SW 0x000000000000006A MOUSE_SWW 0x000000000000006B MOUSE_W 0x000000000000006C MOUSE_NWW 0x000000000000006D MOUSE_NW 0x000000000000006E MOUSE_NWW 0x000000000000006F end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_mceusb.conf0000644000175000017500000000453111141052014024000 0ustar benben# # RC-6 config file # # source: http://home.hccnet.nl/m.majoor/projects__remote_control.htm # http://home.hccnet.nl/m.majoor/pronto.pdf # # used by: Philips # ######### # # Philips Media Center Edition remote control # For use with the USB MCE ir receiver # # Dan Conti dconti|acm.wwu.edu # # Updated with codes for MCE 2005 Remote additional buttons # *, #, Teletext, Red, Green, Yellow & Blue Buttons # Note: TV power button transmits no code until programmed. # Updated 12th September 2005 # Graham Auld - mce|graham.auld.me.uk # # Radio, Print, RecTV are only available on the HP Media Center remote control # begin remote name mceusb bits 16 flags RC6|CONST_LENGTH eps 30 aeps 100 header 2667 889 one 444 444 zero 444 444 pre_data_bits 21 pre_data 0x37FF0 gap 105000 toggle_bit 22 rc6_mask 0x100000000 begin codes Blue 0x00007ba1 Yellow 0x00007ba2 Green 0x00007ba3 Red 0x00007ba4 Teletext 0x00007ba5 # starts at af Radio 0x00007baf Print 0x00007bb1 Videos 0x00007bb5 Pictures 0x00007bb6 RecTV 0x00007bb7 Music 0x00007bb8 TV 0x00007bb9 # no ba - d8 Guide 0x00007bd9 LiveTV 0x00007bda DVD 0x00007bdb Back 0x00007bdc OK 0x00007bdd Right 0x00007bde Left 0x00007bdf Down 0x00007be0 Up 0x00007be1 Star 0x00007be2 Hash 0x00007be3 Replay 0x00007be4 Skip 0x00007be5 Stop 0x00007be6 Pause 0x00007be7 Record 0x00007be8 Play 0x00007be9 Rewind 0x00007bea Forward 0x00007beb ChanDown 0x00007bec ChanUp 0x00007bed VolDown 0x00007bee VolUp 0x00007bef More 0x00007bf0 Mute 0x00007bf1 Home 0x00007bf2 Power 0x00007bf3 Enter 0x00007bf4 Clear 0x00007bf5 Nine 0x00007bf6 Eight 0x00007bf7 Seven 0x00007bf8 Six 0x00007bf9 Five 0x00007bfa Four 0x00007bfb Three 0x00007bfc Two 0x00007bfd One 0x00007bfe Zero 0x00007bff end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_MCE-X10.conf0000644000175000017500000000315111141052014023471 0ustar benben# Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(atiusb) on Mon Apr 7 15:25:36 2008 # # contributed by Laurent Peltier # # brand: X10 # model no. of remote control: RF MCE Remote Control - Model N° OR22V # devices being controlled by this remote: USB Receiver # begin remote name RF_MCE_Remote_Control bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x14 post_data_bits 16 post_data 0x0 gap 227995 toggle_bit_mask 0x80800000 begin codes KEY_POWER 0xD702 KEY_RED 0x87B2 KEY_YELLOW 0x0934 KEY_GREEN 0x88B3 KEY_TEXT 0x6B96 KEY_BLUE 0x0A35 KEY_BACK 0xF520 KEY_INFO 0x84AF KEY_UP 0xEF1A KEY_LEFT 0x729D KEY_OK 0xF31E KEY_RIGHT 0xF41F KEY_DOWN 0x77A2 KEY_TIMESHIFTING 0x6D98 KEY_EPG 0x0631 KEY_DVDMENU 0xD904 KEY_LIVETV 0x719C KEY_VOLUMEUP 0xDE09 KEY_WINDOWS 0x709B KEY_CHANNELUP 0xE00B KEY_VOLUMEDOWN 0x5D88 KEY_CHANNELDOWN 0x618C KEY_MUTE 0xD500 KEY_PREVIOUS 0x76A1 KEY_NEXT 0xF823 KEY_REWIND 0x79A4 KEY_PLAY 0xFA25 KEY_FASTFORWARD 0x7BA6 KEY_RECORD 0xFC27 KEY_STOP 0x7DA8 KEY_PAUSE 0xFE29 KEY_1 0x628D KEY_2 0xE30E KEY_3 0x648F KEY_4 0xE510 KEY_5 0x6691 KEY_6 0xE712 KEY_7 0x6893 KEY_8 0xE914 KEY_9 0x6A95 KEY_* 0x8CB7 KEY_0 0xEC17 KEY_# 0x0D38 KEY_CLEAR 0x85B0 KEY_ENTER 0x0B36 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_Medion-X10.conf0000644000175000017500000000570511141052014024307 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(atiusb) on Sat Oct 21 14:49:15 2006 # # contributed by Michail Pappas # # brand: Medion (X10 OEM'd) bundled remote # lirc kernel module: lirc_atiusb # Geexbox receiver: atiusb # model no. of remote control: P/N 20017670 # devices being controlled by this remote: FCC ID: B4S20016398 # Receiver needed: lirc_atiusb begin remote name Medion-X10 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0x14 post_data_bits 16 post_data 0x0 gap 219969 toggle_bit 0 begin codes tv 0x012C vcr 0x022D dvd 0xD904 music 0xDB06 radio 0x032E photo 0xDA05 tv_preview 0x042F channel_list 0x0530 setup 0xF01B video_desktop 0x0631 chan-up 0xE00B chan-down 0xE10C vol-up 0xDE09 vol-down 0xDD08 mute 0xD500 red 0x0732 green 0x0833 yellow 0x0934 blue 0x0A35 txt 0xEB16 1 0xE20D 2 0xE30E 3 0xE40F 4 0xE510 5 0xE611 6 0xE712 7 0xE813 8 0xE914 9 0xEA15 0 0xEC17 ch_search 0xF11C delete 0xF520 rename 0x0B36 snapshot 0xED18 up 0xEF1A down 0xF722 left 0xF21D right 0xF41F ok 0xF31E acquire_image 0x0C37 edit_image 0x0D38 rewind 0xF924 play 0xFA25 fast_forward 0xFB26 rec 0xFC27 stop 0xFD28 pause 0xFE29 previous 0xF621 fullscreen 0x0E39 next 0xF823 dvd_menu 0xEE19 dvd_audio 0x0F3A power 0xD702 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_nova-s-plus.conf0000644000175000017500000000472711141052014024715 0ustar benben# # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.0(devinput) on Mon Mai 8 19:29:37 2006 # # contributed by Jalal Achkoune # # brand: Hauppauge # model no. of remote control: # devices being controlled by this remote: WinTV NOVA-S Plus # begin remote name Hauppauge bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 132784 toggle_bit 0 begin codes KEY_GO 0x0161 KEY_POWER 0x0074 KEY_TV 0x0179 KEY_VIDEO 0x0189 KEY_AUDIO 0x0188 KEY_PICURE 0x016F KEY_GUIDE 0x016D KEY_RADIO 0x0181 KEY_UP 0x0067 KEY_LEFT 0x0069 KEY_RIGHT 0x006A KEY_DOWN 0x006C KEY_OK 0x001C KEY_EXIT 0x00AE KEY_MENU 0x008B KEY_VOLUMEUP 0x0073 KEY_VOLUMEDOWN 0x0072 KEY_CHANNELUP 0x0192 KEY_CHANNELDOWN 0x0193 KEY_PREV 0x019C KEY_MUTE 0x0071 KEY_RECORD 0x00A7 KEY_STOP 0x0080 KEY_REWIND 0x00A8 KEY_PLAY 0x00CF KEY_FORWARD 0x00D0 KEY_PREVIOUS 0x00A5 KEY_PAUSE 0x0077 KEY_NEXT 0x00A3 KEY_1 0x004F KEY_2 0x0050 KEY_3 0x0051 KEY_4 0x004B KEY_5 0x004C KEY_6 0x004D KEY_7 0x0047 KEY_8 0x0048 KEY_9 0x0049 KEY_0 0x0052 KEY_TEXT 0x0184 KEY_SUB 0x0172 KEY_RED 0x018E KEY_GREEN 0x018F KEY_YELLOW 0x0190 KEY_BLUE 0x0191 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_packard_bell.conf0000644000175000017500000000705011141052014025124 0ustar benben# Config file for Packard Bell Remotes (with repeat codes!) # created by Samuel Wood (sjw@umr.edu) # # brand: Packard Bell Remote # model: El Cheapo Packard Bell Remote # # This is a config file for the cheap excess Packard Bell remotes # you sometimes can buy from online auctions like www.onsale.com. # # The receiver that comes with it hooks into the serial port and works # fine with lirc 0.5.4. # # The receiver that comes with the remote is near garbage. If # you don't point almost directly at it, it will not detect. But # it's simpler than building your own. :-) # # Repeat works fine for me. You just have to modify or add the # "repeat=" lines in your .lircrc. # # irrecord was used to generate the file, then I modified and # added repeat codes. # # The button names used are identical to what was printed on the # remote, except for the number pads (using actual numbers like # "1" and so forth did not seem to work. Similarly, '*' is Star # and '#' is Hash. LMB and RMB refer to the two mousepad buttons # on the left and right respectively. # # I still need to modify the gap setting. Right now, if you don't # hold the button down long enough, it may not register, but if # you hold it too long, it will detect a repeat or two. Feel free # to modify this to work better. If you get it to work better, send # me a copy. :-) begin remote name PackBell bits 15 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9065 4500 one 597 532 zero 597 1643 ptrail 597 pre_data_bits 16 pre_data 0xF708 post_data_bits 1 post_data 0x0 gap 107000 repeat_bit 0 repeat 9050 2250 begin codes Help 0x0000000000006F90 Phone 0x0000000000004FB0 Message 0x0000000000006E91 SRS 0x0000000000004EB1 CD 0x0000000000002FD0 Aux1 0x0000000000000FF0 Aux2 0x0000000000002ED1 Aux3 0x0000000000000EF1 LMB 0x00000000000023DC RMB 0x000000000000639C Up 0x00000000000037C8 Down 0x00000000000057A8 Left 0x0000000000007788 Right 0x00000000000017E8 Menu 0x0000000000007B84 Mute 0x0000000000003BC4 Enter 0x00000000000047B8 CHUp 0x00000000000027D8 CHDown 0x0000000000006798 VolUp 0x0000000000005BA4 VolDown 0x0000000000001BE4 Display 0x00000000000007F8 One 0x0000000000005EA1 Two 0x0000000000001EE1 Three 0x0000000000000BF4 Four 0x0000000000007E81 Five 0x0000000000003EC1 Six 0x0000000000004BB4 Seven 0x0000000000005FA0 Eight 0x0000000000001FE0 Nine 0x0000000000002BD4 Zero 0x0000000000003FC0 Star 0x0000000000007F80 Hash 0x0000000000006B94 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_pctv.conf0000644000175000017500000001314311141052014023475 0ustar benben# # contributed by Bart Alewijnse # # brand: Pinnacle Systems # model: PCTV Remote (Perhaps other ones as well) # supported devices: there's only one I know of. (serial) # # Mail me if your remote is only partly supported, or if it has different # buttons than listed below. # begin remote name PinnacleSysPCTVRemote bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 8 pre_data 0xFE gap 180000 toggle_bit 0 begin codes Mute 0xB53C #Mute 0x000000000000003C Power 0x2D2F #Power 0x000000000000002F Chan+Play 0x173F #Chan+Play 0x000000000000003F Chan-Stop 0xC63E #Chan-Stop 0x000000000000003E Vol+FF 0xF13B #Vol+FF 0x000000000000003B Vol-Rew 0x643D #Vol-Rew 0x000000000000003D 1 0x9F31 #1 0x0000000000000031 2 0x3D32 #2 0x0000000000000032 3 0xEC33 #3 0x0000000000000033 4 0xA834 #4 0x0000000000000034 5 0x7935 #5 0x0000000000000035 6 0xDB36 #6 0x0000000000000036 7 0x0A37 #7 0x0000000000000037 8 0x5338 #8 0x0000000000000038 9 0x8239 #9 0x0000000000000039 Fullscreen 0x5E2D #Fullscreen 0x000000000000002D 0/AV 0x203A #0/AV 0x000000000000003A Info 0xCB2B #Info 0x000000000000002B Preview 0xFC2E #Preview 0x000000000000002E Record 0x3027 #Record 0x0000000000000027 Chan_Last 0x4325 #Chan_Last 0x0000000000000025 F_TV 0xE126 #F_TV 0x0000000000000026 F_TELETEXT 0xB829 #F_TELETEXT 0x0000000000000029 F_RADIO 0x1A2A #F_RADIO 0x000000000000002A # # here are some extra buttons a new version of the remote seems to have # # contributed by Robbert Monna # # brand: Pinnacle Systems # model: PCTV Remote (newest version?) # supported devices: dongle on serial port (from TV-Card) # L 0x631F #L 0x000000000000001F Zoom 0xB21E #Zoom 0x000000000000001E vol+ 0x851B #vol+ 0x000000000000001B vol- 0x590F #vol- 0x000000000000000F channel+ 0x7E17 #channel+ 0x0000000000000017 channel- 0xC11C #channel- 0x000000000000001C middle 0x541A #middle 0x000000000000001A Menu 0x101D #Menu 0x000000000000001D next 0xF619 #next 0x0000000000000019 undo 0xAF16 #undo 0x0000000000000016 pause 0x0D15 #pause 0x0000000000000015 redo 0x9813 #redo 0x0000000000000013 Rewind 0x880E #Rewind 0x000000000000000E Play 0x2A0D #Play 0x000000000000000D Stop 0xBF0B #Stop 0x000000000000000B FForward 0x4407 #FForward 0x0000000000000007 EPG 0x2718 #EPG 0x0000000000000018 # here are some more buttons that seem to be mapped differently from # the ones above # contributed by InterCeptor ceptor_7@freemail.hu # # brand: Pinnacle Systems PCTV Pro Remote # model no. of remote control: (I can't find any numbers on it) # supported devices: serial # 9 0x0000000000000082 Zoom 0x00000000000000B2 middle 0x0000000000000014 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_realmagic.conf0000644000175000017500000000615611141052014024453 0ustar benben# # this config file was automatically generated # using lirc-0.6.3 on Fri Nov 10 21:47:32 2000 # # contributed by Stefan Neuwirth & Andreas Lange # # brand: Sigma Designs # model: REALmagic remote control # www.realmagic.com/support.htm#remote # supported devices: # "For Hollywood Plus Version 1.4 or above Driver only" # remote control for the Sigma Designs REALmagic Hollywood Plus DVD card # receiver is connected to the serial port - it does not require the card # # The first byte always is 131. The second and third byte are equal. (CB) # begin remote name REALmagic bits 20 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 10 pre_data 0x183 gap 189974 toggle_bit 0 begin codes 1 0x0000000000062D8B 2 0x0000000000012C4B 3 0x000000000001AC6B 4 0x0000000000072DCB 5 0x000000000000AC2B 6 0x0000000000052D4B # Nicolas Vignal reported that this code is sent for his remote # version (1.5). It should be no problem to just have two entries for # "6" unless you want to send codes what won't work for this receiver # anyway. 6 0x0000000000041505 7 0x0000000000058561 8 0x0000000000044511 9 0x000000000004AD2B 0 0x000000000004C531 VOL+ 0x0000000000022C8B VOL- 0x0000000000032CCB MUTE 0x000000000006ADAB L-R 0x0000000000052549 VGA 0x0000000000054551 ENTER 0x0000000000042509 QUIT 0x0000000000058D63 PRG 0x0000000000038CE3 UP 0x0000000000078DE3 DOWN 0x0000000000064D93 LEFT 0x0000000000044D13 RIGHT 0x000000000003ECFB SELECT 0x0000000000024C93 MENU 0x0000000000014C53 TITLE 0x0000000000054D53 OSD 0x0000000000034CD3 LANG 0x0000000000074DD3 ANGLE 0x000000000000CC33 SUB 0x000000000004CD33 PAUSE 0x000000000002CCB3 STOP 0x000000000006CDB3 PLAY 0x000000000001CC73 EJECT 0x000000000005CD73 REV 0x000000000003CCF3 FF 0x000000000007CDF3 PREV 0x0000000000002C0B NEXT 0x0000000000042D0B end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_RM-S6.conf0000644000175000017500000000357011141052014023330 0ustar benben# # this config file was NOT automatically generated. # it was made using lirc-0.5.5pre8 on Sat Jun 12 1999 # # contributed by Luis Sousa # # brand: SONY # model: RM-S6 # supported devices: this remote has the basic functions for # almost all Sony HiFi Sytems # begin remote name RM-S6 bits 12 flags SPACE_ENC eps 30 aeps 100 header 2500 590 one 1210 590 zero 610 590 ptrail 0 plead 0 foot 0 0 repeat 0 0 pre_data_bits 0 pre_data 0 post_data_bits 0 post_data 0 pre 0 0 post 0 0 gap 25000 repeat_bit 0 min_repeat 2 begin codes SLEEP 0x0000000000000061 AMP_POWER 0x0000000000000A81 CD 0x0000000000000A41 CD_PLAY 0x00000000000004D1 CD_PAUSE 0x00000000000009D1 CD_STOP 0x00000000000001D1 CD_EJECT 0x0000000000000691 CD_PREV_TRACK 0x00000000000000D1 CD_NEXT_TRACK 0x00000000000008D1 TAPE 0x0000000000000C41 PHONO 0x0000000000000041 VIDEO/AUX 0x0000000000000441 TUNER 0x0000000000000841 TUNER_SHIFT 0x0000000000000CD6 TUNER_PRESET_- 0x0000000000000896 TUNER_PRESET_+ 0x0000000000000096 AMP_VOL_UP 0x0000000000000481 AMP_VOL_DOWN 0x0000000000000C81 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_RX-V850.conf0000644000175000017500000000625011141052014023513 0ustar benben# # This config file has been automatically converted from a device file # found in the 06/26/00 release of the Windows Slink-e software # package. # # Many thanks to Colby Boles of Nirvis Systems Inc. for allowing us to # use these files. # # The original filename was: "yamaha rx-v850 rs rx-v850 receiver_amp.cde" # # The original description for this device was: # # yamaha rx-v850 rs rx-v850 receiver/amp # begin remote name RX-V850 bits 32 flags SPACE_ENC eps 20 aeps 200 header 8800 4400 one 550 1650 zero 550 550 ptrail 550 repeat 8800 2200 gap 38500 toggle_bit 0 frequency 38000 begin codes POWER 0x000000005EA1F807 PHONO 0x000000005EA128D7 CD 0x000000005EA1A857 TUNER 0x000000005EA16897 TAPE_1/DAT 0x000000005EA19867 TAPE_2/VCR_2 0x000000005EA118E7 LD_V 0x000000005EA1E817 VCR_1 0x000000005EA1F00F CD_PLAY 0x000000005EA110EF CD_PAUSE/STOP 0x000000005EA1906F CD_SEARCH_FWD 0x000000005EA130CF CD_SEARCH_REV 0x000000005EA1B04F CD_SKIP_FWD 0x000000005EA150AF CD_SKIP_REV 0x000000005EA1D02F CD_DISK_SKIP 0x000000005EA1F20D TAPE_PLAY 0x000000005EA100FF TAPE_STOP 0x000000005EA1C03F TAPE_FFWD 0x000000005EA140BF TAPE_REWIND 0x000000005EA1807F TAPE_REC/PAUSE 0x000000005EA120DF TAPE_REC_MUTE 0x000000005EA1A05F TAPE_DECK_A/B 0x000000005EA1609F TAPE_DIR_A 0x000000005EA1E01F TAPE_DIR_B 0x000000005EA102FD TUNER_+ 0x000000005EA108F7 TUNER_A/B/C/D/E 0x000000005EA148B7 DSP_TEST 0x000000005EA1A15E DSP_CENTRE_MODE 0x000000005EA121DE DSP_PRO_LOGIC 0x000000005EA111EE DSP_PRO_LOGIC_ENH. 0x000000005EA1916E DSP_CNCT_VIDEO 0x000000005EA151AE DSP_MONO_MOVIE 0x000000005EA1D12E DSP_ROCK 0x000000005EA131CE DSP_HALL 0x000000005EA1B14E DSP_EFFECT_ON/OFF 0x000000005EA16A95 FRONT_LEVEL_+ 0x000000005EA101FE FRONT_LEVEL_- 0x000000005EA1817E CENTRE_LEVEL_+ 0x000000005EA141BE CENTRE_LEVEL_- 0x000000005EA1C13E REAR_LEVEL_+ 0x000000005EA17A85 REAR_LEVEL_- 0x000000005EA1FA05 DELAY_TIME_+ 0x000000005EA14AB5 DELAY_TIME_- 0x000000005EA1CA35 MUTING 0x000000005EA138C7 VOLUME_UP 0x000000005EA158A7 VOLUME_DOWN 0x000000005EA1D827 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_streamzap.conf0000644000175000017500000000374611141052014024537 0ustar benben# # this config file was automatically generated # using lirc-0.7.1-CVS(serial) on Fri Feb 4 23:20:56 2005 # # contributed by Christoph Bartelmus # # brand: Streamzap # model no. of remote control: PC Remote # devices being controlled by this remote: USB receiver # begin remote name Streamzap_PC_Remote bits 6 flags RC5|CONST_LENGTH eps 30 aeps 100 one 907 804 zero 907 804 plead 949 pre_data_bits 8 pre_data 0xA3 gap 108344 toggle_bit 2 begin codes 0 0x00 1 0x01 2 0x02 3 0x03 4 0x04 5 0x05 6 0x06 7 0x07 8 0x08 9 0x09 POWER 0x0A MUTE 0x0B CH_UP 0x0C VOL_UP 0x0D CH_DOWN 0x0E VOL_DOWN 0x0F UP 0x10 LEFT 0x11 OK 0x12 RIGHT 0x13 DOWN 0x14 MENU 0x15 EXIT 0x16 PLAY 0x17 PAUSE 0x18 STOP 0x19 |<< 0x1A >>| 0x1B RECORD 0x1C << 0x1D >> 0x1E RED 0x20 GREEN 0x21 YELLOW 0x22 BLUE 0x23 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_Toshiba-RM1500.conf0000644000175000017500000000303011141052014024726 0ustar benbenbegin remote name Toshiba_RM1500 bits 8 eps 30 aeps 100 one 0 0 zero 0 0 gap 315937 toggle_bit 0 begin codes power 0x9E key1 0x74 key2 0x70 key3 0x6F key4 0x75 key5 0x7B key6 0x87 key7 0x76 key8 0x7C key9 0x88 key0 0x7F CMSS 0x8E EAX 0x73 mute 0x91 vol- 0x9C vol+ 0x9D up 0x84 down 0x72 left 0x78 right 0x8A ok 0x7E return 0x71 start 0x77 cancel 0x83 record 0x8C options 0x7D display 0x89 previous 0x80 playpause 0x86 next 0x85 slow 0x82 stop 0x7A step 0x81 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_tosh-vt76f.conf0000644000175000017500000000536411141052014024456 0ustar benben# # this config file was automatically generated # using WinLIRC 0.6.5 (LIRC 0.6.1pre3) on Tue Jan 31 23:13:02 2006 # # contributed by Lionel D. # english translation on Thu Feb 02 20:14:00 2006 # # brand: TOSHIBA # model: VT-76F # supported devices: # begin remote name VT-76F bits 16 flags SPACE_ENC eps 25 aeps 100 header 9066 4472 one 603 520 zero 603 1642 ptrail 603 repeat 9068 2236 pre_data_bits 16 pre_data 0xDD22 gap 39980 toggle_bit 0 begin codes POWER 0x000000000000B748 A.SELECT 0x00000000000035CA TV/VCR 0x0000000000007788 1 0x0000000000007F80 2 0x000000000000BF40 3 0x0000000000003FC0 4 0x000000000000DF20 5 0x0000000000005FA0 6 0x0000000000009F60 7 0x0000000000001FE0 8 0x000000000000EF10 9 0x0000000000006F90 0 0x000000000000AF50 CH- 0x00000000000007F8 CH+ 0x00000000000027D8 SHIFT<- 0x000000000000758A SHIFT-> 0x0000000000004DB2 DISPLAY 0x0000000000003EC1 OSP 0x000000000000C53A IMMEDIATE_REC 0x00000000000025DA INPUT 0x00000000000005FA SP/LP 0x00000000000045BA RECORD 0x000000000000B748 FAST_REW 0x0000000000006798 PLAY 0x00000000000057A8 FAST_FORW 0x00000000000037C8 PAUSE 0x000000000000F708 STOP 0x000000000000D728 SLOW 0x0000000000004FB0 INDEX 0x0000000000009D62 TIME_LEFT/CLOCK 0x0000000000009768 ALIGN_DOWN 0x0000000000000FF0 ALIGN_UP 0x0000000000008F70 TIME_SEARCH 0x0000000000005EA1 ZERO_BACK 0x0000000000001EE1 RST_COUNTER 0x0000000000009669 DT 0x000000000000D42B A.DUB 0x000000000000C738 CLEARNESS_IMG+ 0x000000000000906F CLEARNESS_IMG- 0x00000000000010EF end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_twinhan.conf0000644000175000017500000000376311141052014024200 0ustar benben# this config file was automatically generated # using lirc-0.7.1pre1(serial) on Mon Feb 7 21:00:46 2005 # # contributed by Th. Peters # # brand: Twinhan # model: black/silver, 32 Keys, bundled with DTV digital satellite receiver # devices being controlled by this remote: Twinhan DTV Sat (DVB-S) PCI-Card begin remote name TwinhanDTV bits 16 flags SPACE_ENC|CONST_LENGTH eps 30 aeps 100 header 9073 4400 one 654 1590 zero 654 469 ptrail 654 repeat 9076 2150 pre_data_bits 16 pre_data 0xFF gap 107783 toggle_bit 0 begin codes FULLSCREEN 0xB24D POWER 0x6897 1 0xC03F 2 0x807F 3 0x609F 4 0x906F 5 0xB847 6 0xF807 7 0xB04F 8 0x9867 9 0xD827 0 0xA857 RECORD 0x8877 FAVORITE 0xE817 REWIND 0x02FD FORWARD 0x48B7 CH_UP 0xA05F CH_DOWN 0x40BF PLAY 0x28D7 VOL_DOWN 0x50AF VOL_UP 0x7887 RECALL 0x708F STOP 0x58A7 TIMESHIFT 0x32CD MUTE 0x08F7 CANCEL 0x30CF CAPTURE 0x2AD5 PREVIEW 0x12ED EPG 0x38C7 RECORDLIST 0x20DF TAB 0x00FF TELETEXT 0xF00F end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_ultrax.conf0000644000175000017500000000373011141052014024041 0ustar benben # Please make this file available to others # by sending it to # # this config file was automatically generated # using lirc-0.8.2pre2(dev/input) on Sat May 19 19:29:07 2007 # # contributed by Guillaume LECERF # # brand: Logitech UltraX Media Remote # model no. of remote control: R-RC6 # devices being controlled by this remote: # begin remote name R-RC6 bits 16 eps 30 aeps 100 one 0 0 zero 0 0 pre_data_bits 16 pre_data 0x8001 gap 133314 toggle_bit_mask 0x800100A4 begin codes KEY_RED 0x018E KEY_HOME 0x0066 KEY_CLOSE 0x00CE KEY_TV 0x0179 KEY_DVD 0x0185 KEY_RADIO 0x0181 KEY_MEDIA 0x00E2 KEY_VIDEO 0x0189 KEY_MP3 0x0187 KEY_VOLUMEDOWN 0x0072 KEY_VOLUMEUP 0x0073 KEY_MIN_INTERESTING 0x0071 KEY_RECORD 0x00A7 KEY_STOPCD 0x00A6 KEY_PREVIOUSSONG 0x00A5 KEY_NEXTSONG 0x00A3 KEY_PLAYPAUSE 0x00A4 KEY_REWIND 0x00A8 KEY_FASTFORWARD 0x00D0 KEY_BACK 0x009E KEY_CHANNELUP 0x0192 KEY_MENU 0x008B KEY_CHANNELDOWN 0x0193 KEY_ANGLE 0x0173 KEY_AUDIO 0x0188 KEY_LAST 0x0195 KEY_LANGUAGE 0x0170 KEY_AGAIN 0x0081 KEY_PROPS 0x0082 KEY_SUBTITLE 0x0172 KEY_SHUFFLE 0x019A KEY_TEXT 0x0184 end codes end remote geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_animax0000644000175000017500000000011411141052014023044 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_serial type=3" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_askey0000644000175000017500000000014211141052014022704 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="videodev|bttv card=38|lirc_dev|lirc_gpio" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_atiusb0000644000175000017500000000010511141052014023056 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_atiusb" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_atiusb20000644000175000017500000000010511141052014023140 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_atiusb" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_avermedia0000644000175000017500000000012011141052014023521 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=13|lirc_gpio" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_creative0000644000175000017500000000012211141052014023370 0ustar benbenLIRC_DRIVER=creative LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250|8250_pnp|8250_pci" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_cx880000644000175000017500000000010511141052014022361 0ustar benbenLIRC_DRIVER=dev/input LIRC_DEVICE=/dev/input/ir LIRC_MODULES="evdev" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_digimatrix0000644000175000017500000000014311141052014023732 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_it87 digimatrix=1 it87_freq=36 irq=9" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_dvico0000644000175000017500000000005311141052014022675 0ustar benbenLIRC_DRIVER=dvico LIRC_DEVICE=/dev/hiddev0 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_hauppauge0000644000175000017500000000011611141052014023550 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=2|lirc_i2c" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_homemade0000644000175000017500000000010511141052014023346 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_serial" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_imonknob0000644000175000017500000000010311141052014023401 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_imon" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_irman0000644000175000017500000000011711141052014022700 0ustar benbenLIRC_DRIVER=irman LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250|8250_pnp|8250_pci" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_leadtek0000644000175000017500000000012011141052014023175 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="bttv card=34|lirc_gpio" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_leadtek-pvr20000000644000175000017500000000011311141052014024306 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_dev|lirc_i2c" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_logitech0000644000175000017500000000012211141052014023364 0ustar benbenLIRC_DRIVER=logitech LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250|8250_pnp|8250_pci" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_mceusb0000644000175000017500000000010511141052014023045 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_mceusb" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_mceusb20000644000175000017500000000010611141052014023130 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_mceusb2" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_MCE-X100000644000175000017500000000010511141052014022541 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_atiusb" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_pctv0000644000175000017500000000012011141052014022540 0ustar benbenLIRC_DRIVER=pinsys LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250|8250_pnp|8250_pci" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_realmagic0000644000175000017500000000012311141052014023513 0ustar benbenLIRC_DRIVER=pixelview LIRC_DEVICE=/dev/ttyS0 LIRC_MODULES="8250|8250_pnp|8250_pci" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_streamzap0000644000175000017500000000011011141052014023571 0ustar benbenLIRC_DRIVER=default LIRC_DEVICE=/dev/lirc LIRC_MODULES="lirc_streamzap" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_Toshiba-SB05000000644000175000017500000000007311141052014023773 0ustar benbenLIRC_DRIVER=alsa_usb LIRC_DEVICE=hw:SB0500 LIRC_MODULES="" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lirc/lircd_ultrax0000644000175000017500000000015711141052014023115 0ustar benbenLIRC_DRIVER=dev/input LIRC_DEVICE=/dev/input/by-id/usb-Logitech_USB_Receiver-event-remote LIRC_MODULES="evdev" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/mplayer/0000755000175000017500000000000011141052016021215 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/mplayer/mplayer.conf0000644000175000017500000000355311141052016023543 0ustar benben[deinterlace] profile-desc="Profile for picture de-interlacing" vf-add=pp=fd [dvd] profile-desc="Profile for DVD playback" profile=deinterlace dvd-speed=4 cache=8192 [lang] profile-desc="Profile for language" alang=en [protocol.dvd] profile-desc="Profile for dvd:// streams" profile=dvd profile=lang [protocol.dvdnav] profile-desc="Profile for dvdnav:// streams" profile=dvd profile=lang nocache=yes colorspu=yes [protocol.dvb] profile-desc="Profile for dvb:// streams" demuxer=+mpegts tskeepbroken=1 tsprobe=512000 nocache=yes [protocol.cdda] profile-desc="Profile for cdda:// streams" cdda=speed=2 [protocol.tv] profile-desc="Profile for tv:// streams" profile=deinterlace [extension.mkv] profile-desc="Profile for Matroska files" profile=lang [default] vo=cvidix,vesa mixer-channel=Master framedrop=yes vsync=yes fs=yes zoom=yes menu=yes menu-startup=yes menu-chroot=/mnt double=yes fixed-vo=yes nocolorkey=yes cache=4096 cache-min=2 idx=yes lircconf=/etc/lircrc sub-fuzziness=1 #monitor-hfreq=31.5k-50k #monitor-vfreq=50-90 input=file=/var/mp_control menu-flip-hebrew=1 menu-keepdir=1 bg-lcdbanner="GeeXboX Open Media Center" info-fifo=/tmp/mp_streaminfo spuaa=4 # Set Post Processing (h deblock, v deblock, dering, auto luminance) # Consumes CPU power, disabled for low configs, uncomment to enable it. #vf=pp=hb:a/vb:a/dr:a/al:a # Forces RTSP client's port (usefull for FreeboxTV users in router mode) # Do _NOT_ uncomment the line without LIVE555 support #rtsp-port = 31337 # Subtitles properties ass=yes embeddedfonts=yes ass-use-margins=yes ass-color=FFFFFF00 # plain white (no alpha) # GOOM Audio Visuals # Unexpected behaviours can appear with GOOM and audio files different of # MP3 or WMA. Enable it only if you know what you do. We provide no support # for this functionality. visuals=no visuals-w=640 visuals-h=360 visuals-fps=20 # decrease FPS if load is going too high geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/mplayer/menu.conf0000644000175000017500000002646211141052016023042 0ustar benben #WELCOME_CONSOLE# geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/mplayer/input.conf0000644000175000017500000000535011141052016023226 0ustar benben## ## GeeXboX MPlayer input control file ## ## Playback p pause SPACE pause f pt_step -1 g pt_step 1 h tv_step_channel 1 l tv_step_channel -1 n tv_step_norm b tv_step_chanlist ## Seeking RIGHT seek +10 LEFT seek -10 DOWN seek -60 UP seek +60 PGUP seek 600 PGDWN seek -600 ## Audio properties - audio_delay 0.100 + audio_delay -0.100 / volume -1 * volume 1 c mute e switch_audio ## Subtitle properties z sub_delay -0.1 x sub_delay +0.1 r sub_pos -1 t sub_pos +1 w sub_select ## DVD Menu Navigation UP {dvdnav} dvdnav 1 # DVDNav UP DOWN {dvdnav} dvdnav 2 # DVDNav DOWN LEFT {dvdnav} dvdnav 3 # DVDNav LEFT RIGHT {dvdnav} dvdnav 4 # DVDNav RIGHT ESC {dvdnav} dvdnav 5 # DVDNav MENU ENTER {dvdnav} dvdnav 6 # DVDNav SELECT (ok) BS {dvdnav} dvdnav 7 # DVDNav PREVIOUS menu (in the order chapter->title->root) AR_VUP {dvdnav} dvdnav 1 # DVDNav UP AR_VDOWN {dvdnav} dvdnav 2 # DVDNav DOWN AR_PREV {dvdnav} dvdnav 3 # DVDNav LEFT AR_NEXT {dvdnav} dvdnav 4 # DVDNav RIGHT AR_MENU {dvdnav} dvdnav 5 # DVDNav MENU AR_PLAY {dvdnav} dvdnav 6 # DVDNav SELECT (ok) ## Miscelaneous a quit q quit ESC quit k halt o osd m menu toggle ; menu toggle s run /usr/bin/tvswitch y play_dvd i set_menu info ## Controls 1 contrast -1 3 contrast 1 7 brightness -1 9 brightness 1 INS hue -1 DEL hue 1 HOME saturation -1 END saturation 1 ## Joystick JOY_RIGHT seek 10 JOY_LEFT seek -10 JOY_UP seek 60 JOY_DOWN seek -60 JOY_BTN1 menu hide JOY_BTN2 pause JOY_BTN3 osd JOY_BTN4 mute JOY_BTN5 volume -1 JOY_BTN6 volume 1 ## Apple Remote AR_PLAY pause AR_PLAY_HOLD quit AR_NEXT seek 30 AR_NEXT_HOLD seek 120 AR_PREV seek -10 AR_PREV_HOLD seek -120 AR_MENU menu up #AR_MENU menu cancel AR_MENU_HOLD mute AR_VUP volume 1 AR_VDOWN volume -1 #Navigation between teletext pages RIGHT {teletext} step_property teletext_page 1 LEFT {teletext} step_property teletext_page -1 UP {teletext} step_property teletext_page 100 DOWN {teletext} step_property teletext_page -100 H step_property teletext_mode 1 C step_property teletext_format 1 #Nagigation though teletext subpages PGUP {teletext} step_property teletext_subpage -1 PGDWN {teletext} step_property teletext_subpage 1 #Entering page number manually 1 {teletext} teletext_add_dec 1 2 {teletext} teletext_add_dec 2 3 {teletext} teletext_add_dec 3 4 {teletext} teletext_add_dec 4 5 {teletext} teletext_add_dec 5 6 {teletext} teletext_add_dec 6 7 {teletext} teletext_add_dec 7 8 {teletext} teletext_add_dec 8 9 {teletext} teletext_add_dec 9 0 {teletext} teletext_add_dec 0 - {teletext} teletext_add_dec - #Switch TV chanels by LEFT/RIGHT keys LEFT {tv} tv_step_channel -1 RIGHT {tv} tv_step_channel 1 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/mplayer/no_unstable_vidix0000644000175000017500000000052711141052016024660 0ustar benbenYou can enable nvidia/sis vidix driver simply by removing this file. Vidix should give you better performance especially with low-end hardware. This feature is not very well tested. That's why it is not enabled by default. And that's also why you should help us, testing this feature and reporting your results if you own nvidia/sis hardware. geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/mplayer/codecs.conf0000644000175000017500000023130311141052016023326 0ustar benben;============================================================================= ; Default codecs config file. ; Before editing this file, please read DOCS/tech/codecs.conf.txt ! ;============================================================================= release 20070930 ;============================================================================= ; VIDEO CODECS ;============================================================================= videocodec ffmvi1 info "FFmpeg Motion Pixels Decoder" status working fourcc MVI1 ; internal MPlayer FourCC driver ffmpeg dll motionpixels out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 out YV12,YUY2 videocodec ffmdec info "FFmpeg Sony PlayStation MDEC (Motion DECoder)" status working fourcc MDEC ; internal MPlayer FourCC driver ffmpeg dll mdec out YV12 videocodec ffsiff info "FFmpeg Beam Software SIFF decoder" status working fourcc VBV1 driver ffmpeg dll vb out BGR8 videocodec ffmimic info "FFmpeg Mimic video" status working fourcc ML20 out I420 driver ffmpeg dll "mimic" videocodec ffkmvc info "FFmpeg Karl Morton Video Codec" status working fourcc KMVC out BGR8 driver ffmpeg dll "kmvc" videocodec ffzmbv info "FFmpeg Zip Motion-Block Video" status working fourcc ZMBV driver ffmpeg dll "zmbv" out RGB24 videocodec zmbv info "Zip Motion-Block Video" status working fourcc ZMBV driver vfw dll "zmbv.dll" out BGR24,BGR15,BGR8 query,flip videocodec yuv8 info "YUV422 = Cb0 Y0 Cr0 Y1 Cb1 Y2 Cr1 Y3 (U Y V Y U Y V Y)" status working fourcc yuv8 driver vfwex dll "kdvyuv8.dll" ; i wonder if this works with raw codecs? out YV12,I420,UYVY out BGR24,BGR15,BGR32 videocodec blackmagic info "Blackmagic 10-bit" status working comment "requires libguide40.dll" fourcc r210 driver vfw dll "BMDCodecLib.dll" out BGR32,RGB32 ; MPEG-1/2 decoding: ; Note: mpegpes is preferred for hw decoders: videocodec mpegpes info "MPEG-PES output (.mpg or DXR3/IVTV/DVB/V4L2 card)" comment "for hardware decoding" status working format 0x10000001 ; mpeg 1 format 0x10000002 ; mpeg 2 fourcc mpg1,MPG1,mpg2,MPG2 fourcc MPEG fourcc hdv1,hdv2,hdv3 fourcc hdv5 fourcc hdv6,hdv7,hdv8 fourcc xdv1,xdv2,xdv3 fourcc xdv4,xdv5,xdv6 fourcc xdv7,xdv8,xdv9 fourcc xdva,xdvb,xdvc fourcc xdvd,xdve,xdvf fourcc xd5a,xd5b,xd5c fourcc xd5d,xd5e,xd5f fourcc xd59 fourcc mx5n,mx4n,mx4p fourcc mx3n,mx3p fourcc AVmp fourcc mp2v,mpgv fourcc VCR2 driver mpegpes out MPES videocodec ffmpeg1 info "FFmpeg MPEG-1" status working format 0x10000001 ; MPEG-1 fourcc mpg1 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc VCR2 fourcc MPEG driver ffmpeg dll "mpeg1video" out YV12,I420,IYUV videocodec ffmpeg2 info "FFmpeg MPEG-2" status working format 0x10000002 ; MPEG-2 fourcc mpg2,MPG2 fourcc "DVR " fourcc hdv1 fourcc hdv2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc hdv5 ; HDV 720p25 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) fourcc MMES,mmes ; matrox mpeg2 in avi fourcc hdv6,hdv7,hdv8 fourcc xdv1,xdv2,xdv3 fourcc xdv4,xdv5,xdv6 fourcc xdv7,xdv8,xdv9 fourcc xdva,xdvb,xdvc fourcc xdvd,xdve,xdvf fourcc xd5a,xd5b,xd5c fourcc xd5d,xd5e,xd5f fourcc xd59 fourcc mx5n,mx4n,mx4p fourcc mx3n,mx3p fourcc AVmp fourcc VCR2 fourcc mp2v,mpgv fourcc PIM2 fourcc LMP2 ; Lead mpeg2 in avi driver ffmpeg dll "mpeg2video" out YV12,I420,IYUV out 422P,444P ; for backward compatibility videocodec ffmpeg12 info "FFmpeg MPEG-1/2" status working format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc mpg1,mpg2,MPG2 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc PIM2 ; Pinnacle hardware-MPEG-2 fourcc VCR2 fourcc "DVR " fourcc hdv2 fourcc MPEG fourcc hdv1 fourcc hdv3 ; HDV 1080i50 fourcc hdv5 ; HDV 720p25 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) fourcc MMES,mmes ; matrox mpeg2 in avi fourcc hdv6,hdv7,hdv8 fourcc xdv1,xdv2,xdv3 fourcc xdv4,xdv5,xdv6 fourcc xdv7,xdv8,xdv9 fourcc xdva,xdvb,xdvc fourcc xdvd,xdve,xdvf fourcc xd5a,xd5b,xd5c fourcc xd5d,xd5e,xd5f fourcc xd59 fourcc mx5n,mx4n,mx4p fourcc mx3n,mx3p fourcc AVmp fourcc mp2v,mpgv fourcc LMP2 ; Lead mpeg2 in avi driver ffmpeg dll "mpegvideo" out YV12,I420,IYUV out 422P,444P videocodec mpeg12 info "MPEG-1 or 2 (libmpeg2)" comment "with postprocessing" status working format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc "DVR " fourcc hdv2 fourcc mpg1 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc PIM2 ; Pinnacle hardware-MPEG-2 fourcc VCR2 fourcc mpg2,MPG2 fourcc MPEG fourcc hdv1 fourcc hdv3 ; HDV 1080i50 fourcc hdv5 ; HDV 720p25 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) fourcc MMES,mmes ; matrox mpeg2 in avi fourcc hdv6,hdv7,hdv8 fourcc xdv1,xdv2,xdv3 fourcc xdv4,xdv5,xdv6 fourcc xdv7,xdv8,xdv9 fourcc xdva,xdvb,xdvc fourcc xdvd,xdve,xdvf fourcc xd5a,xd5b,xd5c fourcc xd5d,xd5e,xd5f fourcc xd59 fourcc mx5n,mx4n,mx4p fourcc mx3n,mx3p fourcc AVmp fourcc mp2v,mpgv fourcc LMP2 ; Lead mpeg2 in avi driver libmpeg2 ; dll "libmpeg2" out YV12,I420,IYUV out 422P videocodec ffmpeg12mc info "FFmpeg MPEG-1/2 (XvMC)" status buggy format 0x10000001 ; MPEG-1 format 0x10000002 ; MPEG-2 fourcc mpg1,mpg2,MPG2 fourcc "DVR " fourcc hdv1 fourcc hdv2 fourcc PIM1 ; Pinnacle hardware-MPEG-1 fourcc PIM2 ; Pinnacle hardware-MPEG-2 fourcc VCR2 fourcc MPEG fourcc hdv3 ; HDV 1080i50 fourcc hdv5 ; HDV 720p25 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) fourcc MMES,mmes ; matrox mpeg2 in avi fourcc hdv6,hdv7,hdv8 fourcc xdv1,xdv2,xdv3 fourcc xdv4,xdv5,xdv6 fourcc xdv7,xdv8,xdv9 fourcc xdva,xdvb,xdvc fourcc xdvd,xdve,xdvf fourcc xd5a,xd5b,xd5c fourcc xd5d,xd5e,xd5f fourcc xd59 fourcc mx5n,mx4n,mx4p fourcc mx3n,mx3p fourcc AVmp fourcc mp2v,mpgv fourcc LMP2 ; Lead mpeg2 in avi driver ffmpeg dll "mpegvideo_xvmc" out IDCT_MPEG2 out MOCO_MPEG2 ; we have only native open source codecs for these: videocodec ffnuv info "NuppelVideo" status working fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC fourcc RJPG driver ffmpeg dll nuv out I420 videocodec nuv info "NuppelVideo" status working fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC fourcc RJPG driver nuv out I420,IYUV videocodec ffbmp info "FFmpeg BMP decoder" status working fourcc "bmp " ; for BMP-encoded QuickTime files format 0x706D62 ; AVI driver ffmpeg dll bmp out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec ffgif info "FFmpeg GIF decoder" status working fourcc "gif " ; for GIF-encoded QuickTime files driver ffmpeg dll gif out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec fftiff info "FFmpeg TIFF decoder" status working fourcc "tiff" ; for TIFF-encoded QuickTime files driver ffmpeg dll tiff out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec ffpcx info "FFmpeg PCX decoder" status working fourcc "pcx " driver ffmpeg dll pcx out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec ffpng info "FFmpeg PNG decoder" status working fourcc mpng,MPNG fourcc "png " ; for PNG-encoded QuickTime files driver ffmpeg dll png out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec mpng info "PNG image decoder" status working comment "Gray scaled PNG with Alpha channel not supported" fourcc mpng,MPNG fourcc "png " ; for PNG-encoded QuickTime files dll "libpng" driver mpng out BGR32,BGR24,BGR8,Y800 videocodec ffptx info "FFmpeg V.Flash PTX decoder" status working fourcc "ptx " ; internal MPlayer FourCC driver ffmpeg dll ptx out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec fftga info "FFmpeg TGA decoder" status untested fourcc mtga,MTGA fourcc "tga " ; for TGA-encoded QuickTime files driver ffmpeg dll targa out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec mtga info "TGA image decoder" status working comment "Only 24bpp and 32bpp RGB TGA files supported" fourcc mtga,MTGA driver mtga out BGR32,BGR24 videocodec sgi info "SGI image decoder" status working fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC driver sgi out BGR24 videocodec ffsunras info "FFmpeg SUN Rasterfile decoder" status working fourcc "sun " ; sun is an internal MPlayer FOURCC driver ffmpeg dll sunrast out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 videocodec ffindeo3 info "FFmpeg Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver ffmpeg dll indeo3 out YVU9 videocodec fffli info "Autodesk FLI/FLC Animation" status working fourcc FLIC ; FLIC is an internal MPlayer FOURCC driver ffmpeg dll "flic" out BGR16,BGR15,BGR8 query videocodec ffaasc info "Autodesk RLE decoder" status working fourcc AASC driver ffmpeg dll "aasc" out BGR24 videocodec ffloco info "LOCO video decoder" status working fourcc LOCO driver ffmpeg dll "loco" out 422P,YV12,BGR32,BGR24 query videocodec ffqtrle info "QuickTime Animation (RLE)" status working format 0x20656C72 ; "rle " driver ffmpeg dll "qtrle" out BGR32,RGB24,BGR15,BGR8 query videocodec ffrpza info "QuickTime Apple Video" status working fourcc rpza,azpr,RPZA,AZPR driver ffmpeg dll "rpza" out BGR15 videocodec ffsmc info "Apple Graphics (SMC) codec" status working format 0x20636d73 ; "smc " driver ffmpeg dll "smc" out BGR8 videocodec ff8bps info "Planar RGB (Photoshop)" status working fourcc 8BPS driver ffmpeg dll "8bps" out BGR32,BGR24,BGR8 query videocodec ffcyuv info "Creative YUV (libavcodec)" status working fourcc cyuv,CYUV driver ffmpeg dll "cyuv" out 411P videocodec ffmsrle info "Microsoft RLE" status working format 0x1 format 0x2 fourcc WRLE driver ffmpeg dll "msrle" out BGR8 videocodec ffroqvideo info "Id RoQ File Video Decoder" status working fourcc RoQV ; RoQV is an internal MPlayer FOURCC driver ffmpeg dll "roqvideo" out 444P videocodec lzo info "LZO compressed" status working fourcc LZO1 driver lzo dll "liblzo" out YV12,I420 out BGR24 flip videocodec theora info "Theora (free, reworked VP3)" status working fourcc theo,Thra driver theora dll libtheora out YV12 ; prefer native codecs over win32? ; the win32 codecs probably are (better) optimized and support direct ; rendering, so this may be not the best idea... ;WIN32: videocodec msuscls info "MSU Screen Capture Lossless Codec" status working fourcc SCLS driver vfw dll "SCLS.DLL" out BGR32,BGR24,BGR16 flip videocodec wincam info "wincam screen capture codec" comment "requires Zlib.dll" status working fourcc WCMV driver vfw dll "wcmv.dll" ; requires Zlib.dll out BGR15 flip videocodec cram info "Microsoft Video 1" comment "-vf palette required for 8bpp" status buggy fourcc cram,CRAM CRAM fourcc msvc,MSVC CRAM fourcc wham,WHAM CRAM driver vfw dll "msvidc32.dll" out BGR24,BGR15,BGR8 static,query videocodec ffcvid info "Cinepak Video (native codec)" status working fourcc cvid,CVID driver ffmpeg dll "cinepak" out YV12,BGR8 query videocodec cvidvfw info "Cinepak Video" status working fourcc cvid driver vfw dll "iccvid.dll" ; out YUY2 ; out UYVY out BGR24,BGR15 static videocodec huffyuv info "HuffYUV" status buggy fourcc HFYU driver vfw dll "huffyuv.dll" out YUY2 flip,noflip,query ; out UYVY flip out BGR32,BGR24 flip,query ;NATIVE: videocodec ffvideo1 info "Microsoft Video 1 (native codec)" status working fourcc cram,CRAM fourcc msvc,MSVC fourcc wham,WHAM driver ffmpeg dll "msvideo1" out BGR15,BGR8 query videocodec ffmszh info "AVImszh (native codec)" status working fourcc MSZH driver ffmpeg dll "mszh" out BGR24 videocodec ffzlib info "AVIzlib (native codec)" status working fourcc ZLIB driver ffmpeg dll "zlib" out BGR24 ;XAnim (slow): videocodec cvidxa info "XAnim's Radius Cinepak Video" status buggy fourcc cvid driver xanim dll "vid_cvid.xa" out YV12,IYUV,I420 static ; time to decide what to do with the MPEG-4/DivX variants... ; ff* is fastest... videocodec ffhuffyuv info "FFmpeg HuffYUV" status working fourcc HFYU,FFVH driver ffmpeg dll huffyuv out YUY2,422P,YV12 out BGR32,BGR24 videocodec ffv1 info "FFV1 (lossless codec)" status working fourcc FFV1 driver ffmpeg dll ffv1 out 411P,444P,422P,YV12,I420,IYUV,YVU9 out BGR32 videocodec ffsnow info "FFSNOW (Michael's wavelet codec)" status working fourcc snow,SNOW driver ffmpeg dll snow out YV12 videocodec ffasv1 info "FFmpeg ASUS V1" status working fourcc ASV1 driver ffmpeg dll asv1 out YV12,I420,IYUV videocodec ffasv2 info "FFmpeg ASUS V2" status working fourcc ASV2 driver ffmpeg dll asv2 out YV12,I420,IYUV videocodec ffvcr1 info "FFmpeg ATI VCR1" status working fourcc VCR1 driver ffmpeg dll vcr1 out YVU9 videocodec ffcljr info "FFmpeg Cirrus Logic AccuPak (CLJR)" status working fourcc CLJR driver ffmpeg dll cljr out 411P videocodec ffsvq1 info "FFmpeg Sorenson Video v1 (SVQ1)" status working fourcc SVQ1,svq1 driver ffmpeg dll svq1 out YVU9 videocodec ff4xm info "FFmpeg 4XM video" status working fourcc 4XMV driver ffmpeg dll 4xm out BGR15,BGR16 query videocodec ffvixl info "Miro/Pinnacle VideoXL codec" status working fourcc VIXL fourcc PIXL ; this is Pinnacle one fourcc XIXL driver ffmpeg dll xl out 411P videocodec ffqtdrw info "QuickDraw native decoder" status working fourcc qdrw driver ffmpeg dll qdraw out BGR8 videocodec ffindeo2 info "Indeo 2 native decoder" status working fourcc RT21 fourcc IV20 driver ffmpeg dll indeo2 out YVU9 videocodec ffflv info "FFmpeg Flash video" status working fourcc FLV1,flv driver ffmpeg dll flv out YV12 videocodec fffsv info "FFmpeg Flash Screen video" status working fourcc FSV1 driver ffmpeg dll flashsv out BGR24 videocodec ffdivx info "FFmpeg DivX ;-) (MSMPEG-4 v3)" status working fourcc MPG3,mpg3 div3 fourcc MP43,mp43 div3 ; MSMPEG-4 v3 (fourcc mapping to div3) fourcc DIV5,div5 div3 ; DivX 3.20 fourcc DIV6,div6 div4 ; -||- fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax) fourcc 3IVD,3ivd ; divxdoctored files (3ivx.com) fourcc DVX3 driver ffmpeg dll msmpeg4 out YV12,I420,IYUV videocodec ffmp42 info "FFmpeg MSMPEG-4 v2" status working fourcc DIV2,div2 mp42 fourcc MP42,mp42 driver ffmpeg dll msmpeg4v2 out YV12,I420,IYUV videocodec ffmp41 info "FFmpeg MSMPEG-4 v1" status working fourcc DIV1,div1 mpg4 fourcc MPG4,mpg4 fourcc MP41 driver ffmpeg dll msmpeg4v1 out YV12,I420,IYUV videocodec ffwmv1 info "FFmpeg WMV1/WMV7" status working fourcc WMV1,wmv1 driver ffmpeg dll wmv1 out YV12,I420,IYUV videocodec ffwmv2 info "FFmpeg WMV2/WMV8" status working fourcc WMV2,wmv2 driver ffmpeg dll wmv2 out YV12,I420,IYUV videocodec ffwmv3 info "FFmpeg WMV3/WMV9" status buggy fourcc WMV3,wmv3 driver ffmpeg dll wmv3 out YV12,I420,IYUV videocodec ffvc1 info "FFmpeg WVC1" status buggy fourcc WVC1,wvc1,WMVA fourcc vc-1,VC-1 driver ffmpeg dll vc1 out YV12,I420,IYUV videocodec ffh264 info "FFmpeg H.264" status working fourcc H264,h264 fourcc X264,x264 fourcc avc1,AVC1 fourcc davc,DAVC format 0x10000005 driver ffmpeg dll h264 out YV12,I420,IYUV videocodec ffsvq3 info "FFmpeg Sorenson Video v3 (SVQ3)" status working fourcc SVQ3 driver ffmpeg dll svq3 out YV12,I420,IYUV videocodec ffodivx info "FFmpeg MPEG-4" status working fourcc FMP4,fmp4 fourcc DIVX,divx fourcc DIV1,div1 divx fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc M4S2,m4s2 fourcc xvid,XVID,XviD,XVIX fourcc DX50,dx50,BLZ0 DX50 fourcc mp4v,MP4V format 0x4 fourcc UMP4 fourcc RMP4 fourcc 3IV2,3iv2 ; 3ivx Delta 4 fourcc DXGM fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110 fourcc SMP4,smp4 ; Samsung SMP4 video codec fourcc VIDM ; vidm 4.01 codec format 0x10000004 ; mpeg 4 es fourcc m4cc,M4CC fourcc hdx4,HDX4 fourcc FVFW,fvfw fourcc FFDS fourcc DCOD,MVXM,EM4A,PM4V fourcc M4T3,DMK2,DIGI,INMC driver ffmpeg dll mpeg4 ;opendivx out YV12,I420,IYUV videocodec ffwv1f info "WV1F MPEG-4" status working fourcc WV1F driver ffmpeg dll mpeg4 out YV12,I420,IYUV flip videocodec fflibschroedinger info "Dirac (through FFmpeg libschroedinger)" status working fourcc drac driver ffmpeg dll libschroedinger out I420,IYUV,422P,444P videocodec fflibdirac info "Dirac (through FFmpeg libdirac)" status working fourcc drac driver ffmpeg dll libdirac out I420,IYUV,422P,444P videocodec xvid info "Xvid (MPEG-4)" status working fourcc FMP4,fmp4 fourcc DIVX,divx fourcc xvid,XVID,XviD,XVIX fourcc DIV1,div1 divx fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc M4S2,m4s2 fourcc DX50,dx50,BLZ0 DX50 fourcc mp4v,MP4V format 0x4 fourcc UMP4 fourcc RMP4 fourcc 3IV2,3iv2 ; 3ivx Delta 4 fourcc DXGM fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110 fourcc SMP4,smp4 ; Samsung SMP4 video codec fourcc VIDM ; vidm 4.01 codec fourcc FFDS fourcc DCOD,MVXM,EM4A,PM4V fourcc M4T3,DMK2,DIGI,INMC format 0x10000004 ; mpeg 4 es driver xvid out YV12 out I420 out YUY2 out UYVY out YVYU out BGR32,BGR24,BGR16,BGR15 dll "libxvidcore.a" ; is divx4vfw stable enough, working everywhere and faster than divxds? videocodec divx4vfw info "DivX4Windows-VFW" status buggy comment "sig11 with -framedrop" fourcc DIVX,divx ; opendivx / divx4 fourcc DIV1,div1 divx ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! fourcc AP41 DIV3 ; AngelPotion stuff format 0x4 driver vfw dll "divx.dll" ; out YV12 ; buggy out YUY2 out BGR32,BGR24,BGR15 ; the original ones... prefer DShow for postprocessing: videocodec divxds info "DivX ;-) (MSMPEG-4 v3)" comment "with postprocessing" status working fourcc MP43,mp43 div3 ; fourcc mapping to div3 fourcc DIV5,div5 div3 fourcc DIV6,div6 div4 fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff driver dshow dll "divx_c32.ax" guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec divx info "DivX ;-) (MSMPEG-4 v3)" status working fourcc MP43,mp43 div3 ; MSMPEG-4 v3 (fourcc mapping to div3) fourcc DIV5,div5 div3 ; DivX 3.20 fourcc DIV6,div6 div4 ; -||- fourcc DIV3,div3,DIV4,div4 fourcc AP41 div3 ; AngelPotion stuff driver vfw dll "divxc32.dll" out YUY2 yuvhack out BGR32,BGR24,BGR15 ; hmm. we should check, maybe these are/will be playable with libavcodec: videocodec mpeg4ds info "Microsoft MPEG-4 v1/v2" status working comment "with postprocessing" fourcc DIV2,div2 mp42 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 fourcc MPG4,mpg4 fourcc MP42,mp42 driver dshow dll "mpg4ds32.ax" guid 0x82CCD3E0, 0xF71A, 0x11D0, 0x9F, 0xE5, 0x00, 0x60, 0x97, 0x78, 0xEA, 0x66 out YUY2 ; out BGR32,BGR24,BGR16,BGR15 videocodec mpeg4 info "Microsoft MPEG-4 v1/v2" status working fourcc MPG4,mpg4 fourcc MP42,mp42 fourcc DIV2 mp42 driver vfw dll "mpg4c32.dll" out YUY2 yuvhack out BGR32,BGR24,BGR15 videocodec wmv9dmo info "Windows Media Video 9 DMO" status working fourcc WMV3 fourcc WMVP driver dmo dll "wmv9dmod.dll" guid 0x724bb6a4, 0xe526, 0x450f, 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11 out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvdmo info "Windows Media Video DMO" status working fourcc WMV1 fourcc WMV2 fourcc WMV3 fourcc WMVP driver dmo dll "wmvdmod.dll" guid 0x82d353df, 0x90bd, 0x4382, 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34 out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmv8 info "Windows Media Video 8" status working fourcc WMV2 driver dshow dll "wmv8ds32.ax" guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f out YV12,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16,BGR15 videocodec wmv7 info "Windows Media Video 7" status working fourcc WMV1 driver dshow dll "wmvds32.ax" guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae out YUY2,UYVY ; out BGR32,BGR24,BGR16,BGR15 videocodec wmvadmo info "Windows Media Video Adv DMO" status working fourcc WMVA fourcc WVP2 driver dmo dll "wmvadvd.dll" guid 0x03be3ac4, 0x84b7, 0x4e0e, 0xa7, 0x8d, 0xd3, 0x52, 0x4e, 0x60, 0x39, 0x5a out YV12 ;,I420,IYUV out YUY2,UYVY ; out BGR32,BGR24,BGR16 ;,BGR15 videocodec wmvvc1dmo info "Windows Media Video (VC-1) Advanced Profile Decoder" status working fourcc WVC1 driver dmo dll "wvc1dmod.dll" guid 0xc9bfbccf, 0xe60e, 0x4588, 0xa3, 0xdf, 0x5a, 0x03, 0xb1, 0xfd, 0x95, 0x85 out YV12,YUY2 videocodec wmsdmod info "Windows Media Screen Codec 2" status working fourcc MSS1 fourcc MSS2 driver dmo dll "wmsdmod.dll" guid 0x7bafb3b1, 0xd8f4, 0x4279, 0x92, 0x53, 0x27, 0xda, 0x42, 0x31, 0x08, 0xde out BGR32,BGR24,BGR16 videocodec gotomeeting info "GoToMeeting codec" status working fourcc G2M2,G2M3 driver dmo dll "G2M.dll" guid 0x23F891A4, 0x572B, 0x474A, 0x86, 0xDA, 0x66, 0xCD, 0xD3, 0xD1, 0xAC, 0x2E out BGR24,RGB24 flip videocodec ubmp4 info "UB Video MPEG-4" comment "black&white" status buggy fourcc mp4v UMP4 ; black&white, sometimes buggy too fourcc UMP4 driver vfw dll "ubvmp4d.dll" out I420 out UYVY videocodec geomp4 info "GeoVision Advanced MPEG-4" status working fourcc GMP4,GM40 driver vfw dll "GXAMP4.dll" out BGR24 flip ; MJPEG: ; Notes: m3jpeg+mjpeg are MMX optimized. avid is very stable but slow. ; ijpg only decodes JPEG images (no MJPEG), and slow. ; Update: ffmjpeg is almost perfect (and optimized) now, prefer it to others. videocodec zrmjpeg info "Zoran MJPEG passthrough" status buggy fourcc MJPG,jpeg driver zrmjpeg out ZRMJPEGNI,ZRMJPEGIT,ZRMJPEGIB query videocodec ffmjpeg info "FFmpeg MJPEG decoder" status working fourcc MJPG,mjpg fourcc AVRn,AVDJ ; AVID fourcc ADJV ; Avid Motion JPEG fourcc jpeg ; MOV Photo-JPEG fourcc mjpa ; Apple MJPEG-A (Quicktime) fourcc JFIF ; SMJPEG (Loki) fourcc ijpg,IJPG ; -mf type=jpeg fourcc JPEG ; SGI's AVI Photo-JPEG fourcc JPGL ; lossless JPEG (pegasus codec) fourcc LJPG ; lossless JPEG fourcc dmb1 ; MJPEG by Matrox Rainbow Runner fourcc MJLS ; JPEG-LS custom FOURCC for avi - encoder fourcc MMJP,QIVG fourcc ACDV ; ACDSee jpeg driver ffmpeg dll mjpeg out 444P out 422P out YUY2 ; queried (conversion from yuv422p) out YV12,I420,IYUV out BGR32 ; lossless JPEG out RGB24 ; JPEG-LS out Y800 videocodec ffmjpegb info "FFmpeg MJPEG-B decoder" status working fourcc mjpb ; Apple MJPEG-B (Quicktime) driver ffmpeg dll mjpegb out 444P out 422P out YUY2 ; queryed (conversion from yuv422p) out YV12,I420,IYUV ; slow. usable only for standalone JPEGs, like -mf, avid or Photo-JPEG: videocodec ijpg info "Independent JPEG Group's codec" status working fourcc ijpg,IJPG ; -mf type=jpeg fourcc jpeg ; MOV Photo-JPEG fourcc AVRn,AVDJ ; AVID fourcc CJPG driver ijpg dll libjpeg out RGB24,Y8 ; http://www.morgan-multimedia.com/dev/codec_spec.htm videocodec m3jpeg info "Morgan Motion JPEG Codec" status working fourcc MJPG fourcc mjpa,mjpb,mjpg MJPG ; MOV files fourcc dmb1 MJPG ; MJPEG by Matrox Rainbow Runner driver vfw dll "m3jpeg32.dll" ; out YV12,I420 out YUY2,UYVY out BGR32,BGR24,BGR15 videocodec mjpeg info "MainConcept Motion JPEG" status working fourcc MJPG fourcc mjpa,mjpb,mjpg MJPG ; MOV files ; fourcc AVRn,AVDJ MJPG ; AVID (sometimes buggy) driver vfw dll "mcmjpg32.dll" out YUY2,UYVY out BGR32,BGR24,BGR15 videocodec avid info "AVID Motion JPEG" status working comment "slooooooooow but stable" fourcc AVRn fourcc AVDJ AVRn fourcc MJPG,mjpg AVRn driver vfw dll "AvidAVICodec.dll" out BGR24 flip videocodec LEAD info "LEAD (M)JPEG" status working comment "supports interlaced MJPEG" fourcc MJPG fourcc jpeg MJPG ; MOV Photo-JPEG fourcc LEAD driver vfw dll "LCodcCMP.dll" out BGR24,BGR15 videocodec acdsee info "ACDSee mjpeg" status working fourcc ACDV driver vfw dll "ACDV.dll" out BGR32,BGR24,BGR15 flip videocodec imagepower info "ImagePower MJPEG2000" status buggy fourcc IPJ2 driver vfw dll "jp2avi.dll" out BGR32,BGR24,BGR15 videocodec m3jpeg2k info "Morgan MJPEG2000" status working fourcc MJ2C fourcc MJP2 driver vfw dll "m3jp2k32.dll" out YV12,I420,IYUV out YUY2,UYVY out BGR32,BGR24,BGR15 ; http://www.morgan-multimedia.com/dev/directshow_dec_spec.htm videocodec m3jpegds info "Morgan MJPEG" status crashing fourcc MJPG mjpg fourcc mjpa,mjpb,mjpg mjpg ; MOV files fourcc dmb1 mjpg ; MJPEG by Matrox Rainbow Runner driver dshow dll "m3jpegdec.ax" guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 out I420 out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec pegasusm info "Pegasus Motion JPEG" status crashing fourcc MJPG driver vfw ; dll "pvmjpg20.dll" ; v2.0 dll "pvmjpg21.dll" ; v2.1 out BGR24 flip videocodec pegasusl info "Pegasus lossless JPEG" status crashing fourcc JPGL fourcc MJPG JPGL driver vfw dll "pvljpg20.dll" out BGR24 flip videocodec pegasusmwv info "Pegasus Motion Wavelet 2000" status crashing fourcc PVW2 driver vfw dll "pvwv220.dll" out BGR24 flip ; h263: - I don't know. comments? videocodec vivo info "Vivo H.263" status working fourcc VIVO,vivo vivo fourcc viv1,viv2 vivo driver vfw dll "ivvideo.dll" out BGR32,BGR24,BGR15 flip in BGR24 videocodec u263 info "UB Video H.263/H.263+/H.263++ Decoder" status working fourcc U263 fourcc vivo,VIVO U263 fourcc viv1 U263 driver dshow dll "ubv263d+.ax" guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0 ; out UYVY ; BGR32,BGR16,BGR15 seems to work too out BGR24 flip videocodec i263 info "I263" status working fourcc I263,i263 ; fourcc I420,i420 fourcc vivo,VIVO I263 fourcc viv1 I263 driver vfw dll "i263_32.drv" out I420 out YUY2 out BGR32,BGR24,BGR15 videocodec ffi263 info "FFmpeg I263 decoder" status working fourcc I263,i263 driver ffmpeg dll h263i out YV12,I420,IYUV videocodec ffh263 info "FFmpeg H.263+ decoder" status working fourcc H263,U263,h263,X263,M263 fourcc viv1 h263 fourcc s263,S263 fourcc D263 ; DEC H263 fourcc L263 ; Lead H263 fourcc ILVR ; ITU H263+ fourcc VX1K ; Agora Labs VX1000S H263 driver ffmpeg dll h263 out YV12,I420,IYUV videocodec ffzygo info "FFmpeg ZyGo" status untested fourcc ZyGo driver ffmpeg dll h263 out YV12,I420,IYUV flip videocodec h263xa info "XAnim's CCITT H.263" status crashing fourcc H263,h263 fourcc viv1 H263 fourcc VIVO,vivo H263 driver xanim dll "vid_h263.xa" out YV12,IYUV,I420 videocodec ffh261 info "CCITT H.261" status working fourcc H261,h261 driver ffmpeg dll h261 out YV12 videocodec qt261 info "QuickTime H.261 video decoder" status working fourcc H261,h261 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec h261xa info "XAnim's CCITT H.261" status buggy fourcc H261,h261 driver xanim dll "vid_h261.xa" out YV12,IYUV,I420 videocodec m261 info "M261" status untested fourcc m261,M261 driver vfw dll "msh261.drv" out BGR32,BGR24,BGR15 ; Indeo: ; Note: Indeo 3 is buggy, both XAnim (bad decoding) and VfW (fails with DR) ; Prefer win32 ones, they are faster, and 4/5 can DR. For fallback, there are ; Xanim codecs, they provide YV12, useful for YUV display or encoding. videocodec indeo5ds info "Intel Indeo 5" status working fourcc IV50,iv50 driver dshow dll "ir50_32.dll" guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 out YV12,IYUV,I420 out YUY2,UYVY out BGR32,BGR24,BGR16,BGR15 videocodec indeo5 info "Intel Indeo 5" status working fourcc IV50,iv50 driver vfwex dll "ir50_32.dll" ; out YV12,I420 ; flickering out YUY2 out BGR32,BGR24,BGR15 videocodec indeo4 info "Intel Indeo 4.1" status working fourcc IV41,iv41 driver vfw dll "ir41_32.dll" out IF09 out BGR24,BGR15 in YVU9 videocodec indeo3 info "Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver vfwex dll "ir32_32.dll" out IF09 out BGR24,BGR15 flip,static in YVU9 videocodec indeo5xa info "XAnim's Intel Indeo 5" status working fourcc IV50,iv50 driver xanim dll "vid_iv50.xa" out YVU9 videocodec indeo4xa info "XAnim's Intel Indeo 4.1" status working fourcc IV41,iv41 driver xanim dll "vid_iv41.xa" out YVU9 videocodec indeo3xa info "XAnim's Intel Indeo 3.1/3.2" status working fourcc IV31,iv31 fourcc IV32,iv32 driver xanim dll "vid_iv32.xa" out YVU9 ; DV: qdv is more stable... libdv is slow, mcdv is unstable videocodec qdv info "Sony Digital Video (DV)" status working fourcc dvsl,dvsd,dvhd ; ???? fourcc DVSD dvsd ; pal .avi fourcc "dvcp" dvsd ; pal .mov fourcc "dvc " dvsd ; ntsc .mov driver dshow dll "qdv.dll" guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 out YUY2 out UYVY out BGR24,BGR16,BGR15 ; BGR32 is buggy, at least with one sample videocodec ffdv info "FFmpeg DV decoder" status working fourcc CDVC,cdvc fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc "dvcp" ; PAL DV in .mov fourcc "dvc " ; NTSC DV in .mov fourcc dvpp ; DVCPRO - PAL fourcc dv50 ; DVCPRO 50 fourcc dv5n ; DVCPRO 50 NTSC in .mov fourcc dv5p ; DVCPRO 50 PAL in .mov fourcc AVdv,AVd1 fourcc dvhq,dvhp fourcc dvh5,dvh6,dvh3 fourcc dvhd,dvsl,dv25 driver ffmpeg dll dvvideo out 411P,422P,YV12 videocodec libdv info "Raw DV decoder (libdv)" status working fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc "dvcp" ; PAL DV in .mov fourcc "dvc " ; NTSC DV in .mov fourcc dvpp ; DVCPRO - PAL fourcc dv50 ; DVCPRO 50 fourcc dv5n ; DVCPRO 50 NTSC in .mov fourcc dv5p ; DVCPRO 50 PAL in .mov fourcc AVdv,AVd1 ; AVID DV fourcc dvhq,dvhp fourcc dvh5,dvh6,dvh3 driver libdv dll libdv.so.2 out YUY2 ; note: it crashes with pond.dv :( videocodec mcdv info "MainConcept DV Codec" status working fourcc DVSD,dvsd ; PAL fourcc DVCS,dvcs ; NTSC ? fourcc CDVC,cdvc ; ??? fourcc "dvcp" dvsd ; PAL DV in .mov fourcc "dvc " dvcs ; NTSC DV in .mov driver vfw dll "mcdvd_32.dll" out YUY2 out UYVY out BGR32,BGR24,BGR15 ; 3ivx: videocodec 3ivXxa info "XAnim's 3ivx Delta 3.5 plugin" status working fourcc 3IV1 driver xanim dll "vid_3ivX.xa" out YV12,IYUV,I420 videocodec 3ivX info "3ivx Delta 4.5" status working fourcc 3IV1 driver dshow dll "3ivxDSDecoder.ax" ; 3ivx.dll is also required guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c out YV12 out YUY2 out BGR32,BGR24,BGR16,BGR15 ; RealVideo variants videocodec rv3040 info "Linux RealPlayer 10 RV30/40 decoder" status working fourcc RV30,rv30 fourcc RV40,rv40 driver realvid dll "drvc.so" out I420 videocodec rv3040win info "Win32 RealPlayer 10 RV30/40 decoder" status working fourcc RV30,rv30 fourcc RV40,rv40 driver realvid dll "drvc.dll" out I420 videocodec rv40 info "Linux RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drv4.so.6.0" out I420 videocodec rv40win info "Win32 RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drv43260.dll" out I420 videocodec rv40mac info "Mac OS X RealPlayer 9 RV40 decoder" status working fourcc RV40,rv40 driver realvid dll "drvc.bundle/Contents/MacOS/drvc" out I420 videocodec rv30 info "Linux RealPlayer 8 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drv3.so.6.0" out I420 videocodec rv30win info "Win32 RealPlayer 8 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drv33260.dll" out I420 videocodec rv30mac info "Mac OS X RealPlayer 9 RV30 decoder" status working fourcc RV30,rv30 driver realvid dll "drvc.bundle/Contents/MacOS/drvc" out I420 videocodec ffrv20 info "FFmpeg RV20 decoder" status working fourcc RV20,rv20 fourcc RVTR driver ffmpeg dll rv20 out YV12,I420,IYUV videocodec ffrv30 info "FFmpeg RV30 decoder" status buggy fourcc RV30,rv30 driver ffmpeg dll rv30 out YV12,I420,IYUV videocodec ffrv40 info "FFmpeg RV40 decoder" status working fourcc RV40,rv40 driver ffmpeg dll rv40 out YV12,I420,IYUV videocodec rv20 info "Linux RealPlayer 8 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.so.6.0" out I420 videocodec rv20winrp10 info "Win32 RealPlayer 10 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.dll" out I420 videocodec rv20win info "Win32 RealPlayer 8 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv23260.dll" out I420 videocodec rv20mac info "Mac OS X RealPlayer 9 RV20 decoder" status working fourcc RV20,rv20 driver realvid dll "drv2.bundle/Contents/MacOS/drv2" out I420 videocodec ffrv10 info "FFmpeg RV10 decoder" status working fourcc RV10,rv10 fourcc RV13,rv13 driver ffmpeg dll rv10 out YV12,I420,IYUV ; others: videocodec alpary info "Alparysoft lossless codec dshow" status working fourcc ASLC driver dshow dll "aslcodec_dshow.dll" guid 0x7f9de066, 0xbf3d, 0x4c17, 0x86, 0xb7, 0x33, 0xe4, 0x3e, 0xbe, 0xae, 0xf0 out BGR24 flip videocodec alpary2 info "Alparysoft lossless codec vfw" status working fourcc ASLC driver vfw dll "aslcodec_vfw.dll" out BGR24 flip videocodec LEADMW20 info "Lead CMW wavelet 2.0" status working fourcc LCW2 driver dshow dll "LCODCCMW2E.dll"; eval also needs LCMW2.dll guid 0xe2b7dc56, 0x38c5, 0x11d5, 0x91, 0xf6, 0x00, 0x10, 0x4b, 0xdb, 0x8f, 0xf9 out BGR24,BGR8 flip videocodec lagarith info "Lagarith Lossless Video Codec" comment "http://lags.leetcode.net/codec.html, requires an MMX2 CPU." status working fourcc LAGS driver vfw dll "lagarith.dll" out BGR32,BGR24 flip videocodec psiv info "Infinite Video PSI_V" status working fourcc PSIV driver vfw dll "psiv.dll" out BGR32,BGR24 query,flip videocodec canopushq status working info "Canopus HQ Codec" comment "requires csehqa.dll and cseuvec.dll" fourcc CUVC driver vfw dll "CUVCcodc.dll" out BGR24 videocodec canopusll status working info "Canopus Lossless Codec" comment "requires csellc.dll" fourcc CLLC driver vfw dll "CLLCcodc.dll" out BGR24 videocodec ffvp3 info "FFmpeg VP3" status untested fourcc VP30,vp30,VP31,vp31 format 0x20335056 ; "VP3 " (used in .nsv files) driver ffmpeg dll "vp3" out YV12 videocodec fftheora info "FFmpeg Theora" status untested fourcc theo fourcc Thra theo format 0xFFFC driver ffmpeg dll "theora" out YV12 videocodec vp3 info "On2 Open Source VP3 Codec" status working comment "For SSE-systems use fixed DLL from ftp://mplayerhq.hu/MPlayer/samples/drivers32/" fourcc VP30,vp30,VP31,vp31 flags align16 driver vfwex dll "vp31vfw.dll" out YUY2 out BGR32,BGR24,BGR15 videocodec vp4 info "On2 VP4 Personal Codec" comment "Decodes also VP3" status working fourcc VP40 fourcc VP31,VP30,vp31,vp30 driver vfwex dll "vp4vfw.dll" out YUY2 out BGR32,BGR24 videocodec ffvp5 info "FFmpeg VP5 decoder" status working fourcc VP50 driver ffmpeg dll "vp5" out YV12 videocodec vp5 info "On2 VP5 Personal Codec" status working fourcc VP50 driver vfwex dll "vp5vfw.dll" out YUY2 out BGR32,BGR24 videocodec ffvp6 info "FFmpeg VP6 decoder" status working fourcc VP60,VP61,VP62 driver ffmpeg dll "vp6" out YV12 videocodec ffvp6a info "FFmpeg VP6A decoder" status untested fourcc VP6A driver ffmpeg dll "vp6a" out I420,YUY2,YV12 videocodec ffvp6f info "FFmpeg VP6 Flash decoder" status working fourcc VP6F driver ffmpeg dll "vp6f" out YV12 videocodec vp6 info "On2 VP6 Personal Codec" status working fourcc VP60,VP61,VP62 fourcc VP6F VP60 driver vfwex dll "vp6vfw.dll" out YUY2 out BGR32,BGR24 videocodec vp7 info "On2 VP7 Personal Codec" status working fourcc VP70 driver vfwex dll "vp7vfw.dll" out YUY2 out BGR32,BGR24 videocodec mwv1 info "Motion Wavelets" status working fourcc MWV1 driver vfw dll "icmw_32.dll" out BGR24,BGR15 flip videocodec wavcvfw info "centre for wavelets, approximation and infromation processing" status working fourcc wavc driver vfw dll "WavCWAIP.dll" out BGR24 flip videocodec asv2 info "ASUS V2" status working fourcc ASV2 driver vfw dll "asusasv2.dll" out UYVY out BGR32,BGR24,BGR15 flip videocodec asv1 info "ASUS V1" status working fourcc ASV1 driver vfw dll "asusasvd.dll" out UYVY out BGR32,BGR24,BGR15 flip videocodec ffultimotion info "IBM Ultimotion native decoder" status working fourcc ULTI driver ffmpeg dll "ultimotion" out YVU9 videocodec ultimotion info "IBM Ultimotion" status working fourcc ULTI driver vfw dll "ultimo.dll" out YUY2,UYVY out BGR32,BGR24,BGR15 flip videocodec mss1 info "Windows Screen Video" status working fourcc MSS1 driver dshow dll "msscds32.ax" guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24 out BGR32,BGR24,BGR16,BGR15 ; CLRVIDDC.DLL needed too, with uppercase videocodec ucod info "UCOD-ClearVideo" status working fourcc UCOD driver vfw dll "clrviddd.dll" out BGR32,BGR24,BGR15 flip videocodec vcr2 info "ATI VCR-2" status working fourcc VCR2 driver vfw dll "ativcr2.dll" out YV12 out BGR24 videocodec cjpg info "Creative Labs Video Blaster Webcam" comment "sequential jpeg files?" status working fourcc CJPG driver vfw dll "CtWbJpg.DLL" out YUY2 out UYVY out BGR24,BGR15 videocodec kensington info "kensington webcam" status working fourcc AJPG,ABYR fourcc LBYR,JBYR ; untested, creative labs cam fourcc UV12 ; untested driver vfw dll "aoxdxipl.ax" out BGR24 flip videocodec xjpg info "xiricam Veo PC Camera" status working fourcc XJPG driver vfw dll "camfc.dll" out BGR24 flip videocodec ffduck info "Duck Truemotion1" status working fourcc DUCK driver ffmpeg dll "truemotion1" out BGR15,BGR16,BGR24,BGR32 query videocodec fftm20 info "FFmpeg Duck/On2 TrueMotion 2.0" status working fourcc TM20 driver ffmpeg dll truemotion2 out YV12 ; our BGR15->BGR32 is bad or the DLL? videocodec tm20 info "TrueMotion 2.0" status working comment "YUV faulting" fourcc TM20 driver dshow dll "tm20dec.ax" guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 out BGR32,BGR24,BGR16 flip videocodec sif1vfw info "sif1 alpha4" status working fourcc SIF1 driver vfw dll "Sif1_vfw.dll" out YV12,YUY2 videocodec sif1ds info "sif1 alpha4" status buggy comment "one frame every 5 seconds?" fourcc SIF1 driver dshow dll "Sif1Dec.ax" guid 0x31666973, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71 out BGR32 videocodec ffamv info "Modified MJPEG, used in AMV files" status working fourcc AMVV ; internal MPlayer FourCC driver ffmpeg dll "amv" out YV12 videocodec ffsp5x info "SP5x codec - used by Aiptek MegaCam" status working fourcc SP53,SP54,SP55,SP56,SP57,SP58 driver ffmpeg dll "sp5x" out YV12 videocodec sp6x info "SP6x codec" status buggy fourcc SP60,SP61,SP62 driver vfw dll "sp6x_32.dll" out BGR24 flip videocodec sp5x info "SP5x codec - used by Aiptek MegaCam" status working fourcc SP53,SP54,SP55,SP56,SP57,SP58 driver vfw dll "sp5x_32.dll" out BGR24,BGR15 flip videocodec sp4x info "SP4x codec - used by Aiptek MegaCam" status working fourcc SP40,SP41,SP42,SP43,SP44,SP45 fourcc SP46,SP47 driver vfw dll "SP4X_32.DLL" out BGR24,BGR15 flip videocodec bt411 info "Brooktree 411 codec" status working fourcc BT20,Y41P driver vfwex dll "btvvc32.drv" out BGR24 videocodec bwmpeg info "Broadway MPEG Capture Codec" status working fourcc BW10 driver vfwex dll "bw10.dll" ;requires vtaccess.dll out YV12,YUY2,I420 videocodec zdsoft info "zdsoft screen recorder" status working fourcc ZDSV driver vfwex dll "scrvid.dll" out BGR32 videocodec webtrain info "WebTrain Communication lossless screen recorder" status working fourcc WTVC driver vfw dll "wtvc.dll" out BGR16 flip videocodec xfire info "xfire video" status working fourcc XFR1 driver vfw dll "xfcodec.dll" out YV12,YUY2 videocodec vfapi info "VFAPI rgb transcode codec" status untested fourcc vifp driver vfwex dll "VFCodec.dll" out BGR24 flip videocodec eyecon info "nokia eti camcorder eyecon" status working fourcc NUB0,NUB1,NUB2 driver vfw dll "nub2.dll" out YV12,YUY2 videocodec smsvvfw info "WorldConnect Wavelet Video" comment "found in visualmail videos" status working fourcc SMSV driver vfw dll "wv32vfw.dll" out BGR24 flip videocodec foxmotion info "fox motion video" status working fourcc FMVC driver vfw dll "fmcodec.dll" out BGR32,BGR24,BGR15 flip videocodec tridvfw status untested fourcc ty2c,TY2C,ty0n fourcc TY2N,TY0N,T565 driver vfw dll "TRICDC32.DRV" out BGR24 flip videocodec vivd2 info "SoftMedia ViVD V2 codec VfW" status working fourcc GXVE,gxve driver vfw dll "ViVD2.dll" out YUY2,YV12,I420,YVU9 out BGR32,BGR24,BGR15 videocodec winx info "Winnov Videum winx codec" status working fourcc WINX driver vfwex dll "wnvwinx.dll" out BGR32,BGR24,BGR15 videocodec ffwnv1 info "FFmpeg wnv1 native codec" status working fourcc WNV1 driver ffmpeg dll wnv1 out 422P videocodec wnv1 info "Winnov Videum wnv1 codec" status working fourcc WNV1 driver vfwex dll "wnvplay1.dll" out BGR32,BGR24,BGR15 videocodec vdom info "VDOWave codec" status working fourcc VDOM,VDOW driver vfw dll "vdowave.drv" ; Need also VDODEC32.dll and DECVW_32.DLL out BGR24 flip videocodec vdowave3 info "VDOWave 3 advanced codec" status working fourcc VDO3 fourcc VDOM,VDOW driver vfw dll "vdo32_30.drv" ; Need also decvdo.dll out BGR24 flip videocodec lsv info "Vianet Lsvx Video Decoder" status working fourcc lsvx fourcc lsvm fourcc lsvc driver vfw dll "lsvxdec.dll" out BGR32,BGR24,BGR16 flip videocodec ffvmnc info "FFmpeg VMware video" status working fourcc VMnc driver ffmpeg dll "vmnc" out BGR32,BGR15,BGR8 videocodec vmnc info "VMware video" status working fourcc VMnc driver vfw dll "vmnc.dll" out BGR24,BGR15,BGR8 query,flip videocodec ffsmkvid info "FFmpeg Smacker Video" status working fourcc SMK2 fourcc SMK4 out BGR8 driver ffmpeg dll "smackvid" videocodec ffcavs info "Chinese AVS Video" comment "only works with libavformat demuxer" status working fourcc CAVS fourcc avs2 driver ffmpeg dll "cavs" out I420 videocodec ffdnxhd info "FFmpeg DNxHD decoder" status working fourcc AVdn driver ffmpeg dll "dnxhd" out 422P ; quicktime codecs: videocodec qt3ivx info "win32/quicktime 3IV1 (3ivx) decoder" status working fourcc 3IV1 driver qtvideo dll "3ivx Delta 3.5.qtx" out YUY2 videocodec qtactl info "Win32/QuickTime Streambox ACT-L2" status working fourcc ACTL driver qtvideo dll ACTLComponent.qtx out YUY2 videocodec qtavui info "Win32/QuickTime Avid Meridien Uncompressed" status working fourcc AVUI driver qtvideo dll "AvidQTAVUICodec.qtx" out YUY2 videocodec qth263 info "Win32/QuickTime H.263 decoder" status crashing fourcc h263 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtrlerpza info "Win32/Quicktime RLE/RPZA decoder" comment "no colorspace accepted" status crashing fourcc rpza format 0x20656C72 ; "rle " driver qtvideo dll "QuickTime.qts" out BGR32,BGR24,BGR15 videocodec qtvp3 info "Win32/QuickTime VP3 decoder" status crashing fourcc VP31 driver qtvideo dll "On2_VP3.qtx" out YUY2 videocodec qtzygo info "win32/quicktime ZyGo decoder" status buggy comment "wrong colors" fourcc ZyGo,zygo,lsvx driver qtvideo dll "ZyGoVideo.qtx" out BGR32,RGB32 videocodec qtbhiv info "Win32/QuickTime BeHereiVideo decoder" comment "sample file wanted!" status untested fourcc bhiv driver qtvideo dll "BeHereiVideo.qtx" out YUY2 videocodec qtcvid info "Win32/QuickTime Cinepak decoder" status working fourcc cvid driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtindeo info "Win32/QuickTime Indeo decoder" status crashing fourcc IV31,iv31 fourcc IV32,iv32 fourcc IV41 driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtmjpeg info "Win32/QuickTime MJPEG decoder" status crashing fourcc dmb1 fourcc mjpa fourcc mjpb driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtmpeg4 info "Win32/QuickTime MPEG-4 decoder" status crashing fourcc mp4v driver qtvideo dll "QuickTime.qts" out YUY2 videocodec qtsvq3 info "Win32/QuickTime SVQ3 decoder" status working fourcc SVQ3 driver qtvideo dll "QuickTimeEssentials.qtx" out YUY2 videocodec qtsvq1 info "Win32/QuickTime SVQ1 decoder" status buggy fourcc SVQ1 driver qtvideo dll "QuickTime.qts" out YVU9 videocodec qtcine info "cinewave uncompressed 10-bit codec" status working ; fourcc 2yuv,R210,r210,2Vu1,R10g,R10k,r11k ;untested fourcc v210 driver qtvideo dll "CineWave.qtx" out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 out YV12,YUY2 ; VSS codecs (http://vsofts.com/solutions.html): videocodec vsslight info "VSS Codec Light" status working fourcc VSSV driver vfw dll "vsslight.dll" out BGR24 flip videocodec vssh264 info "VSS H.264 New" status working fourcc VSSH driver dshow dll "vsshdsd.dll" guid 0x6931C7e7, 0x75b7, 0x4729, 0xa1, 0x53, 0xa8, 0xad, 0x99, 0xbd, 0xf7, 0x0b out YV12 videocodec vssh264old info "VSS H.264 Old" status working fourcc VSSH driver vfw dll "vssh264.dll" ; need also vssh264core.dll, vssh264dec.dll out BGR24 flip videocodec vsswlt info "VSS Wavelet Video Codec" status working fourcc VSSW driver vfw dll "vsswlt.dll" out BGR24 flip ; buggy codecs: (any volunteers for native rewrite?) videocodec zlib info "AVIzlib" status working comment "24bpp only" fourcc ZLIB driver vfw dll "avizlib.dll" out BGR24 flip videocodec mszh info "AVImszh" status working comment "24bpp only" fourcc MSZH driver vfw dll "avimszh.dll" ; out YUY2 ; out BGR32,BGR24,BGR15 out BGR24 videocodec alaris info "Alaris VideoGramPiX" status working fourcc VGPX,VTLP VGPX driver vfwex dll "vgpix32d.dll" out UYVY out BGR24 ; non-working codecs: videocodec vcr1 info "ATI VCR-1" status crashing fourcc VCR1 driver vfw dll "ativcr1.dll" out RGB24 flip videocodec pim1 info "Pinnacle Hardware MPEG-1" status crashing comment "no picture. use ffmpeg12!" fourcc PIM1 driver vfw dll "pclepim1.dll" out BGR24 flip ; out I420 ; out YUY2 ; out BGR32,BGR24,BGR16,BGR15 videocodec qpeg info "Q-Team's QPEG (www.q-team.de)" status working comment "BGR8 only!" fourcc Q1.0,QPEG fourcc Q1.1,qpeq driver vfw dll "qpeg32.dll" out BGR8 flip videocodec rricm info "rricm" status crashing fourcc dmb1 driver vfw dll "rricm.dll" out YUY2 out BGR24 flip videocodec ffcamtasia info "TechSmith Camtasia Screen Codec (native)" status working fourcc TSCC,tscc driver ffmpeg dll "camtasia" out BGR32,BGR24,BGR15,BGR8 query ; sample videos: http://www.techsmith.com/products/camtasia/examplevideos.asp videocodec camtasia info "TechSmith Camtasia Screen Codec" status working fourcc TSCC,tscc driver vfw dll "tsccvid.dll" out BGR32,BGR24,BGR15,BGR8 query,flip videocodec ffcamstudio info "CamStudio Screen Codec" status working fourcc CSCD,cscd driver ffmpeg dll "camstudio" out BGR32,BGR24,BGR15 query ; Fraps - Realtime Video Capture - http://www.fraps.com/ videocodec fraps info "FRAPS: Realtime Video Capture" comment "Requires a processor with SSE???" status working fourcc FPS1,fps1 driver vfw dll "frapsvid.dll" out BGR32 flip videocodec fffraps info "FFmpeg Fraps" status working fourcc FPS1,fps1 driver ffmpeg dll "fraps" out BGR24,I420 videocodec fftiertexseq info "FFmpeg Tiertex SEQ" status working fourcc TSEQ ; internal MPlayer FourCC driver ffmpeg dll "tiertexseqvideo" out BGR8 videocodec ffvmd info "FFmpeg Sierra VMD video" status working fourcc VMDV ; internal MPlayer FourCC driver ffmpeg dll "vmdvideo" out BGR8 videocodec ffdxa info "FFmpeg Feeble Files DXA video" status working fourcc DXA1 ; internal MPlayer FourCC driver ffmpeg dll "dxa" out BGR8 videocodec ffdsicinvideo info "FFmpeg Delphine CIN video" status working fourcc DCIV ; internal MPlayer FourCC driver ffmpeg dll "dsicinvideo" out BGR8 videocodec ffthp info "FFmpeg THP video" status working fourcc THPV ; internal MPlayer FourCC driver ffmpeg dll thp out YV12 videocodec ffbfi info "FFmpeg BFI Video" status working fourcc BFIV ; internal MPlayer FourCC driver ffmpeg dll bfi out BGR8 videocodec ffbethsoftvid info "FFmpeg Bethesda Software VID" comment "video plays much too fast" status buggy fourcc BETH ; internal MPlayer FourCC driver ffmpeg dll bethsoftvid out BGR8 videocodec ffrl2 info "FFmpeg RL2 decoder" status working fourcc RL2V ; internal MPlayer FourCC driver ffmpeg dll rl2 out BGR8 videocodec fftxd info "FFmpeg Renderware TeXture Dictionary decoder" status working fourcc TXDV ; internal MPlayer FourCC driver ffmpeg dll txd out BGR32 videocodec xan info "XAN Video" status working fourcc Xxan driver vfw dll "xanlib.dll" out BGR24,BGR15,BGR8 query,flip videocodec ffwc3 info "FFmpeg XAN wc3" status buggy fourcc WC3V ; internal MPlayer FourCC driver ffmpeg dll "xan_wc3" out BGR8 videocodec ffidcin info "FFmpeg Id CIN video" status buggy fourcc IDCI ; internal MPlayer FourCC driver ffmpeg dll "idcinvideo" out BGR8 videocodec ffinterplay info "FFmpeg Interplay Video" status buggy fourcc INPV ; internal MPlayer FourCC driver ffmpeg dll "interplayvideo" out BGR8 videocodec ffvqa info "FFmpeg VQA Video" status buggy fourcc VQAV ; internal MPlayer FourCC driver ffmpeg dll "vqavideo" out BGR8 videocodec ffc93 info "FFmpeg C93 Video" status buggy fourcc C93V ; internal MPlayer FourCC driver ffmpeg dll c93 out BGR8 ; raw formats: (now RGB formats are autodetected) ; these raw codecs are used mostly by TV input ; 0x20776172 is used by Quicktime ('raw ') ; 0x0 is used by AVI ; YV12,RGB|32,RGB|24.. is created by MPlayer videocodec rawrgb32 info "RAW RGB32" status working driver raw format 0x0 format 0x20776172 0x52474220 format 0x52474220 out RGB32 videocodec rawrgb24 info "RAW RGB24" status working driver raw format 0x0 format 0x20776172 0x52474218 format 0x52474218 out RGB24 videocodec rawrgb16 info "RAW RGB16" status working driver raw format 0x0 format 0x20776172 0x52474210 format 0x52474210 out RGB16 videocodec rawbgr32flip info "RAW BGR32" status working driver raw format 0x0 out BGR32 flip videocodec rawbgr32 info "RAW BGR32" status working driver raw format 0x0 format 0x42475220 out BGR32 videocodec rawbgr24flip info "RAW BGR24" status working driver raw format 0x0 out BGR24 flip videocodec rawbgr24 info "RAW BGR24" status working driver raw format 0x0 format 0x20776172 0x42475218 format 0x42475218 out BGR24 videocodec rawbgr16flip info "RAW BGR15" status working driver raw format 0x0 format 0x10424752 0x0 out BGR16 flip videocodec rawbgr16 info "RAW BGR15" status working driver raw format 0x0 format 0x20776172 0x42475210 format 0x42475210 out BGR16 videocodec rawbgr15flip info "RAW BGR15" status working driver raw format 0x0 out BGR15 flip videocodec rawbgr15 info "RAW BGR15" status working driver raw format 0x0 format 0x20776172 0x4247520F format 0x4247520F out BGR15 videocodec rawbgr8flip info "RAW BGR8" status working driver raw format 0x0 out BGR8 flip videocodec rawbgr8 info "RAW BGR8" status working driver raw format 0x0 format 0x20776172 0x42475208 format 0x42475208 out BGR8 videocodec rawbgr1 info "RAW BGR1" status working driver raw format 0x0 format 0x20776172 0x42475201 format 0x42475201 out BGR1 flip videocodec rawyuy2 info "RAW YUY2" status working driver raw format 0x0 0x32595559 format 0x20776172 0x32595559 fourcc yuy2,YUY2 out YUY2 videocodec rawyuv2 info "RAW YUV2" status working driver raw format 0x0 0x32565559 format 0x20776172 0x32565559 fourcc yuv2,YUV2 out YUY2 videocodec rawuyvy info "RAW UYVY" status working driver raw format 0x0 0x59565955 format 0x79757632 0x59565955 # 2vuy as created by QuickTime captures format 0x20776172 0x59565955 fourcc uyvy,UYVY out UYVY videocodec raw444P info "RAW 444P" status working driver raw format 0x0 0x50343434 format 0x20776172 0x50343434 fourcc 444p,444P out 444P videocodec raw422P info "RAW 422P" status working driver raw format 0x0 0x50323234 format 0x20776172 0x50323234 fourcc 422p,422P out 422P videocodec rawyv12 info "RAW YV12" status working driver raw format 0x0 0x32315659 format 0x20776172 0x32315659 fourcc yv12,YV12 out YV12 videocodec rawnv21 info "RAW NV21" status working driver hmblck format 0x0 0x3132564E format 0x20776172 0x3132564E fourcc nv21,NV21 out YV12 videocodec rawnv12 info "RAW NV12" status working driver hmblck format 0x0 0x3231564E format 0x20776172 0x3231564E fourcc nv12,NV12 out YV12 videocodec rawhm12 info "RAW HM12" status working driver hmblck format 0x0 0x32314D48 format 0x20776172 0x32314D48 fourcc hm12,HM12 out YV12 videocodec rawi420 info "RAW I420" status working driver raw format 0x0 0x30323449 format 0x20776172 0x30323449 fourcc i420,I420 fourcc IYUV,iyuv out I420,IYUV videocodec rawyvu9 info "RAW YVU9" status working driver raw format 0x0 0x39555659 format 0x20776172 0x39555659 fourcc yvu9,YVU9 out YVU9 videocodec rawy800 info "RAW Y8/Y800" status working driver raw format 0x0 format 0x20203859 ; "Y8 " fourcc y800,Y800 out Y800,Y8 ; NULL codec - for testing. videocodec null info "NULL codec (no decoding!)" status crashing comment "for unknown/unsupported codecs or testing" driver null out YV12 out I420 out YUY2 out UYVY out YVU9 out BGR32,BGR24,BGR16,BGR15 ; Goom audio render videocodec goom info "Audio visuals with libgoom" status working driver goom fourcc vpcm out BGR32 ;============================================================================= ; AUDIO CODECS ;============================================================================= audiocodec wma9dmo info "Windows Media Audio 9 DMO" status working format 0x162 format 0x163 driver dmo dll "wma9dmod.dll" guid 0x27ca0808, 0x01f5, 0x4e7a, 0x8b, 0x05, 0x87, 0xf8, 0x07, 0xa2, 0x33, 0xd1 audiocodec wmadmo info "Windows Media Audio DMO" status working format 0x160 format 0x161 format 0x162 format 0x163 driver dmo dll "wmadmod.dll" guid 0x2eeb4adf, 0x4578, 0x4d10, 0xbc, 0xa7, 0xbb, 0x95, 0x5f, 0x56, 0x32, 0x0a audiocodec wma9spdmo info "Windows Media Audio 9 Speech DMO" status working format 0xa driver dmo dll "wmspdmod.dll" guid 0x874131cb, 0x4ecc, 0x443b, 0x89, 0x48, 0x74, 0x6b, 0x89, 0x59, 0x5d, 0x20 audiocodec wma9spdshow info "Windows Media Audio 9 Speech DShow" status working format 0xa driver dshow dll "wmavds32.ax" guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad audiocodec ffqdm2 info "FFmpeg QDM2 audio decoder" status working format 0x324D4451 ; "QDM2" driver ffmpeg dll "qdm2" audiocodec qdmc info "QuickTime QDMC/QDM2 audio decoders" status working format 0x324D4451 ; "QDM2" format 0x434D4451 ; "QDMC" driver qtaudio dll "QuickTime.qts" audiocodec ffqclp info "FFmpeg QCLP audio decoder" status buggy format 0x706C6351 ; "Qclp" driver ffmpeg dll "qcelp" audiocodec qclp info "QuickTime QCLP audio decoder" status working format 0x706C6351 ; "Qclp" driver qtaudio dll "QuickTime.qts" audiocodec qtmace3 info "QuickTime MACE3 audio decoder" status working format 0x3343414D ; "MAC3" driver qtaudio dll "QuickTime.qts" audiocodec qtmace6 info "QuickTime MACE6 audio decoder" status working format 0x3643414D ; "MAC6" driver qtaudio dll "QuickTime.qts" audiocodec ffra144 info "FFmpeg RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver ffmpeg dll "real_144" audiocodec ffra288 info "FFmpeg RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver ffmpeg dll "real_288" audiocodec ffcook info "FFmpeg COOK audio decoder" status working format 0x6B6F6F63 ; "cook" driver ffmpeg dll "cook" audiocodec ffatrc info "FFmpeg Atrac 3 audio decoder" status working format 0x63727461 ; "atrc" format 0x270 ; atrac3 in wav driver ffmpeg dll "atrac3" audiocodec ra144 info "RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_4.so.6.0" audiocodec ra144win info "Win32 RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_43260.dll" audiocodec ra144mac info "Mac OS X RealAudio 1.0" status working format 0x345F3431 ; "14_4" driver realaud dll "14_4.shlb" audiocodec ra288 info "RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_8.so.6.0" audiocodec ra288win info "Win32 RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_83260.dll" audiocodec ra288mac info "Mac OS X RealAudio 2.0" status working format 0x385F3832 ; "28_8" driver realaud dll "28_8.shlb" audiocodec ra10cook info "RealPlayer 10 COOK audio" comment "supports cook 5.1" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.so" audiocodec racook info "RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.so.6.0" audiocodec ra10cookwin info "Win32 RealAudio 10 COOK" comment "supports cook 5.1" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.dll" audiocodec racookwin info "Win32 RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook3260.dll" audiocodec racookmac info "Mac OS X RealAudio COOK" status working format 0x6B6F6F63 ; "cook" driver realaud dll "cook.bundle/Contents/MacOS/cook" audiocodec rasipr info "RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.so.6.0" audiocodec ra10sipr info "RealPlayer 10 RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.so" audiocodec ra10siprwin info "Win32 RealAudio 10 Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.dll" audiocodec rasiprwin info "Win32 RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr3260.dll" audiocodec rasiprmac info "Mac OS X RealAudio Sipro" status working format 0x72706973 ; "sipr" driver realaud dll "sipr.bundle/Contents/MacOS/sipr" audiocodec raatrc info "RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.so.6.0" audiocodec ra10atrc info "RealPlayer 10 RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.so" audiocodec ra10atrcwin info "Win32 RealAudio 10 ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.dll" audiocodec raatrcwin info "Win32 RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc3260.dll" audiocodec raatrcmac info "Mac OS X RealAudio ATRAC3" status working format 0x63727461 ; "atrc" driver realaud dll "atrc.bundle/Contents/MacOS/atrc" audiocodec ffadpcmimaamv info "FFmpeg AMV IMA ADPCM audio" status working fourcc AMVA ; internal MPlayer FourCC driver ffmpeg dll adpcm_ima_amv audiocodec ffadpcmimaqt info "FFmpeg QT IMA ADPCM audio" status working format 0x34616d69 ; "ima4" (MOV files) driver ffmpeg dll adpcm_ima_qt audiocodec ffadpcmimawav info "FFmpeg WAV IMA ADPCM audio" status working format 0x11 format 0x1100736d ; "ms\x00\x11" (MOV files) driver ffmpeg dll adpcm_ima_wav audiocodec imaadpcm info "IMA ADPCM" status working format 0x11 format 0x34616d69 ; "ima4" (MOV files) format 0x1100736d ; "ms\x00\x11" (MOV files) driver imaadpcm audiocodec ffadpcmms info "FFmpeg MS ADPCM audio" status working format 0x2 format 0x0200736d ; "ms\x00\x02" (MOV files) driver ffmpeg dll adpcm_ms audiocodec msadpcm info "MS ADPCM" status working format 0x2 format 0x0200736d ; "ms\x00\x02" (MOV files) driver msadpcm audiocodec ffadpcmimadk4 info "FFmpeg DK4 IMA ADPCM audio" status working format 0x61 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver ffmpeg dll adpcm_ima_dk4 audiocodec dk4adpcm info "Duck DK4 ADPCM (rogue format number)" status working format 0x61 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver imaadpcm audiocodec ffadpcmimadk3 info "FFmpeg DK3 IMA ADPCM audio" status working format 0x62 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver ffmpeg dll adpcm_ima_dk3 audiocodec dk3adpcm info "Duck DK3 ADPCM (rogue format number)" status working format 0x62 ; This format number was used by Duck Corp. but not officially ; registered with Microsoft driver dk3adpcm audiocodec ffroqaudio info "Id RoQ File Audio Decoder" status working fourcc RoQA ; internal MPlayer FourCC driver ffmpeg dll "roq_dpcm" audiocodec ffsmkaud info "FFmpeg Smacker Audio" status buggy fourcc SMKA driver ffmpeg dll "smackaud" audiocodec ffdsicinaudio info "FFmpeg Delphine CIN audio" status working fourcc DCIA ; internal MPlayer FourCC driver ffmpeg dll dsicinaudio audiocodec ff4xmadmpcm info "FFmpeg 4XM ADPCM audio" status working fourcc 4XMA ; internal MPlayer FourCC driver ffmpeg dll adpcm_4xm audiocodec ffadpcmimaws info "FFmpeg Westwood IMA ADPCM audio" status working fourcc AIWS ; internal MPlayer FourCC driver ffmpeg dll adpcm_ima_ws audiocodec ffwssnd1 info "FFmpeg Westwood SND1" status working fourcc SND1 ; internal MPlayer FourCC driver ffmpeg dll ws_snd1 audiocodec ffinterplaydpcm info "FFmpeg Interplay DPCM audio" status working fourcc INPA ; internal MPlayer FourCC driver ffmpeg dll interplay_dpcm audiocodec ffadpcmea info "FFmpeg EA ADPCM audio" status working fourcc ADEA ; internal MPlayer FourCC driver ffmpeg dll adpcm_ea audiocodec ffadpcmeamaxis info "FFmpeg EA MAXIS XA ADPCM audio" status working fourcc ADXA ; internal MPlayer FourCC driver ffmpeg dll adpcm_ea_maxis_xa audiocodec ffadpcmxa info "FFmpeg XA ADPCM audio" status working fourcc PSXA ; internal MPlayer FourCC driver ffmpeg dll adpcm_xa audiocodec ffxandpcm info "FFmpeg XAN DPCM audio" comment "only works with libavformat demuxer" status working fourcc Axan driver ffmpeg dll xan_dpcm audiocodec ffadpcmthp info "FFmpeg THP ADPCM audio" status working fourcc THPA driver ffmpeg dll adpcm_thp audiocodec libdv info "raw DV audio decoder (libdv)" status working fourcc RADV driver libdv dll libdv.so.2 audiocodec ffdv info "FFmpeg DV audio decoder" status working fourcc RADV fourcc vdva,dvca fourcc dvau driver ffmpeg dll "dvaudio" audiocodec faad info "FAAD AAC (MPEG-2/MPEG-4 Audio) decoder" status working fourcc mp4a,MP4A fourcc "VLB " ; Used in NSV, not really working fourcc "AAC " ; Used in NSV fourcc "AACP" ; Used in NSV for AACPlus format 0xff format 0x706D format 0x4143 ; aac in asf driver faad dll libfaad2 audiocodec ffaac info "FFmpeg AAC (MPEG-2/MPEG-4 Audio) decoder" status working fourcc mp4a,MP4A fourcc "VLB " ; Used in NSV, not really working fourcc "AAC " ; Used in NSV fourcc "AACP" ; Used in NSV for AACPlus fourcc raac,racp format 0xff format 0x706D format 0x4143 ; aac in asf driver ffmpeg dll aac audiocodec ffflac info "FFmpeg FLAC audio decoder" status working format 0x43614C66 format 0xF1AC driver ffmpeg dll "flac" audiocodec ffalac info "FFmpeg ALAC audio decoder" status working fourcc alac driver ffmpeg dll "alac" audiocodec fftta info "FFmpeg True Audio (TTA) decoder" status working fourcc TTA1 ; internal MPlayer FourCC driver ffmpeg dll "tta" audiocodec ffwavpack info "FFmpeg WavPack audio decoder" status working fourcc WVPK ; internal MPlayer FourCC driver ffmpeg dll "wavpack" audiocodec ffshorten info "FFmpeg Shorten audio decoder" status working fourcc shrn ; internal MPlayer FourCC driver ffmpeg dll "shorten" audiocodec ffape info "FFmpeg Monkey's Audio decoder" status working fourcc "APE " driver ffmpeg dll "ape" audiocodec ffmlp info "FFmpeg MLP decoder" status working fourcc "MLP " ; internal MPlayer FourCC driver ffmpeg dll "mlp" audiocodec ffnellymoser info "FFmpeg Nellymoser Audio decoder" status working fourcc "NELL" ; internal MPlayer FourCC driver ffmpeg dll "nellymoser" audiocodec pcm info "Uncompressed PCM" status working format 0x0 format 0x1 format 0x3 ; IEEE float format 0xfffe ; Extended format 0x20776172 ; "raw " (MOV files) format 0x736f7774 ; "twos" (MOV files) format 0x74776f73 ; "sowt" (MOV files) format 0x32336c66 ; "fl32" (MOV files) format 0x666c3332 ; "23lf" (MOV files) ; format 0x34366c66 ; "fl64" (MOV files) ; format 0x666c3634 ; "46lf" (MOV files) format 0x454e4f4e ; "NONE" (MOV files from Kodak CX6320) format 0x34326e69 ; "in24" (MOV files) format 0x696e3234 ; "42ni" (MOV files) format 0x32336e69 ; "in32" (MOV files) format 0x696e3332 ; "23ni" (MOV files) ;;;; these are for hardware support only: (alaw,ulaw,ima-adpcm,mpeg,ac3) ; format 0x6 ; format 0x7 ; format 0x11 ; format 0x50 ; format 0x2000 ;;;; driver pcm audiocodec divx info "DivX audio (WMA)" status working format 0x160 format 0x161 driver acm dll "divxa32.acm" audiocodec msadpcmacm info "MS ADPCM" status working format 0x2 driver acm dll "msadp32.acm" audiocodec mp3 info "mp3lib MPEG layer-2, layer-3" status working comment "Optimized to MMX/SSE/3Dnow!" format 0x50 ; layer-1 && layer-2 format 0x55 ; layer-3 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) format 0x5000736d ; "ms\0\x50" older mp2 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver mp3lib audiocodec ffpcmdaud info "D-Cinema audio (FFmpeg)" status untested fourcc "daud" driver ffmpeg dll "pcm_s24daud" audiocodec ffwmav1 info "DivX audio v1 (FFmpeg)" status untested format 0x160 driver ffmpeg dll "wmav1" audiocodec ffwmav2 info "DivX audio v2 (FFmpeg)" status untested format 0x161 driver ffmpeg dll "wmav2" audiocodec ffmac3 info "Macintosh Audio Compression and Expansion 3:1" status untested fourcc "MAC3" driver ffmpeg dll "mace3" audiocodec ffmac6 info "Macintosh Audio Compression and Expansion 6:1" status untested fourcc "MAC6" driver ffmpeg dll "mace6" audiocodec ffsonic info "FFmpeg Sonic" status untested fourcc SONC format 0x2048 driver ffmpeg dll "sonic" audiocodec ffmp3on4 info "FFmpeg Multi-channel MPEG layer-3 on MP4 audio decoder" status working format 0x1d61346d ; 'm','4','a',29 internal MPlayer fourcc driver ffmpeg dll "mp3on4" audiocodec ffmp3 info "FFmpeg MPEG layer-3 audio decoder" comment "integer only" status working format 0x55 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver ffmpeg dll "mp3" audiocodec ffmp3adu info "FFmpeg MPEG layer-3 adu audio decoder" comment "integer only" status working format 0x55756461 ; 'a','d','u',0x55 internal MPlayer fourcc driver ffmpeg dll "mp3adu" audiocodec ffmp2 info "FFmpeg MPEG layer-1 and layer-2 audio decoder" comment "integer only" status working format 0x50 driver ffmpeg dll "mp2" audiocodec mad info "libMAD MPEG layer 1-2-3" status working format 0x50 format 0x55 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver libmad dll "libmad" audiocodec mp3acm info "MPEG layer-3" status working comment "conflicts with security kernel patches" format 0x55 driver acm dll "l3codeca.acm" audiocodec imaadpcmacm info "IMA ADPCM" status working format 0x11 driver acm dll "imaadp32.acm" audiocodec msgsm info "MS GSM" status working format 0x31 format 0x32 format 0x204D5347 fourcc agsm driver msgsm audiocodec msgsmacm info "MS GSM" status working format 0x31 ; format 0x32 driver acm dll "msgsm32.acm" audiocodec msnaudio info "MSN AUDIO" status working ; format 0x31 format 0x32 driver acm dll "msnaudio.acm" audiocodec alaw info "aLaw" status working format 0x6 format 0x77616C61 ; 'alaw', .mov files driver alaw audiocodec ulaw info "uLaw" status working format 0x7 format 0x77616c75 ; "ulaw" (MOV files) driver alaw audiocodec dvdpcm info "Uncompressed DVD/VOB LPCM" status working format 0x10001 driver dvdpcm audiocodec a52 info "AC3-liba52" status working format 0x2000 ; format 0x332D6361 ; ac-3 in mp4 -- not working fourcc dnet driver liba52 dll "liba52" audiocodec ffac3 info "FFmpeg AC-3" status working format 0x2000 format 0x332D6361 ; ac-3 in mp4 fourcc dnet driver ffmpeg dll ac3 audiocodec ffeac3 info "FFmpeg E-AC-3" status working fourcc EAC3 driver ffmpeg dll eac3 audiocodec dts info "DTS-libdca" status working format 0x2001 driver libdca audiocodec ffdca info "FFmpeg DTS" status working format 0x2001 driver ffmpeg dll "dca" audiocodec ffmusepack7 info "Musepack sv7 audio codec" comment "only works with libavformat demuxer" status working fourcc "MPC " driver ffmpeg dll "mpc7" audiocodec ffmusepack8 info "Musepack sv8 audio codec" comment "only works with libavformat demuxer" status working fourcc "MPC8" fourcc MPCK driver ffmpeg dll "mpc8" audiocodec musepack info "Musepack audio codec" status working fourcc "MPC " format 0x2b4d driver mpcdec audiocodec ffamrnb info "AMR Narrowband" status working fourcc samr format 0x57 ;amr in avi driver ffmpeg dll "libamr_nb" audiocodec ffamrwb info "AMR Wideband" status working fourcc sawb format 0x58 ;amr in avi driver ffmpeg dll "libamr_wb" audiocodec ffadcpmswf info "FFmpeg's ADPCM Flash-variant" status working format 0x5346 ; 'SF', pseudo id driver ffmpeg dll "adpcm_swf" audiocodec voxvoice info "VoxWare MetaVoice" status working comment "windows users need msms001.vwp and mvoice.vwp in windows\\system32 folder" format 0x74 driver dshow dll "voxmvdec.ax" ; need also msms001.vwp and mvoice.vwp guid 0x46e32b01, 0xa465, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d audiocodec voxware info "VoxWare" status working comment "windows users need msms001.vwp in windows\\system32 folder" format 0x75 driver dshow dll "voxmsdec.ax" ; need also msms001.vwp guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d audiocodec acelp info "ACELP.net Sipro Lab Audio Decoder" status working format 0x130 driver dshow dll "acelpdec.ax" guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 audiocodec ffimc info "FFmpeg Intel Music Coder" status working format 0x401 driver ffmpeg dll "imc" audiocodec imc info "Intel Music Coder" status working comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip" format 0x401 driver acm dll "imc32.acm" audiocodec iac25 info "Indeo audio" status working format 0x402 driver acm dll "iac25_32.ax" audiocodec ffctadp32 info "Creative ADPCM native codec" status working format 0x200 driver ffmpeg dll "adpcm_ct" audiocodec ctadp32 info "Creative ADPCM codec" status working format 0x200 driver acm dll "ctadp32.acm" audiocodec sc4 info "SC4 : Micronas speech codec (ADPCM, MPman recording)" status working format 0x350 driver acm dll "mi-sc4.acm" audiocodec hwac3 info "AC3 through S/PDIF" status working format 0x2000 format 0x332D6361 ; ac-3 in mp4 fourcc dnet driver hwac3 audiocodec hwdts info "DTS through S/PDIF" status working format 0x2001 driver hwac3 audiocodec ffvorbis info "FFmpeg Vorbis decoder" status working fourcc vrbs format 0x566F driver ffmpeg dll "vorbis" audiocodec vorbis info "OggVorbis Audio Decoder" status working comment "OggVorbis driver using libvorbis" fourcc vrbs format 0x566F driver libvorbis dll "libvorbis" audiocodec tremor info "OggVorbis audio decoder" status working comment "fixed-point decoder useful systems without floating-point unit" fourcc vrbs format 0x566F driver tremor dll "tremor" audiocodec vorbisacm info "OggVorbis ACM" status working comment "OggVorbis driver using vorbis.acm" format 0x674F ; mode1 format 0x6750 ; mode2 ; format 0x6751 ; mode3 format 0x676F ; mode1+ format 0x6770 ; mode2+ format 0x6771 ; mode3+ driver acm dll "vorbis.acm" audiocodec speex info "Speex Audio Decoder" status working comment "Speex driver using libspeex" fourcc 'spx ' driver speex dll "speex" audiocodec vivoaudio info "Vivo G.723/Siren Audio Codec" status working format 0x111 ; vivo g.723 format 0x112 ; siren driver acm dll "vivog723.acm" audiocodec g72x info "G.711/G.721/G.723" status crashing comment "does not work yet - just noise :(" format 0x111 ; vivo g.723 format 0x112 ; vivo siren driver g72x dll "g72x.c" audiocodec ffg726 info "Sharp G.726 Audio" status working format 0x45 driver ffmpeg dll "g726" audiocodec g726 info "Sharp G.726 Audio" status untested format 0x45 driver acm dll "scg726.acm" audiocodec atrac3 info "Sony ATRAC3" status buggy comment "format not accepted" format 0x270 driver acm dll "atrac3.acm" audiocodec ALF2 ; http://www.nctsoft.com/products/NCTALFCD/ ; jdp@mail.sonofon.dk info "ALF2" status working format 0x1FC4 ; ALF2 driver acm dll "alf2cd.acm" audiocodec fftruespeech info "FFmpeg TrueSpeech" status working format 0x22 driver ffmpeg dll "truespeech" audiocodec truespeech info "DSP Group TrueSpeech(TM)" status working format 0x22 driver acm dll "tssoft32.acm" ; need also tsd32.dll ; rt32dcmp.dll needed too audiocodec voxwarert24 info "VoxWare RT24 speech codec" status working format 0x181c driver acm dll "nsrt2432.acm" audiocodec lhacm info "Lernout & Hauspie CELP and SBC codecs" status working format 0x1101 ; CELP format 0x1102 ; SBC format 0x1103 ; SBC format 0x1104 ; SBC driver acm dll "lhacm.acm" audiocodec TwinVQ info "VQF codec by NTTLabs" status working fourcc TWIN driver vqf dll "tvqdec.dll" audiocodec hwmpa info "MPEG audio pass-through for hardware MPEG decoders" status working comment "for hardware MPEG audio decoders" format 0x50 ; layer-1 && layer-2 format 0x55 ; layer-3 format 0x5500736d ; "ms\0\x55" older MP3 fourcc (MOV files) fourcc ".mp3" ; CBR/VBR MP3 (MOV files) fourcc "MP3 " ; used in .nsv files fourcc "LAME" ; used in mythtv .nuv files driver hwmpa audiocodec msnsiren info "msn siren audio codec" status working format 0x28E driver acm dll "sirenacm.dll" audiocodec uleaddva info "Ulead DV ACM" status working format 0x215 format 0x216 driver acm dll "dvacm.acm" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/dvd0000644000175000017500000000010111141052016020234 0ustar benben# Configure system to active the DVD navigation menu. DVDNAV=no geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/radio0000644000175000017500000000027011141052016020564 0ustar benben# # Radio Options RADIO=no # # Radio Channels # Syntax : CHAN="Channel Frequency:Channel Title" # Example: #CHAN="91.5:CBC Radio 1" #CHAN="106.1:CHEZ" #CHAN="94.9:CIMF Rock Detente" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/subfont0000644000175000017500000000001511141052021021137 0ustar benbenwindows-1252 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/keymaps/0000755000175000017500000000000011141052022021212 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/keymaps/azerty0000644000175000017500000000540711141052022022461 0ustar benbenbkeymap&"'(-_)= a z e r t y u i o p $q s d f g h j k l m *w x c v b n ,;:!*   789-456+1230.*<  /  1234567890+ A Z E R T Y U I O P Q S D F G H J K L M %W X C V B N ?./             ,>  /    ~#{[|\^@]}        |/        "#$%&'()*+   ,-/      ./01234567   89   ~         /   1234567890)=qwertyuiop[] asdfghjkl;'`\zxcvbnm,./       -   +   <  /\  ~&~"'(-`_^@]+ QWERTYUIOP{}ASDFGHJKL|ZXCVBNM<>     /  ~qwertyuiopasdfghjklzxcvbnm                       /   geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/keymaps/qwertz0000644000175000017500000000540711141052022022477 0ustar benbenbkeymap1234567890' q w e r t z u i o p +a s d f g h j k l ^#y x c v b n m ,.-       <     !"$%&/()=?` Q W E R T Z U I O P *A S D F G H J K L 'Y X C V B N M ;:_       > !     {[]}\@w r t z u i o p ~a s d f g h j k l ^y x v b n -            |          "#$%&'()*+   ,-             ~               1234567890 qwertzuiop+ asdfghjkl#yxcvbnm,.-            <     ~!"$%&/()=?` QWERTZUIOP*ASDFGHJKL'YXCVBNM;:_     >   ~{[]}\@wertzuiopasdfghjklyxcvbnm     |                      geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lang.funcs0000644000175000017500000000222711141052022021525 0ustar benben#!/bin/sh simplifylang() { local i tmp for i in $LANGUAGES; do eval tmp=\$${i}_name if [ "$1" = "$i" -o "$1" = "$tmp" ]; then echo $i return fi done } lang2charset() { local i lang charset=$1 if [ -z "$charset" ]; then if [ -n "$MENU_LANG" ]; then charset="$MENU_LANG" else charset="$DEFAULT_LANGUAGE" fi fi lang=`simplifylang $charset` if [ -n "$lang" ]; then eval charset=\$${lang}_charset fi for i in $CHARSETS; do if [ "$charset" = "$i" ]; then echo $charset return fi done echo "ERROR: Couldn't find a matching charset for '$1'." 1>&2 } lang2font() { local i tmp charset charset=`lang2charset $1` charset=`echo "$charset" | sed s%-%_%g` for i in ${charset}_${2}font ${charset}_font DEFAULT_FONT; do eval tmp=\$$i if [ -n "$tmp" ]; then echo $tmp return fi done } fribidi_mp_set_option() { local tmp name name=`echo $1 | sed s%-%_%g` eval tmp=\$${name}_fribidi if [ -n "$tmp" ]; then mp_set_option "${2}flip-hebrew" 1 mp_set_option "${2}fribidi-charset" "$tmp" else mp_set_option "${2}flip-hebrew" 0 fi } geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/acpi/0000755000175000017500000000000011141052023020456 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/acpi/events/0000755000175000017500000000000011141052023021762 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/acpi/events/powerbtn0000644000175000017500000000005611141052023023546 0ustar benbenevent=button[ /]power.* action=/sbin/poweroff geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/acpi/scripts/0000755000175000017500000000000011141052023022145 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/hal/0000755000175000017500000000000011141052026020311 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/hal/fdi/0000755000175000017500000000000011141052026021053 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/hal/fdi/preprobe/0000755000175000017500000000000011141052026022671 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/hal/fdi/information/0000755000175000017500000000000011141052026023400 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/hal/fdi/policy/0000755000175000017500000000000011141052026022352 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/udev/0000755000175000017500000000000011141052026020510 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/udev/rules.d/0000755000175000017500000000000011141052026022064 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/udev/rules.d/90-hal.rules0000644000175000017500000000012211141052026024125 0ustar benben# pass all events to the HAL daemon RUN+="socket:/org/freedesktop/hal/udev_event" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/autoplay0000644000175000017500000000011011141052026021316 0ustar benben# Configure system to autoplay when automounting media. AUTOPLAY="yes" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lcd4linux.conf0000644000175000017500000001071111141052026022322 0ustar benbenDisplay BWCT { Driver 'BWCT' Size 'LCD_WIDTHxLCD_HEIGHT' Contrast 30 asc255bug 1 Icons 1 } Display CF631 { Driver 'Crystalfontz' Model '631' Port '/dev/tts/USB0' Speed 115200 Contrast 95 Backlight 255 Icons 1 } Display CF632 { Driver 'Crystalfontz' Model '632' Port '/dev/tts/0' Speed 19200 Icons 1 } Display CF633 { Icons 4 Driver 'Crystalfontz' Model '633' Port '/dev/tts/0' Speed 19200 Contrast 16 Backlight 50 } Display CT20x4 { Driver 'Beckmann+Egle' Model 'CT20x4' Port '/dev/tts/0' Size 'LCD_WIDTHxLCD_HEIGHT' # Contrast 7 # Backlight 1 Icons 1 } Display CW12232 { Driver 'Cwlinux' Model 'CW12232' Port '/dev/usb/tts/0' Speed 19200 Brightness 2 Icons 1 } # generic HD44780 display (LCD4Linux wiring) Display HD44780-generic { Driver 'HD44780' Model 'generic' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Wire { RW 'GND' RS 'AUTOFD' ENABLE 'STROBE' ENABLE2 'GND' GPO 'INIT' } } Display HD44780-I2C { Driver 'HD44780' Model 'generic' Bus 'i2c' Port '/dev/i2c-0' Device '70' Bits '4' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 Wire { RW 'DB5' RS 'DB4' ENABLE 'DB6' GPO 'GND' } } # HD44780 display from www.kernelconcepts.de Display HD44780-kernelconcepts { Driver 'HD44780' Model 'HD66712' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' Wire { RW 'AUTOFD' RS 'INIT' ENABLE 'STROBE' ENABLE2 'GND' GPO 'GND' } } # generic HD44780 display (WinAmp wiring) Display HD44780-winamp { Driver 'HD44780' Model 'generic' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' Wire { RW 'AUTOFD' RS 'INIT' ENABLE 'STROBE' ENABLE2 'GND' GPO 'GND' } } Display LCDTerm { Driver 'LCDTerm Port '/dev/tts/0' Speed 19200 Size 'LCD_WIDTHxLCD_HEIGHT' Icons 1 } Display LCM-162 { Driver 'HD44780' Model 'LCM-162' # Bus 'parport' Port '/dev/parport0' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 } Display LK204 { Driver 'MatrixOrbital' Model 'LK204-24-USB' Port '/dev/usb/tts/0' # Port '/dev/tts/0' Speed 19200 Contrast 256/2 } Display M50530-24x8 { Driver 'M50530' Port '/dev/parport0' # Port '0x378' Size 'LCD_WIDTHxLCD_HEIGHT' Font '5x7' Duty 2 Wire.EX 'STROBE' Wire.IOC1 'SLCTIN' Wire.IOC2 'AUTOFD' Wire.GPO 'INIT' } Display MI240 { Driver 'MilfordInstruments' Model 'MI240' Port '/dev/tts/0' Speed 19200 } Display SC1602D { Driver 'HD44780' Port '/dev/parport0' Bits '8' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 0 Icons 1 Wire { RW 'GND' RS 'AUTOFD' ENABLE 'STROBE' GPO 'INIT' } } Display SerDispLib { Driver 'serdisplib' Port 'PAR:/dev/parport0' #Port '/dev/tts/0' Model 'OPTREX323' Options '' } Display SimpleLCD { Driver 'SimpleLCD' Port '/dev/tts/0' Speed 1200 Options 0 Size 'LCD_WIDTHxLCD_HEIGHT' } Display T6963-240x64 { Driver 'T6963' Port '/dev/parports/0' Size '240x64' Wire.CE 'STROBE' Wire.CD 'SLCTIN' Wire.RD 'AUTOFD' Wire.WR 'INIT' } Display Trefon { Driver 'TREFON' Size 'LCD_WIDTHxLCD_HEIGHT' Backlight 1 Icons 1 } Display USBLCD { Driver 'USBLCD' # Port '/dev/lcd0' Port 'libusb' Size 'LCD_WIDTHxLCD_HEIGHT' asc255bug 1 Icons 1 } Variables { tick 500 } Widget MPlayerFileName { class 'Text' expression mplayer('ID_FILENAME') width LCD_WIDTH align 'M' speed 400 update tick } Widget MPlayerTimeBar { class 'Bar' expression mplayer('ID_VIDEO_PERCENT') length LCD_WIDTH max 100 direction 'E' update 100 } Widget MPlayerTimeElapsed { class 'Text' expression mplayer('ID_TIME_ELAPSED') width LCD_WIDTH align 'R' update tick } Widget MPlayerTimeTotal { class 'Text' expression mplayer('ID_LENGTH') width LCD_WIDTH align 'R' update tick } Layout MPlayer { Row1 { Col1 'MPlayerFileName' } Row2 { Col1 'MPlayerTimeBar' } } Layout MPlayerTime { Row1 { Col1 'MPlayerTimeElapsed' } Row2 { Col1 'MPlayerTimeTotal' } } Layout 'MPlayer' geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/lcddisplay0000644000175000017500000000010211141052026021611 0ustar benbenLCD_ENABLED=no LCD_MODEL=HD44780-winamp LCD_WIDTH=16 LCD_HEIGHT=2 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/network0000644000175000017500000000407711141052031021165 0ustar benben# System's Network Configuration PHY_TYPE="auto" # Network physical type (auto|ethernet|wifi) HOST="" # GeeXboX IP ("" for DHCP) SUBNET="" # GeeXboX Subnet mask ("" for DHCP) GATEWAY="" # Gateway IP ("" for DHCP or no internet connection) DNS_SERVER="" # DNS Server IP ("" for DHCP or none) DHCP_TIMEOUT="0" # DHCP timeout seconds (set >0 for slow servers) # Wifi settings WIFI_MODE="managed" # Wifi working mode (managed|ad-hoc) WIFI_CHANNEL="" # Wifi channel WIFI_ENC="WEP" # Wifi Encryption method (WEP|WPA|none) WIFI_KEY="" # Wifi WEP/WPA key (in ASCII mode, not hex.) WIFI_ESSID="any" # Wifi SSID WPA_DRV="wext" # WPA driver (wext|atmel) WPA_SCAN_SSID="1" # Request SSID-specific scanning; for APs that # reject broadcast SSID (0|1) WPA_AP_SCAN="2" # Driver AP scanning method (0|1|2) WPA_CIPHER="TKIP" # WPA CIPHER to use (TKIP|none) # Services to be started at boot time TELNET_SERVER="no" FTP_SERVER="no" HTTP_SERVER="no" SAMBA_SERVER="no" # Use UPnP MediaServer devices auto-discovery UPNP="yes" # Network Stream ICECAST="no" SHOUTCAST="no" # WARNING: SHOUTcast TV may contain streams with adult content! SHOUTCASTTV="no" WHITELIST="" BLACKLIST="adult porn xxx ESS SWCTV SWPTV Subscription" TIMEOUT=10 TRIES=10 # Generic shares settings # Set to 0 to disable network rescan, or else time (minutes) between scans. NET_RESCAN_DELAY=3 # Samba settings # Note that configured Samba shares cannot contain spaces in their names. SMB_USER="SHARE" # User Login ("" for none) SMB_PWD="" # User Password ("" for none) # Static Samba shares can be defined as shown in the commented examples below, # where <%>,<@>,<&>,<#> field separators must be present as shown (Note that # the password cannot contain these special delimiters): #STATIC_SMB="username<%>password<@>ip<&>myservername<#>share1<#>share2<#>share3" #STATIC_SMB="<%><@>ip<&>myservername<#>share1" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/nfs0000644000175000017500000000025311141052027020257 0ustar benben# # Here you can add some NFS mountpoints which will be automatically # mounted at boot time. # # example : # SERVER:DIR MOUNTPOINT_NAME # 192.168.0.1:/home home geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/9p0000644000175000017500000000026411141052027020023 0ustar benben# # Here you can define some 9p.2000u resource shares (mounted at boot time). # # example : # SERVER:PORT:ID:DIR MOUNTPOINT_NAME # 10.0.0.10:9999:root:/srv/storage storage geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/netstream0000644000175000017500000000267311141052027021503 0ustar benben# # Network Stream Options # # NOTE: Uncommented entries in this file must not have any leading whitespace characters! # Network Stream Online Listings SHOUTCAST_URI="http://www.shoutcast.com/sbin/newxml.phtml?genre=" SHOUTCAST_GENRE="TopTen Top500 Alternative Americana Asian Classical Country Electronic Jazz Pop/Rock R%26B/Soul Spoken World Other/Mixed" SHOUTCASTTV_URI="http://www.shoutcast.com/sbin/newtvlister.phtml" SHOUTCASTTUNE_URI="http://www.shoutcast.com/sbin/tunein-station.pls" ICECAST_URI="http://dir.xiph.org/yp.xml" # Network Extended M3U Playlist Stream Online Listings # Syntax : EXTM3U="URI":Name # Example (this URI example for France only!) #EXTM3U="http://mafreebox.freebox.fr/freeboxtv/playlist.m3u":FreeboxTV # Example for DreamBox & IT Gate Satellite Receivers # (change ip_address with your DVB receiver's IP address) #EXTM3U="http://ip_address/video.m3u":Satellite # Network Extended PLS Playlist Stream Online Listings # Syntax : EXTPLS="URI":Name # Example (Worldwide TV streams) #EXTPLS="http://galeon.com/mpfiles/worldtv.jpg":Worldwide TV # Network Stream URI # Syntax : STREAM="URI":Name # Example: #STREAM="http://66.230.159.66:8765":Bandit Radio # # If the URI contains a date, to replace there: #http://viptf1.yacast.net/tf1jt/jt13d31121999.asf # By: #http://viptf1.yacast.net/tf1jt/jt13d%DD%MM%YY.asf # # year 4 digits (1999) = %YY # year 2 digits (99) = %yy # month (12) = %MM # day (31) = %DD # geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/network.scripts0000755000175000017500000000017711141052027022660 0ustar benben# # Set of common network-related scripts # set -e wait_for_network () { while [ ! -f /var/ifup ]; do sleep 1 done } geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/issue0000644000175000017500000000005411141052027020620 0ustar benbenWelcome to GeeXboX x86_64 1.2 (C) 2002-2009 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/bftpd.conf0000644000175000017500000000040011141052027021506 0ustar benbenglobal { PORT="21" HELLO_STRING="Welcome to GeeXboX's FTP Server." AUTO_CHDIR="/" DO_CHROOT="no" RATIO="none" XFER_BUFSIZE="64000" AUTH="PASSWD" FILE_AUTH="/etc/bftpdpwd" PRE_WRITE_SCRIPT="/usr/bin/rw" POST_WRITE_SCRIPT="/usr/bin/ro" } geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/ftp0000644000175000017500000000006411141052027020262 0ustar benben# FTP Authentication USERNAME=geexbox PASSWORD=ftp geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/img_ext0000644000175000017500000000004111141052033021115 0ustar benbenbmp gif jpeg jpg pcd png pnm ppm geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/view_img_timeout0000644000175000017500000000000311141052033023033 0ustar benben10 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/X11/0000755000175000017500000000000011141052012020111 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/X11/protocol.txt0000644000175000017500000007245511141052006022533 0ustar benben# Registry of protocol names used by X Server # This will eventually be replaced by server-side XCB # # Format is Xnnn : # R=Request, V=Event, E=Error # # This is a security-sensitive file, please set permissions as appropriate. # R001 Adobe-DPS-Extension:Init R002 Adobe-DPS-Extension:CreateContext R003 Adobe-DPS-Extension:CreateSpace R004 Adobe-DPS-Extension:GiveInput R005 Adobe-DPS-Extension:GetStatus R006 Adobe-DPS-Extension:DestroySpace R007 Adobe-DPS-Extension:Reset R008 Adobe-DPS-Extension:NotifyContext R009 Adobe-DPS-Extension:CreateContextFromID R010 Adobe-DPS-Extension:XIDFromContext R011 Adobe-DPS-Extension:ContextFromXID R012 Adobe-DPS-Extension:SetStatusMask R013 Adobe-DPS-Extension:CreateSecureContext R014 Adobe-DPS-Extension:NotifyWhenReady R000 Apple-DRI:QueryVersion R001 Apple-DRI:QueryDirectRenderingCapable R002 Apple-DRI:CreateSurface R003 Apple-DRI:DestroySurface R004 Apple-DRI:AuthConnection V000 Apple-DRI:ObsoleteEvent1 V001 Apple-DRI:ObsoleteEvent2 V002 Apple-DRI:ObsoleteEvent3 V003 Apple-DRI:SurfaceNotify E000 Apple-DRI:ClientNotLocal E001 Apple-DRI:OperationNotSupported R000 Apple-WM:QueryVersion R001 Apple-WM:FrameGetRect R002 Apple-WM:FrameHitTest R003 Apple-WM:FrameDraw R004 Apple-WM:DisableUpdate R005 Apple-WM:ReenableUpdate R006 Apple-WM:SelectInput R007 Apple-WM:SetWindowMenuCheck R008 Apple-WM:SetFrontProcess R009 Apple-WM:SetWindowLevel R010 Apple-WM:SetCanQuit R011 Apple-WM:SetWindowMenu V000 Apple-WM:ControllerNotify V001 Apple-WM:ActivationNotify V002 Apple-WM:PasteboardNotify E000 Apple-WM:ClientNotLocal E001 Apple-WM:OperationNotSupported R000 BIG-REQUESTS:Enable R000 Composite:CompositeQueryVersion R001 Composite:CompositeRedirectWindow R002 Composite:CompositeRedirectSubwindows R003 Composite:CompositeUnredirectWindow R004 Composite:CompositeUnredirectSubwindows R005 Composite:CompositeCreateRegionFromBorderClip R006 Composite:CompositeNameWindowPixmap R007 Composite:CompositeGetOverlayWindow R008 Composite:CompositeReleaseOverlayWindow R000 DAMAGE:QueryVersion R001 DAMAGE:Create R002 DAMAGE:Destroy R003 DAMAGE:Subtract R004 DAMAGE:Add V000 DAMAGE:Notify E000 DAMAGE:BadDamage R000 DEC-XTRAP:Reset R001 DEC-XTRAP:GetAvailable R002 DEC-XTRAP:Config R003 DEC-XTRAP:StartTrap R004 DEC-XTRAP:StopTrap R005 DEC-XTRAP:GetCurrent R006 DEC-XTRAP:GetStatistics R007 DEC-XTRAP:SimulateXEvent R008 DEC-XTRAP:GetVersion R009 DEC-XTRAP:GetLastInpTime V000 DEC-XTRAP:Event E002 DEC-XTRAP:BadIO E004 DEC-XTRAP:BadStatistics E005 DEC-XTRAP:BadDevices E007 DEC-XTRAP:BadScreen E008 DEC-XTRAP:BadSwapReq R000 DMX:DMXQueryVersion R001 DMX:DMXGetScreenCount R002 DMX:DMXGetScreenInfoDEPRECATED R003 DMX:DMXGetWindowAttributes R004 DMX:DMXGetInputCount R005 DMX:DMXGetInputAttributes R006 DMX:DMXForceWindowCreationDEPRECATED R007 DMX:DMXReconfigureScreenDEPRECATED R008 DMX:DMXSync R009 DMX:DMXForceWindowCreation R010 DMX:DMXGetScreenAttributes R011 DMX:DMXChangeScreensAttributes R012 DMX:DMXAddScreen R013 DMX:DMXRemoveScreen R014 DMX:DMXGetDesktopAttributes R015 DMX:DMXChangeDesktopAttributes R016 DMX:DMXAddInput R017 DMX:DMXRemoveInput R000 DOUBLE-BUFFER:GetVersion R001 DOUBLE-BUFFER:AllocateBackBufferName R002 DOUBLE-BUFFER:DeallocateBackBufferName R003 DOUBLE-BUFFER:SwapBuffers R004 DOUBLE-BUFFER:BeginIdiom R005 DOUBLE-BUFFER:EndIdiom R006 DOUBLE-BUFFER:GetVisualInfo R007 DOUBLE-BUFFER:GetBackBufferAttributes E000 DOUBLE-BUFFER:BadBuffer R000 DPMS:GetVersion R001 DPMS:Capable R002 DPMS:GetTimeouts R003 DPMS:SetTimeouts R004 DPMS:Enable R005 DPMS:Disable R006 DPMS:ForceLevel R007 DPMS:Info R000 Extended-Visual-Information:QueryVersion R001 Extended-Visual-Information:GetVisualInfo R000 FontCache:QueryVersion R001 FontCache:GetCacheSettings R002 FontCache:ChangeCacheSettings R003 FontCache:GetCacheStatistics E000 FontCache:BadProtocol E001 FontCache:CannotAllocMemory R001 GLX: R002 GLX:Large R003 GLX:CreateContext R004 GLX:DestroyContext R005 GLX:MakeCurrent R006 GLX:IsDirect R007 GLX:QueryVersion R008 GLX:WaitGL R009 GLX:WaitX R010 GLX:CopyContext R011 GLX:SwapBuffers R012 GLX:UseXFont R013 GLX:CreateGLXPixmap R014 GLX:GetVisualConfigs R015 GLX:DestroyGLXPixmap R016 GLX:VendorPrivate R017 GLX:VendorPrivateWithReply R018 GLX:QueryExtensionsString R019 GLX:QueryServerString R020 GLX:ClientInfo R101 GLX:NewList R102 GLX:EndList R103 GLX:DeleteLists R104 GLX:GenLists R105 GLX:FeedbackBuffer R106 GLX:SelectBuffer R107 GLX:Mode R108 GLX:Finish R109 GLX:PixelStoref R110 GLX:PixelStorei R111 GLX:ReadPixels R112 GLX:GetBooleanv R113 GLX:GetClipPlane R114 GLX:GetDoublev R115 GLX:GetError R116 GLX:GetFloatv R117 GLX:GetIntegerv R118 GLX:GetLightfv R119 GLX:GetLightiv R120 GLX:GetMapdv R121 GLX:GetMapfv R122 GLX:GetMapiv R123 GLX:GetMaterialfv R124 GLX:GetMaterialiv R125 GLX:GetPixelfv R126 GLX:GetPixelMapuiv R127 GLX:GetPixelMapusv R128 GLX:GetPolygonStipple R129 GLX:GetString R130 GLX:GetTexEnvfv R131 GLX:GetTexEnviv R132 GLX:GetTexGendv R133 GLX:GetTexGenfv R134 GLX:GetTexGeniv R135 GLX:GetTexImage R136 GLX:GetTexParameterfv R137 GLX:GetTexParameteriv R138 GLX:GetTexLevelParameterfv R139 GLX:GetTexLevelParameteriv R140 GLX:IsEnabled R141 GLX:IsList R142 GLX:Flush E000 GLX:BadContext E001 GLX:BadContextState E002 GLX:BadDrawable E003 GLX:BadPixmap E004 GLX:BadContextTag E005 GLX:BadCurrentWindow E006 GLX:BadRenderRequest E007 GLX:BadLargeRequest E008 GLX:UnsupportedPrivateRequest R000 LBX:QueryVersion R001 LBX:StartProxy R002 LBX:StopProxy R003 LBX:Switch R004 LBX:NewClient R005 LBX:CloseClient R006 LBX:ModifySequence R007 LBX:AllowMotion R008 LBX:IncrementPixel R009 LBX:Delta R010 LBX:GetModifierMapping R011 LBX:QueryTag R012 LBX:InvalidateTag R013 LBX:PolyPoint R014 LBX:PolyLine R015 LBX:PolySegment R016 LBX:PolyRectangle R017 LBX:PolyArc R018 LBX:FillPoly R019 LBX:PolyFillRectangle R020 LBX:PolyFillArc R021 LBX:GetKeyboardMapping R022 LBX:QueryFont R023 LBX:ChangeProperty R024 LBX:GetProperty R025 LBX:TagData R026 LBX:CopyArea R027 LBX:CopyPlane R028 LBX:PolyText8 R029 LBX:PolyText16 R030 LBX:ImageText8 R031 LBX:ImageText16 R032 LBX:QueryExtension R033 LBX:PutImage R034 LBX:GetImage R035 LBX:BeginLargeRequest R036 LBX:LargeRequestData R037 LBX:EndLargeRequest R038 LBX:InternAtoms R039 LBX:GetWinAttrAndGeom R040 LBX:GrabCmap R041 LBX:ReleaseCmap R042 LBX:AllocColor R043 LBX:Sync E000 LBX:BadLbxClient R000 MIT-SCREEN-SAVER:QueryVersion R001 MIT-SCREEN-SAVER:QueryInfo R002 MIT-SCREEN-SAVER:SelectInput R003 MIT-SCREEN-SAVER:SetAttributes R004 MIT-SCREEN-SAVER:UnsetAttributes R005 MIT-SCREEN-SAVER:Suspend V000 MIT-SCREEN-SAVER:Notify R000 MIT-SHM:QueryVersion R001 MIT-SHM:Attach R002 MIT-SHM:Detach R003 MIT-SHM:PutImage R004 MIT-SHM:GetImage R005 MIT-SHM:CreatePixmap V000 MIT-SHM:Completion E000 MIT-SHM:BadShmSeg R000 MIT-SUNDRY-NONSTANDARD:SetBugMode R001 MIT-SUNDRY-NONSTANDARD:GetBugMode R000 Multi-Buffering:GetBufferVersion R001 Multi-Buffering:CreateImageBuffers R002 Multi-Buffering:DestroyImageBuffers R003 Multi-Buffering:DisplayImageBuffers R004 Multi-Buffering:SetMBufferAttributes R005 Multi-Buffering:GetMBufferAttributes R006 Multi-Buffering:SetBufferAttributes R007 Multi-Buffering:GetBufferAttributes R008 Multi-Buffering:GetBufferInfo R009 Multi-Buffering:CreateStereoWindow R010 Multi-Buffering:ClearImageBufferArea V000 Multi-Buffering:ClobberNotify V001 Multi-Buffering:UpdateNotify E000 Multi-Buffering:BadBuffer R000 RANDR:QueryVersion R001 RANDR:OldGetScreenInfo R002 RANDR:SetScreenConfig R003 RANDR:OldScreenChangeSelectInput R004 RANDR:SelectInput R005 RANDR:GetScreenInfo R006 RANDR:GetScreenSizeRange R007 RANDR:SetScreenSize R008 RANDR:GetScreenResources R009 RANDR:GetOutputInfo R010 RANDR:ListOutputProperties R011 RANDR:QueryOutputProperty R012 RANDR:ConfigureOutputProperty R013 RANDR:ChangeOutputProperty R014 RANDR:DeleteOutputProperty R015 RANDR:GetOutputProperty R016 RANDR:CreateMode R017 RANDR:DestroyMode R018 RANDR:AddOutputMode R019 RANDR:DeleteOutputMode R020 RANDR:GetCrtcInfo R021 RANDR:SetCrtcConfig R022 RANDR:GetCrtcGammaSize R023 RANDR:GetCrtcGamma R024 RANDR:SetCrtcGamma V000 RANDR:ScreenChangeNotify V001 RANDR:Notify E000 RANDR:BadRROutput E001 RANDR:BadRRCrtc E002 RANDR:BadRRMode R000 RECORD:QueryVersion R001 RECORD:CreateContext R002 RECORD:RegisterClients R003 RECORD:UnregisterClients R004 RECORD:GetContext R005 RECORD:EnableContext R006 RECORD:DisableContext R007 RECORD:FreeContext E000 RECORD:BadContext R000 RENDER:QueryVersion R001 RENDER:QueryPictFormats R002 RENDER:QueryPictIndexValues R003 RENDER:QueryDithers R004 RENDER:CreatePicture R005 RENDER:ChangePicture R006 RENDER:SetPictureClipRectangles R007 RENDER:FreePicture R008 RENDER:Composite R009 RENDER:Scale R010 RENDER:Trapezoids R011 RENDER:Triangles R012 RENDER:TriStrip R013 RENDER:TriFan R014 RENDER:ColorTrapezoids R015 RENDER:ColorTriangles R016 RENDER:Transform R017 RENDER:CreateGlyphSet R018 RENDER:ReferenceGlyphSet R019 RENDER:FreeGlyphSet R020 RENDER:AddGlyphs R021 RENDER:AddGlyphsFromPicture R022 RENDER:FreeGlyphs R023 RENDER:CompositeGlyphs8 R024 RENDER:CompositeGlyphs16 R025 RENDER:CompositeGlyphs32 R026 RENDER:FillRectangles R027 RENDER:CreateCursor R028 RENDER:SetPictureTransform R029 RENDER:QueryFilters R030 RENDER:SetPictureFilter R031 RENDER:CreateAnimCursor R032 RENDER:AddTraps R033 RENDER:CreateSolidFill R034 RENDER:CreateLinearGradient R035 RENDER:CreateRadialGradient R036 RENDER:CreateConicalGradient E000 RENDER:BadPictFormat E001 RENDER:BadPicture E002 RENDER:BadPictOp E003 RENDER:BadGlyphSet E004 RENDER:BadGlyph R000 SECURITY:QueryVersion R001 SECURITY:GenerateAuthorization R002 SECURITY:RevokeAuthorization V000 SECURITY:AuthorizationRevoked E000 SECURITY:BadAuthorization E001 SECURITY:BadAuthorizationProtocol R000 SELinux:SELinuxQueryVersion R001 SELinux:SELinuxSetDeviceCreateContext R002 SELinux:SELinuxGetDeviceCreateContext R003 SELinux:SELinuxSetDeviceContext R004 SELinux:SELinuxGetDeviceContext R005 SELinux:SELinuxSetWindowCreateContext R006 SELinux:SELinuxGetWindowCreateContext R007 SELinux:SELinuxGetWindowContext R008 SELinux:SELinuxSetPropertyCreateContext R009 SELinux:SELinuxGetPropertyCreateContext R010 SELinux:SELinuxSetPropertyUseContext R011 SELinux:SELinuxGetPropertyUseContext R012 SELinux:SELinuxGetPropertyContext R013 SELinux:SELinuxGetPropertyDataContext R014 SELinux:SELinuxListProperties R015 SELinux:SELinuxSetSelectionCreateContext R016 SELinux:SELinuxGetSelectionCreateContext R017 SELinux:SELinuxSetSelectionUseContext R018 SELinux:SELinuxGetSelectionUseContext R019 SELinux:SELinuxGetSelectionContext R020 SELinux:SELinuxGetSelectionDataContext R021 SELinux:SELinuxListSelections R022 SELinux:SELinuxGetClientContext R000 SHAPE:QueryVersion R001 SHAPE:Rectangles R002 SHAPE:Mask R003 SHAPE:Combine R004 SHAPE:Offset R005 SHAPE:QueryExtents R006 SHAPE:SelectInput R007 SHAPE:InputSelected R008 SHAPE:GetRectangles V000 SHAPE:Notify R000 SYNC:Initialize R001 SYNC:ListSystemCounters R002 SYNC:CreateCounter R003 SYNC:SetCounter R004 SYNC:ChangeCounter R005 SYNC:QueryCounter R006 SYNC:DestroyCounter R007 SYNC:Await R008 SYNC:CreateAlarm R009 SYNC:ChangeAlarm R010 SYNC:QueryAlarm R011 SYNC:DestroyAlarm R012 SYNC:SetPriority R013 SYNC:GetPriority V000 SYNC:CounterNotify V001 SYNC:AlarmNotify E000 SYNC:BadCounter E001 SYNC:BadAlarm R000 TOG-CUP:QueryVersion R001 TOG-CUP:GetReservedColormapEntries R002 TOG-CUP:StoreColors R000 Windows-WM:QueryVersion R001 Windows-WM:FrameGetRect R002 Windows-WM:FrameDraw R003 Windows-WM:FrameSetTitle R004 Windows-WM:DisableUpdate R005 Windows-WM:ReenableUpdate R006 Windows-WM:SelectInput R007 Windows-WM:SetFrontProcess V000 Windows-WM:ControllerNotify V001 Windows-WM:ActivationNotify E000 Windows-WM:ClientNotLocal E001 Windows-WM:OperationNotSupported R000 X-Resource:QueryVersion R001 X-Resource:QueryClients R002 X-Resource:QueryClientResources R003 X-Resource:QueryClientPixmapBytes R001 X11:CreateWindow R002 X11:ChangeWindowAttributes R003 X11:GetWindowAttributes R004 X11:DestroyWindow R005 X11:DestroySubwindows R006 X11:ChangeSaveSet R007 X11:ReparentWindow R008 X11:MapWindow R009 X11:MapSubwindows R010 X11:UnmapWindow R011 X11:UnmapSubwindows R012 X11:ConfigureWindow R013 X11:CirculateWindow R014 X11:GetGeometry R015 X11:QueryTree R016 X11:InternAtom R017 X11:GetAtomName R018 X11:ChangeProperty R019 X11:DeleteProperty R020 X11:GetProperty R021 X11:ListProperties R022 X11:SetSelectionOwner R023 X11:GetSelectionOwner R024 X11:ConvertSelection R025 X11:SendEvent R026 X11:GrabPointer R027 X11:UngrabPointer R028 X11:GrabButton R029 X11:UngrabButton R030 X11:ChangeActivePointerGrab R031 X11:GrabKeyboard R032 X11:UngrabKeyboard R033 X11:GrabKey R034 X11:UngrabKey R035 X11:AllowEvents R036 X11:GrabServer R037 X11:UngrabServer R038 X11:QueryPointer R039 X11:GetMotionEvents R040 X11:TranslateCoords R041 X11:WarpPointer R042 X11:SetInputFocus R043 X11:GetInputFocus R044 X11:QueryKeymap R045 X11:OpenFont R046 X11:CloseFont R047 X11:QueryFont R048 X11:QueryTextExtents R049 X11:ListFonts R050 X11:ListFontsWithInfo R051 X11:SetFontPath R052 X11:GetFontPath R053 X11:CreatePixmap R054 X11:FreePixmap R055 X11:CreateGC R056 X11:ChangeGC R057 X11:CopyGC R058 X11:SetDashes R059 X11:SetClipRectangles R060 X11:FreeGC R061 X11:ClearArea R062 X11:CopyArea R063 X11:CopyPlane R064 X11:PolyPoint R065 X11:PolyLine R066 X11:PolySegment R067 X11:PolyRectangle R068 X11:PolyArc R069 X11:FillPoly R070 X11:PolyFillRectangle R071 X11:PolyFillArc R072 X11:PutImage R073 X11:GetImage R074 X11:PolyText8 R075 X11:PolyText16 R076 X11:ImageText8 R077 X11:ImageText16 R078 X11:CreateColormap R079 X11:FreeColormap R080 X11:CopyColormapAndFree R081 X11:InstallColormap R082 X11:UninstallColormap R083 X11:ListInstalledColormaps R084 X11:AllocColor R085 X11:AllocNamedColor R086 X11:AllocColorCells R087 X11:AllocColorPlanes R088 X11:FreeColors R089 X11:StoreColors R090 X11:StoreNamedColor R091 X11:QueryColors R092 X11:LookupColor R093 X11:CreateCursor R094 X11:CreateGlyphCursor R095 X11:FreeCursor R096 X11:RecolorCursor R097 X11:QueryBestSize R098 X11:QueryExtension R099 X11:ListExtensions R100 X11:ChangeKeyboardMapping R101 X11:GetKeyboardMapping R102 X11:ChangeKeyboardControl R103 X11:GetKeyboardControl R104 X11:Bell R105 X11:ChangePointerControl R106 X11:GetPointerControl R107 X11:SetScreenSaver R108 X11:GetScreenSaver R109 X11:ChangeHosts R110 X11:ListHosts R111 X11:SetAccessControl R112 X11:SetCloseDownMode R113 X11:KillClient R114 X11:RotateProperties R115 X11:ForceScreenSaver R116 X11:SetPointerMapping R117 X11:GetPointerMapping R118 X11:SetModifierMapping R119 X11:GetModifierMapping R127 X11:NoOperation V000 X11:X_Error V001 X11:X_Reply V002 X11:KeyPress V003 X11:KeyRelease V004 X11:ButtonPress V005 X11:ButtonRelease V006 X11:MotionNotify V007 X11:EnterNotify V008 X11:LeaveNotify V009 X11:FocusIn V010 X11:FocusOut V011 X11:KeymapNotify V012 X11:Expose V013 X11:GraphicsExpose V014 X11:NoExpose V015 X11:VisibilityNotify V016 X11:CreateNotify V017 X11:DestroyNotify V018 X11:UnmapNotify V019 X11:MapNotify V020 X11:MapRequest V021 X11:ReparentNotify V022 X11:ConfigureNotify V023 X11:ConfigureRequest V024 X11:GravityNotify V025 X11:ResizeRequest V026 X11:CirculateNotify V027 X11:CirculateRequest V028 X11:PropertyNotify V029 X11:SelectionClear V030 X11:SelectionRequest V031 X11:SelectionNotify V032 X11:ColormapNotify V033 X11:ClientMessage V034 X11:MappingNotify E000 X11:Success E001 X11:BadRequest E002 X11:BadValue E003 X11:BadWindow E004 X11:BadPixmap E005 X11:BadAtom E006 X11:BadCursor E007 X11:BadFont E008 X11:BadMatch E009 X11:BadDrawable E010 X11:BadAccess E011 X11:BadAlloc E012 X11:BadColor E013 X11:BadGC E014 X11:BadIDChoice E015 X11:BadName E016 X11:BadLength E017 X11:BadImplementation R001 X3D-PEX:GetExtensionInfo R002 X3D-PEX:GetEnumeratedTypeInfo R003 X3D-PEX:GetImpDepConstants R004 X3D-PEX:CreateLookupTable R005 X3D-PEX:CopyLookupTable R006 X3D-PEX:FreeLookupTable R007 X3D-PEX:GetTableInfo R008 X3D-PEX:GetPredefinedEntries R009 X3D-PEX:GetDefinedIndices R010 X3D-PEX:GetTableEntry R011 X3D-PEX:GetTableEntries R012 X3D-PEX:SetTableEntries R013 X3D-PEX:DeleteTableEntries R014 X3D-PEX:CreatePipelineContext R015 X3D-PEX:CopyPipelineContext R016 X3D-PEX:FreePipelineContext R017 X3D-PEX:GetPipelineContext R018 X3D-PEX:ChangePipelineContext R019 X3D-PEX:CreateRenderer R020 X3D-PEX:FreeRenderer R021 X3D-PEX:ChangeRenderer R022 X3D-PEX:GetRendererAttributes R023 X3D-PEX:GetRendererDynamics R024 X3D-PEX:BeginRendering R025 X3D-PEX:EndRendering R026 X3D-PEX:BeginStructure R027 X3D-PEX:EndStructure R028 X3D-PEX:OutputCommands R029 X3D-PEX:Network R030 X3D-PEX:CreateStructure R031 X3D-PEX:CopyStructure R032 X3D-PEX:DestroyStructures R033 X3D-PEX:GetStructureInfo R034 X3D-PEX:GetElementInfo R035 X3D-PEX:GetStructuresInNetwork R036 X3D-PEX:GetAncestors R037 X3D-PEX:GetDescendants R038 X3D-PEX:FetchElements R039 X3D-PEX:SetEditingMode R040 X3D-PEX:SetElementPointer R041 X3D-PEX:SetElementPointerAtLabel R042 X3D-PEX:ElementSearch R043 X3D-PEX:StoreElements R044 X3D-PEX:DeleteElements R045 X3D-PEX:DeleteElementsToLabel R046 X3D-PEX:DeleteBetweenLabels R047 X3D-PEX:CopyElements R048 X3D-PEX:ChangeStructureRefs R049 X3D-PEX:CreateNameSet R050 X3D-PEX:CopyNameSet R051 X3D-PEX:FreeNameSet R052 X3D-PEX:GetNameSet R053 X3D-PEX:ChangeNameSet R054 X3D-PEX:CreateSearchContext R055 X3D-PEX:CopySearchContext R056 X3D-PEX:FreeSearchContext R057 X3D-PEX:GetSearchContext R058 X3D-PEX:ChangeSearchContext R059 X3D-PEX:SearchNetwork R060 X3D-PEX:CreatePhigsWks R061 X3D-PEX:FreePhigsWks R062 X3D-PEX:GetWksInfo R063 X3D-PEX:GetDynamics R064 X3D-PEX:GetViewRep R065 X3D-PEX:RedrawAllStructures R066 X3D-PEX:UpdateWorkstation R067 X3D-PEX:RedrawClipRegion R068 X3D-PEX:ExecuteDeferredActions R069 X3D-PEX:SetViewPriority R070 X3D-PEX:SetDisplayUpdateMode R071 X3D-PEX:MapDCtoWC R072 X3D-PEX:MapWCtoDC R073 X3D-PEX:SetViewRep R074 X3D-PEX:SetWksWindow R075 X3D-PEX:SetWksViewport R076 X3D-PEX:SetHlhsrMode R077 X3D-PEX:SetWksBufferMode R078 X3D-PEX:PostStructure R079 X3D-PEX:UnpostStructure R080 X3D-PEX:UnpostAllStructures R081 X3D-PEX:GetWksPostings R082 X3D-PEX:GetPickDevice R083 X3D-PEX:ChangePickDevice R084 X3D-PEX:CreatePickMeasure R085 X3D-PEX:FreePickMeasure R086 X3D-PEX:GetPickMeasure R087 X3D-PEX:UpdatePickMeasure R088 X3D-PEX:OpenFont R089 X3D-PEX:CloseFont R090 X3D-PEX:QueryFont R091 X3D-PEX:ListFonts R092 X3D-PEX:ListFontsWithInfo R093 X3D-PEX:QueryTextExtents R094 X3D-PEX:MatchRenderingTargets R095 X3D-PEX:Escape R096 X3D-PEX:EscapeWithReply R097 X3D-PEX:Elements R098 X3D-PEX:AccumulateState R099 X3D-PEX:BeginPickOne R100 X3D-PEX:EndPickOne R101 X3D-PEX:PickOne R102 X3D-PEX:BeginPickAll R103 X3D-PEX:EndPickAll R104 X3D-PEX:PickAll E000 X3D-PEX:ColorTypeError E001 X3D-PEX:erStateError E002 X3D-PEX:FloatingPointFormatError E003 X3D-PEX:LabelError E004 X3D-PEX:LookupTableError E005 X3D-PEX:NameSetError E006 X3D-PEX:PathError E007 X3D-PEX:FontError E008 X3D-PEX:PhigsWksError E009 X3D-PEX:PickMeasureError E010 X3D-PEX:PipelineContextError E011 X3D-PEX:erError E012 X3D-PEX:SearchContextError E013 X3D-PEX:StructureError E014 X3D-PEX:OutputCommandError R000 XC-APPGROUP:QueryVersion R001 XC-APPGROUP:Create R002 XC-APPGROUP:Destroy R003 XC-APPGROUP:GetAttr R004 XC-APPGROUP:Query R005 XC-APPGROUP:CreateAssoc R006 XC-APPGROUP:DestroyAssoc E000 XC-APPGROUP:BadAppGroup R000 XC-MISC:GetVersion R001 XC-MISC:GetXIDRange R002 XC-MISC:GetXIDList R000 XEVIE:QueryVersion R001 XEVIE:Start R002 XEVIE:End R003 XEVIE:Send R004 XEVIE:SelectInput R000 XFIXES:QueryVersion R001 XFIXES:ChangeSaveSet R002 XFIXES:SelectSelectionInput R003 XFIXES:SelectCursorInput R004 XFIXES:GetCursorImage R005 XFIXES:CreateRegion R006 XFIXES:CreateRegionFromBitmap R007 XFIXES:CreateRegionFromWindow R008 XFIXES:CreateRegionFromGC R009 XFIXES:CreateRegionFromPicture R010 XFIXES:DestroyRegion R011 XFIXES:SetRegion R012 XFIXES:CopyRegion R013 XFIXES:UnionRegion R014 XFIXES:IntersectRegion R015 XFIXES:SubtractRegion R016 XFIXES:InvertRegion R017 XFIXES:TranslateRegion R018 XFIXES:RegionExtents R019 XFIXES:FetchRegion R020 XFIXES:SetGCClipRegion R021 XFIXES:SetWindowShapeRegion R022 XFIXES:SetPictureClipRegion R023 XFIXES:SetCursorName R024 XFIXES:GetCursorName R025 XFIXES:GetCursorImageAndName R026 XFIXES:ChangeCursor R027 XFIXES:ChangeCursorByName R028 XFIXES:ExpandRegion R029 XFIXES:HideCursor R030 XFIXES:ShowCursor V000 XFIXES:SelectionNotify V001 XFIXES:CursorNotify E000 XFIXES:BadRegion R000 XFree86-Bigfont:QueryVersion R001 XFree86-Bigfont:QueryFont R000 XFree86-DGA:QueryVersion R001 XFree86-DGA:GetVideoLL R002 XFree86-DGA:DirectVideo R003 XFree86-DGA:GetViewPortSize R004 XFree86-DGA:SetViewPort R005 XFree86-DGA:GetVidPage R006 XFree86-DGA:SetVidPage R007 XFree86-DGA:InstallColormap R008 XFree86-DGA:QueryDirectVideo R009 XFree86-DGA:ViewPortChanged R010 XFree86-DGA:Obsolete1 R011 XFree86-DGA:Obsolete2 R012 XFree86-DGA:QueryModes R013 XFree86-DGA:SetMode R014 XFree86-DGA:SetViewport R015 XFree86-DGA:InstallColormap R016 XFree86-DGA:SelectInput R017 XFree86-DGA:FillRectangle R018 XFree86-DGA:CopyArea R019 XFree86-DGA:CopyTransparentArea R020 XFree86-DGA:GetViewportStatus R021 XFree86-DGA:Sync R022 XFree86-DGA:OpenFramebuffer R023 XFree86-DGA:CloseFramebuffer R024 XFree86-DGA:SetClientVersion R025 XFree86-DGA:ChangePixmapMode R026 XFree86-DGA:CreateColormap E000 XFree86-DGA:ClientNotLocal E001 XFree86-DGA:NoDirectVideoMode E002 XFree86-DGA:ScreenNotActive E003 XFree86-DGA:DirectNotActivated E004 XFree86-DGA:OperationNotSupported R000 XFree86-DRI:QueryVersion R001 XFree86-DRI:QueryDirectRenderingCapable R002 XFree86-DRI:OpenConnection R003 XFree86-DRI:CloseConnection R004 XFree86-DRI:GetClientDriverName R005 XFree86-DRI:CreateContext R006 XFree86-DRI:DestroyContext R007 XFree86-DRI:CreateDrawable R008 XFree86-DRI:DestroyDrawable R009 XFree86-DRI:GetDrawableInfo R010 XFree86-DRI:GetDeviceInfo R011 XFree86-DRI:AuthConnection R012 XFree86-DRI:OpenFullScreen R013 XFree86-DRI:CloseFullScreen E000 XFree86-DRI:ClientNotLocal E001 XFree86-DRI:OperationNotSupported R000 XFree86-Misc:QueryVersion R001 XFree86-Misc:GetSaver R002 XFree86-Misc:SetSaver R003 XFree86-Misc:GetMouseSettings R004 XFree86-Misc:GetKbdSettings R005 XFree86-Misc:SetMouseSettings R006 XFree86-Misc:SetKbdSettings R007 XFree86-Misc:SetGrabKeysState R008 XFree86-Misc:SetClientVersion R009 XFree86-Misc:GetFilePaths R010 XFree86-Misc:PassMessage E000 XFree86-Misc:BadMouseProtocol E001 XFree86-Misc:BadMouseBaudRate E002 XFree86-Misc:BadMouseFlags E003 XFree86-Misc:BadMouseCombo E004 XFree86-Misc:BadKbdType E005 XFree86-Misc:ModInDevDisabled E006 XFree86-Misc:ModInDevClientNotLocal E007 XFree86-Misc:NoModule R000 XFree86-VidModeExtension:QueryVersion R001 XFree86-VidModeExtension:GetModeLine R002 XFree86-VidModeExtension:ModModeLine R003 XFree86-VidModeExtension:SwitchMode R004 XFree86-VidModeExtension:GetMonitor R005 XFree86-VidModeExtension:LockModeSwitch R006 XFree86-VidModeExtension:GetAllModeLines R007 XFree86-VidModeExtension:AddModeLine R008 XFree86-VidModeExtension:DeleteModeLine R009 XFree86-VidModeExtension:ValidateModeLine R010 XFree86-VidModeExtension:SwitchToMode R011 XFree86-VidModeExtension:GetViewPort R012 XFree86-VidModeExtension:SetViewPort R013 XFree86-VidModeExtension:GetDotClocks R014 XFree86-VidModeExtension:SetClientVersion R015 XFree86-VidModeExtension:SetGamma R016 XFree86-VidModeExtension:GetGamma R017 XFree86-VidModeExtension:GetGammaRamp R018 XFree86-VidModeExtension:SetGammaRamp R019 XFree86-VidModeExtension:GetGammaRampSize R020 XFree86-VidModeExtension:GetPermissions V000 XFree86-VidModeExtension:Notify E000 XFree86-VidModeExtension:BadClock E001 XFree86-VidModeExtension:BadHTimings E002 XFree86-VidModeExtension:BadVTimings E003 XFree86-VidModeExtension:ModeUnsuitable E004 XFree86-VidModeExtension:ExtensionDisabled E005 XFree86-VidModeExtension:ClientNotLocal E006 XFree86-VidModeExtension:ZoomLocked R001 XIE:QueryImageExtension R002 XIE:QueryTechniques R003 XIE:CreateColorList R004 XIE:DestroyColorList R005 XIE:PurgeColorList R006 XIE:QueryColorList R007 XIE:CreateLUT R008 XIE:DestroyLUT R009 XIE:CreatePhotomap R010 XIE:DestroyPhotomap R011 XIE:QueryPhotomap R012 XIE:CreateROI R013 XIE:DestroyROI R014 XIE:CreatePhotospace R015 XIE:DestroyPhotospace R016 XIE:ExecuteImmediate R017 XIE:CreatePhotoflo R018 XIE:DestroyPhotoflo R019 XIE:ExecutePhotoflo R020 XIE:ModifyPhotoflo R021 XIE:RedefinePhotoflo R022 XIE:PutClientData R023 XIE:GetClientData R024 XIE:QueryPhotoflo R025 XIE:Await R026 XIE:Abort E000 XIE:ColorListError E001 XIE:LUTError E002 XIE:PhotofloError E003 XIE:PhotomapError E004 XIE:PhotospaceError E005 XIE:ROIError E006 XIE:FloError R000 XINERAMA:QueryVersion R001 XINERAMA:GetState R002 XINERAMA:GetScreenCount R003 XINERAMA:GetScreenSize R004 XINERAMA:IsActive R005 XINERAMA:QueryScreens R001 XInputExtension:GetExtensionVersion R002 XInputExtension:ListInputDevices R003 XInputExtension:OpenDevice R004 XInputExtension:CloseDevice R005 XInputExtension:SetDeviceMode R006 XInputExtension:SelectExtensionEvent R007 XInputExtension:GetSelectedExtensionEvents R008 XInputExtension:ChangeDeviceDontPropagateList R009 XInputExtension:GetDeviceDontPropagageList R010 XInputExtension:GetDeviceMotionEvents R011 XInputExtension:ChangeKeyboardDevice R012 XInputExtension:ChangePointerDevice R013 XInputExtension:GrabDevice R014 XInputExtension:UngrabDevice R015 XInputExtension:GrabDeviceKey R016 XInputExtension:UngrabDeviceKey R017 XInputExtension:GrabDeviceButton R018 XInputExtension:UngrabDeviceButton R019 XInputExtension:AllowDeviceEvents R020 XInputExtension:GetDeviceFocus R021 XInputExtension:SetDeviceFocus R022 XInputExtension:GetFeedbackControl R023 XInputExtension:ChangeFeedbackControl R024 XInputExtension:GetDeviceKeyMapping R025 XInputExtension:ChangeDeviceKeyMapping R026 XInputExtension:GetDeviceModifierMapping R027 XInputExtension:SetDeviceModifierMapping R028 XInputExtension:GetDeviceButtonMapping R029 XInputExtension:SetDeviceButtonMapping R030 XInputExtension:QueryDeviceState R031 XInputExtension:SendExtensionEvent R032 XInputExtension:DeviceBell R033 XInputExtension:SetDeviceValuators R034 XInputExtension:GetDeviceControl R035 XInputExtension:ChangeDeviceControl V000 XInputExtension:DeviceValuator V001 XInputExtension:DeviceKeyPress V002 XInputExtension:DeviceKeyRelease V003 XInputExtension:DeviceButtonPress V004 XInputExtension:DeviceButtonRelease V005 XInputExtension:DeviceMotionNotify V006 XInputExtension:DeviceFocusIn V007 XInputExtension:DeviceFocusOut V008 XInputExtension:ProximityIn V009 XInputExtension:ProximityOut V010 XInputExtension:DeviceStateNotify V011 XInputExtension:DeviceMappingNotify V012 XInputExtension:ChangeDeviceNotify V013 XInputExtension:DeviceKeystateNotify V014 XInputExtension:DeviceButtonstateNotify V015 XInputExtension:DevicePresenceNotify E000 XInputExtension:BadDevice E001 XInputExtension:BadEvent E002 XInputExtension:BadMode E003 XInputExtension:DeviceBusy E004 XInputExtension:BadClass R000 XKEYBOARD:UseExtension R001 XKEYBOARD:SelectEvents R002 XKEYBOARD:Obsolete R003 XKEYBOARD:Bell R004 XKEYBOARD:GetState R005 XKEYBOARD:LatchLockState R006 XKEYBOARD:GetControls R007 XKEYBOARD:SetControls R008 XKEYBOARD:GetMap R009 XKEYBOARD:SetMap R010 XKEYBOARD:GetCompatMap R011 XKEYBOARD:SetCompatMap R012 XKEYBOARD:GetIndicatorState R013 XKEYBOARD:GetIndicatorMap R014 XKEYBOARD:SetIndicatorMap R015 XKEYBOARD:GetNamedIndicator R016 XKEYBOARD:SetNamedIndicator R017 XKEYBOARD:GetNames R018 XKEYBOARD:SetNames R019 XKEYBOARD:GetGeometry R020 XKEYBOARD:SetGeometry R021 XKEYBOARD:PerClientFlags R022 XKEYBOARD:ListComponents R023 XKEYBOARD:GetKbdByName R024 XKEYBOARD:GetDeviceInfo R025 XKEYBOARD:SetDeviceInfo R101 XKEYBOARD:SetDebuggingFlags V000 XKEYBOARD:EventCode E000 XKEYBOARD:BadKeyboard R000 XTEST:GetVersion R001 XTEST:CompareCursor R002 XTEST:FakeInput R003 XTEST:GrabControl R000 XVideo:QueryExtension R001 XVideo:QueryAdaptors R002 XVideo:QueryEncodings R003 XVideo:GrabPort R004 XVideo:UngrabPort R005 XVideo:PutVideo R006 XVideo:PutStill R007 XVideo:GetVideo R008 XVideo:GetStill R009 XVideo:StopVideo R010 XVideo:SelectVideoNotify R011 XVideo:SelectPortNotify R012 XVideo:QueryBestSize R013 XVideo:SetPortAttribute R014 XVideo:GetPortAttribute R015 XVideo:QueryPortAttributes R016 XVideo:ListImageFormats R017 XVideo:QueryImageAttributes R018 XVideo:PutImage R019 XVideo:ShmPutImage V000 XVideo:VideoNotify V001 XVideo:PortNotify E000 XVideo:BadPort E001 XVideo:BadEncoding E002 XVideo:BadControl R000 XVideo-MotionCompensation:QueryVersion R001 XVideo-MotionCompensation:ListSurfaceTypes R002 XVideo-MotionCompensation:CreateContext R003 XVideo-MotionCompensation:DestroyContext R004 XVideo-MotionCompensation:CreateSurface R005 XVideo-MotionCompensation:DestroySurface R006 XVideo-MotionCompensation:CreateSubpicture R007 XVideo-MotionCompensation:DestroySubpicture R008 XVideo-MotionCompensation:ListSubpictureTypes R009 XVideo-MotionCompensation:GetDRInfo E000 XVideo-MotionCompensation:BadContext E001 XVideo-MotionCompensation:BadSurface E002 XVideo-MotionCompensation:BadSubpicture R000 XpExtension:QueryVersion R001 XpExtension:GetPrinterList R002 XpExtension:CreateContext R003 XpExtension:SetContext R004 XpExtension:GetContext R005 XpExtension:DestroyContext R006 XpExtension:GetContextScreen R007 XpExtension:StartJob R008 XpExtension:EndJob R009 XpExtension:StartDoc R010 XpExtension:EndDoc R011 XpExtension:PutDocumentData R012 XpExtension:GetDocumentData R013 XpExtension:StartPage R014 XpExtension:EndPage R015 XpExtension:SelectInput R016 XpExtension:InputSelected R017 XpExtension:GetAttributes R018 XpExtension:SetAttributes R019 XpExtension:GetOneAttribute R020 XpExtension:RehashPrinterList R021 XpExtension:GetPageDimensions R022 XpExtension:QueryScreens R023 XpExtension:SetImageResolution R024 XpExtension:GetImageResolution V000 XpExtension:PrintNotify V001 XpExtension:AttributeNotify E000 XpExtension:BadContext E001 XpExtension:BadSequence E002 XpExtension:BadResourceID geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/X11/drivers0000644000175000017500000000015111141052012021507 0ustar benbenati glint i740 intel mach64 mga nv openchrome r128 radeon s3 s3virge savage sis tdfx trident vesa vmware geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/X11/X.cfg.sample0000644000175000017500000000075211141052012022265 0ustar benben# Rename this file as X.cfg in order to be used. XORG_RESX=auto # desired screen width in pixels (ex: 1360) XORG_RESY=auto # desired screen height in pixels (ex: 768) XORG_RATE=auto # desired screen refresh rate in Hz (ex: 60) XORG_DRIVER=auto # see available drivers in /etc/X11/drivers XORG_HORIZSYNC=auto # monitor horizontal sync, under the form "28-51" XORG_VERTREFRESH=auto # monitor vertical refresh, under the form "43-60" geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/X11/xorg.default0000644000175000017500000000137711141052012022446 0ustar benben# bare-bones XFree86 config to start the server in probe-only mode Section "Device" Identifier "Generic Device" Driver "::DRIVER::" EndSection Section "Monitor" Identifier "Generic Monitor" Option "DPMS" "false" Option "IgnoreEDID" "true" HorizSync ::HS:: VertRefresh ::VR:: ::MODELINE:: EndSection ::CUSTOM_MONITOR:: Section "Screen" Identifier "Default Screen" Device "Generic Device" Monitor "::MONITOR_ID::" DefaultDepth 24 SubSection "Display" Depth 8 Modes ::MODES:: EndSubSection SubSection "Display" Depth 15 Modes ::MODES:: EndSubSection SubSection "Display" Depth 16 Modes ::MODES:: EndSubSection SubSection "Display" Depth 24 Modes ::MODES:: EndSubSection EndSection geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/version0000644000175000017500000000000411141052114021145 0ustar benben1.2 geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/passwd0000644000175000017500000000003611141052116020770 0ustar benbenroot:x:0:0:root:/root:/bin/sh geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/etc/group0000644000175000017500000000001211141052116020615 0ustar benbenroot:x:0: geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/codecs/0000755000175000017500000000000011141051776020245 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/0000755000175000017500000000000011141052031020602 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/ess/0000755000175000017500000000000011141051777021414 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/ess/maestro3_assp_kernel.fw0000644000175000017500000000355211141051777026102 0ustar benbeny0yyyyyy2yyyyyyyy/yyyyyycykyy|,@  8iSZi i60 i AA(ixA@y8AA:8iV:A@:9i^: i f i f b fifuifb fi fp '9i]&i&&i(( BzGzc f bz @  @yzkb fDz @ @ @y @ @ @ @ &(piпpz(pp ZziV qqNVWV VyYVyzCY|7i  qq P6i7 L ` iH ' x |y+ 8 <i5Y yW  ƾ>ii fDD  yWUiW8| x 8 ƾVticr@ra;zxi `@| =sz>sz l@|,?sz@szuirHraAzyi `@|CszDsz l@|$EszFszvirXraGzzi `@|IszJsz l@|KszLsz! `@| l@|zJ `@|s ƾT s ƾT /& 5i3i33Qi4s`W~Y4~iQ  \i^s`W~Y^~i\ yzCwiNaMaiNqq  fI  fN {i Lf|i`rr|idssyp|i rr|i$ss|i| OsT!&sTaayz( G@i i  i y @iiCi y i y @@@y@i i  iy@iiCi y iy@@@ piqzxqipy airrxqq  ƾ ii fD  f aiayz5]4i4 HrPraQzyz5]^i^ GrXra\zyi fXifb fz ƾljajajaja||||fy !iyJ ƾTa F k l mbcdYefghij ki li mi bicidiefghij:geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/ess/maestro3_assp_minisrc.fw0000644000175000017500000000142211141051777026260 0ustar benbennnioo i ninyCGAz*@)0Az(@(0i* i,y, i,    $'i-iu-iciV ƾSy| ƾ`"l#n"ly|o ƾly| ƾ{"l#n"l-i$,|+i~[*i +i~[*i {$ Dz'i'z#'iy$& &zy&&0zz#''$ii ƾ/y ƾyi Fƾ߿Gy ƾ&.߿ i YJ0 s T%% %%sT/i9Ya0!s!T.. ..sT/iOYai%sT.sTƾkYiАiАiАiЋ؋geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/kaweth/0000755000175000017500000000000011141051777022105 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/kaweth/trigger_code.bin0000644000175000017500000000026611141051777025240 0ustar benbenê^  6P  P00\ߗI`J @ @0g' ' IdKJZgeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/kaweth/new_code.bin0000644000175000017500000000631411141051777024366 0ustar benbenêݟWg($g" 6ϼWW WzW8Y8 b6 v`zWzW g@ `Y4WzzH 7W b'p0P H 'H7 `!7>#W?g0L0 H Qϟzϟz7 Pg'تߟWW b'4' 6P  bdr$''$ WW 02 W W 'b'@ 0F QW ''R`$ϟW bPϗ ',wW" '' Ag0 0  @YIJg P wwjwww ,wpPTp\p\π`0    S Ȃ ς‰0`xω Sy‰0zߗߗ     02  7w*0 w 'w   'wD'F`'bW   Pg Wߗ   jwP'R$wX'Zwp'rw' wd'fw@\'^w' 4wW''@W ߗ b''RW'ڪ?W 4     h } | x  AD'''tD': } DH'z IC `J |gQ Ibuߧ$"N 0J  nj$(" V`   2 B P R Z Z ' WZ 7Z Ҳ l  A0PZ '  '''AgP g~' ~AQϟH  Y' Y  I~`HAPYYW%pAg~'  ~AQ Wp @'' ' "Ag~' ~PY`| I J|D@7A7PW'A@D' A؟D'(g$W "g>& > x'v  @ '' '' ''' p) } '''''   @zQ   zQWv W 2gF W#@@@ @ ߟ4 W w \2    gw dWșgL  7 AHr wA`qWC!C!C! Pgeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/kaweth/trigger_code_fix.bin0000644000175000017500000000002611141051777026100 0ustar benbenê>geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/kaweth/new_code_fix.bin0000644000175000017500000000115611141051777025233 0ustar benbenê(,4<@HTX^dhnlrv| "(:>~"*.>DJPdblr (|.2<@Nv|$*64<Bdjn"&,0BJNVTZ`f&,26:>RVZdvz "$&(*,.2:FNT^x~   & $ * > L V p t x ~ |    B F N T Z ^ h n r x v |    & . , 6 < B @ J J T b f geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/korg/0000755000175000017500000000000011141051777021564 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/korg/k1212.dsp0000644000175000017500000003662411141051777023047 0ustar benben&   8 ``XX``XX``XX`` a44&``Qy"t8"Px"` 0`` 0`@@Q4F a7n778#~8Al/   #d~88W "Y\?@$# \?k@#[a`#@ @ `"I* N^[ x"   @@`"I*  @@`"I* @x"^  Px"_T@''" @"t8#@$"t @' @  " @"t8#@"t 444O  N#h N#h h 544& N#h N#h h@h@ h @@0@I@ @` BpBpBB@ p@ p BI b @ BI b @@5;48*v*v*b*cfN*v**\*oJJ J JJh}?i@h*DKv*sNv* JJJqqf %vtvpHtpJqf $pnvvv v Jf $v v vvvvt Jsf $w%wwrI LIIllllllmm HJJJ  qsf $'cE2tH'`D=` ms3tmwq0bw0mE C 0msI v vHE3qFEw0w0sw0w0tHs1v v vv  w0k'o Hw k'oEHt H w k'ow q k'ol1o Ho 0 vHE3q  I   'H 0pE_Ht H w q _k'ow ktHq w 0|w q 000tHlvvsvw q  sw vppvHt vw q  HE3`   Mk'o HHEo I s q 0I  HHEpvt  H   Es1tHs3v v vtw03lpJqsf $z0'`|0'a'bqI0I 'bMuw0uW'lO'lv'csxv'cp'bv'd'aa  o'd'aa  'd 'e` ppp'etHJJJN'fN'hN'lN'jw'@w$wrpvvvvv v vm %w vvvtlvvtlH m m lt JJJ IMHExla0x0w$ww HEBm ml4sV'jN'j`0Tpt8Hspt8Hr*0nvvpvt Hs'nDvvpvt Ht ^Bv'nsV'fN'fm^V'hN'hqnpJf %vvvtlvvHtlJf $vvvvJMqrpJ J J a  J J J a   Jw{v.w{qvvvvbvvvvvvvvvvvvvJJJqFwEE9EsREDRw{qa@0RIHwUwWm;HwU@wWwUEwWwUJwW sRww{0R5wUwWwU7wWH@sP@ w{ 0R4wUwW6wUwWH@sP@w{0R3wUwWHsP@w{0R2wUwWHb@w{HqHJwwU(wW wW2wTwT򠀁JJqwUwVwVwVwVwVJJJw{vvvvvvqqDS  w{qvHwwwww9vvwH Hr,svspppppsmmmmmmsvA$vF%vK&vP'JJVNE`ww{I Dqsqw{ wE\nimvV E~HHJw0wUwVvwVvwVvwVvwVv2wTwT@vfsw{qqv w{q w{q w{q w{q  w{q (Jw0AwUvwVvwVvwVvwVvwVvwVvwVvwVvwVvwVsNvw{qqv9Jw{DcvJ2wJ2wJw2w򠀁ssJJqqvqqv q qv  qqv  qqv q qv  qqvqqvqqvqqvqqvqqvqqvqqvqqvqbJqvqiJqvqiJw{DSw{vvv!v v#v"v8v9vv v v Av @v CvBvHvIvvJVNw{w (EswvV EHHJqJw0qvqvqvqvqvqvqvqvqvqvqvqvqvqvqvqv qvqvqv qvqv qvqv qvqv qvqv qvqvqvvvffsw{w{JqJJqqvqqbqJJw{D*Sw{vvvv&v%v$vvv2v 1v 0JJJqEsww{w(Dsw{wEon|ma vHHJw0qiqhqhqhqvqvqi qshw{w{*** O***]Copyright TechnoTrend AG*v0.0 *zFeb 27 2001 *14:35:33******)~))**qA # **@@0'n'o xssssssssssssssssssss#sssssssss3sgeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/yamaha/0000755000175000017500000000000011141051777022062 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/yamaha/ds1_ctrl.fw0000644000175000017500000003000011141051777024124 0ustar benben$ p @qB@ :  :   -::  ```@@@@} @@@  Y& :&}B !:!B    } `"@} BJ  ``@B pD# pJ@4:!:$:$\( @  QM]A:,$ E:,}8B  B !(:( ( :( @ -@B  Z }@B 0D!I!I: (D9:(  @ (:xh:( @))99} `@}BJ! DX!u@qB () ! <0}B  } (`@ 0`@B  }B (: ( :( @ = @}:( Q } (`3`;`C`K`S`[`@=8}uBJ   ` !@B  "!}BJ $ dBJ+JD!D" d$*}" `@= @u}BJ )D0   %+d2dddd ı  @}BJ $ d" `@d} @}BJ;J DD ! BJ ($ d* )" * }8 @}B 9  %z--  5q%@D d$$$( -   8@; `11!!``@"$ $$d `@$}9 @BJ  $$}B $ ( ( @ "B  ($}BJ D1 D # @D `@B  ; z J =  BJ   }% @ :(}B }B}J1 $1 (}9 @BJ  0$1$$$(Lp-}8B *$! $ $k6}9 @BJ  d2$ }"@ <:) (} @}BJ 3}8B  :d G}9 @BJ  8$$$B  (L9d!,c=B   La@z$! $ $k[}9 @BJ  d:$B  b:) p * ``@}"B= J1 ,1L230D,"$1lc=u BJ L"l",2 00 B $0uB $ uB3 3,343<3D3L3T3\0`B  z-B $( : (:( @"uBJ!D  :"+BJ D @%D1  `(@}!BJ  `@$,ddlc * `@ B }"B  `@}B "B  `@  @BJ  `@BJJ   ``@D  @B  @B  `uBJ r }BJJJ$J,J4J<JD L=BJ JJ DDU ]BJ JJ DDe mBJ JJ+JJ! 0DDD*u }}B  *BJ 4 t)B |u B  &'BJ < |u BJQ HuB ,((%(2uB-J DB 4(]u @T\sS   :"3Z u"B ! !-B   :0}À $( ( @"B p p@ :"+B  !u  "u } B x( @ @uBJ $ ""uu%$ `@$x(d'uB ($  ( $ (  @ uB  # ` ` ` @BJ=J5J- B (B  $@ $"*$13*$!($$$$2,)lc%dddd  ( @"8l) 0B  %,1 (l  (  @"$$$$20D)z&0B  &$1d0B  &$10$90B ($ ($( @"%uBJ   `@BJ   `@B  B( #B  ( ```#`+`3`;`C`K`S`[`c`k`s`{`` ```#`+`3`;`C`K`S`[`c`k`s`{`@d  ($ }B $B  *$ dd$ $$ D*B D *B @ } @B  *+}B  Z+u}.BJ  @J10:(: (uB 8$ ( @"dd4< (%(2 } @}B  -2`HIa-:XE]\HI-:PY.E}$$BP @A9.e8@ @M0@eE @@e@A.:@A"/MH: @A1/ HY0@ (2:B`@2u@}t @A/rd @e @@@eB pq0d p@rdm0`` `@ A1 Q20 m;@ a1  @B  @D  @B   1m;B  2` 2 @bm0BJ J J%(2T\s  e4@ H`P @`@@DIE @:@(B HIh8e,B @AEUE4E4e+B:JP @EEEDIDEEMDIUDQ4e,B HLD4,B @ @@e)B @A`5$6\%B @tB*B @tBP)B @4BAE @@> @-R@ PDQJ6> @@+B @TB@* @@2P4tV)B BB P|A(B HDL7&'BJ@ PB @A7e-B 4(e4BJB @JJJPT\sQ8  E @`e@e. ` @e4BJB @JJJPgeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/yamaha/ds1_dsp.fw0000644000175000017500000000020011141051777023745 0ustar benben /S{@? @-R@ PDQ7> @@+B @TB@* @@2P4tV)B BB P|A(B HDL8&'BJ@ PB @Ax9e-B 4(e4BJB @JJJPT\s9  E @`e@e. ` @e4BJB @JJJPB  Z"}BJ3J D*D; ;BJ 8$ d:;9;; }8@p}B}J) 08$1$$$*(:( u$d"=D(: ( @ u$D!I>:}8B  H>J>d1d  ( @ }8B  2>B  =(:( u$ d" (l1 E( @ $ J>:8:0}BJ $,!0 000 }BJ3ˬ3˴3˼3333\0` B $ lB  j?( (D(:( @"9X" }B $ B  *@( ( :(  @Z""geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/firmware/em8300.bin0000644000175000017500000006315611141052031022223 0ustar benben:3hUS  E] 'Ne 7Wm H`uE]:vW< OO`p@ f"""3"3#D3D3`4xV8@4I_R8SS@@@0) ((@@@ 888 8x8 '$$ $0$@$P$`$p$`&$`SaQaPcY08TcU02101bI!,qp q\ qE `x8@29b@09`"21@9^0P1cTSA0,1* 1PY& "1@11oqg)/pg219W"511@9U2SXTW?CpSV0S@P0cVEQA$S@PG8UQE0QA1PG8V6 01@@@CBA(LAq''  !G" `Q@po`!`Q !@B!AA@!E(AD2@EP%P@G8V@$0`O aK `NaJ U1F1H1f1h!HE[1J1je!Lk!TaIaHQbGP RQQeF_G]!9#9"`C99O`AaAeSQpZP6PAp2809#rA'!" `Q PA09 p1O  E09p1p0Ap@0CpL0EpNq*p*q@<9Pr(`b9P`9O0`qHq}'  .p}!A!@pH%%%%%%%%%'@A0B@C0D@I0P@K0R @M0B@O0D@Q0P@S0R !@E0L@G0N7T0AA'@A0B@C0D@E0F@G0H@I0P@K0R@M0T'AA@A78' FPA#APC#C"G8a@'$$ $0$@$P$`$p$$$$$qv pv@qAE@L`RU 2 @qq$ @@q$@$ *pqA9P`G pb90 pc9.pc9-96`RprpCAm'[Z]\(lWB9GPHPC9EpWO9:POr9O8cG9cF`IW`H_Q`E`Hp.rAcGaC /r@7 rDrCrF5bA%#@A@A cGOdB_p5cFPq3 2PA P@,* P@qp 0)A:A @0@ A1A p@"p)@:@#!b08?% % %%%%%%%%%%'@pG@QACqepgtSuUyIzKrMsO  0 ):a`!0$5):`A 0"' Jp0A/ 0#XVrEP$BrGR%D@ P1):@QLN ): H@RFTadAa@dABDAFpr`sb'PCPeQgQ!_Si 0  'AeBaBRBcBT!_$Ci#A_Ad'PSQURMSORISKRQ;0#0+aGaF'N$$ $0$@$P$p$$$q CErAsCtEuG  BDrOsQ 1@ Q0,0, FCEPRT%%%%%%%%%'pT%"%%%%%%%%'z*pp!rB rD1sF!rLrTp r@ G/rDsBsC0 8Pe@`CQe@Qe@`C'x($$$ $0$@$0@0QA[@Z 0SC]@\0@MAOBICK@LAN%%%%%%'ppp@BpFpSpw NTppP@H@"ppxp€ư9O29O9O C9qpFpHpT/p# p##!b08뭱EC99°Ӵ9/1. ? ӤA?'/B@Q 1B@Qo,>aA9O` PA?9'yBzDqFqH~JpLyTBDFHJLTyUzA'GϾoƎ' 0ˍ"3!08'qp`p&R')&qEAU $ q 1110178qvqq!@#rp&+A: 0Oţ@qp!0"q xB8ŀxqKĞqT\P0nhaU*rAtI  @$ 2 &qEqu# ! ɇ#!U!Mj#N10 B.  O-Ka&sA4!=]qH2  &qEqu #!  !U!Mj#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU9OK`N`DQ9I X9HQ9HX9G+9GrbfS9B/ $ B: 0i C@&8r; qp""0"89=868OihmOquF  ljE11_80+ik8/;aDaB,U8,mMT118*E@oUBF 9O,@Bxe1䭢E9_@孢G9O\B00 9b8 UQ?9!d Wԋ9 aD؋ ,R9118A?C@Af#Q9bE11EA_TmMA118@oFgEGFB U9`N,( !ԋ U !d9OA@CBg9Oeg r+9e!WQ9O /QQ9`B9B8Zqp"b0b8Oe@`C'PRTVDFHJ'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'QQ 0?79O09O'9H0?7DAAf9#9- H990FJC9OBF9  ! 9J "9ON'`x dC@f99C@09O @#FAB'AlBe@E9ODA9@'ClBe@G#aC!ǃp!!'Gq.E.q­Ϙ'd@ҭ lC W'pSQe@xkjmM _Dl ,egPKC2 A]9( 9% % QLC4 @ c3ӍddzaA 911"'9aA #'эծ= YA[эdzp@Ap@8V#'nqp`𐽒)rqWXp&+Ar: 0Oţ@!0"Wq xB8̀xqKĞqT\U0nhasAqI0 10UFC; &qEsCqu# 3!#W4ы &qEsC#!&qEsC#qtы &qFqM# 4ыy !U!Ml#m1O BM  _-K&4=\]qH62 7 &qEqusC#  &!W0 &qEsC#qtы 2ы&qEsC#  ɇ#!U!M#j#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU9B`N`DQ9@ X9?Q9>X9=+9=S9:/  B: 0i C@&8Or; ""0"8978/8ihmOqvF  ljE11EA_8)mM118(E@oUB+Wfik0aDaB,U118  9#@Bdeэ4E9N@5G9OLBЃЍ 9P8UQ?9Od Wԋ9DaDg, R9O118Df U9`N,( !ԋ U !d9A@CBg9e$g r+9Oe!WQ9 /QQ9`B9O98qpp"b0b8e@`C'PRTVDFHJ'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'QQ9O9 199HAAWшо?f99D9JCв9B '9!б !$9F' 999O C?1в@9 AB'`x mCЃf'AlBe@"9OA@9A@'ClBe@#0aC2E!!!2D'GqE#q­Ϙ'd@ !/aC! 'SQpe@xkjmM _Dl ,egS@KC5 C9% 9O " %T4 K PW19ddzaA 9 11"'9 aA #'эծ=Uƒ OWțŮK YA[dzp@Ap@8V#',q89O98.89p󐍐$99O9OT999 %8p󑀕8E8O&8 9ωq9ϥ9ϓ9L9O29O0"<@/9q9Ϣ9O9OH9-x88q 8D8 b.@/988 b.@"<98 8 0"<@<99K0/@b.99OI0b.@<9ς888@b.9Op8O@b.9pqp88 /@/9 @/9O<99O 9x!b08Ϩ0/@R1AAD1C0EAB1G0IA@'0"pqp!Cpa A`h8bBxЀ8'c\~B-'owҽ"*'R9O@A@$0@'9'9'?9O'9O '9 '9 ?9'?9O%9 IA@@A8Q8E @AAI@@8'!!!$2A'0$@$0Hfwo'/  o !a p!+/!?1A8%%' b. S!O N I!H!K J C!B!A @ G!F!E D M!L!Q P!R' b. S!C B K!J!E D G!F R A!O N!@' /0b. I0P G0B E0H C0N A0R "< I0L G0D E0J C0F A0@' b.0"< S0H Q0F O0D M0B K0@'0/@"<1ABA!81CBC!81EBE!8E1GBG!81IBI!8'0A@@0C@B0E@D0G@F0I@H'@@@B@D@F@H''8%"O8 R^OU@ 1@-Q8A'@/`b.@A`N@C`F@E`J@G`H@I`Br`CbAaGbE@UG!O"20#77Q#!O+20#79˜#Q8'bB`@'bFaDdq8E'$ `𐽒),\9D9OF2T9~8i9}38h8@gPY9Oz9yQ59x8Dd[9wpQ9Ov 00B0DV5F0L0T00@|7D5B9g;8[Qpr9m p@q9b<8V9p _y AgT9Og78ERX9e88P98BOQ9bBR9a:8LR9_E 18DJDR9O]G 18GF\9ZQ59Y8DEY9XR9WAU9V99vR9p / _/ T9P 8>S T9M A@6 E1G19t9hq0p0C ϽK@Q"~sI"9v9A/0?AQ"4ih@_'@GAI&@29OA@9O@@9O?pp@B%9k "/0@9O:@29O90@T97@96&#AJq}~" xp€ư912909/ C9O-)x#&ASRIK9!CAOqtQ@A9"90 P&qq#Aq_LC/E@@>E@Nq"px@!0"8OlB&0 0C "b0b8hS9OQ9P9X9 ^9 TQ03_9  B8^9 8P?10!e@qA`Ce@p@qt`Cp@q'e@`C' 0ˍ"3!08'$0$0'@FAH'B@GBCD'뭱EC99°Ӵ9/1. ? ӤA?'/B@Q 1B@Qo,>aA9O` PA?9'yBzDqFqH~JpLyTBDFHJLTyUzA'GϾoƎ'IE0HT LDKG0%J4@CQ@A4QSQ0N@ GFED'AQPP#PA "99+Bp[ Z'I O' p+P"QaE RRbR@At^ RZK9da.@GL/@INpE?10 Ko99OZL[NO10 99όjLkNKKtE4A@A4?<0SD?'bDñ RF/bFo9zG9OZP[R9}9jPkRP\8&`b;e`Q"@`S"B`MZD`O\F,`UA O!^t_@QEQD`KsC0'aC@OXBdIB@OTp"V@ C ;?0 ATp#9"$нex@20A01tq/&qqP#p40苫MCB"$ AEDL/G$`BCe EsD}04401t01t 01t 01t01t01t01t01t_01to01t01t01t?KL !I !  A/F#01t-@#7P"dPATMT@PLPITQTHPPQcQQdg8@L1PR#&#VA`V@VC`VB& !BppS R943BCD@2uYl @B8R \S/EE9,8?  1! !0F&qe'knmp."S..RT#YOqK@Pj6DU3APg811RRaaDU78Rx qq q!b0b8L!b08Kˍ 0"3!08'Z@E9ӭ­AoJ@KB 'j@Ͼ'о,߾7@ !0 'C""Hprpq"`'g bA/'/!J'hpBb(qWU蛟 ԃ &pABpCD#AO[ZC /    CEBD`R GBIDFbA ?@R@A KMSASC101%PE0BPG0@@@`A/`C@$$ b@CEqt"!'Y,$'!$ ]  OQ 10 2u0 2u(# [2uBDNP& 0V$A$CAO01"W8#D#ԃ xxR JH GDF JONLA ) a`#!G !? !$!zx a En G0 xA_Rq2>3PQ49OI!?!,2F0HR A/SL9D HJRx2 q2A/9@pR0, S1ABAg/ @q `&B"G81W8M0O!@0?0/ Bx[ \_WQZatEԋ@AӃ qKrO!*sMqQ@A @Ap !W?7VI0; @5_ ]0 ,5)q#qF&;01$ԃ  1F0 qpWV`^Ap0DBA ^> "];LgaMQoT]Y$!&o+ %oQ &$0 1Q  16o40\XrKW!rJrM rLrO!sQ0 rNsPV!b08P0e%$qDq2.# qHP!q2 qm! A'8'5g8V'6`+rqpxp&)A: @@0OC@qp!0"q xB8τE11EA_8I0nhU  jB1$ B"  O-Ka&sA41qH2  &qE#  !Uj#@ AKqH E?GB$@GBC$BIB$DIBC$F#M 6 !! 78 hlU95`N`DQ93 X92Q91X90+90S9-/ " B: 0i C@&Hr; qp""0"89(8!6ihmOquF  ljE11EA_qmE@oUB+ike)aDaB,U\ 9@Bde 1ĭE9-Gŭ9O,009-= UQ?9d 9aD U9`N,( U !d9O A@CB9e$r+9e /QQ9`B9Q pqp"b0b8e@`C'DFPR'`D`BSQe@PQWC@&QWq q:  p p#'C@&11"'CQQA999O9'EdBe@aC!@!!DA'E,q/@G'pSQe@xkMjm o!O+ _Dnl,e 8 9  %4 1ddzaA 911"'9aA #'dzp@Ap@8V#'Lp+1qD򰽒,нb;&qxqp:b;+A@'80px#EqtB Kq}Aγ"̳"2$ϸp} ś% Y %%WEM9^L9]DGO!! 9[N9Z  q@^A0-0-@U<0íM9IUA9HrA!`?@b)P"AϢ?JA曠̟àϸﯿ򑣓t__Lo򎯹ϸǏΞϠ\@ZFAQ8AU<0íEO9O3@b)P"AϢ?JA曠̟àZKƀ͞Ϡƀʡ\@AQ8AI@CK,, B ! |BCPN9#?sDKCǀ͟C9 C ?4#9%1pE K :801JAUrA <9R N 2 99O01N R q'090aCrC /'/ @ M2!b0b8&IO KQ##!²08ϼqIKEG9OI&OQ#*;@C [(!b0b8@, BK  pG d [aU^ !D08UR pEASAMSC4[89&pDdApHx (3 A N!78V@JpAGC FpCI0,#HJB pKqMpJqLrQrOPC qp PBa]a\PC8ľpG 8D9!0"8ϓ[} U8P/`PV pPEQGRMSO 1BD#`xP[`PP]`R'PW "pPVPYQX'&bS`CRP_L@`@kE`MlI @@`]`\#+0pЍB09 DFHLNPRTƲ1O01"BDFHJLTUAbR&`]`\p#'!0£ӧ,='£ ӣ 2'`𐽒)+,lQmSāЅW Z9Of! >S9d8BV8UTP9b=UA9]B8BR@C 9[N8BPL9OԱA8W"!(Vpp _?8EJT9W08H1T9U8G@9S8EB9R8DL9P8BNAR9N?2R9L8> S9J 2> S9I111@S9D 15 #Q9A\9@X9O?" QqPQqPQQ) #)Vpp 0)P(UQMPGP@PIPBPKPDPFPHPJQLPEP@PB 9 / _o T9,  * * pQ9(938pQ9O%948EQ9#11_89!11o8CW %%p(U#s px!oq"P9 p@qQ98q pApBq"118E0p& 0&8~B&"b0b8|P?10!e@qA`Ce@p@qt`Cp@q'Q9pS9AQQ'e@`C'yr61 "1q Y@[BIDKHM^FO`JEa@L@@qD[pA_ 9FTP_rA9DPTQg9;Pi9O9PPQTRqtPQO 9C1C2A>Br q2>?0ppp'$ $ qqpp& q.Aq.C"8p#%%'|`𰽒,q%Y9)pP9(pQ9O'9&EqD GFEDp9 _ /q pp&!0"8@9O׭ȭ99Oע Ȧ ׳я--"롽q ʭA p€Ƒp|BzD}FzHzJyLyTJLNAEPBAGRDAILKHޡFTqU|AƘ p@qp&qHupH#e@`C'gQthSA[q C]8JMKOBICK'HP9)2SAQC0 CP@!b0 81  23461x0w SB&R !/@C9 "!?@B"!?@BR !/@C9PLPNPRPTPZP\BJ9r(D9(C9Oxppq@G9O,Hqу G9H@xQ_Q^BLpoJ9 @F/ppqHpH#SBP@!b08ϰppG BBF@G8'qqu R@ pp@BqD򰃼Rp€x+A??àE졽CԀ9!9,=BR"E`A BRB9O qu &pD"R "p}ppHpqtE D#x!D08Ͻ@9Pߟ9'yBzD|F|H~J}LyTBDFHJLTUA 8yUzA' Go'zx*rpr`pA@' LM q q  088!b!0b#8O 8068q3q/@ ? B0/@8p@&8  !0  !b~0  !0B _p!b09O _ / 0s@&@ d,qPG3JOL (3 G @!78Vq pqpp& 6q$Aq$C"78pR#FDpq?pYXppqH!pHpq &!b08 b&`ppa@aBP5QA$P@P78UQ5QAP78V `a@qtptpupqt a@5P%Q@78VO" O" !O"8ps`ppa@aBpw#!D08Ob Rpq p&`uAP "pp@p Pqp pPEBPPGDRFHT`D`BSQe@q q: p pqp!0B8 Bq:q;2&b-c+a)`) pLpM# &q q@qCq> `/WR@C@EpCp;p:#!b08 6qRU 8 q! 0,A @=A0@ A1A p p,@=@ qxp!b08Ox,! """ ""&%#%"#&#(&((00..88E:SEL!(  -:;<=>?@ABCDEFGLMNOD mtxyz{ | } νΠν͠"#./012    ΠΠ(geexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/boot/0000755000175000017500000000000011141052116017735 5ustar benbengeexbox-generator-1.2.x86_64.glibc/iso/GEEXBOX/boot/vmlinuz0000644000175000017500000732134011141052115021375 0ustar benbenȎ؎1- t 1Direct booting from floppy is no longer supported. Please use a boot loader program instead. Remove disk and press any key to reboot . . . NUVHdrS *@ ~A؎9‰t@t$s1҃ufhf>h-UZZup-@f1)ff f(fEfVfSff< u f ffffff`fafXf[f^ffSff fCffgufZfYf[fNo setup signature found... fUfWfVfSff1fdffgfY fBdfeff1uf9uf1dfff$ffdffgfY fBdfeff1uf9uf1dfffdft`tfJfudffgfY fBdfeff1uf9uf1dff<fdft`tfJfudfdft`tfJfu`fdft`tfJfudfdft`tfJfudffgf fBdfeff1uf9uf1dffuZff撎dffgf fBdfeff1uf9uf1dffufNfff1f[f^f_f]ffUfWfVfSfgfD$ gfT$gfL$f2gfBff=fffgf|$ff1f1gfD$fHgf$ftftftKfudJ v]gft$ f=ug>ugf|$f1f5 v-gfF8t'f v vgf;$}gfGfCf1fEfw dgUogf|$tgfff[f^f_f]ffUfWfVfSfgf$f2gfBff=ffff1f1f1f1dgfEftftfuS5tX vHgf$ffg u t= w$6t/fC8ut#f1 ffffGfvf1ffZf[f^f_f]fVWljQfY_^fWffiQfY_ffffffUfWfVfSfgfL$gfT$gfD$fgfD$gf9D$fl)f@t(fufWfPfhs)fhp-ffp-ffVfVfRfhy)fgfD$$ffl)f@t(fufSfPfhs)fhp-fFfp-ffQfQfRfh)fLfff1gf|$f)fSf0)f1gfD$gfD$gfT$gf,ffgfD$f1gfD$gfgff9} fCg;ufCft:gff9ugfCg{tfRfRfPfh) fPfVfWfh*f ffFf tffGgfD$f_f fRfff[f^f_f]ffVfSf tf"gD$ gD$g|$ g|$g|$ ugfD$f%?f?uf./fffZff5 fPfffXff1f f1fx-f|-f-fHf=wNffff/f/fff/ffff/f~f fgf2f/fff=wff/f/ff[f^ffUfWfVfSfgfD$gfT$ff/ff1ff/fffZff5fPfffXff1ft f/ff1f1fgf/fgf# *gf-ft fff fAfuf/ t f/@fJf-fuwf>x-Authulf>|-entiuaf>-cAMDuVf20ff1f1fgf/fgf# *gf-ft fff fAfu&fu~f>x-Centusf>|-aurHuhf>-aulsu]f>/~Uf2 0f./1f1fgf/fgf# *gf-ft fff fAfuf>x-Genuf>|-ineTf>-Mx86u~ff2gfT$gfD$ f0ff/gfD$ gfT$f0f1f1fgf/fgf# *gf-ft fff fAfufftf-fuf1gfEgf|$tf/gfT$gfgf|$tgfD$gf@f>/?~f1ftfff[f^f_f]fgfL$fgfqfWfVfSfQf f1ffgf>2u.> ?u&f";1sfff"ff2>1y%gf$f2ff-f9vf- f,*ffftfm*fffffff1fMf>/~!fCISGff@0fD0fH0fL0fh f*fft1 fRfWfSfffu(fdgvfff0ff1fZf[f_ffUfWfVfSff2f1gfD$f fffPAMSfgfD$fgT$u,f=PAMSugfD$ftgf|$wfgfD$gD$1<fff1ffgD$fg|$u( uf1t1pf;ftf*fff1怰怰!f*-'ffgf*f-f-f/f1fff1یff  €"fَ11111fUfWfVfSfffgfL$gf$gf$ftffgfD$ff"vf1ffffff0gD$ft8fy ffIgD$.-,ft fIgD$.+ft fIgD$. gD$.ff@gfD$ tgf|$uff1gf|$f)f gT$/f1fu gD$>0'ff1gft$fgD$/g +gD4>fFfufgf;$} gf$ff)ftg fCfOgfGfg|$.t gD$.gfCgf|$ t1gf|$ug0fC gf|$ug0gL$/XgD$/gCfft gD$gfCfOgfGffg0fCfHf9|gfT4=fNggfCfJffg fCfHfffČf[f^f_f]ffUfWfVfSfgfD$gfT$ fff1<%tgfCgfD$ gfD$ g t"#t#+t-t0u ffff@fff0gfD$f v1gfkD$ fgfT$gfD$ gfT$ gfgfPf vf8*tfgfD$$gfD$ gfngf6gft$fy gf\$fgfD$gfL$ g9.gfD$ gfD$ gff0gfD$f v.gfkD$ fgfL$gfD$ gfT$ gfgfHf v*ugfD$ gfMgfL$fgf|$y gfD$gfT$ g@ff1fUf]//ffUf]f//<u??f1d/dJff>?t dff@f@fuff@fufˆ//f[f^f_ffUfWfVfSf<61f-@f3f/f?f/f?f/f?f/f?ff-f-f)gf f9|'gfCffgff-f?&?f1f1f1ff(+frff1f ff ffgfPff=-rf1fgfDgfD$f1fx+f fCgf;\$|f fgfD$f0f,%gf] gfD$gKf1҅t f1g{g;u gCfgf<fgCgfStffPfRfh+gfT$(fRfPfRfh+gfD$(fPf fZfYgfugfT$(fRgfCfPffPfffPfh+fgfD$8f gfD$gf9D$|f fgfD$f9ufaf?f/gfD$/f?gfT$ f>@f&?f1fff@gfD${gfL$f;?}Vf?gfD$f9~fgffgfT$ ffff?gfT$ gfBgfT$ f1gf9D$| gfL$f)6?f  sffEgfEgf;l$vf?fff?ff1fUf]ffflf1ffUf] fUf]4fUf]ffUf]fԨuf f f>ffffff ff1fZf[f^f_f]ffWfVfSfffUf]/t*fUf]<uf?/f? f?f?gf,f,gf,f,gf,f[f^f_ffUfWfVfSff-f@ff-f,fOf-ffUf]OLf>-VESA?>-5&-f-gfD$gfD$ f.gD$f-gfD$f-gf+D$fff%f@f.ffOfg|$fUf]Of.fffu)gfD$f@fgfPf-gfgg@KffuR.<t<uG>.u@f-f@fgfPf-gfgf.gP.gPf.gPgfD$ gfD$gfD$dg( gfD$ gfD$ ff[f^f_f]ffUfWfVfSfgfD$g-gD$f.f@f1fffOgL$ffUf]Ogf.gD$ ffff1ftff8gL$@ffOg\$f1fUf]Of.@fu&gfT$gfBf@gfBf@f?/#gf|$ >0f.0./f./f./f.0f.f/f.f0f.f 0f-f/>.wJ-t!fOffUf]Ouf00 0 00 0 0 0f Of1ffUf]gT$f1҃OugD$0>0f1ffff[f^f_f]ffUfWfVfSff 1f fff>-v:fOff1fffUf]Oufff1ffUf]fXf[f^f_f]ffWfVfSfggD$ffUf]ffUf]f?ff1g:L$t/f8tffUf]ffZf[f^f_ffUfWfVfSf /gD$f?fHgfD$fuf1fgD$f-f@ff-f,gfD$fgT$fBg$f-f+-fffgfgT$fffffUf]ffUf]f?ff8t/8t|ffUf]nfΰf uPgT$gf$u>f-fBfgfBf-gD$ggBdJgBdff@gBgfD$fEf gfD$fUf]ffUf]f?fg:D$t/8t ffUf]gfD$f f[f^f_f]ffpumsrpaecx8 pgecmovfxsrssesse2=lmtnoplx86-64i%d86This kernel requires an %s CPU, but only detected an %s CPU. This kernel requires the following features not present on the CPU: %s %d:%d @a WARNING: Ancient bootloader, some functionality may be limited! Unable to boot - please use a kernel appropriate for your CPU. quietA20 gate not responding, unable to boot... g0123456789ABCDEFPress to see video modes available, to continue, or wait 3 sec Mode: Resolution: Type: %dx%d%c %03X %4dx%-7s %-6sEnter a video mode or "scan" to scan for additional modes:  Undefined video mode number: %x 2.6.27.13 (ben@q6600) #1 SMP PREEMPT Sat Jan 31 13:50:18 CET 2009VGACGA/MDA/HGCEGA !k!":"!!`-P--V,b,R,VESABIOSR,T ",$ #,'o'@@PP2P+PPP"P<PP+PUZZ@u ؎Ѝ]!$ +zkD Áttt1 "01󫍻0@IuP Iu0"ع20jP"jX5 PX9f1Authuentiu cAMDufaauO=rA u,tft20f1ԝÝ11؎Ўи H HSH)Ë;BHH HHHL+Lh-Hh-IIIIHuHpDA II |Te lNdQ܃ j-).D N %Ju"Z80Z[[M]ZRmPaB *V#*qDh@P潮ܓſ~ =g9_?ܜ'+י߈m>uwq9![f ^b,#/6G{E.Ncyp[&aNn z ·Ь86#3WmuVLxڿ7%`XЁ7L8huc+qS(MN4o+*mIpct {ᚃtRٳg>L&>mK:2ym7# KCsb%u,|R)de^Ы%5 #6VƤ6:}m6Fl1fcI;lt l6Fl1fcI;ltmXmc&6vƘM6&m`1bc1lLa3ocjc66٘Fgƈ6ll1ic^#6VƤ6:aۿmdc#6VƤ6:{mXmc&6v ƘM6&mb1bc1lLa3ocjc66٘Fgƈ6ll1ic>#6VƤ6:mXmc&6v ƘM6&mocjc66٘Fgۿmdcl6Fl1fcI;ltƘM6&m9ocjc66٘F`ۿmdcCl6Fl1fcI;ltl6Fl1fcI;ltFmXmc&6vj1bc1lLasƈ6ll1icNƈ6ll1icHۿmdcm6Fl1fcI;ltb1bc1lLa3ocjc66٘Fgƈ6ll1ic#6VƤ6:GmXmc&6ve1bc1lLaUۿmdcm6Fl1fcI;ltf1bc1lLa3ocjc66٘Focjc66٘F#6VƤ6:cm6Fl1fcI;ltƘM6&m9ocjc66٘F8ۿmdcm6Fl1fcI;ltmXmc&6vmXmc&6v`1bc1lLasƈ6ll1icxۿmdc2ۿmdc #6VƤ6:'mXmc&6v?s?/ ?O/6>;Ӎ^&GexّLp"#z;Jn[Sb<[GNe]ェѯKKgsjVJk~߾)z`SqC^׎!NTP,-Hhο]y;ftʭ֫ xP &#v_zg_~^-R ~Y9:d\Q<- v>[]rztTC;OLۮ?  3ui}ф% &be~3"nz[~M̹wZm[q!8ޑ&=Gjk[ h(Q6s{6Xz7uW^7q 6h I :]:Ҥ::4jHQQ݆!i ӯ`0…ӗ=)3]oq~Cdڮx8(][,ݹkq[sk$M"Z<{>4CKWoL&씶 ?SEtl`ĕn(6 Wjoy2IsjHGr}]6w \WL6 \2:Efj?Ế9f.8Ŵ9NKK2!iZ7!ϘqzOVh]\\8k5y#܌+[ .Y*f;XH龮'\oV/rGNɸggbO׼▾uED/Zcwa6E{0dPsXQ떮+G&9F03fhČל-)[5[3 S \o[WdxNx7Bqu7h26/׹& g^hK wMu{qfdzZ#[9%\?N:cwi{5m'+Yi1_bp]m|T:FF3mfκ{ k4wlM!2ѲMzSP-*GI-}*y[ѵ;r u9Orݑgҿtx'# s#Ĥw)M ΍ՉAH9,t[WȜ欬,}!ϗ /Ӎ#s]Y*<e%Β_ήhO6ħIh 3 %=&bI'rAlwpn7qݛZ-ɩARIs82w%¼`wW)Mq]@Uކ9NRm~(<$TIJgْ;ݖۻN5%7%(;C'd)M.J-%ýCw4Sp_wm]tZjZ.?I-cf5# ?rNQsGaÏޢoe ُ 6 mP%]i*- fRګnϑL2`2dzΙ~30tM~}RC {^6ntlR2Zshއ^Lxr~kY;F~]MpQ> -Jwc)LnM_6Yvg]kv_81f`AWVs[ϒj5Rh_EOJ\!KKĪJ+O7}Ȥ󪯹QKެ*teqUW&/}sdݻZ\%+;l 93]ώֶ: bڵYf;\VЧO\"r]YR+.-=eGp)ɸZMΟ}Srw-Rv5͗UpKNlf[|ޕ%Cw7 [t ?_;ެC$ ]n[}v!#j?{IuȬ Y e0odd#d\jaOV {g۝\ {5?S &^%`.tzS 0ph3cvnށ#mCll-zE{ ց `rMHܪGG$Sk+urLK>Z 뤩ck&_N 11pJGVx67%%dRk$Ȥ%ؤKjIuJ*iR[6Sߐ&"]92}en}{6:pE_I4n۲\ۍM=E==%=ɤMn(&&_xo𞥭X=4Z&sl JǦFWNkr7wܜyTC;T2[n2odcV_Ty(f cd#۫zJ)B=T 2>*(:뤾xaNJDnvݭ/r1az헛7;!޷956>]_Ϙy~jOG;!AGmU3S̒SmƦh9]x imSϋFLSKdmBebj0:8_Z5r!paK^:&<\>:R%{b8۵Zt!>Z5{ųEG?MM,;7&,Ȏ]dSR uc+]]9cQY93sN=ad*_~L+3e)œ`k|DYF8rB=h|جOrTMrNx@zG.IV~/wsler+A^:~?Ot}T=)!zrɿ\=4{- iӽ%GB&s-dp{z N俧ntaΏFjA/ H>Mxqs )QҲ̴jyECj_;׋*ۼhJd]:~z_ wG;Jo}9vL EZEjk;#h|߻V h x2<9m_Vٺ]G|Iљ27²\:Di,2WgdR9/1"vIx1#ͳR%e sn. ckenf9=.ݖoqRKkO_a9 b׏gTk6I8$+ݶvwuN]6ɩ2Z[ݑ% vWk?nό ,=-WHon%nb!^Jn}_OGUk4OYt仃tG`uw|[=UԾ϶'{ϻΓ!vGCKE}Qy: *b jpj\J)]ػ8O5xl<^Y^.ӔyQ^K_bvQǺLUf{[,Cݲw2#r,VUWEG(m9Jޫ[wIm]A6,4ŢGVƟOEGaQʏٕ{U&nDeޭڸ!o>l8i֮Zt$?e_6\ߖowaEXP-S NE+Z\x9%VZ ٥#7e)謶⧵LiW0Ϙc(oRv+-KFEnf֯7uŧ3cçBIi$8zz^czwCus%݌1 nwd9l!Y\˓uf,ũ_$hF^Hc8*gj#I , GE:*^oMEd\Β-n'",{zP5Ǚ Q=Y$dR̦ܻ3w y0{j7v;(7qmq~}M:V_<ܒ1Զ?{D6PR~7·H|rtY>a=oҝݖԯLw^n(Ws.&k\Gz/9S@һ+WkXnEn0xU\'l HѦZiQ=xODL]9mrlPm{~=T2n3[G6wS6߲k6uOg9{(72;QUZe^zpo>>,;B!csIU+TuiJUzh۩F6*Uz_^ DP6;H"mVqn% U f5JMJӼZ5M{kuC$c$]Nt+w%9N2$#(߮Ǩ`bh"i8UǠ(p4a/ w&1JO<.OO3:)(5 - TMywnϸVϴ)nR|Dc*}V~*d/+Yj9cJZ/{J[ nz9(4 .euӥ[Yƺ4Q^ V@+F5}}uU? QrTS(9T_ERKs12H32k.[k V /ꙜmoPj?=2m[9%VZ߶YZ'{Y{|IؗwLp_ݔ+fMy-兵z&DTs\bOHJ*ɒ_5fdSS't#/5W0e~덷'iսfux?nN<;|HńsGgKN 6LSu6Uq6 KQY0h_ojVdv>(DW:0 X?M(J!D /ېwUg;F;6nPkKR+aoKm1;TeYR/L ]uuNy:Ϥڹ98`=sP8Ҧ{NZ,5vTէߗB?F'rNdD'ՉYy7 lIw/m= J {,/YzbkRROlٲRC.(xaG˾[VCLm _8aRSCoe2US0Gosu}*4h}3kAmӤAĘ)}'NC/)krlzUltmjeUKd- 2Jdcxۿ@l Oqd]u75ʺM‘N͕ZN-M xu_]ZOe'PMn`[[7&6L" WwMl. 4- ^_v*X?KI~mey(S6}֬<YwkWl6Tu&-/Zwb.C"iлv]TcW Kڿwh'վCR8ٗ:Ye6~^=(uu_*^q ~ivx];{x}o#۳eNwr{q[vx/|;FIvxy_^wc= o.{KX6ɥ_[gm͖a_98In/5=;{xΗ=txкxg’eç^+.++bSŵ͗eϿ5V/ӛC6o䒵m9Ԓ/7kgrddڽ6\^|Ki @zФ!2?, ~,S7~FR=}E{}6^n^HKkmyݵbG||c>2v-v‡'Ρ:~4LoH0~AAwy"tצ`t 0S=VSrz,Dd]}ɺٵkd~ aὟZқܯi]Gnt۸d~, ꖮ67p^|>w~n8s3m?FГ3WCSl )IMai딧p\sær[fmz^pn NwЮ#>rU|^*:ucu2^ ݒǜ{su/:\ύl/Zw||*'bn  dXz0 Ge_{P^6ZY ݸhYa[xcS ĭI؛;bs]\lvUC-n[N'5 3d4)Ih$uswХwO_ɯ.-Gr7bnxr}}pd:K Zvz_NS;̈́~/i):鵱րrӿ=IKg5I/cIHwj锤,lj N$OL¯ZG;ǟ8>3*9"-Dh5f^՝'M?o?,QX'zҾ9#$0c qoCЕSOaw5և@=3ZG,6,?o QU|@hsMgrq{Gg}mڱWd7,S8.41uTMLWjF{~Nx^qDmpKtL 'Dd/*Y+5R୑H536qCǹχ`t#e7|p>cºE*'W?ɫ9m%Z%]%?ӬUwMG5q2+7]}d*(If㟄' Uẻ̖r-.|sT&`/}lHG*O.:-mq k/˱~ۧ$LK.Y7ExOֶo)*}\8R(Tso ]\\]_d5guWq|]W_}iϕs-!^w71Fq(ϴN{7v=.׽&sohO+/Q:i]4-{WOP>z\R)'ޫY3<iJZO.+3ұh3|ñZ_ٳ?oK*ҽɸwyQCKE+ZvTo)RU*A7Tt/љ.=,F]hm>1HSﯜԝg Or)Za";X~.яHNm^>@3W9}-^nݵ\ B1'L0ca}c@|MƋcoE'w" ьnV"E=W6WvԊ2O홚M񷶘.z}wYB}I<~$'^vcMVE.g#;kes4(cE_KL.%O}JoLZݏ'fRoucg2~/Q,[-)G;[\>hc݌A []/t ZY)Ij5Y]j9mmE7(<_A}C:_}̬@ۃ__+_vG@Uw=St)2mm {1Yܖɬz?G3-q"񷠘VUZSջh?#AkFeϑҰdZk'?'JYu{*5a,.57?CY/tbf3M7n_}LYMYs-/k%Fd:H{{o"+Yz%1;[GRkfeC_̐i}X?xQf& 9)>Пޗtl2?577o-#= In(I~tdO {?)zzfW2JTk*_ScqEyT7zC㻱_XNA9]tꎠVNrrsÏ:_v}lM/IHkZ7⭒N=']j+L5ʋ0#w&5sCߨJ4[9홉T䘾ެU^q_<:2^۔jE=R+Ux[tWQϮu0a03vi@MB~`.s0W`b~,{~Qgb~y0]r0)fy{Z=v*ɦr%k溌A%Q9|%\m]A=E+ٓ9{6n 87 [u싯l_J 7ѨӰsU=IvfS=6{] {^On>lƿe {F^ooP T~{\ӣ6m,siAKu1`9zr[7O\O9NkG}]9dG%kKR'GTVm?2nb7%]7=4w{[m^,[Y+f L&\s9S?R?Y)^ Chq첇0'2I |3i My(xݙw4SOaYrRӯ$\03CW_˾i`HS:9nbsZ߬ŭMq>T{T}\fp4Qv jk`ۜ |swr?;?1OnpGܫf)Ӻ3;#}vw rsӤ}ws;07t7踢'{ lspo 7=~t6ssvݙ侲Aqz羦;orA{r_/+;>yݙ]#]%5loIs=%B`ΗU2kLl[(nAs(]_[ޢ[56)CG乞_~yt.343z]on?0ޑWvA\'M̵7z/|fڼmv^a{+I[Lҍ7M 5&˜'xuP^ϼ)&~Z+\fȪׇkwyS >Bכ85w}yg,geԾibj934YdA(&VDY']rE8+) RMsǏg;m;rO3]Գ稊ķVn ,dԾ~hߤ}Cf|}]u: 8XH>K1TIbU+gh~=OF[]o;Pjsי?i`U"\gO螋^sߧP!}Rt]swuk~Zl܍ 2ע{/ob~YSpQM:N+:fk'}4uƀ]rn7^5Ur~"˕iݍ(J4<}K3G~y8UրDv]B3[3VYk>#9o>bH6mGKWcnc_5w|>[f z7|ˮouu|2't)=wf =qu?0fRs$59mu٭prQMl!]wfU㟳 th|̹u ۂv!ƠlWܠt\t![3weQ|7ޱBw?Aӯ6~-d'鑆Oz3+~aLCzx{_fQ#o6I-cΕ3䖞Oya2'G~X'FAP$7.] CMiJ}S׺31c/tjO&L9AI4gٙ|\.ʑ~[j*B/DVD{w B27 dƦJzsĂ3bDE3NhnoܽXeվ7J&-vo}ւ+T7\Nubߎv Ng& NRtm=+{d-SdٸxE+n!=Y 5UW55NS/hxM=4ԔkzDShO4uMݦMݬ14CM3Rs4UMQ:OSGjꛚ:BSFkjFiM}ESGhJOijTjJaLjPMm].)}$?4˚:XS:HS:PSkM=5HSi7kj_M-Д>ijPM]!kj]jBS,{MS1SkJN)}f:5XS4s@Sqj'Siє ա)}@EM铴5VjJO-є>z@SFI8LL qNB*qnbNo/;xcZy=ĖY'%NPݖ)1_v}ڹnC=&2wKWQ}0bsI9ƽ/8mMz.x$-隸O$\s&L=Q#S0Rhc_g*ww}GA!v"#S{Mga2ȮyOdP=s)TVzDU!6:mɄj>2?ѝn+5<1=qbAkޖ]G1:xʉ5lwb:SK"9tU{*Z[陼M)};ZUn 735QM]o}eq+9nrxn[:'̍vyn=`s_u?@?Hһ~}s=-gu$\^_`keMqun?^.zƮj;n:wor==\:'^^ˋ#U>2zU:jw7ǹ'^Zpӣ~/t=]]t%ӠsujJHNsvI檾ATfkQW>d<,>V_2&_V/}'| kL} 77=:@3JoKf~pDzpr݂-:ѧp^ۙL}+=-[ϹO+ z̍U3\>+S5e?ϜS9< S#ux8qN̟x g-R: ZI&&B_3cLzJi EK/'iM_+r&t;g1{Vc3wYԫ+糥gaaEbP`CS'$ӣECZ3\|󪰛W>-zusr\B:t͕ϗ$[־mdc--upy~SJ}&:M#'xz8Lp*'gH2OO|^pGm VVA%kES֤Ls-/"ןķx/^'#[Vu/?;z<>(}GOlsCѽ`zzýol-RMS9m L<88V3['3u}dZ=TƗ/1}: 9[2b[zu5CO XmJ=\!m ~e͛Ty~Lf)*ol}FO|ǯ-.>69BF2\cl:K+?\Bۼ- ?6o/{=e uD/mBۘ-/JL&jFAo$}BcZTJ_5ol"Jn^gX`JOJK׼KTox[Tz-upz]!dU-Ly 3 m2 99 ^O y{4KU;/ϼaG"҉9xmz9,e7CqO xSS"Ì-I[ԜFBVϔ\bIWy[?F[N2X:1lq:S'}Fds$~7vҳQ7yJ=)Sn捒[xY3a̮(zn_G@^޺@̫ yTW;C?~d0J.%CH- {n.*teL/7wIHI.ըjbSQk+ZT>=72>ZƓo^PGm9BE L1kbl0ޢj {enkrlNâeI@CkdjSj̃$$͟!{๋23ο ƹ"v8_ wgt=̫=o~Y~?wf{Қ}D|k~xot+.xԘ~=̓5M{v {O`==ˎd[d3"]sdl}yXkFh=z&#_Rqͻl2gd3:#HlێT3' V`hWkfvi͒Ů-; #:]϶T]Bh6C:nuspG\֓3g *l^2꘿.mt)ɔgm9FffÚӣo<}M$oH+" C㙼ao[Q{gEc$ IsW޸P9x+In|!;VG߫u t|ce'<}&]Ԝ!\RߠSz.xZi{Ԙ:Kle^+m?mI͡|\Ho+j>>y'ADSNUW*}{ WU_bqymX3U*om^]<ɕ}^ j ^qwEJԑQ9:&x'…sB edǜN>l#I++uvY.39wIċ9簿gcroL `}ؖѥz!S_)p6lَt^T;O =zm[YI]9< 7EK_Yɺ-f }ʫS> {};5^;tR}̔X[;z_c}d~3%b'uyܼż9v%reJd'"gDN 󦶁z d=<=XfZ~)5,4o:(1)=%?PM]+=$]8SwAMybRAuRK~x9\iT4B3$cW3PRzYeX5 f/w||f+f)ɘenVE0˔t牜%xYzΠ#(sRZ̓+Fweg82-Fr}]x›tvx12zkȾ xf'ɾ.5_wxsuGg7Zo^$~|MƋ/8i6N\f&WwǼF*͕^[znj}s譲L|-)gVyѢ?k?:sw[빒aU?X{o9я?y.5W{KVgtK+Oc}`~jP݋qdIT3pMLP4}E'Y.'>4g }o ;y }421ȲӢ*CӤ%n(x4?KwΓ>Q&ˋ]w:wVkvZiPY*|9'X W=2k4t4k':Lt.DUʴ#??nr&)5 NT&;Pe&!_{,}~*TfcP"G˼R\靊Kg޿ >Zu̔zrZ,8mulck={,sstͣ;}e*Y| S^;?ݽ#w:vy{ [:=r֮][M[tt ]7qãv=q-Jcj |Y2g&7F;Aмg$=þ.Mw ?X~mo ^1<'!$qA$m4MO#!ґ}{]_i=gHsϙ"b MGRG|?bq&8Kwo.Љv^ ͑H1%5/+, gK EfK?e*ՙL_z91q%{{cHr hLov~uQ81L8ANp}eEMMp~~paEѼE-v M oKmz)lqnbEƟI~Z tҲ rIf'>-+1N0߀}i}rk8\_T{P,}:3z򬾭gok"ffjymUQj GTx~^|Oz^`>DqO$B{jrIWzTЙ߮ov>NEe*v.9h =oZdXϻ ?Vi|m5W'|4(sIM?gRυŎ *:3zSd=ˬnE>%zМdžeB [yz:m~[yN{7/~cp\_"9n^hx7re5YC1]"G_%ve^Tݿ]vlzJL}{C}^0lخ+=+ܞbe>*-K^^lNo}Nл7MǸmDpDL{0KN gVk;૲Wh0*Ѩn[Ϫ٫u9mﴦ?%oސj.t~arzgkZ5_[WUG]on]U#rjbżݺJʔ^doPH"؄Q BcECv?Unendv?sm짞 [M]_x׃'[K-干|#}jGHZQszDesp-sK5v[`gE[JzXebA޲E7bf2^)_w8Ctۺ!Ilnd(_f͗^6 Nwϴb^\ =<;0\cPh5{ Rp݃Ap6,ɻgQpGpC:xwj%}yC{?`YWm7u}Y9=\!Mt5I49i I,PI;$Ou䧃8Ugtjq*t#Xw'~*KBƽQ|[C%[95_oWw~ԔTjm2aC[G;wՒM2jfٜ\m&JNy69FY+zd# q˽^+?7hV 9*:=S.'ԛo =Ɇ[C>c˅(OhsT6qH~Aުå}%$koY;#+[n8a[#GǞ~-I#[u]3_mk:mY?EMNG.T4BXұeZv th*ew?\Ѯ#7nWXY?Tlu)8( 1\g]'׆ގ+}eGA5ڪz䳛s}FYxytsZ>_oNH(vrA\,L<$?*VҌc)o0]^ܫ0ol#=i'u ?:is遦ҡe۴ϱ 0 ݧ7 ,}, &%uI}WWbYL7t7E3QY|TvZݜev٘ejܠ[2_*r{R BO%%,"N˘mɱj::>XJLhuʁm)InOZ}PMrלXvO:O5zY|ZP?~fNα [iz)5zS{{S2ǂW=;Oo_J#eSj'mO4ׄn̐c:MGd47rAaCkl8 3_bsרNK%FDoPo-팎tGNp?nيchwҭٽ>gwo7եx3lI醳uj?C-'n,ʏ^&V յom͘r\6kqͺn4)]ye\>ΕJNލeGO$"tx[ٜ*է2#6~OqhnU Wv zCCWWJD+RXX;EVT=Jي*]$W[ %5X+}}miرwm.|=#3h'D##B39 H}wFnj6z^ekBGׁeV>wSN8ٶ#}Q!95N3+z\|&greQ lo,.kuqIw }aA{"XFKSeuS}(uƹ݇dcJەCrJ}J+5B⌈5.+1^_Qq ys͝-n ;wdzϻ#͓R=X[s;m<{xtpWe]d!NwC>p[fek~^Hcr}hF6kIto ޞvvnBɝք9+%as{ ږ3dV]vα]NgNf7':iwZ{4ˍ;T ]#ݕϰ.wiGQ\W:qTb9>,\sl(I4_yoZ m mo~[=iL+Ƴ*ܶoo'us;I*7^2l2]w>f<{Y@ה$,Wq3o#^n|[:8M:H-rdF]vfht,[_mg/{T"l{[wIܪ__7O3ݝ*9K~0[:5ҟz_jYw;X_g߂oE֘]ߚn3[ϐ0Gf8)gͿ]Aw74'hn~NB}bYe+yqy+]o6_mQ-훧nJ7yF߃o[iۜ77lGg·-[E3?>H.~ufqAfj~L͐ʶ_35V֪lnm><۵ M'-wL >>P2#q\21EFJ*֪Lו/I-vY;M|{Q:R='B+'osL~yK P }wzw9݃ C6Xs7.hyS {/N/RxR)3K+΢8ÞKsM.I .ēnĂmכsᜡ:1- äqc^.-AOԘ"Ӱp٩ K-qwu?9b=fi;^"q`{I掛{|gS߾}k#4z?*nTdGt;ϸm"E 6pvۤJ"&Jf.+F95c =K?}uҨ̫qrϒK(yq&d;F73&q@,*E2qcs|vrK{#gK8܉/e*p2:iE5ixn3#2S;.WfpnY4_5qt?4)ˉ d{AN]%hwҗ:=j~mɋra__c:tfYss; [Σv _vv_#E$dblGH.ks3[LBgc/4j/^1Ry~!ga{ß~&xujLɏEݞv{D܍>x|? 5ImI9PM ;ˠ*]YKjE립_>eVYe;eϿ˗Re3HI=L1OFd15INZQ<ԍպ2@O i1hr]ߝ\UxANzN6g<]Ȓz`<1m62>+JQNt}c c?D_]:ޫ v*~R?mqJ5# o?.7S+g=I\.5kuzz~nl,݉N?r÷ӧZ \I^uDe㝚yyk5+cY-[j7!![?VPwN 9UGj%rpŪ]?n7SEl-'{o缒ɜQ>sh߶k%sY,Aj`-XmXl 7f+?|@mym<'?'9ѼV=2\sKvVW꧒MúЖ̼5?_ы2  :c#h+r lS9wB}^Z϶~_'ՎNI+rs̽3z5꽅[eK+6oo?͓I=ev uaCq=d98;z2Ћ{Iw ?Gի{U{paD-s}NK}֓.efo6}/2 =C>1luw/ܩ_9 {NAN\Bcvܝ:vCfJиԼIc?B֓pfXnWϻVl<8絏za>sW?I[ahA?:WV? V` }[2qK[/ 2A߼B<}tНV셣ܚ}{]qϏ a_ ~fϝIt}&1gK꓉awKуv5_mdkSڽa7JtwQl}w:= BDL-^S~hO@"3YUIoW<-4J6­ݮ[B 0 L ڙ INA+e\ruؠI᭩<4mgnF죇\(mYSٸ&`/^}9r[ZVoIe ZIwp9ֻ &MiMڴL()p[Dhl Ma)K(*G40Fy׋uue6K@Q)0!-Wof;\o'YEPrl(Xݽѫ]җuljڍ@Fi]:G_0GO)Bu+_:Sh > ծ8Ee\L[[( ސGl[m&1Ee+n^^!Zϧű\]+V ]F3辞 d^vܾyM$Uŀ8 /p8-jj̓P iy/.Qj7n7W޺ȕךR`k˷?-8%$[k%UviqE;!k ƹzQTh\ ,,_BS_=KYbCsΕ"6۟FB CsnX5<zQv.s}tvo‚֦Ѕ 婤 ކr(׹7ar3^%ty3x,=#d|ӡXή;Npˑ^$t~lsT iyh#g2ϳa ef uV\N09csrDh tUUl xJżZ~EFZsIUg`菙TB?u\<'98H ̗Ǧ9ab,ο1qrq@S:^6L:ʵt9I%îm{P&_u e6_J\Q̚t`ĹL>K{IE"q쑘w#'} ;υEd==2QW R-9v?ͰoJZTu>@)NP8AoͻGQUۆ@ j7q1tR;Ӹk"Ot2ZXɷ( "s a³ B?? ^U)~M2Ug`x?Vn(M愍3"֜hTĮրRb>&f(2hC.cKwO8-]{hJ|"Mzl&`dy5r(^X&֩Sة,֩St.S&hhc<xjbm1h;6Lt5; S~ANShߥc+ChGM7AM#v$:CE[ؓ )H-~^g_wԁ?!33n<5;E$K_uvfpMK!~ 4BVx[mҧ< | =<~ILrOBlQUթ*cUKt Q'}V` U0ʉ?j8S%^gSmbPoCe5o*DII`AS rh5˒QVXWuS7Y[T-']~J@z[g r %j1ZnnUa÷b$&pQxiaSWAf ~ d{,>}(pK\׹yW'^Th ' LV%@\_ńv4sLgN|ONmfK <"2! nm;ipfT~TUgT'^SRzQhI`E:[Gu|FgW"džIEdhЖ-[r!<:4/ tbayYuM 4+?iI1h`pFO|?N@2tk͚vrx2ܘ-/詢I| T(R%"ypRFQPs<M) K0=Ba/P E'kdcRE]\B2w>n3TH!G z\@ T+y,RA ; O"}̐ 3;"3=WZM^qHi^KXN#u-!AR){dZW{Jrs :ARw#zT' xY;j_%ϲ6k!́'{r'?gRQ.VKRce6 W>&*XVLjԖ |*9x}j_&:tXy$ŽٴwвJqB? fuRϯI N:,w,P)4)<\?HͣQڒYq%cd|ong vr łCϳe} ؘ쬹YrWn X9V5BSܽGP2ߵc[QKo/3Y;4?ini։CYnU g.dzPS89Uc=*ssЅh|3F=$J2ʧHwÛvˏ+Zws~Bl+Gլ+/' ĊmL/ x ;uOR|"i`.ۄhcANo0 mG&_rIe]޲}:ZcRz#xs('N6cGHG ]^z֟<*}CjK1*o^MI;?Lw/'q {yj/I wsнt,uyY}oQjtaiz-AdctZ7hR66<Ls2p*NyΪ)G2KI!2 { )Ԙ3uG{ [\,F9AبŨ ,⨊~QUWj*Z<#~Vա U~CUGҪ:K3UFuۂljF rA~'T $Xœ} Zw"]yz6г$zNs=C3l N38_@Ad"Ö.ۋⶬP6Oc6ȂY\NѢe=cY)SPh>Z`pg0BX<}m ;_w#FWDPѕkT{AOR: 4j7C:fc;zQ }IZ1<8DhY?bCۛ@PU4OXf俺L0VL6/LyY8/8%49ڼ;07 uOɻfE @`s7 YŶȶRz@xnb7jT6SQW!6gN?)C@.0iWdl{:5w⛂x̶ '? |STſaz 2t^2zxYs{)u9v@f*]c^riᝠrA$@E+g*{$6@_oNC?9$W&oo“>+2{3jh]O`UPUu@dE*:yDc{JnfQb*p9R88-AMm4=O1 61F(^It \#|mh=NzSG?[QJu Uܲ-K[bmIg7T&C 5_h߾S9k^>b~ ?:/ZJ)zS\IڌmR[WE$c1e4m5HJBv0,&KQ9Y&y&-W2G%'"x͓bq<ҡp7^lkvw zռOͼw.'%ۍ(nr$mm~l`Ј=[}"k5 (Y%;^e|8.$Չ jE7k$\-z0hǓZV;#._ۛXႆΒt,WڎHJt LwH+FP֩]4=IYF~W]~5~H.=cl$s{?CqmAwx BoaFܛ-n e ^N ? xj$@i@F6tزC+[he)#czM:/tnIvi/}C57r e"[~Vp#|fA2\83on7ڮwYO/]$wH^}ZhU!:KU( FoiYxozslw{r.ތ/?7_.;QwVBA ɷxҰ8}%'8z[|rg⧔~: OГ{J:^7wʛ(F٢CΡj઺ZMjxY<}ԀM?ub]`Rd16$Cx#XOk9<0ْxUtz-w6o)׻fytƒqFv:\Cu[A|]AZ)oA'!^:VkSK`=@5 bɗ4˩7=ow^z,-^^!xA\@I4n>D@ҏII)HVv}p+yM=:v"q9]hR`&FTcX4meU2>s/4Ȉ5Uhl`/~ȩcH~ۊ5I 0öC€}B tt .e3BLGF]B(B9"yqK)cy) 'tʰxxxئ^ t+CUp`dc|ߩұ(:7NΡQ~s3) %;cDR|[oۦNN|agoJRܓ"5j@D'H&cRDqÏ[jO|b F(SF1Pٞ7UAզ݁ 'amrqɁ]@H:)eЍAVK.[^fS- \VUlfͼ`:9VѺp(Ng6΋;'_:9tĂI;KcתUiB>-ҍ] tQ=i3nl!PR\sDEԖv-.E¦\AFřfh$=IbNkͫY bPx4`3@$S7ʔ LjƲ '5~C^;fZW}Vf#InYtE KX.x+`tDd6b[0c|Iy~sWo; 5r=%b3lNK1•M.ҋkh} k"ob{m?dڇ`nk*9[Ha~k-)0V0Ӭ_;4zG)jH_ߒM^#F@Tkq5_k]."_Br2< etC +ёYˤ ^@IO 9s2yjYE.Gf-lR[P~2pgsyu g2U=Y/lԇS,ݙtUЌJч4h.A^ۮ1I`]Fq!ZG5U·gI{Qg*O~K~ ^m#̷1e $ayqKZ񏛧Wx">\NJϳY;e67@A2[~)M<@᳁sS\&3CX.Suc=%. J89rqt[.x)rs[c[x9N]Df*I#h3btL,h=Ii .<h3xǍUNh{p9tNux_1c$";Q;)B ̆)}G3woɆbzJ?}upxbt֟I{;5o ~C9|yV6IT3gHI诣B](/Nzj|.tZZ^F}ф!llhV _&+}-rI֝`//Gض1V.r>@h.]P75wnSM{'yy9([/-fxv<x"K^@hPKd{UԱ+-۳1=#=H3&ekY-p)܄4NlOjW}״> 5ŌJNQeTNiBMA rE>JάQ&y4œjz*Iv'- eⲛd#qYo;yftX& 40`G޵qUc1ͬ!>Iс- 漿`9/![Ky!;{ىpr5Է8s̍Zs`~D8l1d,ۏ5Lo=rvu,Ȃ?JWbG3>Nv+o)J3pb2X߼FFocJ_EQ̘DhVjz菳Y~\j_j }88`թx%C|ЉTY#hP}⥸e^AZ;KeUa/B햳 3|K8jacqGx<ϡIi愴û?R"=`5t ^}ufKQ̆*cO" Ǜ݉ ܌GEJk45@E))' }w:V<{}8Eu`ai}00Չ+n< s+$-?j01&NAI60&.>~ 4G8BL C){ mRP=Έ'GT5zz3gUJuͫRĂ#HrL"0w}f#ɮv.bh/ZFJo?V=]k{kl3dw0x jAF jz%S jyЏM΢zcu?IKŴs,un[s9n[Qj<{Q,l؆ f͕Ɇ\~}Z:$p?ަ6%q穁Po,U.O@/:4ޅW6=&O ?Y՞-J''oD3 }"w?1NTQpBv' |ͰPƜj&/f_&nF Z~c$2S%LhIЊk,>\,%܎3[]ZXn * jD-}kXfkYDMȯoxԛ15CsdvL1 wsB"gcA)'& yݬWhtO /򬊋cj!}O֢Jrr{Et`/.{aq-|#:Uå܎h+ g㈰U;5pYQc=>:8ȑM+5YOU8ildM܋#N;JF)3Z'8䉹%Y VeѲ3A/^p'(הWRKٖz䢋dt]%;JvJ56KӲCP6h(|Qs!Y|%A Y(]ƜȆU˫Ӆ`-.GWG[ʦƊz6b>k+9dS>'N3p3f)c!  avrD kYvIt"մke/jz3o+3ZFG[?:eݜFP[iR#iY9A^dAp:*`}Jt:\5 kq$7,ʛ"XS8Ѷ_D_^Q)܏80!|.w"HcQ{;S/p!].l,=ĕ&}\3m8i8gSnĔ8[ijlܛRivSKɠ,>aBrqz &d4SI+@rU>/8d8Bc$J Y1wȦ'K^/ \ޢA 1VU3E(J نJ_85JmI@upO 7ɂf%|9xV"fFu6 &\_^hqB4Cy:w,*XF] Vѿ\>!~D3c3,;Ef`mF,qF`v->(ytIۼRvU='C0. ˨ 8 [YZ+F\+x}!W7؛OMɽ=|A^f k )5ۅL`?)CFaooAv׬8Y. եӰ뗨1dpi M9 VDk(2:%s!`SyR5. }ʭ}z3r LZH3Q\]7\ð%FeYWD@@}4Nmpb aI2HGN|"[ǯ+#u3 uWޛ]r7e ]^u9Cŗ=#v 7sFWbDmBHD!,b!7ԙH*d RM*Rk ʳy|/u9l)'Ӕj@6J r1X\ޠ~ؒcm_*l^.'jśDA~ ۂmJtmR=.d3ĵ8sȽofoSxЂ}eOtTZcK:nB$IXMn`VA$q$])[3GCN dwQ>|OE04itEFזt'+/f>T[q9ؒ!=8v h~1uF,HV dnjf}R <'_j>]vw/I)#= ў'crVb&)9 \Y^ezRB܍O'OX=<`КMH"דW̤l8iF {Q垳MR/Q;i BB r(F4+G5%h4xvCݩQhpȈBMD% ,de!ԩis@wڌYPtaI#1rXJaūj;÷̐jt?N(ݙaŻߋCheGM4Ԉ#)Ԯ7|PY; rWVܫ?W]kMcx);`!&O^jڅ?`շ\'OgUh@A &/[(N^mn[.;W6H*4t^xO R툭+$R#c9T&LyMPM9H֗H6-HAjc-?dɆlk^|>.z ۾m;"fIk!\C`BE;e3U\Qnd pX5htIjSgv~ R I__QK6ƒMl>iy;fi;cal9 f?u6MԈ"]C6(̘rl |ϸc#F yX4N$*JARN GrzwwR2mG*R%U fۑBmtmv6/Ur9j;JjpQn`$vK8`8Zv#Βqnc 5Vs34Ek ? 2ci rvB<ܒG1&q^P#dut͇Ʃ^y}&|RοWRlԛ{x1z[1 Z\8B ฏ¸ Q]GfwҹRָDL%үoݫx/Hs:ȆSRLSeSMr0[fmOj'ڇ T4VU މn:1(h.n#r #O xka K_hr5C< gw?Ӄa߃ <*ѕ OOkpv`z |O]߃U܁EwsҒ T 3!E s0p>ѢY-3/*w_rГul/h}c(.B ls o l2( felӴ%` NNzSy"S۰+umF(^oH-+TWF|ջTWgQ|Z _%|>zY nsn3:DX]ЩUӐZB݉Չ֕;8ݪߣ c'FZyRKhCźbt{캅ީN_f6`VvOi04!J#u32.a{U^oӚρ"g:h?Ъ_oNX~焽0^GG'L :7'vDu4Co*e]>mFk٭+A5`/^u>.Ϸo<x  XQyGNv w0<_OPeiXqFӡ`8RupPP9:X7jhŅo{͜ =mԥZē|@}EѾ <--5s-(smXzQdK ;=lu`Y7tdCzo8!uWF)i\Xשp|Fa*oF'WSkzD& =.hϊA:3`<6E{K+W#O,yD,2Db)G #U=Zܻȕ 6lt'T PK8K)*6΁FNv-P[y>9  jНwpNC>13<}}:}Cd$F@yۿ:*oZ[Dpt'ߏ]}x3NJ jrq} OvL< <^:k.}p '=}6(ޖt [ шN@#d0yj6ӠlqU1v'%5N:ݫ*QLqsB2?R{\. &b(XXw*8#L^P }iyzOY2V(Z?m~tvZ!$b $<`gr3w]Ku aX!.ǠCFϺiHo Om/x8tF]^i64C#VtrjOO ZWcL _;=Wwj`t' &R>-d۹ ="AaC'IoxB0';X8߈ 't[|qWmto*7F.z&!4wBgL{@Qz)-1m!7 IPI_B3$pKBX3Z.&#fr0<>rǺB 1;CY+ly ͜+ -˱L,:;cjM*QDo Mm[9SGi͇Fإ]泎ulOn>6Z7Qj mF2?DXBsLxNmt2QZFyAwd"&]iҫYD{AP3:c`}gS%B5CZ/B`6j[XC$u/\EK=2dfvl 'F ]C[7`U҉( <'߹Ncd&T7j!LU ?q_^$(pOL=Mbϭuqp >GZ#\5mFj#1Ix~kx)nUʶV"$$1I,^_,IgI|nꢇ+-b {j=UQ?<':Vޑ\\+g sSyɾ0n#׆6H5vt:IhhVNGu_}y]]# t:k:f۽l2ӆ$^-H/g/zylxМUӰ\JǔXJ5O/Ԛ2E5i^Cs: L~ά'&"Bg>Ub?9(`K;V24˛쥅^^c/ dx}Ù%Ó}.}|P 1z2^7Ӻkg :l0p?f^QN۶+׋HF$QP[ uǒ $ cj"RQ)d5Px Ku(vsfH {e#:z e$UK=pL"aL y?S&<>#d@hwˉ_(/eʿ$Ms[ U+(P+ OJ T;KyM nh&.O x7ZX^IJT&FpJ|a=QB㦳d ˥Ə(ܫ S}XͿ< TB#柫En\4'-pM:8Ked%oo Ds<˩9C=t&SFE28M9H =V: 0 vO60[[ث;8Cԯ`I׹^ G@~6$vcvF.!7qbseˆaLjaF .ezRU[ҞRFM9Gq.+JB _뎑#9TNb&ba<3}i \ HrPYk 5x+XAxRsn|[T1[ y¯*$X9gr/hXjzaUMPNPy[Le30Y#NpLC\usÖGxl1%:{%~T@I~qehҳ+[G @e$s\{1W"!B2+ݽ}N$TT荨?ԬKdOsl"@ L '4JU6BڡOs-|'cq~? qȣ<ɰ KW0 %7)=K=<~t46; 7lX9[``t{M{gѼj0$!(ͩ7LRC@ɰ4A etTYAހub-F4Pk ֘d{!od7eҷ`wdz.>><鍙O:4K1ov 'LkϣCǒ1`Ĩ{ '~$'%Y˅f `Eτ"h/8!`HB0l}ˆhD`Dj޶K&bh'DABe'̂]d)&;fyBG~lk 9M ̀1+1rW]Q) rt(\ocz,k/vߝ>U{iن"if/xo7#2MEg? mD*z uoI|" X^k왏?o\=b@b{o7 2 ߌ~CSNfsesdiCJĿG-E[=JzcV0J?Aa}^ #TO^/Y#, ~Ӷ E:_7eFtH)&5U5{hȆDQ+!~y^tm [զmUeu;jUmҏ8%#na6m<?q8kD6^vh3 :9oo8S܃P.|c|zZqѮkQXTfDaQ[4|ۯKJ.~it&K肒 + Kkq0gZ ŋSEi_dC8y<3"ʒx957yޙp/JVu%:Sl]kv 8YZݥ~ܮ-v=Zn[sKxyF 4.ayg "mkpEn`   [ULً""QmC@i@NCeh7gz߀AN3xRMUHxEd󸉽M$s _=@/n)FP soH9,.xhEW.v(f% qE/:4ۿmiY= ""}R_p_h!/"&d60Qula5 v s 'cA^Lq{7/z\A+Л7\M]<5'Qxސi t`jZ &Aa\+vx:ng6h9GFraArY%! ,\TeR5;V\ gC$_},lі:=s$EYM0}Z&h`&Nd(+q[5\f8FK[9}j6~6-0ߤ{fD^D}PwkH,Ew~.M}jѰi>:A̕ ֿ Db3)NI 06)mmv5]N4>ӃIιS20p[C RdE\"< 3DQD忙q]w9*Kfe_m`ћhO@Β";ĩϐ7rpm<}PL]<ԸR)bsxL8RԉI xվ.Gֻ7C.yNA<ّPKgm=:]YEܯ{j].L+WDJ͞pՂ5=Ub&u7$mG:ܓωWe+%\&z}{";7f2˧C Qnfs4 NN#NyA2#9MhzhS?c>y3R`vV ϱF#.-?kze#ѱ,ok47u'a z+W\[(SI^0?Nbqe7ZTYRC`[=`\)0~ly5]*_fOIV״aFu!usLs~6q|n5~fH>bL4_ƍrYSVPw'3\Þ{Z6713QHN$o|نw+T]ᫌ;M/UmJ $%1%), U6ɛ/MM PņK:)M]xzpWwV}jRLp$`hhG%2_AE'X\j) NS/HuK̭@ur塥À)@'" W_H)j^k"qJGviK^eh>=M7+zr]'y0Ђ%3^Rd$!2QWGrۤ,^j#d Dv#]b'*zʶ=t M9Sɠ_ME[{chO: w!kR-|'W*} ?OBO)ؤI҅COO$:~AEA'?@VU4 O:2jcbϵIP`سZvOʀ|10WՖ1p"%R2P͡"& [#FX.4\n >JXcK-qp;_*ZUA " <ª|΍x++ɋ+-MP >>&i2Mӗ9刋qC<ǜƪ[d(Uvd>c:NͭI_uޟ=Qw!}"ݜ UpGVu*.s/?WhNҜ!n? v4Z1;jUz3IGzG^I eWFE4 ܚ0S@,Nzհ#X{Qb>ݡ*'`Kx@1'GlbGCΜ-eцܿO܋YtݩMͲ1n7#j +ޫ{BN>c9 }ts KaM>ҷp3dWÀ֚wpkdċ=0Ay渎zHP<jw dKȪDf {>,H !2C=QMugE늧P߮5  <q1ICD I8#(2rU/–&ƎI'%d,H)>8p/^o{`kh)%HppDHvY{gbK<|iGH(iX7N&ЋG<2-b3)dC0cLȂJJ#44~B g(W#PMHN6dh!A_1^ ȫ BXB Kt2y财`^rDD\i QȽ1_&qh3фɮDL#>}$on{۲x <? ~)ip[lB &mjC.kBKr!Y CG~5ιTEv@Y%!e)58&c UAN*Y%yuY=D.av")N<-9VB7?pXS)(%L~29TjPbq|؇f]vƏvBtF-FFtle q1f67S|z|M ҿ9~wjQ+EI_\i TS /sPB{M}DuIڃݙVQ(JvS^>OI._~\D T39*4 Bèz`&brDk>JQl4ܲ{x];@]Fkur uhD}!?nC$kZI݆~ǘϝޤE.z- Fk#y h%EofH&AG0ܾ $ ކ ȕ PI0/SV l}&: 0SO0d#i($u/i9{qڪ6:KL_aI'=Mn3,`m]Q?= v!s a_а^T}]TAPgF@}!u= ,%ӋQKQ^t:_#!ZXT@-5=SV\3)7:S:I6SN lR#mՑ]s׋_af'\5#Ҷ^mf;~oڎs$>!ZbfQt k $ÃZ U)î!IvoX=Fr4W%~|CGT-s<ʮP6GΎ^ul['x]x-O $%0"D<y G(&̤фtŇ ф e& BLH&d)1[48Xg#'AO1>b에 U$xxz;}F= ^6;jxjgr BLa!Xj0zkNBtv@d6Eʅb逓 oMNɐc8JA~ܴe6)qAW3as qd5*z( 30jܤ!kSt. X0tV=e 2RFwz0;y0q?l mYїf$MdtyM'&̎N .6BXXl5C*QjPTɍֹ5ZܠQFE\^.E8wBe<-{a΄-l}ޕ?8A|HBB|_f 6*b^LwD: xauT0^3fIʆ֙ʌ mh[oyj8׭ЭMQuhѷǮɌ9%R:BK{ As*iRLRtEozqSǗHLMk\62 &Փ֝FZ1TCF)xjU1ZdX1Ќu' R!ɿ0I7p;]CG;YXuPn@lݨ>lA%6yޝSR|?Lh΀0 jm|I6=(y;j޺ĥM~:$R֭ДTOwuLs ?cޜy.<25KTzYc"pg VBlơ/?rLLlUrF#|1^+Hښp_Su_諄tcV&ۍ)u$)V]4A͆n%bkѝ,xi'cR8eflЄeCSs"1ҰMW#]Tft8Sϱcq.Ck Z74 #]mfjp|@Oha؞BWEoZXCI%2Di]^</]ߩ)d R#) 9C@ BWBR` +-@H]_6; iI6s O קRM> |ҳ)fM!&T3K;qoPyffJ,Led8G8Qg!u ^,n*iXضhmO*dgAAP:3^BZ}P{QJt0A~TdKdg}-LOdfWad}Cg|q;YNӒI(ŹLD.|gT 5PC GarD _n\jƑT=NvL}̜ of{1>'H'ʴN\}2ّ[6X }Ě7EgJByMKw~:C T>X9*oJLJvX` j4eW׎'UcxG}5M2 wp^)>O;l %Tu,+oC\r*{?YKv{KDo66޼m{>쭃%vv'ΰg`o߳Zx m2 NGqOYg\6?j>rCUz8g]ּʨ @+N~dr+Lp\&cI^XmTj!t`(Ug;yQ@|jAQ Qd\F[inc`ƤG< DEHJls,(;juIYѷq3$$[ƤsmFj3!E'ԏa9ɗ1/6'5¦uܰ@YNKM tV-rհ)BĻG`Sع(TuoS`<f')މOߕ-}gi) |@TK}?˟NMAN2*3'wC?0FIѡpN;&}]of >$*t9,E.n8/)k.9Z]:hOޭT6a(1l.TKΐ{Ht- L{%vaA.;uqJrI WpJpXs eLIKگq$5pGצ3۳9`V&HCN}+&^fuYu+̂ ]5@vv+ofrC YvHn!Gv6zRC|DzTxk(ΟvJo xO5 0CPtX(|P.HUM8y~]_3/]334\{!`h(!@ N]ѓf緺tvu-WyݤO3wH'GYS2eYEqպpf<,SP܋x:y~m0`df2:k Vh,@1Wڗꕊs#|8?64fsCTAX|/^@L5'7H?OQ@g^)9$r逮HU'sA堄3Gw^#0↜( \Ar-Ish/ӄBD+I@W=ˬ?QR;(UWN `]zr| tPDx ?1Jc2)iF6 IG)T/Sƣp[dޘr͌ .^^f/ǟRn$ֳ{1\ t񖚅Xq/z#A}EY8"ħvWD (KLSjSqO#TCLplNюy; 'Ӭ:KlGv؈{h]xE5e!~sτ>5ToRhhaBC 腑ـo$%A XªLP+VFЉ)prX0!$=;\*]-2(D:xGok ^ߪS 7sCZfF:xyX )LU#)Xeas6ȌX=Xu;fuWu ;ӧ GᲞ6(_d :_GԳs/ݸ 2c,R tbkdN`xLy@6F#j%Nq'QWs šb#ˉ7T. )aCr15N]I$E~¨0pb$X@Nt"{-A铀U ~C |$计6tN>H@[ 矚pc@ AL5A@esgVb_ޜfF;u<< -1.3Msho^5&SƢ0=zhQ)SP&`Ƀޮ o-NG ǽa|CtR/2T@6U=Fn9E K:P_AGŊs^DB^CLhp>x5n01BHX+ӵx9o(tZGFg⛐AEPyrڣmYts@S"Xj]}gu]XF] Y.ۺFN'Uc%fOQ0" 4\iqe90ڗ;0O܃S;ʾ?wcz3X ѿЅuTsvr@ bwўRwmcwtOvDAue;FUMV R\uoh ~8[?#-~? Of&'=bHBDCG*QYDפ -|@*c.IJe >ëHG&7Мpں=F(ry/ț`Ѓ?:DŽ(L~;ӟ QҡdAPIy:Y66J>mvcl_fF˼`m-{yx}~L-f i@ R=[kjp8=Χ鴮Un#R\V>HuʅNꪾzz2X==-Dd@7𕅹e Is&iTu 'xN~#ԛM} /dBO!_6=>cktϻݶ~NyoOhhR.P 3fz \s]9-{IKlOs4j3~Gf"r gX3E3'g?c,YoFx?;BEk{s5Օ3Y6F$(Y`6O(@Gm]a¬Ǝ/O)yMd dubpπ0;`⨨>G\N" ?7 0ki.QD*@wr(f§!Rb G H#÷ N8 t,4n{'wJ ( t"-O֑1^H2Rd`_ KχNBa|TW\5^׍ g r[@NHor %kpTk(/ȃIIFVC __1xQMأm|Ԫgx5D hBAwY j95U# rCl*F] T]\Bp6Wկq.f(\l f-s@;X(8r̹{ʶ̶F\;P[j4X=NL5e])#}$)J{8tL=ջ{9]H5(اcaNWYehXˬ;Zr`F t:QŨ#@ӢG4][㶓+9< ^]y{6>J]33X<&\x6]Ibb nq2^b6ɗpT~T4!vN l1vLkN+3ѥ8oP5 g/i"!j'nkzg?ݦs'+*7:|.Pl8ިqZ:Kֻn@G(L`nx.C.*U:.&Z82 kjU{`V*[KMH]/F@!Z /'4)v.I,g sows콷L/G|uTisӢ,Xn}NsSuDk9L٭$k G0ycrXu:;6 ^1AX&2H{JS`u݂eF{C_M¶%;|5 ]AK]: =~P޵8+CNxknxOz1XVR젫5eD3.hsQQ1gO p#_^-b-C}Ϋk+pxГ+eN#ab!F/pڗ| 2L, )[iv]ɶegqCGSⱌ[9)ug.])uaB!99 xa! XAJ!IpJ2sP~h#?@E' Ιxu ~N`>K=@JD~ lEFEA &TSͿg|^,KD@c#q|!`MdfȌd}z?sl-ҍ| 3|`Bs|ؼEkGۧߗ~crtT]þb?|?M?gn~~Rm;-݋*;Rwu686K= 晗RkS(SC`nbݏ/H; ᗖ)eEvg>uȎԿ`lo+6ˊ`-<ʰo'[Rx./.wVUv >6,d rSh& \.7qQ63!|n Z<7ߌ!5K~$Ó{Q\\ .*ěX"U6fwV15t'Ip@Za@yEOJu(w"4>Þ@-1$04tI7lGJď( 1@R[?_lh%LVVF^ub1'/ ?6첊LM o.EqÏx>CC~ҒhZ ɕDr:P5.`= Fn YLwMK)\]nL?D~-OUX+LvE@Hh'168 %hۢ`mj*X{ v|0S:4'|kcm`xXw:?v7`wDz? :CW#s5jA'$rH{/Q#*)qN*ERxKgUp(I_iggT+KsBP? _LMRݷ) g"ǰ̀"v$Ӊ'u(N"e9C|}:ڭQV-xv@Gh+ہ񭰒~ ,ݔEB'}?[\Zte!d2_H"Ė-4&Ade!HU]uӬ5Ϩm_z@[ņpq{`Zz+.Ո;8fkW`78K Jr3voT5qY"ëp+йPհ(~ow/wUI 곥 ZyU{;VQ:D>?{NNN8:?vi^iidJ{'1 2nql5|osg WP|KQ[U6۽g.m DIu!ʄvCi'xlS2[Dw&`TM.b) H1yL[.+cfO @}A $n mr9'x W  ᄈAj{̜6䀳Aוb .(UqW*Ay~bv S)͓ޡwaPB$=5B~dx3 n!\ _:-6b̈́*]IeL wif@aFT b psaaW4u?`m᳡J͑K!>vظxݰ҂{1]=n!8>tfZ-jDIqDI pb D a@gijOBSy9)]֛젻 "v>oZ.ymNx<}K 釻u4l3jyEPd&WMj`دR҉x.C]W^.gΰVCwr,T%ti yi\6I(w]%b H\^NwlI^Z핣91d q%ugWE7+BPʑ,C˔peI|oV 9.o||IáA@s:|+oŝvGk\rMQ=5]r#_`f'Ws0+JKﳵ3&d]:b9PѸ2̖>9a3L$MMA]ʘV=>#u@ї Z亡Ey?Ḽ#c?Y=96G=t@c~A) Rʝ>t+pYtu2^aV$ Y݃&^c{ek/ۑL"()0h16Q|V$^?-#p"Tw.E;F1ɶ 3) @ӊW)t=}k'Rk#C h;GcZŻlcLvnW ". ˪~M/ȬjhڰQPIn3KC*/.ZWW:|ʞf|\vYO!2 ނl ) [_v 6 >Iޓ?ָ,Wb c?#X|k9 9Ae,j$TIߓ>9fڅAc&VaeUg`\?_ %6Pܫ}MdV<H_aBc<Ƃv>e$0yalU!Z^^j@OU"ѣE4vU1)*|xloN 84e{OFRFH? qF*Oʒ4 I-:[{fvЁo(XB Mrv; }&sh.7Zgn)KKo#ժ*@[פ茇HQpg/V/w}}/V/όt[(>"Zl)CxwIywu<@mwldk;[/6.M۰%ƟӰb yoJK5>^2XdvMt 2~꺴aa@S.P!x8OMt쌪$Af $}%Dg?.à48-%GIKwa KvqN ;qftT4Rߦ˷D(Ac/3.R@f/0`qO9S$,"y^ejgGPӺy5 b>ti}E7H5JԺzi nJ]yo(#X[Secb8zS^wAWl }K:8k_4vi͎$~840 KQ)J_*@>_\*_ӗ(_ u/-}̱49}hu[:ACe*_}eƪWt¸rB'y %ȡK:-?hHwZDZf{$9QֆbP6k5Yt]W2v1F?MH,v+!6H ?\gW\*)39=sC@FoH/1\G;XD#p&$oW`JNG i ¿P O8fiUO{X:;[.wJR~p Ho|[V fܹ|5j9},ع'Ȣ;ňqWm>(cɆۀʩUR^!eҟsꚁlL,}*/ V&P#.Ku6v7I#rT<7C>ן88Ջeux~O^GpL(P_fӤ@11#Sg F,3R㺁G eݩN_a^z|/fH&еf07Rkeh%AhJ"WaU 8EmuC[ZKȝ@ds[rsd/h4YoqJ)C~ဒ$02J"6h Ϳ ^e *9pM-e adj>¼W8+c@ԣS6dG0%,?N&_Y^ y6؀%KQF|2i vеk[嵑@JccKPq% mŋyl }┧fT Εf*K˽7䣌klr#V`}a&. a2VM /G! :Iokx|77C;;'ׂ ;ɹНRI ギ)-,6• x#S^|2_'d#KɲRx9^]#q<92`e$]rx}rHe/jʜR8BWÁjD28)VHwC/D6v '7e_“r~.yxl&&po}.$%'V#~x~+]BWR^!v][Vk#XZ\P}r՗x_ͅYΩ2PJR>> k Nr9>{w"/q5<fN0|*WK{P2?/wn?Ml=k/S3gk埞-ͤrgґՈr |Kᙖz7T!IMrW?j36 3sZF\*#rLPpQ8/6o#(x\م9'H)q,- !H@AT{8hl pI ܼ{Q"5]'e-=HQFPEJ};ҹ+z'\-9Bi3"8AC\o".8ڮ ªa@433:碄:E4aH[,.܆YP/ :r]4Q_jun=B].X1[=T+/2z ,G18)6v03҂`\U<2+EDD/ZJg8)+>]]/A]j|zv0[:ejFVSU^klZ5BwkR  }_ҕ|.jGD+Ae Xٴ0]ҏ.E.Bnio#NuF' ҆˜:;<{/OJwA:J+aF@ G׳ѾxdLjrH0v)s U2<1lNߣFrʲ\EQ_Lm$IgþYi8O~?Q;c֖4"@+Vn *rjAE_z P@s'%˺9-KgXJJ /wNIi)v_{LL Beub$ fZ}]u}?u gvLz<֟:eT{]g"c! DarL;cL|D6WzwWvBrkدLdCD uI%JQ~k#Yo!{˳6gNb]$i|'Kх鬿 rȂrW߃r:ȳNA_Y=k0{.tN~t k$㺠;{K,ZD5ΝWntJmD2!瓌/ mш N)_+ M2 TM9Z+@Q XE3h/*;Q6ᛔ ͓+^'gu5"T|e`=BնH* 7&c Ia F2QML1m a.VNԳZXͤ.K@+F_FkJK%®dKkQY\EXXq dЩaBF'?cs:\ecEwvV! F>?"rqf=FOi~9r_X4׵LzB52h\<%^X'3CcAT@qsY8q粈F˒>A ўw#d8屬 6W_tƽnfdO  >+XF ,b7']o̓tq7oYh|@NroC/ծj(n=Fwh*qʏ`'l&8jJTȿ~DB%)T^6$<5iI<˙AKV?%XQHKDZsHjkëk#8Y84ly-CkVm+Q RB!6x}|RUGio2B`!)icՆGeP+.]p2Qыtf<ѳ@բӱH9 vʙ7w=F+\y}Ϥ^Ѹ|8=(gCi(xjw0%ʊ§˕Q8:趿Y?NNr ۅI-2@/n7%\f r`gtw՚]=I^Ճj€:L:pq5jڝ]RIƑK>YPO00@\>Fe!% x jeYN͌QS;@N*̍F\#fEq%wh4Jn,I.ʲd\(x[6I`al- }HdZ2yTa)Zq֗`db1h#Vk$oWU0nOSj7]ٳK)C}vЃBOɩ}9'wn)ҠL0jroխ˚01YcV&8;6cRaٝ7ј,H+WwZ[5)Me#ͲZr/~q7mALq{[HQ,l7wXA$]~y9}[:Iť >1UCI`&E9$%3H$7B" |vߍ@j0ڜ⦔.0LSO}:+0k$HDF& HƗjKsqnGZ,0h7gWTĝn͢sV1vեc|{l6Pĕ oXnƝdy8N DErFy4j$׃_:SU=e0X7A.6%ئ͸gN%_:$ ~w$~>K^# S^frwJ^Ãh; (<,+kO/}(|"SK"1Iɛ=btH{j.:sENLyL,iAEc~T{!P FRwoff,!H?>+g%}xڥҝ?i8|JK#ԵE$jh=l N@D+#d'Ry\~]eo6"G${_dD(qs%0JK\ifB)t`8.D0|ѩ mWEZޑ~cK ;MeN@7)B5UW&*(0aDB}@ؽN0`x8+%L¤ $e>D0-PZGJOJu9 axLcĝ2K))>_!.[2r`7:CE ^F ?'`a֠C*>ŕTu% kghdPy.V09v8`1Pjl\n"\g&a8z!`#y)&_l] X+;$߽b .K\ HPΐ~~i8,Wݽw !g?e*E $C+0Zl*z=gngΨQ4s?W^dj+Il52<_88r32;rԹ"]n8FDr\*YD܆o/ mbG<Vc'[b)C֋x2(LANjzt%CkOdsa#Ε sN(씲s L"Օ_^/hH塘SjyIp{aEGh_Ů߂^3jAit{"CMHQL 3Zo]s}eb _WdiA&WU YBf^muW-\Jy.[>wTVG J /s=J!J|!RP$ٻh$U+G `e LnCg>:JAY ڧw?S܅lLZ+k&A8S!ё Qr8ٙ 6W6(TH<ͅG5޹E08V;=HT#;ώNͅq>h.hy<`B?^[݅S4Z'^#CXWL ڥ ҞRǣm4f6H0&ˌ}> bƲz't "}T"a1ǒ54 tXT~Vax gIp'Ș&4cJv;ROrw]unR9OhŌ5&ۀ5j kHL8 _@5?Ul5620DYU77,~[.nc^t4 2 8JtM(ǭ2!][\TwQ2L#ˍռM[#kQ;# dzEUi&)ÿEKNDvK\#VRPk5=e2Q`Kcm^s֏"r?r_o!<]qQ"[\*HY2'W~XlrUVn-W%E%Qh?r}du  s_0HءDs6[#ź/7  -9A~@1!^GH:ϝSǒL/vFx9LTf6nAfƟJg4ӷnǯ-L0\]+$Ӆ`Π{!0Ǟ>2!?;L,J>`@4R*wFghu[<6lrQy Ąlc^2qIu[y&l?VvUҫ[W#jP6ٺw: W@}v\UNN\Q4#f95ZAoIZ-*&݃QyNDu'G `OFk^7(%½S"L?1I36sJ| :Orx[Y܊F29vl4=nBp!M<w>j9D:vC49|e (&AH#_u<1CzFO3WI5!!2epF5BܤQ*1˹Ձ EG_[>GE+_S3CCF-SpY)u$ sV{"' Ü^azH(,t\xw2pL?Iq@eJ7lN̒$^_FNE*klYւb19m*p^"D9}M:ݷٸ=uq>^ ,4ه:|rZu\f1.F4$~Pa%}S#'9m0jk0BRqz˙ Ğ/S#0uQe'gATW7Ϣf!'^ԂiQ{CNOeeBʹRrnHQ&tے,$s6Mhh<fwjHj~>pC&b1;Ypn 6YEQ!/22}ywX>s1=ѽ\װB/<S?}FN!H%?"Ř\T f>2-?O8ߓoΜK"|sZ1Y؀Ü]ӗk7y^Ƹ7j3U6]+ht1 (sSrBwO.|Μct7i, lSAݎ\ @TT8E6=%V6E"0]wEɲ74ν΍nzB=/CSm;{D3Jᤠu~6iۼD; |[.." 2?-_r]QِvzfIԣmfv r@>ʏ.G %^J tGd(^L9%)nX/FR1ȥeh$<$'L l#T,- $O!yc3h Ѡ|VM)dClj͜k<ZɅ,|;q6N_U'X9CN~(`μHQZ DQa־Jꚝc.5 U8N? 1e<F6M,' UY?SGvdN QrZ4TfUsz"}g ɩgQ6vբEqf rK-3dB.{ky,f=a('6sVj̲sT7mBS(ܔ5Hh6X MFRjDGeiI#\ѺQq- @ .. 7l}9s8}?׏4wy?9<|Ϫ6M+vLtg S: ZĹn76jY-roc/T’2>[+)ŗ';i* :_AxtBޖć>e$)wm;E=Fw q`v([ClF`')y˾*9EϒKur~.'b^e:[:tyq^26N[AV]ba"%ɞFs0SBwa_?~hOGyލM|dKȷ,XNI xܫ-|ܑ5i{BKZ01Krq3WHѻP 2`CvoW 4bIX*=϶TrqО,.y^پn[Y}0H/. z# *0S{@fAYZ &ЍQ҇Q^UrNt|:J?^\2~>*U=-j=<1 '߹GN,5VNta ѨN 0'%#qɍњ j(Ɔkc=ힼvz4|o4 YT}W1dvlF_WY@my"~-y_ l7oo0JS8uz0[8I!R@~'v% xRukqb9j m?^xrErheӕ±W= ~G/b9,nO$]^^g]T SI̫Ҿʗ=ɍagu"?s 6xT5m8^qvAx DZV_LxE񊍣 qPqb&%^DCF3+7HI,xtD?EK)I ̹2\(o.RpmE/&UNe>.ꑿ,;VLT :#۽SY!vF ahj†aBuec!o7x Cя@B"tV-s~wbQ'b,AV(~ h̪<ՂAኻ@ex?MxX)l.zBxBlaʦ0'붚ьu2W(YGgQ( @}Ŷm8sHXQ hLexdÂ1"V=Zʏ }DCHcx$$%h.mO%Y̙cLi/w|."D%, WQؚͫۃ2}nvlUEg|T=|jM*ҥ/poΣNШft# d>PB+Kٱl\\]@x_˭[Ohn\WR3|>"I3Luӑ:ӲQp渘Ghj;xà]yClR^ EJq>,n8B0dZ-zեRaaQ l~a<ÿ\!.So \O9KQDl>iM@7Y'xX%su7(/-t@S*ovs<Ia3Pp+Uq ,h-ƕ۬'hqo[Zl8c3on;zЏk|N|Ѵo$X/lD9;#AW9;`\7; 3x&v2YӴѭ /j-):Ӂݪ5< TI+A 7ǰ/!ӱ|@ aɤ7,Y]mVG\9\}5E@naj^ Vc\'؂6N{`E2'*Tf\2VUKwo4mζE(S,ʃ0HAZ,] F/,T6 ^⪁w[ߞ)-y5e*V 3ؽ7 }$?Ҁ3cIWW4LŮ#_jh9<͟FOlX.t@;9?qDè8<(KYAF5rY4ZBg&ez\yPTJI -|Ɲ0r܂IsʋGS*'%ف*\╏wg0:J<>Z%1/ꌳTt'1;w٠TgF߆6Vj7I*c+YUʝTȴ"K^~Rwk<u1%4.z3U_w%3erl7F$zC5xq[ C͈^-ʰ]^Y;X* (iY D@B zQ~[S6-z­K C> }K z7fܖ8KYVN@xm$˚}9ܤ_)Tz kpϡ/=uxBz<ڌs9.+ IVPO\+f|؜l>Õ!5ClpKf;`w^{ТPMxy)zzP9y(Z){7p֧g@ޛR0,SLe"/AۑP+D[6 x#sKI5ֳEcB? Q!o1:nN(jE(m =vn*t˝b>xaF ȍIvWEX膕$NŢlIO)qL$uF:r Vt/Z.SH|FG)ht.ZF"ܴ6D7`6NzAR2p1*\ӄ/Eʥj|LJwh:~ '2O[OA4hPpGL]hI6E05 aکښܝryeM:Z&44.$SY'^ӂVhi ל}n˩3=@DA0qla-Q2+4DXcr!+&nd^{货ꠛ2O퇣OHͅ=vLtN~E^O<>W2= ?)Lrr}MjTY]]lk-`1r65b8a:˦ ~/Y*ov*ek{? x1І8"ŬngVR}}YHdSK$<(Y5/B1ފ?th7pse&|K2TfB&Qj nafk)dPP(J;06lx B;JOi.7DF6\b& Dⳃ|'RNdS4(y!pNrH(1A;G$x1 :^ PiSoᬛ? O|!?K񒦭Q!8qj?~{RA`a5 ÇϤa`][s`/RMՓWPcȒ7j*GO \ 3S|8A<ͳ+od)_rtfޑ2ڇZyY8Nv6QÚ# _ MBAiAmA*z]/j 2JS}꽣sQ`ĂsiXa,A U;^HaM5a}cnȎ4*kאjP t>Os7 @B F ։+ 9hs_ )]e'ŢWfAO6V%ߏ t$M tĠ3$jł=rNne+gcE4k@,*2ƆpW#M߳:jvX5,gɣlQ[[&?erx΁ʥ*BJRnȹ=clA|7;Eu: __Znby7 YspXwd?(G.14K\{). bo 5=EPSV?D%5&˘ÃAK8bHA^.U.XN6 XfӢN-n(qktyB[˘ȗII@?L#|9?mOkZxv3M1mD-L!r,GC45poms w)x;X5B!gEC#t)߿!}:]> )c1;q|V[ ACfGOK+#?N scݤUannUT3$?R1ՊJּ_S&tԻR`|?Z eE9XxЏ3p·17Xt /zKl“:c2mY'qQ0 WYxxGd J=LbZpp|nHl0Yf!i[``&dlp+Oh=oL܍BoSBUku$9mdvdn~ObuWr>r^ @'*%;'C:t;|Ѕ6ؖ!V޼(K]Zz1yQdh$E]i kGrH:;9gq~a1뱘;nl8d,SM#. Z>Iq@vch5MA)%8-]*wFXўwyUI8L*>N6湤xb*BՅC%yt"*-. ~AElq{$nh Ӕ4 UwB%W|qCMQKpT͵RPl[>:_-<&j3wUd`1"v C|v3Cd5."H7 .չA(ຑGÍXs[1q77fm髄Hd[]1 vNe:$FQg1nHEB>JUWd(Vө`w^RF_ZHր厛Vpv;,O0`pzU_b1>طjĭ\Q^v!A Cњhތn#Crkzuɚ a2bbE[u(l ^7pE+e:~}ISOus(oH^("n`}yVoFi~CA00I(9hԶS 6#/T0$r͓oM.;٩9I),dؽl/4.V0˷^@~ V OAJ \HJ1;J3 ( }<؁gҗJmQ!)<n 8] }'#!)S})8G7/7,3jwD30&rQpUB87{UNESóhkN a2za= IzƁA n7) {w*zJv(!Ev7(xx*j5eX'&VuO%~/a|ȡRq|amo%w Խr'fݏ d+K9b'(5~mu{ݬTeS9c:+PKX1uW3eaS\٤>?뮄_-ϣXD>z(4VcGm|c&'5[ni^.⻔!PhC9_}ɻb ڶ"# |+z73nF?'NE8 tF֍99Z< єpIdD{4E[5[[. K x"j}jS5(jnR0&R>siJaSRz >švtm(b_%pRfG)s%D=|_!V\RR!ĨsWl<8erT3O`-,W:mK7Hų}L wBfOc0=vS;Ϝr|&xoQc->-'!w3̚DMQ| d`I_ʈ gA TxAa9'W[ώ|apTNaAdqWLvdd<ʥU"G;^zVZ ~1XRsfuV L!(%$[X< JS^dsV XJ?xrɿ H N!糫d9r UeJaDm&šUѻjSae(= 9O2aS` $ RMJA,KUGO6c 8U醅+`eNOBBڨTBRA Ĉ)fK` b=d4{5(Kc:w]4ޝtJb|7.'c6nԴXjv͕{_?$Ex|tVV@hqh5ȶkiqo"8&\響X^N@g*ag?G,vgYQ-f/4x^6\r^Y ŗ?@I;NQ"v)КõH H5 v"\*)JjH }Eƣ8j-ʒU00OJj9Vt6l|m!27FuwK RجFDva cv)S Z }#)*Ԃ %9 {InҢ$9 UbZz9+20TŽYI>+6cRXЄU/ݒ~-lT,)-IL{*i8pfd>%7kE[q%mq/e݅p/ILYzYA-m:.`l]?kZ#A=5_g 4Q ],!B"EiH2C 1:&!~Y_<%8St.KܤVx2|Vx\d \gF.Paܢ#Qx'Ġu5ݟG 1ahݴ~]:wkm[E-SHМuh_{ޕ:h]>!?nﮪpWue9cV Gi.e$SXu~hLѣ޿zgŜs~ M-n++jx6r+ [禆.4V (T$l-R8a ;[;; la;+$e]WUlr;O6 s0 @^^dFK 7/2B.g+)y1짱SDwRA\!ȟy >%0ťrF hh˭!;βnBO񌮖! ~ ו h@t^VuN9z`7vn<>>XPxFb|8:+U`V7IN?3 s-؍v/ eqHjb/L RVH8kH*= $ĄZK҅jcoqdžܸWCZ3-duL!z;|/SFZ #> ݛ}a   Os"dXk7#LBŘox?Xu7 tf5:)Dw=Wuu5ZKJtoT虑g6XaS li| \kXlB>[ļ6C306з^6y[#p $'KWp/܈^!yH7ۡ^^_Vw Ѿ7jl2;Fe!(L#oJSd=٢n<25҈ !Yӏ$3ߝaqS7vjt.:nz -",[P j>˂wnzlee2cYmd eb1LЪ˕axm!֜xt^/B440'Q'Zo!_ 79ﹾBR6uilH;u/Ti fOO8;W{W^u|@8}k/x6 0.@f2=W * E%Jt "'If(7yy84i}J#Bj!>|Cֱ^(+l pE!6dP5qו쓀0tjB$A%Jk-2, >0+P`qP I/-J-zRH0$u'C# $5'SԦ"L7?ed)ےS"9Wuq>QNy2`=m"HEk/kt"qa#k[uv-6+v[|6% qr;~I=IR[#Te֨Q  |#khbZy׎S\>:l1GqE^6p]0sW<<ג"R&8rF;#bAa>%4F3nuA:A)0&ʇ#t+nTrVg CKYa$>s9Hn,ИkFW3N6b>z@^\]k%B0R qKoI+5+(@wn˦w'nb/=(z?U\Ԭ؇cv8"W䵿$UeĪ_xc/+6%[ Dx86GwsGB߄„ $ꢓ0z/<(`mJ-()S+(<)G[cr>" %Y/z]Q -K "#i҈:\YM?,Kuԍ >;y.qxu իi2zU$A(}zG?Srgr$W>b^dh>Cw}iP2!2kW3UN--6.`ٗҢ-?M||)Kh-2c z *NCEd$@&q pC{TfI6z,Yܥ!XG@6'S ~_ G9R1[gE'ུ~FpPS9[G&xzk4RyھBM7:հ.I%`KfN2kd@VA4΋fb_>iAJxw} #`_9 "-_dIkBJMhӃf؟ Q(|$` JH3#CIr$yB9zmY^\bK"V / vl^9ۚ/T4/gQ-:؞!ҧ٨9W[&zKRlS.GK3[4,SWd~()o^keUS6\m!`I_"R$ BZ ud%VixDWRJk!R~1)\Ň)u D ĉ fX"#I,\|Xb?hL,9d*Uvڍ7z^\-q~ *$W%;YIt5%BXMX;ɖs jeY-J"3L\(8`5%y%2O(5_L/7sϥ!&ky`Z [/Ѽw-Ⱥ> JqքB'o}1[Q7jW {/[?G>MLSf@ ;$nrP2t^̴#0-~jX)$ah2b>!V@<s[u"SL^z:EYBR7+YO]ag[:׮I`q F+DπZv?M[=`t+,+SP@S[Miөjzu1G]T@fmavx%yW>B)t.ȷ[pg\?+-9sMYԛ`|C$v,8a3 ``S1xQac 1!(衝i}ۑZJE<Z̰gaQyj_*gū]*v<3h7he_JSW>Q lbݧSxU V,/}c GvK$F=1M3fzRE2gǚpnD@aCc|sd)ܴ|oi[12YX] ;e2VwO(\?ar C(HӥvbWIƎm$+B!fͨf++2l6W! ܍<{uʱLarQ:4Owҿ:_J,Ž]<s^!l3 &+R-HBmaPK%S`ȓuOJ/Z+^x}3Pwf2 Vi%jUsf<)wu6|'m.EY 9?pwwHRX3gZtbkQ*,gC+v70h^xj5< {ݭDnףqkI 5=PT7hӛBil zyZ(b<W<_J0.D2:v!cIA24rT/<2cxN[!D5:S_ kܦK"{,IRRxW{MR`Ia5x=T|ls"9T AOzVzTK0`Υw`2`8Њ^6m(&RT ,yd@HU=@Kgxz P))qcf=IMꜥPT"% W#ֵʖMS ~7mZ'wZgZ~l~w 0Ϧ]L!;ROɇA]$˴K=g>'PXN蜄-̜*笕m2?qb1Xebb3[kZMW|4n*zjr.o ~>-cC2z m3@OFb,ӦGb߾iI0JJO!G4QtHp6-yeE/SIvuT,*3"[e elPɑwٌW?P&VDA`gy{ 6g`-pց{*\]c)!<̗oe9 4;2\<3PBj} `785,/Y?킆CCMdc}6s`G%p/`[`_ |!.X 8aU/vkW_!]%HLaN%ߐN\&M#aȿ 9876}c%eE n]a⋦pTy(\~<O_@灷$xxZ,-L rak@<% ю/}ʘɐ&4^vGucs}4웨he7ـ(czc{ѽp&n4͗&+:ZvGȦ+=5E7>'sߚ)XiGE'. 7C?x5[SfJ c+T_CB"|/Q{Rh=e2up߮-šڷE Iޡ*SOKi!Ve(7{7:(PvV.}fE&'7b概Tv[ຯ\`pjYi5>˼%T*[ 8zaۯDh+G=^wꪫ-d-rLqFTYrI:|'>o)&uE l~y3}"iۜvփZ6ؔ#{aG4B2q`O}D*ıVu Wo;T=԰i# Ё*O~yi |둷(ep 3N0|LxVP{[L\ )!SGOzӯ0$BoɻTMa-+T|W-)95RqcChAr@͖MF[> 5W_; ف8Ղ4t;\˦sF=uJѰ3$ʩBc” EJJgtx}J|ACMw"^.;џ rMAbYϣ8(zav83ڢ!vc >))m( qEp LY{9h:9szm @R;?g; 'Ka7jxw`b,21j_zV,2]XyQFTOQз!V mf`/۞?|^!_ؗ7V}Tr{CXXւ|6$zbTYsnE`.ٺ\=eTLSFWs4q93fwdU }~+kqu*м]Ga'2kGvQ5bO4Ӌl_^_!lC(ߐw^ALX;m;FaSRF^y?l9V9^p׮hk2Aر+܆/<%֊EI{TnIv4էkڊI6[![xR]z,>^.ٲ=BVl._h˖~^b49&~Ifڍ.:aK1WP2!4z4/Lq"A=֦ip=lѝe[1oI4ps)e\y0Єh|~a!Nhæ^RQzlY U1,邏HvD?< 74S!m@ND %^ C^Kڡ{ϻ;05=ڇfVL+(eidce_@ؤ`PȦpn6Smj5m PE?VD6d nHêR@rl 2wG#2;yTm$ M 92*}[FGB"2_"JW.? C䓮PI5ѹP1[nѶI5FrdGKTԢA~0*N.rŁ$rjvk-NI9j[ŪSvZ$CC\,ꥁ{%NJ"TVkpzЛLUhCZX^Bv,kdr e@?qQ}6|߀D|v^@Tճ)Sn@]LHyYR>#{ Dۄ˾_(uœMHu8UFmbSTV֤LZM\gjӥMTבXkoŠw%G3}!eQ3A*k'v9wGɰFF4]J=KvBP%7+,K>1"2皮=q? )ӱQŠUFt._ntj[O;"nǏs@_Z:U%GY0|~P=ht Ä`ˍ6Ip}/r1r;Z6-nʑKPPtpDS8bft4 #zE/RL.rK%r?Ȼi sD~t;q B,gTX]Q]Nu~8`wYIk9r%:)}|=иlZr%!ɛH1>L4"l0n]}ޭmvw%7}I^<;)fK+Y}=fm[d<\4C+ Hɍ(4w$ 'fA%eQ:-2+i_%)?_il/g??3?BBsG=g?Pq<ŕhw@0sҮ vbOz8<*kd]ܽ)Ģ/3< ]ג >pL M>Znä>- imic+!VհyTݝ{=sI) ٶ05r~|Ϯy'e9HO.,`>9L$`7;&g`K~I ɱ>#?'㡐Z1gV`d)I=|;zرK+>w#cЋWyjd>~q,"X#|01Iy.ꝙB@,5R>4iVn )jөx2T45e¹?5)\7^]uҰ9Dî\y}Z&]O;Ւ ]s>e|"Q.و\V=qpk^bvJ.ylhKm_O!fQwy")zm"md`hYC.ѪaO#jf}K$;=~>pVY)*2j75V~ _T{ Mxμ^43$x&vf&䳘miא=& $޽@߳'Vt.]L;zÛXbfV-%u#?uʩYq4cMf[~Yv< 0i~*1cR)sVxxI:YXg Kh7s޻v8slu;f+l*Aȹ'vxX')|˟z>F7$79Ox s,j2c&EVn0x-1EHQKU^b$+;Ɂ"Ӵ{{1=݁+4zN&\hp8 UE~z+ɽזG E2T%nibGd'vS[ =f&QW6V̓"~+]|!|P,moMR[氽0D$odj>d˿]#?rЗTHyd'[QJ<+?K ;8$)rmW#S˼ܰ,#E:Ԉyll]V;Y .Xi˻ŕ М_ b!:;a^0qRX$ZluxXum ^XX΅PXђp_1P Cօ| F'z9w{4TmC ', tSWB{=k Q?iwU5 VY6 딛 ("8 ỉF܄SKlIK6< )98>襼Kc`AFia8kQ*+mC@xH { r:9'f:G&m'dOtf}0p dM]-(jL>Her؞Tzѐ%t$X 3,]*,qaE/ "*GSCZp{:\/s˯/;K+|1R*翕kE?PɇPDh~մf!;fEMnBWЄEimߪ6l"%]C61㜚oLϢՃ:;rPnosQ)ޒ-j/ȝٮ}[@U[4Cn쎒b`|ڟ5GMt [rmb^ G` 3/yf'1*aF]91@0# t}W; yLxGU~ wnGO8gjKtdn^}d 5adB4#:[rL+NjhGYRZ$QNB:V*OMM*A ?]_l1;Z3Q.6qa0ȷ *hJ#U2QN-JN̏<}1ДNT@KLRa6:XV}Õ4[0~c%بo\ANA)S( +`N: }=(]ȏ]3"$4X!Mn'jeo ?H)ꄪE*?'f ZF5_cuJIW'wx F-e}PpF97: 괿d|@Zd4x* 5ʳؒ4=Z J)$r`")Vy7]dhTޮAhtrO0|`"̨ݯ|D#B3tZBi5y$>ԷFv~H{}Chq-FkY#5~ iNrp927FKikM0m۳K#$3> 6gI>70fqv\*i[;xK‚X/n4 B+HFȳk^3<' ъ64KJܒxyn<'qh)zK%E3}{`禮)qQrѺIOA!a+ Ipɟp7n|SX; zNX6'fާKk aܳ5; -D*Sy+|(ҖH&$r|!d- 8e Bs V9m$#^׬;Fs) cogk|W|WnfIi. C-YH(i6/A}2X#h %LJ5˧@ \ :Q%fⲿ 1ƿP3|IqkӢg0Eȫ܎жi6^#a/: t׸ fWczH#L`MÏ@0f IMg גaG7@_D6 5 {lKއLːH[1o}Y_ϱ6i*cj<2'.qPv]4bjPW)u6cNBQ:0y? jXvC1@5Ry(q??$vO#jP>!.|rK9 ! n)K\bju08PTh]|N2^L x(!Jzf5[Yˉk*sx s@{Fsf6: x9@v?7,fsrģh?յ̺nzvuVZvy&qq#5xE I[Ťgm>+mt< (#YKm|u@F̹;yK½iaznD\E0R?#\vþnRu2.uj[>^ɍ+~όiϧt酨ee8_3?!G)G/\]-iI2ݾ}Q}.Gu^WARM Y\@l)$uuqgD{<%)KK*bՕ^y}0JQ7;>^G3qy:LQF#( qLÀR  :&)P5q?|ΎZF>Uggٵ(4(_ W [').MO{]%KR@I v7E!X!ׅ/H:c<&r_Ƥ8_wRwIz=W(f{`}33Pg&x]G/E0[`-`@'B}?Mh݅0 tIy8N\P Bh; 36t"> y&a<& w@$?5Ɍ*ꯙ'wmvuIjI6 *J.Qdw>"&aQ`^F͈0#rgK$l5&^⋫2uF_頄O)䨺tK by*4j=me}-?v\(7)LJ9Y&A}y4}ז$S%KEd/Ae,T~Qş:r%<'+zss^y|+RnOhR?M֌3tx*g#6Id˗DfA5ɜ!nVIjv/TF9c.Ƃ QaH<núzs}mԝkaCuC$e lPu$M TWfAZ9=DhYYV3I^W}^5O+?;6p=l,ѱ^סξwB3{rz1M~}2usmsJ}23.~W.~Ez0ٶ'60cmhQgQsHc5 ltpe{F[q?M߸AHXy5* 4h.Lќϰ2ޙ/ ="U?AХ+%f) 밻b8G)2mEO2^7lNp#xg~-`$66Wx\QB:x̰-Cњ+b}#[ÖR\Gch].)켥PF+W@fI 8P0$H+oj m֜S-^yق8 QwQ2pUpNI&Ϻ __K˝kԡٹD6NQiTפj, RA[Ei/GZZ$y |pUY3+`K;'Th&q'cgQr-Z:N+x:5VH16V"?R ]ߗ+^_#nvtڣA!N|#)Y>D 0bIT:YdWZۜaVheu녛{lթe}Y3>̌o#;k`UWep 8{n:a"#t2Aye$_3/m)N4k+Ið@Ln{ke0%z,8`pYMa5RFfP5f9L`Sa@`X<ʈơ;>̾l谤);t-$Dv"$iVl ];{d-q)7۟'qJޝ/ O2{[]!b:! ǧf|[SdACm6iQ?e};r`iҲ$̿i2b8KAy$"Ba  v+O3ˇS ‡>Ȼ@F#d棺"n+_2ikҠYv9zPg`bxb@$`Tl0Q1tSzTqn`x't=05ŧTJd0 VF>ak0,#_/$1י|$_mҎVϤ٪T1d+ȖV 4y#zp/.R \-MTrwϒ#r6?x|޶'W½аC!- Y $.'CO) .u$p6 .?A/I^<"g׉oOJ69k5Nڐ~c̣91;=Y˱Ж%m vF:ѳ]={I=z6zfг_9t^+?i73БyBxK2Ju;c,8F0<IĮ[iZaYq/Mw| eGxv3I|n"0H-D/a/>9Q*=J*yxcqݞy:!_OjSDzJOn_ۜޞPZ59ўA55421>w!q::|`AiC76tB!'LtoUVԫZ5 ڀHs""J߁˹-xo=h=Zwq[dhax0aCF:םQ Y7] cK/yOIF4yBqd AC"T/u1 p/}?J?*9иrx{ͼ{y%D<#N_rr衱H=&Af` n L+0_A%Gmbνly^&)H_.f\\\Om$.8wQF-w^'ﰑ184:B=OAădJ{}qӚ-z†PtKmKW_%E@!CيpYdik/Z`~[sl~_khEM CLT+| @~d'01-ĪwB>7Prifƙ0-COÙ4ܗtBp؝A&İPܰ :RR$x[hQƱ*?a&o|O<~H V,{03Y(O7aB-XW*"hrggB|!47i;dMIpOwtό-4z$cPh IINBeH s ^ُAُAn:MVۏbQ9H8 }=( LSb:fHz4\z210a uP2 Q\|1dƣ6o|:*wٲ]̽>HFr ʜ coodјT_EW>bSzal%d~HqC"ǨM%LԸ{}&Ҡs%|_GM?쁮8`SC Q[ qLEopC1HF##ߍ\bQș,D'fI%1*ytɟH2Y!%@C4Wԋ'VDv@ ޵ȟr0 @|[T[4ݮ+Q? q Ҷk*cq=6T%e&5C if9baPRxr:)yLO9L!)eߧ)*D1t *Oag3-)Y'xj&ktP9tS+yHzz2ѽSeQGAH_I jٯrZ͓Y/O {M#~}P`>x5ǙdzWCeNVJR~m:?n`ثtNWN]y"KJoB L @aKro2ilKLv#}v񳱏8jJݎc=!!CsqԬN(1y>fff!sU^|K34sg:gQ;CcU7g\_GS N4O\&rvUepU\: s Fhۢ. % ̄CSl'nτؠ;Csg<1B}ui+W)$镣A|$e=v*'ax{ ?;ZT2WP4x$0ETc hD2:x8REysqm{;+c s[hѲ3Ș?Kt 67#z=ՓQpfR]_ J hWdцw>o5 qx;o QsTD|0@Io: pTJrF,).2ZHrċV>[c YfA"  \%aH #qG/p) 0wD=c!3ae2L6eϱeҠ(o}~SZﱣq.?cl/%=*2"Z! r{2>W-%6HOmCOyN(ryQ1>*iZhJsl_켉9dQT+ߊtCj'+*@u4.1*bgxM-MIex_mgHsff9rU)uqE'Kj3Dn8Q7bHTVLbumh^46-Z~ 8isvv%$HĜ?\ jj7 OY!Oψ \,Ǫ+=OJ/ѧ,d5$Ķ~u%sVVѤw}%7,z0_ఖ=~řgk O4qbOw - )[u CŴ;*+)ms.q܏w`t)uسM$f[ Cy MÖ%svKYry@˘=سcC㿓bH{0/"?b|?ONBG=S\#=]cGSH0}eoRYrCWaVВ~#M}EFüCH?yn.#7v;ÒJKuq#`_+Kb)wr!`etb.Sל zm4yodi[8VM-' $@M\ .U`N,ssg2$p2眷Ŗa" ?1a[z3jvߪvp4VO  H- [ge{$< L8[{8'LjḅܕԽ ŢE4"+iyࣱ 0j 1GF}9oKMΘ Z^8?ShuKr>lHtf;?naiN'fwBt 0LV33˙?3ꇦVt0pov=Gj"7Q=#qbȟwgh+Cυ 8+'`}28>G(n'ٜPid ݑ$><{f~=3lbRpWfjJaWb-CB/Vyٳwa#92!C:m9n覝$M0 ]~VCuuiR{q0$rxvc;h"0f-vbmX/x ׉fH,pe 2U>\Y|)MPS CO7x׶mR䓆"Jl 5G4^#jqnR&m3A_zZ.퇏yn<䙙&є|3cG!Mk.?/t}s:ql:>N/כ9ra]6VFϵtAU ]#[=m-I;]]+)шfIw{t \HfI܈q!ʂ ͍Ӕd#yz j[w=#=ѓ`TV#ZHhY_j"{=e_xyԒ% u DI|)'X(6b8$qvgq "/ɳ `D[ݬo+F'dJ˹~?36?<v' m(I,%Ϗ%cdt@}#)#Hч;!L8Ov,`yrZ8Ң~Hc#0n|%C6`"vQ ڪ#_ᢗwU~7)x.1FXwϲwwf/[w7᛻hm4f2) & Km6b&^y${ƛe.[3 +?SchN3!3h[u5X.ey.iŞr|"CG}|d4"׃LL:~shq;Eqn|Tg=句X;uUثʥ>6Z h -X5bCxZpk").eE\ǰ,ĕuR2d>ǘrtiYT*Q0`R,՘ft.gk@smhO´+OJ27ü<elJpbg <]>MQ?'JCźY8?mdDR[s_ﵓ$W\}?[=%ꇉnDiZ9=& Ɓux`4W"S#h/! P5-0b7Rχ+Q@Ė w[ bL<; \bgn;46ׅZ BׅҌ60`GzT rrގ7v̟1Cӯ~xM0Ҷx+s'NV'tS 6 ä9:4$cW1+F9Tȧ~&=CfS#y SoE_Bn֩f4p(;l񽸊?(3HVoȕ U,ߊAz-FԂtu4`\OCNVq>(y/عk`)G>:>bvn̏_۾1ir^fY.B%+ӵ^* fjcq'%**)W{{D@]j& P"ٞ@AEEhx0q:->fr}-~@xTUv \zQ1Ee@tKJ 7pR!/qwCцF{LcIoKX&+O*k#Ѕ/JV3i#?̄bQ3c[ 4B)hlo}It|E#-0K=lfER<GLt 3H*x9 oXFۿܓ)`d9+ Qyi-ΛYd jcbo}} O!UMXp`\Q4NyjvLo_WRƞ.˸gVl SbݠE˺&YlMU5 )I.a ZQDZ:1\5j˩ˣgDĤX7$l+İ2/T(p!{WHLfid8uM̽ 6Q]jX m1v-Lء(cwA^F״pBXbHq&;`V₫35 jbV't vEYzρӸ-}B,e㯲V>dٜ<9r,}R~y"Sn%oqWޒcgGϲ à^1`Fs ~*ŹIS?OwuPˢXV' %@)pRpTDh&9h}Y?06JȓTN& _$_*2|ZՙHZ 0Frb/2АQ[LR{[`Ŕ;tS@BHU&X- X&@۸-zR྇4j2{]Eo6$$$ؼhIS <~y u\?r8U7֡'ӛlt3gþ@wA=UdžSiM|"Ѿ_ԾW 9۝0NJ; ۙqwÌ9P<  6 b4+u6 7)Sm}ܹ-wd&,/h$m+?ޙ[R)$,Bjy kc#Ը֚ZM1gDjE*.`p9RZw9>N'<:zƌf%]frd#i#$]c^ɰrzYF]k10-0q<):N )Poxy"#K}uO0CTy}Tch[[Ͼ})bϻ;;\ ܔ6E#CyN eʨ0\O묤Xmj⧥k96y+G&HZXMe&qO9s ?t[#C=n osOwEGM3 lt$d{4;FܐfVY K`j~ "\@ x_?$&kbN3LmldL;3ٙ:]fޜ_∩R +l`1qy& W!MR6Сu+W9fAi> )`J=ϋm;a%]ׇFHum.u' .S EM nЮxĈXTFS1/.gpK:CZ`0 T1  `Gr̺}R$:7b(zes zKtMiVH~bc/a<^/?7"Z]$ne2+[//( K/3RGρ|4/ s%bicSr-%9Y.lޕ!Tϊ וh7%*%h%"Q)k3{;F'zrvIo!H>d\^ج:?Y*q!'kҤD0eM<$X.Suq`ӄ`#@'o:NV"&;1Bb*(\1Ҡϲ~dJu;qT`Nr:t0:b#΂1eqk?BeW/"3D>._Fݝ)plc {rhK'kӍ~(Sˁ=R_;uO^MHYjMvC$Ǧ,8eh%q6iF{絪VOVEdxVؿͯt}&6:$GwIx'p Zf%Öpz9x䰿3p:gr?FR`-k:&97be8j(z2-~oFZ=o<{K m鵓L  ;4BhS_nW'?7-#K@i323AFIdLTĪe9'О4Efa ׽oS5M':&ٌT#Qw(pu8܎6/nT_=h!ߍ컰ȻODUT' kê:u.篕xPGQgQ v< >Hn˿͍bq.g2uOY+8GՉCte w O܉O$B/t.Q3Xg5v/#R@@?g)xb+@I5b:F'[֚¡*tkgv:ku bd C;Ľ, =<@U1;$ed\YtW0DVXo:jɻԫq¼'^y0gqy%f ͖Gwbd0ged{-.9}T5$A(4Gf9"L DK oAm{PTt5jHäCV5|ŗƶ0bN3'U_+i@_.msOw`T?!1 jXY/N\n0Uر,SA\у{ѥoM0D[46J[D"9` )E}*i4He\Ί)bӏ`'$Ґe r td3єq1bH%N,q˝e4qb DxR.4][Rץj$`"Gq>2S>mQӎtU%$•?v3ɟꄵPJ'fPX~Yڕ/,ؙռDKf Mcqfm|vd$q:>'B #54TC3uBQ49 ~k&f`)`v 溤Lkd* e)p uX֥#ȐՈ)+YM_a51b$?΂t8.hoeՙ‘SִRwnנ)}v_Mffl) 'rJwl5[[ߒO@H AFK3/(0@A|.ٗ-}]/aeQJz]YMJzC1f赋:B&rF ܟ+); 0E XBXgh{KMEFp $:sG@Z9.4?ȫ·Gy9Rep oh, J;k7QX;n#h59|%IpU*Mr*w?Ɖ|y:;I,ۑdwzu*ݲ*!e@{V7kR׼m}ٙv/Dxe mQI4ҮZ>XHzfq_ gEDW;hy bzKutf٫8_yY9cՠMaXYI]lɟ[PVܢB Uqa[,+w 8.sTB2F]ԹQ?$%l6K*eRM̑KruQت0+EP;I}>u>ZWo=gL}*S?Eo=K}.$duFtIq.ZP4ͥOQNG<e̲^%k8(ENSf,+j>#D38&Ђ-{FMvmw`'i:[LEBtBM,NF@e( :fXkN&XaB>}}27ᖦ07tjArlȥR`Me$̱5׎@M_'䲝GɓE"X- 4=Pc89TepW|* ~W"Yj} ZWvSk&:=^a9첸cvf}BeΟpNk.P&-yn #H8}RKyPm> "ֳ!!٨~:k,OtpB 9X,OGe9i6-j[l}y$وOK9 L?'p)G7 .kQ{܄i;!7▏8_/n^gW>wjw&/:[IRWGGIa_,\wi.a\8qBcPm?[r%rkGkqj djKR|Vrx٦MV18 [4 l; TM I$v2DUH@*1^G$XK֖?%TOyN\Z7+p*Cˆ,) &^7[7a)?`xq7=\Sv_E4J=QoĶfY1P,I_KҎ]l(n LD7č3|u<74|VⒿ}?_`w|P<)?Eu6f20<ȿouFKU!*lU[FUkOq;NlyP}/zMĭ@ɍ!hp#p'."Γs"Rs./apW),GS*K=ʲDC}drHA6, /] >&CHy\4^H; C CY WxT^c*?6dj_MN*b+WY %NɯHt2gA|2`3c"\O\+P^aFtb5SVSK n>UeJgߡ c`,6V 4U LuVy꫎aP@g%cv臢k<]]y,/_}+O} k*Ov-z{tNvtj~6ImFW/OKhڮM7&1yfǂ^jԳpqbDSM"ri:6T@tե㬃lhIs]Kto[ȺsВe/5OW8$]Uh͋ƅS0zC[#rGw èzb&1fMc980[F6z9NˈY[$ѫBfQmKNxWY.TBkt:֐\鑛Ī#NS_)M~wni0_EEfF M [q\baI:&i9ί88I?$׀ QFS-K ]AߛmΜĦa٧ᆄixdC}C✡k|}d{]WiAw,u!،[fiq 3+bW^Eڵ!q-[TWKFSʰ/=H&0J U]ҋ@֚;s{;dAMSJG d 0T+,%rPkIbd/ϑ*<:m.%d3Gq|gN1g:;РgB=Un`!(hnՌa h떈 -"r'̊LxG)/;&LmZt7ZT$ F,(9k#z\5O9f8') G<qV)`6 fPJr{+r_̕>d͑<| :\K[>D5ppϭ"A⍚ַBZFܞ LgMtl|0ɊAap^[|tVO3ފj0RJG!L@O\M+tg.?3 /0@jHCDup).[n2 <(i,X]2X]pvhӅEܚd I*V#a-PdcǝU:ymBEkE :oMǻY4U]e6eZEjL8~պH"72i♶F(f= ~&; ߉AyBh!p(Δ62E@z~oY\WӸ74zR إehQ2(Ƹ==zl6q H>;ZfXRbb6&t*$%@>D>s=DAh\oEʏ+T0Ӳћ9Z RI~ǥw1r,%nPY:Se`d[s~董PG/[y͊`F0KVP9ݥbUo\DTٌM1{Ġ aeˆ)>8B2~R -W.8+<'ԴXBj`2 J:^ -z@)r7N-%MNXs F`BfQlKagp,X<dݝա/B#Sѣvk'~K2V) -h`J ŸVm A %G/~Oi*n X>$+?b`G.y&1![O$z{<қN+XyB2 1WG_*Cn\C+V޻ky>aȗ06{?ah>iF΂x +ǣ0kc.T0089a0hj؝AbY cF枖Y{WLƀ^x _: : +/%^}fI B^.a=T#C1S~X^{e0[I$G6QAvp1Iv YzwIBMNJ)f\l5"V cicRU7H! J3sx )r'mBLVVIk+6Ն&t"V R6.U\(1^+^7ܮW. LKmK$)^K<\l\d3֣WP#H˿mKHraqxvivTD󬹅$-S `#FSQ [UF]mB5:IJ@X=q[!~9ʀS-1jJ=ǚxK=E㞡$t⒄\mXj3 K1N<“t]7!813B XdJҪ`/WG}*BCe Ui,p7̦s.AQQ"t(شo=͎T N4r5q@n>3OD` dj{ă 5/Q?Jю5Cl$ sI:U.݉Tl#OBAon\x5w=:`;!<G9F{ zCl\7xSlQ&ӎHNZ6y a6~0۩ޣXu $YTlsOkqxm0ͿާKQ(f~r:YMZNFq]OE" .~-ZAVK? YΔM~F^Vgvj0%2th 5VJ L՛,&]d` A+N/Olsz0 mJ!뢳f-eWFǧNVUciL~ӵPpm#31*E&D`-BwۄimfAzJ60;CΰCL~/ [ވ.:\#kbZb4qh`g7cigIw<<'C^X +B̞f$fŌcS,&̷:kl540䀊 tS]YUG')'|#歄`OrY3m_n.bsڸ1Zn%^D.Z]*K0oLv־TbΒʍn8ڒ#)7UYGM&8c<"bdt&(Fd OD}n0ڕ.e/ʋs؛-NFrqCla nxlkMGVe4R8TXphf5m&p.U[`8^U%%lmiFuCRĪ%-Rh5H,  x+x7V?ka["ْ3F]{JoJϛy"0ɍdoY:#^xLhS[Z',Ȫ-B+JS}!%-n`"Kt_Iȿȓց*4d:ӽzoO_gW/Iu^5š!Miays_[A' ޓk'rE~14M^MlƫM`W18.9oov=yHKitOs&Y"}=j7xAp9yg*}_o_ʣYؕRYg4f^`j̑sm?Z=1AcG?" 9ikQ'Tׯ2I\%Pl qn 2 sVNpD&4NVf Mf[3OHz`[ DW,X-a5\磰X9KYm9O1X`/f@zfy.92+7߀<&}7ɍ.ֲSv.e[HU̷˻rߠ&Fu+ K+ПߖhKO={Ӆg'MZ{v}o-7.=EZJWvymJZmŰ$]<=QW'.ѮGMDoxOU R=🤽2+P_gnwY,EndfSyK;u"p;‘%uCuYj(-4:G8{uPx@6_Ñu@T\kz(ӵKKTfozȍ+z/FsA$j%s{s~R44Z674Ble1ɑؘu8,Y*1<Y8lcKS 0i޸_Aش h{ؖ 93rfˣ3n3;1OauE.)դ'%֢ ~i)c!8hq frV7B. ysF Vx4P?FٟkGMS5h.nh ! i&wpj\:(6 iu) =vf/߸ 5++)nMJU[Şs􈚪3aVz2 ˀ4w3c蹛'n >0 .ě?::)8-ہ /P.K`9N2;g%8w%FB&5J`Q h"ߦ$\~v>ӖdQ!ŋ3W]HÔ,"6M WV 58ѡ@aEW* 䴄K2 #LMuGxu z UCΪ߃$ +5D\Ar[}a/nzcGdqN@M .7K]H.i9'Y]@Y#_G! V>w^:kv >\479*;)vo?bU d؁;IV|^؂)j2i[_ԵyD.Г;y;.<땜x&땢|az+xH6ֲA;̾_ Sv-HRS/)qxmj1Zcr-EUNke \ɄzNP*+#qg]LDSOeJ`855It琞B D10]~udO @@Eʑ) Vm/6Ќ+Iqb,B"jiuԞ g:Ð!GyϙqhVwxP_+ |! "R22+U;=  >v}.ĩz4Bt |7DѫG ZN@؂b6!'sև<10n%{ Fi?=nXKd+U.g|Hk 9hk[6,B _<7ghG+Hkq ŅthBx8ڌB,4.i+{lJu|sxw='y7 cԆQ md :lO7i>~+0!|g; /Ù|XO8dS+,ğ~.M|'}Oe_*3HWiV:;``#ΌnIb3j2K*[S9sfZƃS2e gYx,HF-ޚ1puTҲ3D~'zRY 4 l*&Z]w]vӍ.q<8Q/RʍQv) }/p$iL/2!h&ܸ},dcsqF+T *r9MlTBmC|N{#em\H5yQjHN)jwص-ɿM]Q>\. c>R\rb-#Oaozɯ?.[@E!9bkORGfh:ϭBevR/6Ǿ~PW:%- hgc)AʄTQ3ChD6Yzz?dȰqx)3.U:"{/;AAB!dHJ:ꘈQsI]O!a{$u)!Y$E?CgzۃF b#nZjEOff#p}J<23; Mt,NntKŭ<yv󯐁*c gB>sf Ƙ!I\-8efb IxT<xKXHrLOE,A?Db "^bb1DZ4XlR-UPE\]X5qK.5RTxNI|jsL Efo` ypkFlYtݖ'b3쒧`3 ']>;*nIXʀ}?hs%1 cp2d)fkǴW"7{UD.zUVn4sTlJ,6-N ъcHq#)Qy$qm(/t adhh_hv| b4(-Ь0 _? 5 'oOt1K,|` ٱ^aL5'`\\GoU'vX7' uAA|\e"LD&U]u!nwx= 8YFVgt-T sD*NJ[Bضf~~&e7G nR &1 fNM(زKWirxq]ēWt o%lDo ElV< 2-Htb 9 wkZbX,Bͮ;[Gl4Hot i(s\r{w7H9n6Fg]*~尾4x$!~)Ac[J0C@FITFM Eu33:]R&fFC%.!=ĀL҈P2I-5H/ɍwtX"vw'z;uN6[ެ4!QA/5m'fUrs?ToQ1A`#7ߨ]tKW!8O+6K^8o_`? 8P>%>ALp Vb([QDu:&.na*%8Ym]3'ȅKN6Dn> t5H.F_sb|Dչ,])PnqweU@+?hs|^;}]$o4?5R-ߍ@.{ :Ë 8Ы@[[8[Q|s 9}W@#KVzHއnLO('C s*LXJG+\D` DAC&ct 8qL17=[. i)xیK.M4O▮OuKwVїnr]Gӣc֦Q͠b6BpXz~ʀfb_ Pmm2Zpd`Pys/aC'J=[" 귅UFVT44f²h눭OcE9{ky5¥+*rDƨ"ftǥè+je=" XK.ĖLZmfGJzq=0nAzᑑgrDKQ"H*D760NU{w``3mHuw}Hٺ|.~ /mPlyگϚvaipwgHVGN nY8kľ9pa:*Ҧ>MG9 QcsWܥ Bغ}m'a,s:MP'aB^Iv_u?8#/+vƆK$u7H\i!nVPdut1db<'r04ntAv8B˩wǽߧ&iCZK+|_vHwnڞFP5}7J$*6KjZCqHf.⎵=x! of<c]ғ+sR 7T&w]_M6 [ >nW#Q[Iiw0l4V,d4L/ǗN K?"3k?#3X;T]ލ8إ>rZ`!r5L\od:!ni)͗|I+_UN{0̈́Z\&[Zt?pUQĺƊ֓ZwM-̃vn\.z9(ғ.+lEqKoj%J@1NH,OAIځU5Ath {?%GWȳdZCX( wapK=_A@Ji׌b{bBtN13\S,7  ӱݶ3Qw o- {vx{n\FYiM-V4,7ڏyg[ѐNk{6HGST=hppoOk@$n]* 72j 0&6|+j i &}B9ԤXej7(A:֎YQ*zfPZ!W"+#%nڃڻt@)+U׺T4]QoZiu4t[#{RX$X&mz߄c:)c0כ+z,(xJS1!&ԃq'0G&ׁfw%1|~>-uŪTC5؂n9 &!G0Ⱦ`$eDB!8V8E0фnn] TӉ녚#[ə|u(!nÍ` N8U#a'UYȑk"8:X!^4 ǛdaŒ2dʄ*";X ODyx:-fI/Ube'K*RShjU)іq5qb7uWN+1bɝ)xST!Y'DEϐhNK+?ٸ  G@tlG*PUVS Q"QaKMZɵ9S[<@ZE :wV_)>Jdd5"!hުOu'%UtOVn\ >:CũhNťZډF.<#fYgZQIɄځŏhwB_Nȟdo3!>Т ̏O&co Ӄi(Jc.QY&g@dC쒷0wMc]lIn_ BH}o 'o2=ȏ65tIzTEP5C RS j=Q37sS&nK0+ qi 2@[h]-C_iᨢpU, cWubT4%/~H^bi;-QG$˘]NRU'[Cg0\ȾPYߙSx-_`IAt O]:O.BpzfC*(uU|`;Uk؅b3p0C]$,MZZJ]<=#(qfY_T/XL.)~v$I݁^u?ӔvLDT I1FExrؿN?]O$K'yB*kiAnj]Н)1Dv{ca[vwGbΞg xhHK%E}V_y> 0&:Z? ,.UuTlk+ۨjVGg gov30]5 U7oڻ 5m4/4 9,?L:SN34¡>]*&k y7ƙx 6bvKw  {c>NӚ BjDZy.%dH"~mΜ՝gev]*=gyVBPzނH1Sp# a0G t`iFcy=_uKl"RD<o9+HVfL0ss]RQbiZ N,bng*M-D4,% 8;Ƚqz(0*2l.qE~88]X^ qSZPj1EH1|I`BE͏\t2݄^Bٶgl) \ #EmkהgÅB{Ƽ'" nqZ-څ71JP>:!u+Y7bSwvB Lc~y *V%4; tzetqw=)mfS`HF k~CŰ"_)D K\;e\BIhA'~D:Pz(A wbٕ@F ӔRՆ-:n ͒WybQx쐵N( gMO9>FM#*;O-cf>NFSu >y g&BR'-ݙH,0h$MKEf =Sk3$%&Ь]rJJ2rcʜSQ$]ua-CwВT^` t5TOJFyrv)Vow$m|Kx j4kkyǖF~"{!Q-C,Amгۻv㶽m]udL5 Emo @BM +LzB)gq<"߅ȑ7['z߫XKiM.)xU1M cAZr%;h~Kܐ R`4QG܏ڔ.6FH:)Hw21F11W8Pyn'S',A(k_V<>$󞣀O+o{BD֑0{nwm!&SnM,}?p:Ñ+C:Ma4T&ɦsx t1אvhH+76µhV%uLK<Wh[I6oR`:KiKY/7/1"Hy_3*nogS4EHUfD ;8!Tnlc-χ?i%Q^utufE-K9mhtiM\xQ  ,]4f@/P3C9m<Xz]&cL!Xҋ Uy ~_sԚL?|-%޵hfU,7g/Ym*3;hs3a)"ښee>꿫Ȍ0јގIzm l7RuLJnr!>Q:&rvK8в%)˲;HMB=#Xrf٠ C#rkh6}S'yļN{⸄)47D\ro1i"B%(6 VfbJ䚋?4sw"9乯UqrT<ϭT/Ilw2]HA7࿞酐F!ל\5{:9nUJls(R2 obf̥X1͒ޒMYV.Ri=$6*u=:;:.;*!dzg=$_4À~r)q2M=C vy;Rm+;-4wKfP%yֆ|4;2[:ŞVfj #|Waf3PXB2T1uڑWOҺz-oDBHYs3^?x/|'dgG<\t7*Єni!s 6 4p͎c.ɼDraNa=G._ٻE M{KRgƾ|\r&%bً* TB|)AdEΜ9w&K:&5A,s^+8➬TaPd\߿ Ƌ_EH[AqJ_2;8L q%:UBr5"{Nj:{bDE ;_QWbuBQ&u{xQ[=L ޽/o@B{H #ЖZk&#(xad\ e;9`viʭqo)Ǔ@*.ݶ]YXhDĩT*8,?B/H0KpY.Tb.ZIq*YTlF"W. |hg;icMH!ϻ{Zg}^?Szb[am} i`Yƛ#imgTtkNA%+ Lط[-'sr2k9Kk]^y3} :.f:o3},AL0WNnN)@s@6ݿ.!7X#78ZO̖?BJD-uN&.V+d2/zd?ie)[\_t>F~5"~^alv/?hY2{x ʢjoIu J˛8ZnfYzXw[T쾭@$^)EfZ'?,@J?< oR[_%v4P Qj鰱>T~$w 㾆? - A#l_~Ϙ%69۫(K3a+ I' 6trg~C1M,U,zzkfmP* щ#әt aM,lϵwD;w$~2#<;XRF=nid $*6T{v8DdL|zRk-|Q_"'y+a*YOӓ:TtuhJ \n??x !N31PN u]ʘ H-T"U&OyBtewPG<'$#[F3=hO% 1ij=,MxΆob Q2ϊIK_di]/{Bj h]"Nssg1uچN 9 R%V`Hcac5*8LRB@ F<7иjjsi wk'}E=O`2yFmW2ɐ2CYMod;owl%/} X ̈́Ujč.d%? GBMsBF koN_l!k=Nj/oHaZ@Zj~3LEp#G[Z|\~XBÆjNu|]SUcyfJ+6׏rz-}x<swyzH[⸄@: ?'҆?|Nȇe1DvF QFsWbd0uGd7drs;5kaʴ!da7ب}7j8jE "F0ڼę*޿^ѕKJ!\v! & ςg}+y=FMA9*vDP]W5YM֭I DyکX`Tꄚ#tWah@'рWfï𭔦C)[X5C?deϐY㤂'4:Gv aa!qCj=j:.̩Z'Wy|4kk>n smi!һ+3P$Vmr^/,cKy36%NT6{ρM4L)H C9Yf| Z?}t8I{H`}95័ϧb Ҡ!DA ?7LdIIBT5X1>@T ٣eNa{FkRb_ #շNiX&We CߑQר5οڷoեPl3XF/ 稲ʖt.6Y¥4MtydKOe$CU]Z..JV3K\زD Q ^JMzvBP,it9֟Mn)%.ib)PG=A`S8 H #Go[:A}B}W`e!@wL%%bHPBC/R=.DRP&pqזTZ{q7xS+ڷDڷùh1:zTkhC>dPBN57䇳2Gfb@"bmm+K8kKҸqɬe&({a~ז[vuaIU.l RV0~ FB6!{%K14fRwۂT+Z9JlIi- z^;^ho YWh OFt/P n?!_mt$2ʍ )G3rI= n$[7#H$D z 7c7 rTDO*4TZް㤢逍'q3 5 dDB~×ɲC z( 4ph?u) ]4̠tm>{ bDhZFTl_6-K4r'([t`nhՇ-6]s #ÑM.Ez۳dX8}i: JRi0dz$ymxpRNp?;5ն3Pv6> +==?#ץ/#YY7 wlsh6t\FX/l ib~;,[.g8nByr?` OYv[saBc>\dR ?t3A SƨiJi,wb&iLuPϕ@ao_?m-&M0?ŴQsP5/ s0Y$r d8(Q(%~I/bg4!nJWS4bnz~ 7Gp}B+4=" esQ~Xb ^@YbbͰl"!_ϰ̗+U[I児3bTK)zfrBjwPrخ5nWY3Sgr';O I[;׊(kq,#d`[?[8kk.DE!8ZdA#`wv[Y 6fb7vHёG7`Rȉ[aVړ՟p:ymEY:ojp *Uxk/VWcx> ߟӞ0~t')Amk0aJ]=,Lۺ92 Eb|~6ahʓPCӊdGN8boZR \b2z{+? ]h`1eCЅЛ]bg5L:n^>9 VuJ "- т :>;kdU$x 7 ٲ;\V>ߟQ+Uc"( &g*ތ%vwr ?k]&_>DA>O PC~c[Lq_WҚ?y8.CG]r{2'FŅgrXe>x5h+Sv\}}iH{J ;@&l'R9_XˑB6CT2ў ut#5 n1ʲfnm7 ȡo鉢'Js vBN|GUL af$3۠K8%CAOkr|oİ1"䥽 ѵI8 o1 ?Ƿh[X[vEsbY~ wopa B6 !\v\x2$L}پ~p4}3sC'5KXHkGO̮n^7-O PnBg)(Hv FA%:b0ݢխnZ 7mdzI ҏ\p@acsՎH𸡆~B8J'R ).l?B`:Z󀨸\hj$_y6󏾮>a3#c4'-hrFY|et$+r* PKOMg:mBq\z\ >NlU1:( yjh(~j(Sa0[UR86SkRG% #K!GrD95hʎͿ[.cݢ1wm9ވeNt)p>rn+yRFr嬋0dl.츷P8x!eYؑj$ pgC݋^|D3fūћ˓p[U~>MOmg3Ǜ%;@ &E{K<ó/%s& aBƿ9Fyzߘ:AkfHv[/ T7~zY/q2HME2)&RgρzNb ؐʿ档ڝtզfn":kCJ(H_ohiGO$#B@׾GfpSUM!\S7Pjf+tB!xK 5ͧ^jtB8PBbOCp|mc\z:W(G4ԆZ 3C/B!}XtRwˈw j6OZ&(ĵ}]USsXW]IlXUj%֟G%>-x)+AVbZb)iT%EdViT*a l^A|2pCFx {UGn?,PZ&Fj=>ךi_.D.\{quYOkd#Nlzle W`lŬ^{+z\rA8~= @e^|Le~!HdfF5<_h~;mwm'fr*,W2+0e=NArVzfZaLV~9ݪ5K7 Cݖt\JI-byZ/ J dwo*ӼEE8i |N\ңPNkx[j~Uh×YJ}#FKű}(E5P3+7ʧ)`B%b6q0Ҙ5(  kn xlѭoOb\{Xn|YnqSY\5S)NEǫXh [ȢE3EJˣ#E7h{Tvkb>=[tnFݭpE]+# <{~&nr)r1-t"&j-jx -"uКЃ1!9[܁)]5 [>dq/֖Xv{1ww+fi88׳]r-sb{]1Ǝy%T¦PըSjdF D%<$eVᵐ[S!VO:s9>uj4T.̀_/H?`V'Fz~Q_g>ڸ3{rLk-#kkU lWql{z bxMG2g y 2q`-eՓcV1٧tHPhmW0^*"륂v ް=*!K NϟΩ%p&U}=x=?ՂU=ϼ(u5F/H),V"&a_A6tG" ccߡp\tYw ѫ+UU)_~Q /;7t'^5=b7-kaFGQTCt #6Z6 &cpGbښ.NTߧ^\bǜLAď'kU Q?{-!ʭg\jb,\" w?Gw–#va!ܨҪ_zt!ݑ8&]kŚKվ X+[JJF!bJ9؀}\3.ͻ3U4PwhS$67[D@ Bhcca0Qm$w^E(N :={M=qSõ'E2<Ae4hڢ|f{ȻIRNnP>AlQ]*wBE&jgxYU2Ӡ<6T1:pnWq:οro.ko#5ÅOx| cַk܉FQ{uBv;=}sI-%ҕ\o"4?GTt-Bu#wf.{0`p[14&e=9['T6Yww@$2[p9@{5_4y{Na`M>G'EC |Ab1t|-R_*,Y|%0 u ;-88"K؁4rdf؅ 3鈼7A ۤj|`=阂j4kd0y?S!yخC[H|Yh)'B+v4Ҧ$'X +,O.I~8LuAx -dY`(-{:=) QI|G]k,~u3w3ࣳHHΛ)2}*2|diB }հȟvtT1wevue?4'"sx.8nwXȃx!/ΟW؃bMS5D @_4 pቛ8hFh:ӆ ¿IFW )=t7X|d.bD./8<L]&]~$!\~6zh? ѓcw#y|&5WLBnEۥmFB.A?.~$=oBu-0b [j<5&Hó!M/ܷ3N%^@'g?soC<ҭ?' 3zɢD\H6b^1dX3OV6ȉaw'o]J$[z{ɨ 0'*]>ACJiݓŇ-Ѩ#m>fX&Y| mrG2vNm:Ĝyet*>VDdTsW.K\Oa@4jm^va "I/9 @$|Mb궝@({Œp00iWs7s蕷Bg}M&i k{j;WQmslRRF DkSB7i'}H)eFHM+go~|Ny.̬vy,ˠ%&PXd<̟#DU{j@ )WN7Vp :>\՝cȫ웃[zon$WwD;rMQ4;Cц>C Jb7&Q*Tu`_nFos5Gv| o1kBX7> +x~G2" _A&Bt*7 3T\\'f;WDU!p`+%Ȁͳ5k5DIp(֧8Et#Q(5 ``EJ]c``;ᬷO9ca dc4-HSu%m:FGMע#hj[đlLd{ WgrŐBOZ|+8TΕ h5#T8,x|R+!;*$C%ϹюeNCm$2ԇ'E*35mjIZ9jC"Y6?41ʻXD{A&G葡,#Bƨ_AK(< H!IʠB̾͟ާ3K>! 4ib4'{(J?NNj/k^nSP#sLElL ,htuCrtC1bڬs'V#c3 .e:p""l6\7U7U\|5-a  rM2Fd%[Z^X,-m :UęLFԺ`jl>4"=# ɏi |ͪx,F P&_ ،E?$p Wn`h"ooe?=[s MY)߉OeiixOD`%lݬ#!g9ޅO3҈ST|gOi kPv~4pd <WL5P~ty#д,ݒ!<# ׻mutG!-$nAztE!D ;iX C ',):D ぀xؓH|XqWsMn_0#9ś3Ö1x mj7rBpKqN*H,AD f"V_$PzҾzdPʼUz1E'`qUZLrG_ll0>l> ze蟋"hn[ +"/Ƣ/ˠq*yЖie5\b ir t6 ;S}ZWq9㨨B R ;l´pa?%LjF/R U#Bnt\6*%c^zğhV^!^c.܁y{Vu\wth$z2[z|u7pR *#jpwu}`+!1(Zlk!޻ 6ԁ.Ł9zn5 @Wz_\ճQݚQbC)} ^ŜGCE0iۿ^HwhfaWs 5.KpEEG,x>-Ͻab!8DGyEC%6Ho6eIMT;#yF[H -,ޟHG].D? ϟo Fdp$ݫj\arkWECxqxV٫W3LAhHg%ʾL6U"Xp{y}Dd@wMqݻVyA !YUbU_"ޢF2"LWΣsKhбӅs(x<ΏnB '_g7}}*TBKi\匓Wc Y|yڭ Nr~]]9 X9he{;p('&33i)qQ6[ģ٭R-ٿ ֍[)ogo?lmG2٭-Nޑ 5uC\ƙ^N}->8YaAw+iC%{+̢Ci.M7B4**[Hxe:DD`.VW])B7nj[wE0rHun {שZ'p1_`n[y y3u9I#~#)7Gj-H J3hn†P?rZe o4?WK._8sMsPOp ex΂?sZ e(\~ ~Lɗpn>08I Kx|j}Nu@{j6O5]X*ҥ2΍`X*ܶO\EE/޾k,8tAu>yJE3O `"=F\J~ 3aS V_n"pBf/U$faТ{ЅF,C#A]dϓqkrk7l7p̙wq[ވV QA\WHLDjO@񴜬`msp)̧-{SE 6 IV]bh{!:UIqڇ|n'VkUx%AD, V0Y̼؊(`+.^"^H=IԖŎ9Ƽ)$U2rٚoPTB;Z_n Jobjsd% G\{q|B*;Qt/x&yXǬ+mo gv?+\Hl{3912iŸhIZv,0668J6y* ǎy q=֩>4#F'?қAFJb_B`+alE|ߤ:ؕ&G= ᆙìLm,9cA+OMt UYkY Hz/,;XJr?9Dy2Ю4C-)cK37: [Zy-Tv9 ͜q\TFcDѭLPY3>뼽\f].UsWeh+J\r=0[u܊D%+8nT/)>:< ԚY21 ,wWEeJdvzq<N}lkk OnlK?#e)(nAWT`yK8QP6x~qn1q0 *2G7W#U6>t9+eG*lv R[*c iPDKw`[#]b `,?27 ׸b!~G< -dr-' G 8:?l*`kӺՠ0;MD\d6P\h8(Ԅ(y@aJ3IiJ]#ƕJsI $b+H.^d7D2ah})@8WhEd\92 ~6- Bp1V/xH'_/hn_C=R(0^[z%QLcq[e{kˆgܶi04GtLo ~BPPY'sMrn18\ԤIO݆iWLjG"(@?Kc\7'xXcJ~GT x8vl.  _ ۵dU |/A@-.q+,{H[ h;7w\ʗ,8 q9]Njd:/y%%,M9"Fܿ2 .A*x~П؋T vWH`z4BAVbYhUy/\vqH'Nc|Du""S<6ZxJS\ey2G2&TuYQpQQn(UɪMe*Aohy݌'0O:}$ #HLrc098&#"9|HNIɍc:W Ͳ Gy U{ď$T&jkk7 s&FLI[ՠe/qzQ>7JmS׳3Yk@nF׫C|Iv'2{oX 9m g*lS|f^ߤ o9?WO˺gFsؖ#V,qnt m0.LGC=J7x{׆tgE5GGFP}E_1ߒ8(P 25[>r\'3,>CmWmwvv`>.BFJ֪5AX] ] u#`>G nDpOQ\D݋(_4" ظ>vRx?hfx$0|ZWO5=>8ߦ?)>p٬ax9j1=r;vLZm#H8DE4R S=2ze)<m Zo[ yꠄ x!]$πt`xc < kۈ`nwBl,w?)}Xz}3$۠!qGLtaDؕ׆dUInL[.28#-jeZۣbQ[;R(T/apa%gm{RT0$o/QcC3},V(krD.<fbwPQߋ"eצeFڹ8t)X8n \ l3Edy\J֤B`Y8ܖ{]Al2sA"<;,3``faf/Z"W! XYF mdoB/¬Ѱc0Ьa~1Ai94a;%2>Y9>W/#źȱ3h=nR<˶ mXlK@ܓt^}r7ؕCKBa̭ r-s˿.v x[l l$/Z⺽| (oeoF}ªrt{exUoU^,l3U8UHNtuOXw[|Q*_ _ƊNknELHMԻ3?tuכa3jpr|GOOk%'1nf ve:n_D74L/_9$F,@ry#f$3āETq@ln{t5]GZ]™Mov[3_y. CG4=I6pl^`>.`V T18;FWȇ7_K\ջ۫.]ZɟTW>>Mn&Q4yz9lAͧoN}Z=/׮s6Wm˫͙g}(vP}vR\QW]N񴕅t6RgFi_KP[ԧQMt&mq(x.1X,w[ (D*3 7s!v9m|Q;?ݜGs~+*]񎤣4V~uγus\(UKyَc (&A-[G&:lFm %b~^ ԫۯc= A)5~}uvDOO֛^V+rqt z/UY8p՘=60O9qox: 9\d5`,:T !w$:đ?k3 l*䵗P{hAn ʊ,8Mb/"yLd[{_+75d %U9?[iE*ݕNan1,*TDrPߓ<7*!~.^;z8Q-ۊ$P1V};(FS2-zv_%330$/]o~]'`.WRh+"dċDZ*wRlAIffgf{ R(ڢtxD~f8A{耇6%dr5dx q5ÈCBGuxl{NdۭkSuG -LNbGd[PyEnV{ 5F 4x{D͐]ash-O}"?,3$mLD (4k= t*rz"L/[ J_Y/,i@aHb $6x`/B8?a^:w@7[POPj5Hip6eQ{92D?!m{,:i yBH}Q~$o[Jb-Glt` ѾſT:dJWJ kY(kWMN:Uӎ2G5$H,mo(\,Pf,'"_Lk߁Ax@K09Z<4\{籘=K]8 j(!fHkS.//Q}O5ҵ/yNr3 ,k=~p><ĽІ'[II4QlK]-B*m0E 3]Y؜;Ihk"W{GrH*[ f|;TykĞ r0|Z`GlefŻaѡ_l?wRW/JQ1<$7ݔb%nC Dx?~%iͳ3_B_[[ nFzB %c:pa2_J*MXPU"њLF6%4Av;tS(v߭mBx4frKʷe/\q .}n΢r+P}TB0SA2|H!-HJʫi]dtKCq*ҖA ,x ەGpv~'͙4̏ǓӘҶ1L>Obӻ.lE<2yj#.~E^sNW U"wp""mos;U~({>R?4FA{n`'>\$H9|KJДz ӑw-z,@좍aX+fNwt_Kj$㳻1wX=pC4x MwA B C Q2_O}M|m>Rdy!Y:t3<= ?%= wZs#ɀDnz&]|ҿt'*bsMu3a?YhP?,A@T)2(U'{.V/GEp]HXшCQCM#xѱ'HNUnsP#تa%mwJ Ev3s=[6߹Z`R| 7pv#ncF.a&;5Ľa_]C)9%7>HL!NC8,{9LoGwSwH骏ѨQiY)3<=]>vo }ڥ-n{@[Û1np9;}g;ԭ} _PƧzʽ9 TioV%;/֝9hqo0|G ᴒʗa^]_rE4jFG֜ 뤁@FwWEVopK/Ԝ̛|`">SBK:35\HOi޲](MqKȥ ѡ8cͬUP'\}y?ڕup;ngtpIX`u-^Ur g_+_é\ AP`3&K'!Ckusbm1AsE( F&"{ؔCT#و miS qBk&UL)76j[:zl+%4V)T6( c$x~ h.E rN3gL0HWß`i)BkϞbf)';}b~8/ e}]Luo :`Nu=6 jw'YH~1ce8} ȧt'x~:\(He&DԒ |c#*4ҤD]Na! _KT>;~{x(.9 C HUu" {ı5tr1V &sLj3L&ߐ(7Ff]#OZIr[W| X#Bp K4#Z@(4r(Y`q{|ނ4!B7K1cobτnxh9`cJɯf|O[Cw! ANffE.V3XAA FfS!#Y!3ꈨZ[7$)S{wγT,q[KP5O[SS,At ޗù88t!=:^ђԇջȻ~}~[z\&Xm`ҳԎ`Q `I.vF=ԅUm [_=A- 2Β:ƭS,B2wb߼Y9*{G,=W /$ƥ'4AV ~iu".B;x!8&^iO7?"E|XI4-TҢa4Ӳ:c!-\nQ#.,k-ϞfI (%={y#rf8ܭA FRb 6;u*g 3{y9]IRuu7{߿ؙ=AIi{0 #U藳rZ0%pC?'eza],֑h$d7KV!8JO[&M>ߍ$։ ˪2R650^^߫/аKrݤpo*AE ܞHC;xq"k~́OhܟGM%*1E4_;#9Oi~!T _-C_uGǐ taK2YG)h[J9gb>WF!usߐ'wЇl@d$NTA56 ȚbGnNzOwɶ{C*NՖErGݗA( [A,HlI=uU}U~gnZnSN;I½"Q2P5o}r!%=\N/X#RݭJB0"n[{5aےA"w!#'D/0}8wS % ˈ8-̼xrQwrt'Gmf4ni՚us1-k.~.% x_/>u7sTF~: 3 sLj j>>*i0r|dk,,ڤcm?}T= Fg^j-3{N>Jo)S-9zӅD|b AC%WŮGL*&q^YCּZi&ES{yƣ̍ft<R%&BC+ P .ܳ-PQKsRuKU&WkkOezUP}+f"%թExz cm,r ɴ[Aq) XxzR)bT\ RN;=ŵq)>NOqc\G0E{i)ƥ@.z;RNO1#Q!!/==ܸB>Ho#d]ߖd<^`<%}̒1D]뼅 q֡V]N!sVη|^?u+%/~'a5k{$ ͨՃ;GPaf:&}Mx S q8b8] U\ %}[C+ИIv6rMzjp ì?#ߕwpnuH)_Gn?!aӊhEh+mu뚄 O C/g_`gR g'Tnl "bRUgˑ,&$ҠlqmJ!{0rY %%vUl-2Vۇ}z3kOpܦ%*!:! {ݵ bLpdw .\49qX!L=ƈw9io,$΄ T*oIV'ٕ p[~QKCF R,'@dX;Qf7& @m 3~vB&ƚ]z g@]ҹB74(\^x7 z)o9}@NΙ]Xx|냥JA:$EEJ-_|<`9>v)03xdWj6'~Μ\k F#E;:q:aNxD wVGV\?a?FS?GG֏ãViޡ55^cV%>7Dž {cZ}W;?"ugTaZUU"kǁx Py;popVOd28>8T)>`DhÔoy*ҕ#G=]QqƶBS5! "|n%塞Z ssa\Úؚ}/? [wd\0ӫi6U;˛7PqxYAR &eJ:pOx@lT"k_~U,1d}~& &$?djhKE=\ڐX=oO@!җ50͑drƤ+lKkγ~|%=qOt tC M@WɴzDq*OT-i_+o+oEw}bzY۾=T͖K RѯZ'?Q@9>Dn,83G#!@)(cp|0Qwl>[\HtN۽G#8P=%?G7Xj;7G[#,WV"L.ierێyf[<|:  #IlA. |S^Jp+땸Te mБ LxU z][ULsdsrl^B>(Y] +;{΍=CDfʀ3a'zҦyD[_d"J4dߪS0bQ b^G㸪(κ72 H4yP^A-_.qᵬOCsiL)bh6\mxJ 'fэ)g~Jm4ا\VKyGGAjPKY͋ a3lG"[]&Zr6DLf ֗8C6`[?VV/ a}k7]BFrFxͿs!hH)d8_*/ M mPyi%׾ğhktH_;uBe#IJ5a]eAbQZNL.ITL#_| h2Z%}1Q-sK ]@{Am+{s/x.3cg_%78` #Zml08ф^VˊEmM !eǖJo25y*ܮZz6Eݪ y.΅xh] BGd]B" ։?E9"*;Wt)KI=qeO-ݿI"iw|I*?|#{7Z<,IfA #z)ЏH:2O o8M~@bˣ [UX=-v`4HܒخX+NumRlfW!`tNe<ڥnwFcYźKhmu㐓 Pã4ժutHt]CO'_ؒfcS= Ɋg#e9o@L[l3(:4dQgru ,`QgX٦.EmnysIkٌ.?ی}¢6]fQg3 mfhX*L<5CL^ 7휙(yPbiFAez-ߺ!댩4o"WWXa7WCP8/;Tn1x@ɏzVWuAz tBHIZ_#!+e2{D[FhW+X6mkhYOF [WH$xg F@k~nyA&yU5{퓻0M̪_CTY+-X04awBś('Bə_!']̺͈ e؂[$4g!1D>Nq),M92'r+}>kT,J,-rVuҥKq2-9^N!ǮರVcoTRF?z_)ȯG.r {bGm2:RJ k*s:ԍUcEΜ9@8dFbʍش O#i~R LbH% 俆U*Dr@%ÓcI4~$;: s`PA ;fm%:#dً By I jSXQ*RhLm 8Ί gM[O{jaݐMn 6?Q/oVAerD DD|E9;p?pz7kH|o C$&G1^< kAO2'vL|#BX*YWd bF9EhUNr {"1Mg0EcX\3kb9hjd3kQ&u^!kW|!&چ6 O~g)[JBi> (jfJKvAqTH;jJX>&=զ]މl m(ر-Bń}Gĝj4^?EWs(WB&n3YW|[}"@Ө9۶>C2|f-^yzфY=hd'@+;xGw)nm0jHΜ7{]NhE7(VZ †z PhT@&8}q^c"}'. "a+s]lTuٙ<&CUQf-'&8LsV4kZ#h$j¢ zaE%Ŋ !TXվX -P7 v<954򳜁w*r'z92P\bk|= W @L(v/6_p/yo`^`|v!hsy+̍~ Uu|9Bg?@@'Ձ**4Z_[R{.=K;6c?_}YM3גA.gf"Eaywa>^`"C[s 4S־'$3uT/>1E[s5,t8 SƧbH%fyU؊?cV^ 3'\_frkۈ"7LWTD)V-5cts]amaq0dyIlV|U>oV*acUg#{i9@IVfpK兓H+d!U[R+zJ鰁[7eq/?T1f8386z~cvJ\nT5BP q[oN9,>^ 9/ޤ.f9 P YaB30$FlVw6B~i [m멅jZ^\k}l4݊PrPL 75V_@`Lô (8C.íՏCE[7깄I- AM?yA4{Bl`Ȅ61$Dp`nN7Jaݓ#3Ec)~9/T=xF8\~ӗWT^Z6'{TV.V' a?XNrv8[{72 T1E^e)p5R ʑqZaL.:!-E+JY4J\EEY {ÏGXa.,^0 LBgu)Hv&̨ ؓN.gNf0qAM~_MڀxnR+=78{U)PxazWVs1H02,ra;ک<(͂PNjd :.fnbj~Pu0irkBcRdXX*Rq9,p"=c zkwQUxw6 MWMF!9=2m(˖fupoPx~UU]g+_j .R/Ug'P2:y5{ }Sít`hRJq>yZ}I~/&b8s%bDluaIK c%\(J+٫:}-k]H4j":PPvOoHqDƍI ERmƂ@ g`u"Z/( riI#cE]\]UWwW]@^hSP/2!\ h[.9ge}Yi29s.ys>8*k}3vE-AV\Q?_O*:]rlÛYzG}A3'zGݼ|RV o\ C3 "*8p}j-ohQ(&7cLS)rpT(wUf.g "MQi{0x}Ũ{şSJ#_}%t,|qnyX듴qiV \G?EbJ\>MQ|_^QRxծH{V\I ^Z^]RFaej:"c^rIE0ek80KZT-c_C7nv5ɼ%wwcB̶UMQ][S´zZ* tv}4ť\ @}Đx$ZlkdSزg1]6* ;MQm8*^:fv}.pUMHhc2pI<{Znb8WܕJf`*fv_k ˬD&p[Qz2 EYjnrՃ;eĥd@NI]V v[PuPSS}::hJʥRԈmX#ô1Eñ X [-Jbr+ZZ\q2p6$<ޕݙT{U\rh{~@z, _B=b#(Ee69{K, RT.xt1:H|o3}yh)1y7>ο:2% R1N])yLFy(<޾;=q |\zSk9?>#]v݀Ev# i:t-8(غ>=g 0luZ +2E`L{Kp(|;|-K=w\`SrNnjdS%Z\2O0!XeHkC)>Vf2?`6&#*W`M@b9,J5U7I%:vBk!QxsL k*Zq*s9 |DŽ( tRvBT;R V@o;QcxߕZۃw(/oODPMn³TNV;QW_=]ˢ1pZ*4=H2w (8xjq<ҿ0hyM8 [Q@Q}#x"K%Ȑ竍uxyStP-%6m!$m-Jg!Cז$m=^uxys7 q4c- o(ԋa|'o\#mLcp1krԍwY?1vTj*Uwo*F%iMe7!O=xk z*-4K,7Z 8uӄ,o5;L\wWa;:p;F/*-@y0{Z~@N%)A诊` fj/"!"SW}(ҭ *r3:⓿ \Z0%cܒE 'x,͙*Ve,ݵI|svsLAvy-@CTAG0pP$;"VsdsתS W(*=Tg Y3-+ZW|&rEMx/Gf3Lt⭑\`#`|Dv*W/ P s2u ,o5{-qI{ɂf f3 LVge7 @2ʩh_IxF)fR"J*VdID3aX5*Ro1}Xd[ƪgPC*SyU P|Ŕ.^mס-DrȬd AfƺE56 -;RK>N_rqfB_S[el1AʶeN!.7ﴀ%JM{(Ucܶ׀G d\zJ0[RO77Y6&kxx2`foiBl˙ƫ2g_R rn8pIsyOv}&=GFs+Y0,&i/46:z47M֌qm*5>05[Tdv9YT`X_b$'ޣlbDJp/S!A\G{Vڂѐcc8/iJXwײodF}tǼ0m KTu r T0"qfaБ=PƗ{ri} pWDž[O+n^KbtdNef}J97\R#J rxojl]|!/9<.gS~Z pHeĺ'rU9_G vҪ|!W-#h;drW"ٽ1`qY] U~m@3 GTOnCa=El(I&2ԕHqAP̐¿k8Mi {h?fOD{R9o71 1LYDt-5Afɽ2cqzvn rOeÆ$28Qw& Ʌr/3]"u,dae ;}kT~ama7"{}V pճ=Nl3vtgWJ?nq uc8Hxӳ(kjHFsa_D |x6Wk'qN%`$)L1!zPKko'|h"% =sP o|gu`%b0K)n*4KW o9#6WB{[tKܺr>_U88&IrsIGo]&$:}d -,\v*  cP䪏2PCQ 6 SJٽmE"x^/yG&M<"/ _i/x(z!U.mYd] o$q עz,|ZpC :Zlap &̈́;u{/OK/@u͗@DE>D1 J^Z`AB8~מ꟰k>I@ WTŬ ErR8Й,(5q7 9Ke#fX`BOʙoo_8OAXM)>8?#Wd2mqq-^PO[e/؅|"Uᘱp|u*iJ¶)0:Xpy A 1)x"T84mWK? :ZcROzO8iWp?W]l1f̘hz7!CM(<"t գA<4̦$=1&6tRDYhsu\g,KzL&2w#g2YhRemCږ@&XxK|[&tN"-=jh%YhP$'{ċSHtU?Pn!UX(?)81i.Gzԟ %s/S:7EmW)T{XOMßo.f k7]h)9S<:ZG} \- !/w/ u'J#qhX7#FHXsl2n.T ܎/q,-֡' X<jChO\ D;Q( ͣSCgC~ Wԉ'mNWf vJ^os&V$&Ɠmew\y֛&-Hw [FG Z-}'\<ƿC+84r%kBn psnY[Dݐ%pi'pÒT%k;ɸ$=Qg;R&d>(]e2ySM݉ے@l|f~>"*1Ú4 Rw7`!eמ5mWw$r)R`t<#'p}BEvTӤj0y97p,25GVTQ3NV 5nYn7YA&x(kdʧR1nw-z*%0M'+x?-4П SGS7'Om7:pn"| MJp6g`91h̘fVFZ-_#,i^aja;V_܋O O܅<(z'0׿ ,] Qfvm PubnVߪi7)<+u0o 4{hWRP.﩮!ݒ`"K9)0 ˠJ}΋8XZ[c N>G|]"O}01K#`=x@.nVqЦWPׁ} rl^,ŐZx\,ɄK)}*vQ=݇mNw# 8w{ f! @\|>8NV\AHY5c!'.x=kL<Q1mݲ,;3!2Ҷ΄i)\*~J^%2 Pg%*jqVbc^Fd4R$cMHw펤=(J4Α|M\~xSjX&8oXrQV}ʛT74q1TS÷9>QS@rcpL漣 aԕrAO. LQ;x 9߈0էRxףdqh&Wws-# Zpj͜}o O I QfijO#;sP/ơ?M,T}a&Gu2,ˉ]<`OD{8n.A?GLJWd[A&`F1pA&:}h\3HŲ>2B^^XC!ur%)'>b%\,B:p~:, T?^US "gnߨj9mnpFdx,<va N(GH`?ylDWs$-:O] rU5`A=D &\\VBFS_Ws>Hyx0m}DN}=o"z{ylng'*0QFҁU8}pHp 9( dž QτxAVF4ɮ/Xb3 ?p5{: 1.;]7ph"ʫ8 kA'F\u'{e#?7N(Is" C;ۃ7uV-sj4‚oᮞ'>L}OH7%yLDҏ#a–oveX/VQ7PAFWoșEYnv},v&ԆHbg龙f7bIv|;R1s#jSNVm vˉVGnXw"`[! ^{oA2'%6fݽsR)U\F|".z|y\T8@PJNY.E--;َȭPĪz[?TS\m7Ԝ!>Dml_y`w ebmFt>7҉r a$7Fl G0n `hl ՜wGxÇaQu+JOZA P.λ\r}a8"…ω;HpnЧ,TB)`ig9xj.|+"t+yIr4I< oL.8ّDi}6e+ gua6"}=Yk-(gDX[ Xx. Yŷ7<\^Ik$I%,]=FH2a < /*14h {k 1 C.!SVj3T~rW<11jf2w" ɶ߯XaØ-pY,-7K BLZ+} Q(+WM for%C%.!H 7%D{  eu-~Q$V_3oǘz.6 Ar%ڜ͂E&Vz 1tӵF;/+i+q؀͖.^gj<Jŵ(> ) #kObtA mz9Dz#QK7*7FWL "zQޛMeÃ0 }/%Hh8ڹY|d&Kd´wu%[T@Uo;Ks~oZUј)vmrFbg+MӔfo*$ P6hTq_%N[ [߉|Ķ1j .ڄoڊ9"TK0O[ 0;n3 >MCШ)Q+_,ɬ Ȓ|~aN9tuD*Ng> 'q> Up)̏+~_k焩~~~߀ҒuI&:0e){ Q_g9A UTф`&*.UmBYEI^O_Cu}]]{PY3bIO/Ra7cJ9k Kh"i}%p\zr0^ƒ@F`vMX>e++WZCY o|ވߙnلo[[m"k(yD[Z!Y,xI4766֠(F)wAVo鈐7} e)Ur\:lL6-mgjG {<'bۙABcS ǎQ)W޵U_bHVٳ&ҵ뮵%s惚j|RAeg'lDKK-x1r;<dPw0Ӂ0@뻨A7U'$Q,UAEjޫS<G:='1#ЅD@ hRX>,MfN"E(D$X^ zgkk{穕p֨QzE؈X{ATvEݭ~L؊9׮$۾5Qq8mʹm ؉(^CՓ^+#~cJQ"tTLIA ƞlVSLN sfpU2[3Yc0$ @O҄Ii YA_O]"L<{[v3]VhTΉE7h{T#YٰD 2X*NO TP a))4('7+<ѥDzn 82k5CU=؂͞u\6bbI~4h7gIe.nTl&L"v83[ai՗9ݤAT2K?{R-\s Qjx zˡqRuMKqݝԉn׿9lDvTU*.7&2(ŧ#:v:`nqh;Xzq-5"f|J2ҷ"_HV? [\0%_^t1HQ?M!(-4=gͪ J#|ΏX۸yI/3ɇY5 G(¿&H{% Ѵ4XLC7box -κ<>^*Yq?t@a#h8R΁A{{࢓7qKexLP7Y2O 9XsԉY(]s}hya5BQX k he :J $vH/Sc_E{(>t oGCBP'cl|}m<OL."W-^-L[pҽFtBӱ7P¶*$ISxj[A8-8DB^< Ӧ#G=RwCyxbxt!L;zm|IXˁ6#eG )/FX/= y >K޳O)gwfh<]Ǎ(fj S/|1&QE=ƂO% rJeH,굔[ 5D$F)Y6dBJʟxx:#i|6812[+|ภ!8<9Tw6 b9~zP4 @c QK|uO 2YoK`Fsn?w'CojK5F_!Q{JY<5cNS[cstJ(TawdT*{yoixafӱ }=ԅ|yq.ʢєkP.w s3mWQl] LZbɤϡq%sX|K5QVǔ15&$LlֳGGJwwհO_/}Ƨ*4 r[FL1Y8I/D8ۡ#{_'ŗq1>h]/ZFr$XEaAݮN襆xOwKl/'c^nxUD\JdaIRq:oY49НӘz2LKROPk;%U[Pb[̳[$@1ELa80ߺŻ|M%ʍ$៴iU_bSpWM:~_{Z~IN""b@߽@j<1o{s FZpڰnnh<rra-=j.:3rlq_o0yep!#TfZitZ~C"`8՛̤+XbRT/RTE{p&:}wcRW}Søaۉ^i4;.rpq!a o]%Y@!IzVc[KKD/A+(U}rgQMF2*QX8b_1bs,> H> v |Й`kOih9 EzfjR̒W "t(ԄCR!u>sL\cIk֞' . ZRUf/^c$l^*2Jb+:2mt`x"!Qg(ꟃae@˥5E_KVM!יX7'[< M%%!x]o>\5([|U(|ؿk&|0̇.7UmZ#?*q5fE{_1 4gn`7dDIDUDDŘã?/( 5c "ٛkvk.=8/ܸDE9m~JJ_8X>a#h>(e0^Ó񓁳9rꅭ4=I8;ٴݸ=E$RefOcjK<]O҆Y sB]22767&0Ҳ!S~2}FA\1M@uVOH㲭k('ܸ2#˽)% }7?;{9d(B h*6{8l^88Kw C Q|w\1Y}_@[./\lAXr[9`6biaC!3B 'T_ڂ0[R~sT& 廎P% J z_K$'b/L_ wO_}B$a{G9V0Խh G^kQKBV~k`ޑw$MBͦvlE2цg0$9#fP g%ø3_OhT T˒Hu|&1%-:IDvf<謈JmQ0ڳ :}zr%7f;f/aB4KMbBJRJ*6lI=Lݑv䚆^[ A?EUt)Еxe< e't0Z(t~?i>i=~dF8+Nz ܠ%XCَI_(y4,dADkKvfȓ0 e“\$_\Gե7s-:("{нWwXJW= (+zaI\ͅ6'0Joʱ4=-I K4`) nI:) Te~wJ.ᰀgo3"uԶZ?Zzz,{zBt DhI}p^4 W9/T&jHQ\1RBj"1rvMs .ʬߞ(q7-0 VZ.{jVrU/etՈ+L0 >YQſ0xi hM(`.~TN+@*JehA.N B#͂XeOKw(544aMe#~v˰[`љY]D&_pfƯ^p `(kHEN\nD+Y`*9 ̆Yfk}PJf9FKr€uNC.d* Yi}QTrYFzng.c7%,ڃqRAj tkd )Nap΂o\!>.v im;Hź9l^b|'uj#TvFΈ%Z3 q8G{.ه~jן=#:οD3>~&oPikʛ2Hh.?&<-}pp C*8|WV`wX;=~ѫ1 Ji=-YlX|,m ڣOB ^=e)VX.m﮷X`oZTk&4=9KY_`bZrU䏤Ln1~6'Cl9եrdBєҒl_h)z(Gnyq ONNCM7w3|vCݣ]nZrGN9AzV҈g+L"wH8܂i~tܔ4Ikh$t[h/3pU9j# ө:Iooˈ| І$ aTB٬,+!^3^vꍃ2BPD@ ?z3,P^#Ԣ4`5aC+TL IjڡLDTC#'6}9]gV& 4/KXe @e<\ELbZC0qfciF0R3 Z l.-_g9OEWԬ?¤l(rTuWP `a@,S`7w?,3ʂ9!CeA{5j(viR"S ➦3ґ0f2PqroV31͠{oQޟ?/|UL]V02g\e0f SJ4 _vEeu$rdA%AbUTqh*Եp%Vrq5}wHzl?a>[ݒ\bGS\O}7fo96\MldZi9jX-zм̽|P4gؖ u=r S[][u3j3SdVq&]RO o4.5^K)Xh~VuZNg,xNlp?c䇜֑E & `ITY7;|7q񛄶_|ylo_Sz>J?"oԪk][ooBEh'Tl7og/KM:z9X[>Tk %8Z Rx > ,81+roȤuxfY'(5ԀET{!ϭ,1XV+.J~nLsEE<0% #Lf gwͶAoޮps|LG\in]/N|ăq͉!ko=&=Ew|>x*!\usCXGW.F™Qo$ĀNsj.wwɱyIyi*"Պ?I=p“<0 ;jwc3Y4+9>kAE_4Kƌ)Xء#6j>F&WE_0W[P2 AV-Is~J:mʹ?&lji~rXjmP|ܡw*zJ0 tObXTsW\MlkLzJ\;gs7miyLtYLѦ0kE2^*yۃWs>[<| &\,Aycv? %O[q<ߊ!)ɏOCU"QB]`f6!4{0Th2\p:S"o9ClO1 s!cRP{R ܇:= SܝJ&C,f0 0a|* raXylB~Xb! o܂9 QWMn}&{ŵeY:w~0wkҲup Hb_t^ [>\~F=G.+p' IÞ.j}j^י%-[NqY=@t <];u p0 W zQ"Au2F{RȳtN#[1 PcN9>Jc,Bq:OIDHXF颮H=`եՁzi݊P mɊC]Z}#+㩾voO.KAl軓9[-[k(̆16j{GY`ЌMSRl/pLRSCG^:O7'n_䟢6(H#Å^G[!54GQݝCΉͽH(ls/;˺)+`9/KaFp,h Tm< (ͺX,Ri*UG{h׌B,B3FJ诉^YL_'(R7(*ڬ4Iz8v]N3+"Ն~BaK CvȯbUvzJմo.LtXp)]U_iy*H'\aSy5N0+?/fX sEn"Gf}ͬ:(\F5x \,sr;-Ecy F.cYF'4j8Su+p;Rv^ɡ x <Y=)r_L婕dZGQk,=)SLW[,byjH# RKtiF?Xa~Tha˓SHRnDɯJcpƥž_k2k'=z')|7c]CcT~VԵD (+ԗƁa)"ÐCned[&;ʜLb)׉q\|7bVc`kxr S?&Boe EFk^H얅fxZԕmnz6nrͫ aMZDC!-_#jđm`(MaقaH jܮ"VH7„h6)J4#aft#Lhife-? jNȕILtz)YJ?Y Q+[vEuk.J؟tйF,7%x=%,į汩V_o3F5E_<4hXEא *;JEr{͏(4x*a Ƃ/vVУD_E1pNys!MT3MQpH$-nKtDͅbzik.=L {'<:t/DPܼpG\;K.Ęt NKtB׫ʋ+h 1]k;^0sGGG =6 ȯN"J].>PC0سT*W(z(΃oڜq6X5/tcP:qvk݊+0\u 6he:%eW4=x %{Y$%*Dž]g%_8U@<;AId^r:M5 sTHlK/k^-^wdJ.F@, ֠؎b1YRF=DBHk n\A|H*D$l+oXph؅)N`2h7cZ{d`q%_[9 |QMP,)sFLC99:Vka qq5͹K힙h'zeFr}LyKJVޕ?RK#m4༄c(;4ZwpvP+: m2rP>+̭{g`>e‚>ÈqqvQQNX}|1,?7uŜrPY@_ZoDqNShw;ߵ;PGRG_h>). Ɍx{@Tw3i"·|H2v:rcl+7+6FDei2C >%0ЫjZ[sԒX\ ݕM݋T Rw0D:|l/ek0Ec .M%n2*6&/_l_s`v[iˌbĜ]Ӳ/?HTHZ 3ыIB1\JռY"wY%/_MF"=߉ڪz. Uz34#9.y>5=%[J䆴NN\ceg@c&qxPq FLZ\SA &@NՅofMa\)r*Ly2!͌DͶɔGi٦6~k5<|CrPsnn-┇[@qxZS1`Ŋε:r?{%Omrqooa3}j^kw$E?TGkhCG\oBr1i\l?8A+3yF,0u6=خnw+jS,ZM4pQ! KkxgkAYE,_AwBھ"Yk\{pui<D8~j!G{&eĻtYLٟÜV,j JE!f+hgXN;IyٔnRXشGQYK>Ԏ,| ]fE+NM@ȕ-Z FЭ/gVclJ-۰bFX=)x+Y/,m~&% h?AEKb@3XL7eZq7ԩW?058e:\#gNkupSE2"tfCIߣn@p'S<*Q魟yO< )}sίp8d"HZG:"#;i<'gў쏦`5%UQr@s~Ya E$%"*T&k5@N ,T|^D܀b_ Kqi.K$uo=w @gg4R6+ڛ+_GQS=jJxOY)1jm23KYټ;fbI^3ZϳKm/o*K,97톃=X"U\ApX"ūq$d]DG$bMSyW#/?hY҇-EbMO|XhIg%[8w6$΢Oj'R g\gɠ.)qvVXskvŁ:|\GJS?`'ݩ'=R &F<aa77"bzbciZ!r4k&ž}xШp,iU%hƳ[л G(@:0SBʩF;+~(z)=͗!7Sڈ@mh/mm0MB_aG(fET!`u> YUpZdc u` ruYְSϺD." iwgȠ]46} XεUUN1A9U~c"9D?,@C̿K9k颮Lj9 Q`\=f"AuoKc/{БU`Ovfa\Tđ,lAH8Y\#0Gm&r_h9wP'-zNa@FYEo PmDoBYuh\`Z\>Ho\PA1I<8V[vtv/H L>jLVM“zCmpН n5-dEMM;. /a?AO5;gDeڍpܧaҠס}TKI0Ezی, s49ԖI,8oX(~]v7x8(u蹕cUm>Te (8bVX ($}{p#_mń-ѤKhڠUڍsD>nVU|vgDjw#Kljv(9U ~g_?+夀 sY}IjX s5} 4 #rjKP!Žސ< yׁf S'_>Ŋ$W);}^bDa{0w5? XţI,-Mˆ6N:ΓI^ln58z` yhpkS-"Ü{bl1NDNֲ%~)7T~*uў'3(!#b% dҘ*tH^`_HqpV!Vƒ21Ǽױx+ykIc\#>4Pol]Uչ軭;meXEMUxn={>򍞛_z[= ųv98sb| *ڞ'=' d/~ jmicq;tn5E8|qN y0,ɯXű镥!\X';iJLt$wQ /,mlipW,=+A4ZQ ]ɬ`vijǺ(&b\wHO:}xOZAfE=Δp%nZEL]Ad :2i/R,Ʒ3mtF`$I ߞ:alTꂃz,H7}{b1!^;oIifE%K[TPdv KS[]>r"Z.\HB(Tuڹ~濡GW ~}p:ʿ'h.8 Q_i|vZ0F))K gAU4k,~2ɉVX"F9A_|O~qN*WΙQ* U>bzf^p~,(qQ9w]<-&Z{i=aRw  ~q3]DoDWW.W:\/٬Ӧ>FM{`ngYFbnho‡əGHR&Fz b"r;> e)*'G Lsk /q[):-mtX-/Wv XGBI%gV'e\.Zf@uY'A+]H+}wA9)EHIc&L+G`Rڍ+Mu'/z gXCf^e%VOV-d*A=!JDC;!cU(A6{ɒ֖cZR)Bg3 rHOVn_oa~4['A`̙w1?bģ=d.0|"-sӬ~--pheYEQp:EFeK+!9iaX,vtls@l^j7KztHXAwR 4ޑbu}>DA]ryY[:"/BiG'Z\^JYadA -->ቂ/aM07\+m;а0ۙu^\ZCSfGby}E5\G 0-đo[#w)qJY|{j|h +xq&xBmmYhB{Z6Sfg  J1tcpTZ +]0NUFḭϷcP̣H3gQl#ټ俙gx?Y|jM4˚uWpn as~fxoҼL+P-jk08nnK7\JJ>.ҧ8X*nmS?X}FFxVip΀0ϊ"l$5(hp#22U}]bBƘPr{硨p?=~&.Sr|e,%PI?K!oĐ*Yq]VB58-p PR`Yb]m3P`P*l wISݤfCt\>̐3?_JV-z98rb=,|`g;{ȵ&2Tق;+bş\ķg|:Y[0Y]Ƶf{X 7c v)Q}۰XYWӉὖ8`a̽(l'Zi`o#NX̽0$zuf>E)Pg-ޞLW =P>; \veFݸ~DkE3eUqw;ւ?ymH&u7$SwSqb6>kUUMRлs6,/+TF| ta"ݼ͇;l@1+17[ t_)@y5 &TLl2E^@ m1W&VV{/b Xy+.Ic6m.]ЪD4bu€U.g%|OI#Yp=ni7S=ܸJTZgX;iܞtAsuWQwl ZV̴& 4&!na*+[%2͢.GbMHD: OݞoxJHmF=ZL\A{Vy:X5׺RchM@洓\RU0VoRseRV f 1hyHHkƋۜs *w`cQޮw֠stWa1;D .J䩧;x-;zr9Y#ųIyjkҴoaa~oqWnoW/fNrZ< zS[bP<̱ <{ _}2A": ί/+ӂxI6?4ͤa;WKuY˯,cd VJ`8svf1VP^ |DGaGw869h-G^7[\OhF _5;)k6)/WjqrR 8m w{SSؐ~cUaK"k>]1/Ք Kjᨹ-8(r~rkeX`l6?z`BJyWSu ,!O_mt*&zG'"}GKzb'+? ݷv,gqL-Ȕ1os uc'G{{6nd)QYɄ%hu!sCtJӊ4f,󻈌&#\:I?4{pHeXDryf#Z%ۓxHӺ2)2>y/}#f̶ 19Ve.++B$'g^> Ɛner:`rSBQ|9ʆ(XlQČXQ](bҘosW|.՗M*7Bs/<_YٚB glSW 1Z>-PJq3#kP\4Fyjc 5YEDwB'uv睄q†xf 81 -FC7?4ѓMy~v>?3cS .kb.A 51вRCOiNÜmnx㙸Ugʳ\ _.4;Бr 9e?[L )5yq ;=Tp%xG/V[R\,^^u%}q7̱pYj;m aX>301r)ADm@!Ob1dsw9;)ҟ '面?^։鱷-5'}iü ѹ@c3d!-|YPN4WeBb`;/C!)]-mJ۷+ޑaz•N2?vZtsܯ,촬Vd5<+2H 1y,Vr͏ Dg(Xm awU$mZ~Q6}X0?-.vT}b."[7&to?h[Y,¬Bˢ7b6Ry`b6,=i * h5dz3 Գj \CC$0x EklyӴ ,?y3Z ;o]JΙ(X- σ,'}fOzAEk72 ='01J A@ d!}fE7 Dmu3xZg,ϽΠYxǂ^3][titDlXV \#7`8 _q|UPvGr !FF12ff1GP ][8[ /އKqƠ-sh$ǐ},S='Y7{sL_Y(GDMKS]q8Ϸ1ŗ*B9Ahw;Clq<*` պC*ax7saEъCIO$ÁCj~;o5lѨVZ~)uNdd$wUd 89ir}4#-ZQ&S.m o(i2?#=[ﱆ)a蚏{{%w2bhMH2l18 &F>> I>eyc[y<uv9x*.e*VJ2^`}Й J("c3v?HRyO"2.ܗ`EM*[EjA:_n5=vkXgǚ쾄W8m;p^rTPBi :ȃ[=j.M0hAP*Zq*)qY;Aw_U ;&{T X}x@Jv)Jz 3^ 'aPz'eW6>#ߵ |7)VB^X!whG0)n` y).!$JmOҖ3-RFV$YNIE=TMzia bi':a^Gp^)[:^;og#It/ֈo &> ,o_Nqo=zZ-e3pWNJ>ogLB[GqI<#L]{Cz SU֏Drp(98ꆟq6-MT w-_e##+rGH_cCA>+@(*>E/;x n9nH< ]+\$ķ3GJ⏢8Zi?V0jSVS{1St >ɧkF ]/ |Aox{ ۧo}Г` 롊ڦeKNn<KN q =nOcaroKW4n0E.6uD>䛳;Sc4(ep@jjX{_y Ny:,VNw Fj>h[YK;A\8kA#8r)LTF J0 ?ڡ{=t0Oh>t'ؒoʂG8AVj >l.q2:LpS۱hb[8RCaJFj3,މza룶ر98nkC:_\M}+p`%3chrś;z&ި2 ~</ ܌yRoDR bfO8n,VϢ/DtH]h!$@Jb؛s{;|C$ê@ (Z=0f \[7_A+JDtpc`~% dyBi9kJexIM6Y"V^g;\l >ٰaUxz ^ةv#{xMWCP :8)tgn9k*/4Ke(7CMYzxDCA4۝RBVslV8$4ȩk` Y9A٣ ї09!:Pa{hUǥ{Qq܄X/N&殈o,[w?Z[,o_  |Ǟ6frځcU̯F3q;gYzaV;x>:kP$f_]ES;. LcOS/aXay|5 _F$(u4.Zho o?xj]誏$mQj9L)-k4L*p_7cWP  ׺С"XNd2k-e0 qX5A,r'&?u"7#Eg|D }ƛB_9;sWh's>l{x= ߜf; d%v +$Cft'1< }'N`i5Tf$d1T_e)!6e$(]cC.zS QN}:Oj?! 4y]vSZu(4tKżstss5Hj`B<^Y$܎9i)a,Wqj]!1rD]] 1 5&#[VO`w DUIc*7Œha< ӆK`16LLdMb;}tǸ*/e/ ])DM/3XqBf^/i_;Ę0?gc'1Eէ|Z㉎F5Cq Y{10ZvtD.w DU m!b`lgG*n<Ό{5>BfPxL7yE|D/S9xޓ @]qj]\8 :"p u5:Е|ne]qԯ?Ym,7ŽJ缵Ը'_yH~U-YKYЀ*ڃvI<1ܷwB$"3qsPQ I}٦Apcd\PΣx3[IBsq[r$nc10/6kYQ[b+E}X"pѕ2GTHiP̬'rm!zm d dir՛p OJaph~:s {SsxY`HrnQ..3:z Gjq)x2mAi93uYWvuTtؽUƝMYz !EuG%,-PY7tAds$Bu/jv6m+cDaǘzLj<*ňm50`A""ce3s07 o$asF?s?km"qw}FZvmzj5g%t{]$OQCg;ݬtcD.vD7KYpй_Eˀ|?(.!pZ¿Ehg ]/~!cS69-E56=|63Y =L+Jx $˰iÛܖiX|Ǧwm"Jh2-yj^_ikA/z}D዁G᫑5!~p[4@oSYh3u1<ulxQvT!^+b~{ż2XS;~o,)%gUaa@Nf6R d$CϹ0ɮڇmTWJ|bt@'V ܀ D!Z;F ZɝԏXpA ّ,EӦ=DZ^<)\/6+3ma* Zih9 mƉ~W鴸 ,|.Hni]v2@:^j%A"I)PQ9>xOLC)R-V"at)݌J{%&]CK'D]nƷ$A#IrTyb0-JWހ7Laa7RNe6i4[ 2BGᄴ~\0'Q/VvH1m*8?fNٳܝ"T~[L[kT;ZU/jLV;튶MTxec9`M"FOb)d*mhX-5:4h~)PUrnsI#6śhT*ApEý4&Ž7J@[-F"kF1(6L|,Z7JLVR$74jqk# QZ)va͘ ѶZj,RdPGR\;\2w :__Z޶2]B \šp Y{<}8;s_J9U%/^lx:NԊ}c0 D ҫ;,i* oq8{c~>?U=*ǃ#|͟>NWuPܣw3rFc9ב(o.X-f]%@ID|4Ww 3-as4)w}}tmDE; m#P eM<+SqԖ)XGxВ^zʊ,FZ$ 1GPTBJxY0l=^>}?Y˷лAR8% z4)lQtSqD{s{{ƫQl=K* 7k}Lџ g|=J- T=&cQ p3O/YEb 3c#0oGbBⴿsX,0 =m>ssL_<Ž[^pZN1/:Mh4-:w&=h^Qbc\]ȿh>'T r|k쮖$UvcB+P2#d*Q;7*yj'7gdPx &VU/'u9)HA>#[лI;~8)| jQeȡ]! Ho&'[˔c,g}njH'BOꗷF똍Pv}x͹V<+^:NJ2swv {Џ,^K_┦Wo[$P=Lke[SW \LDbǚbHY+ \Cqj{E"*pHU 'NU #=kSqt2W,\N qݡq<}?8>X')8p1X~L*SsS#&s*@ ϒ,7+VzE0+AA՜aR=|0ŒKũÂsSy\,_zzZs;3^ͫkbWDf㓝}(޷dӄe3u,L$М[&ѓCQ~]_7,r<ە/`% A(Pw/ﱻX~dua <0?] ;"_v\GfvDPh. jfp~(B>+X4`턴|4EmR kyO yT{C:Mƺn,?`t΄-ˉ7DO &DQgcC@J& nmIR@iyAK,.\@b}m*0)QQjѰ- c瑽iL3UL6^8cQ|A@v(堲'@yD=EّE a&Я9̐PFobE.ɬw˔e(Y&AC_SL**|߃qE{4ՙ-RGb YLħ0EkeP~٫n87a*0P{La2RtnO pʡ *LV6(O""'d>v$t9-~!/zqW*R┅zN&v^sT BlvڗUD^2V)Y ފڤXC;2Sک'w`5^xahwLCn(=ϙt}×9Dexn䝎k N^ Z_Bnwr8UۼDV2 2E.S܌cSS|0/9Nj9jhkZzzpj2" nY}[ D,5׸d!2p&;ALp{x n%/9[l9gE9IUW[`/ks14DN\fkF~WASg8"__ EGO3r3`gڂ;a*$f;z^F{1:юGd!ɢTo׽(@>y @db2XxDڵtvUOC5dgEX Z9zEOgN#h}hf2WKV?GW}<=OV*,_qJbBhC>* [BTQ4\<ʙ$S {RynWX( A xŊ{}JUd@+I2 @+=v&_KI""1*ǦͱcF= 哑@m%aBz#|aiaXKvN7X̪/]j w{wA"[~Y/Iv'LwV 4 #=MCXF~%؏B&7'RV0&Υ=CI:Gq٩vLBW #*C!ř)miUM,ת.`y@Q߂K>M lʥ5 ,KɁ4o !)Qc &sd|)rJy<=AP -i+f)Y\0 Nl8Jcna~+9Qe긆q{@ɝw!O2,xβZ yp.=f*`jCًdtT/{" dTM;B<6qd\"l"NA Mz}96_QӐeLE$ml! PN+ aB#^}VQvQPo8=-5ps9^X'.ơWtz&"\s"', nE:2N[A{[qO:-9oȞlcpj0i;Ht4yh0leNVT:0KT"7y7UWO#]ˌm VrG%{3 P` YT~1+w Vm ű lj3ubU3ĵgFuҢC1gr|q,dESy|FvAɮH"90 ~o?42nknB@qN^+܏|c3wM;fqy}]dw('GGNwn?[uz[|p&<^dQѿoޒ'pҏ-Zkk7mD4>Ywu@KaĖj7$8yA (ϡfXy)`ĆA0ޘ\d):A TxUAƳvTX>Of INOɶ0>Uma.Ƶdc| HQXo 'lHMvo8Dz{t?>;+-0c!h<~2iFӊ3JoL'ZI|` t~fuS/gBOGvSp>db"( `>C3[+ 3IoRbV.LyR`Y'Ē}%y(ڧاeg9." \#{]o0[egQ[lv[(Dq0#,fGOPh #bɓ8,쿁=o;'ƌ1ŠG UG;dzG7Wi-L%OIw'tfw!ءҲHϼi؊sHba` hNmt:+L%q;8߼+49uw>& lou|ߛcwtk.&>,z@\= fߚ B= G&Heahbb3zrG+>s3P*Cmb.a]q'_*5i9i ޞp=Af8Yr; `2 [ 6)sªɬtJotdLZ<*7q#K35<ŹIt2V+y3ؙƻH8oT{{rU5 $mk]C') Lb;*,l`Ngs9L@*Ĝkd<:#>IY-v}rYMi|6wqj@dA)>`}hZv__>@Nъ->ljw%yQM-Ee =_t3= /UGчU,1ɼ` %C>+|0Ϣ-Ff)Zqfw :@0lŸF -ĎR~f! +^I$M"5-B(& udmO:Z&^sE u,r5fdTQ)Jt52L툍8U.448@έ#mİrT_2qQW$y!#H-5|簦&8* O|LÖ!Jv&leҝ}S]jl`.ʊ A>S,*eQ 906H#+m3>`"] 4G{?LZ͓|ŸeOa4sr# Vwg"3I|E*3*GZx\}^BB$ߋa(dpi~zM`OIIFd>9` $,YprlAVg?EaA}MֳЎqp_x@|pvfFK_Cp(@Ȑ۽fP* _)pg3?_JBrdABop-WTmLTw`0A '&d5!i_; M+a)J(a+S[P [dD udWKg(R\rM]sA/FKOؽ0] Z_Ncz4>*Šwv %nS/=2tp 0.%'8B<#>!~= #- K>У#UogP"\b|n6k ʵH@:KQ^ط`i:Q^IUy3)QG*a tu4rq /l3,u :}G]z#^pIr^Y+`1s(u" s g]0IBvR!ᤰ:\n<8y*(NgPN2Rɾ=3ǓC7  {LEn'<_ Y&>291Ev"82q`rDCz ; }쓗`r!p*c߀Yo]̝07>i .&PUH6T'c5p( j(hS[i]|+E"/cv(b }] ?iD4^tOw%|a&p"8sFpmgF]i٢MPY6T!_]yewYBk?*&+C|ҰH6"~6Ľ넏iDt.ߘuReV+OGzI @Xh1rZgx)!]~=MfTJ Fe 1SŽ(' "h)ԬPPt؈$2ͱZW  =Yשa2I[K 61 LȎZazQx9Fbf؅hYv?꺋 "a>e,t0VjU؉VtKbhҷQ+P||P!@\݉Y8xr x)$ raNea|d6=@Hm/(и>9yQbF` )oi`(KvijAW xʱGئ; ͬH'ā7mS3V8D&?naziAR\n3)J; ^]ĭ$kޯ%$$2Gufr#+9?I Sӈ݀c>b )KV(ZxM,x_:®KA$7j0"evMIcp&|9'5OIyx)pۣ)t0~]~L}ۯ}Yq ~J}9؁-PzN7'2z$qh݆~}/b=iiB ]7dڎ k" TQcMycTj_S``VpbgλܫoQ+B4K u=`mx:x'_za؋E%Н3fUV -,zi/C٣VvJgnWP-7o~o@*>W{l1-~Z4Ɨ{7&%S)K;fa>mJV97."aI[iuC{)r z<8-9T -걢vB:1L<u=*0}Ȝ#M[zNTruxT/dxAlmr*ʇG#!E{'7tъ~8^؄-n:H)# Կ$] R6el卟f9?_S g5Me*Uܶ P98opj_0AU>o=H4X4ٝ5ύF?̆ =j8 X̵a{A6JGo18>[Eȹ[x8N. c~a{Q|MQ<6%,`:ɢ\x:L$W=16ʘlܛ@d+ ?N I ;k?qeԭ.G'u:%`+ކ9tl8uۆ&R65Oq%>-DϔpuN#6?|c [z1b;'1]Td]?{3KEj2$ɣN,I9\2%IwyF|^6ub2$hXIt/9Y\}7M~cfJ|@yx9߆ T״ſ `#EKiy37?rŧ$@xBg&ŬJvZodGzlPb= 8X'EJ=Q,EwŶPJ>љQmd,Ls'rR/z/...~"O/A9z ,~ -dkxʈvyt̶g)&es)|-< E(-.*y X[8sEI)]T#h9 Tb8>3un_$1q֢ rSrŔKMtro.BfE_>-I[ %qFMv_a{(z=f{ii{{6z8t̂"8j!Jߑdn0\[|a-Kg4P 9U'U R#( o#dS N̴=]h<|R`S*l>0w1-s}&M4 r4u^NlY`y9 >$W+FIh葓@WftI=fʗAkҧds|Eױϋx@w>:ϛoSƴ :: .DhosR7sMcO+zbc*EL=Yc896@RaҦ OWL*p[MǞ#?R"}鸣E~0F\=S0=q%̌7ˊe:qz#Fc09ƥ, jWS/'ߚ3gZ?j΋v_lR0 Tq&wJ2Q߱fL G),!ә37\!,@̕+2%v{{#S(#Ö)^mJLY4l1ƯXAK~va{kRR @(E뤁,0mrJ_xͻ10ގ 4ǮjD-t6 +jnS:.Bg/UKF1RL;qqu`g[v hF<-v-uz9j\/vp(\%8vܑc[a2DL"cl\ڥܛ\V>NGaZс$qH1Ǿbk"7|Y66"^'hXۛJu&*a9c\fN!u?+!hO AˑT䚮#nH+S$/#w&"Q8K^:Uz6lڠylzQK퉇lu F/񓡄8z{M Pwg?.3 c{IZBE7R -|b7#Э?[s0ذQ[u^[]G3<1X^p;F Ol>R{ е`;/uoο(@Yl$ڮoOtK$9GXR a!N[lt!r#cڼèYpN]pXt-`J!ٕ8:AHmg*+*=,ު7\S1W+J X#Ove: hmL:Ǔ]di`tx%[eI7Kc̊qY\~D SN]g̊&{žؓ0՟sp/1Gw[Ps4["rTS"[+I4YO#n\Z#qH?$JX{Q:a|SX׮ ywܽ{xa˜X= M3^P-K wYaez쭮RY)(K 9wD7rEei&>#5X=UB|,$ŝG+ ͘V/i]|=4deJ|\bd |ŠrC'T&^qS :R 3=ˋ{a.Ǒ+~K/ 1+jAn~EEf`7[(|MvjNlw >}w{-mT?0nJJx?PX}3΃N ŀOndG1q8^\t)WWSWGY =\*~ nBK9(5\? 83/f1`J)D\{_f-e9-[[R SL&֑bv;yg"Ve?%x30/ } Pvz -C8i{=bӍ8Nq\.&Tc*6LSVoGcJ0$~ZQL+5K]tyN EOhRw&ЂӕUbr wkv۬< q.[LqhF^*\l*x?+Wr]x̦<IiیO_{Ll /"Dpxv{ɝ;=xD8R٩TmiBh1QkTZBUZ)l&V䌍VX9tq.H:r7 SX.)1L%Kk_Gop"[l_9v=\hfɛ9GGKQ@YJ3Q;s 5F xENT h,KfsOr~q p)yYr$_Ut+%+`L(Du~c c(uk_I*J;HptjdE R8+NdϾsaa;rhi"|10DDϏۍPqv"AࢆH-׍Es?{ WI+]?1m$ŮOWgOt>:&VƆ>\!9DG DᘮO!6)%Ĕz',RB@wUF;@?;;C`I/PɖNvM ʋ^A{Ez3Gfl%h$ |ja"WV ,eIE󔪘$[! ?ROiY(v)JO~W7xԲ/K\٢0\RE, vf6%GxWwԈGGWW34"Mx 4+9 Z'Rkêun%|O]d] m&r Fc"腂U9psѹ&Tk)xmNchј|=#ɲXQ֎Aǂ3T-"FWp۫;raa1;*J͊IV1jT!yvCA6z#1R(ϗ W @GW ]2.9d-B',HƧdI5Za~SSN5Ž4@]-vC*@9vw<_R!<by}Ɗa( OdG`IF/6ǑVP>Fƪp1!{J`(W^~8ض# "p#lDE}c,,fԜ6V귖H 6Q} Ԁ?2/ϑE ȑ=CxFGЄMP&I$rM~? rՖ\] S!!(Kh|=D7EaNH59h1~HR_ YS>jrzB{oT+Px8yla+x!yi(ȹؑMb0}QIT1r]?Ň:M<]f}{EEr c,ևjDr~a03 M6g;tsޠ?L4:.&"5?AnEWXɘ\1ұϨ&MV׾b1"ɂ8%@݌;8  h` p߉w}ON#~[&bHuO#AYT4-~R넑@X*Xaeg$p7UkfXpw[ٞ7C$@20?L|un#ʣ ,0Ӌh$[O#,t_# V;Դ3gcq،BQ=Za̦O% rLCk v`c9ꕪ2kѝw\kF8]=Z2ye<[Vm ~BW9X#@L>:i R+ ЄV aG O+S1Z{+NE9^Hf߶IB~4x l~NELך`].,HAE. J4} pI{ω ~SG(coxSth?ГOlN2,,*Ðu BF^SͲ`\5+vP:!du{4auAIF\LQny&;bCZ[rz)Z~ k ‚.`NMˏ[l}R>,7l lƝBۛ!czdαF`_D"7~,H }?O<ʳwi(WO}O.EydOC "9Jn~ȫ6zkzB@C\)GO92S<owmr4BRUJf9˫~%6*ADME!d}ڜ,E-Da7Ij}@dm9؟Zb \r 񌸻H aoPojWQ[U`~C"'ho6.I:V )js Qt%Y k/ͦ{\~:hE/ Px5 B x_+5$w`Eg7 "_bG0 ҏh+p+_t( X}?ś0Sk/\n&՝ Ar\eІk¶fnɁh~C竦W4sjoZy{:#0x=NiF=9%,VPb@ы`'Ցqx*H 2 )NRXQ{ '_]u@.X؇wuH@Uu>(+Dd&w/U'qP%B 5q r^{Ah)}1z28WTж{|5{ێٷSVp<'qm FWv*e@Sy?F~SQGwIA|+,Rn7ΛHk|ixw2\ G,raIesm\Q_-Z%V~W*w\M澳^v}[)c{(AP| ?R(% ,j|XJ`EdTM^"ODyx?S\? w.SSd:`=y>pr[(W TGj^.n-jwgPpaJ^eŽh 0Vlaޫ(1= >l|τ_ui%[iO^SDiŐV+ gw-)nH\ZQ Be)i/QVRv").-{E ,6h^QiVNrm۾Wx/^K^pHPalS؂3mR<)r6f1.0]isf=7'E A Yr jx&1{`nfSF3DgID x/Rq5)sG"F=v#fRU'gjOY9VRz(@d\+:~H'I]  Qv ;J+لKJ=;c(qk,7ԫ=.DBVÚ]R9+q4s?lELaVpf`k{.V6L7_a[v k&FﯣHU(ReM-Z ۲ђqƞK/VK.~5n.1Z{~>"NkeAns@ߨA. y跘 3:1 VP8&5č̘poIOc8^]y{kE>`GvU{[)uWr#un+5\跙CA\NA+xLR hE 'Y`r??3}}^bj"f>s; @+eujC:d{&⡱qZM%RtQpY N%(Wcjrm<ñUz O/Ni)pM:Ht2"㳅\{]=3+\nӻ0hbE5ggN?Tˉ{7`䇼.-arǁC)M'g-kMt,}Dgl Vϔs<[^A&yôvK%R͢fZ?/EKCvGɎm1^B^SS5/MxN$4rpuv f[+ 9^mYT@ܘE\B 2Õ=̍."(d7w@6IC+|/&nX6sO=GQ):`/GWC*QO`Qެ7BbvYY)twkOEܩyz<@u6>UoA$1?WTS5co)v6+8um]m!.! e*=I[lU co̮A"\RTqi>hE ?S)_jbPR+J-^kl:'g`V`r:AJؒtAHg!^'%JY1P$YŔ2:Xg?fq{)Ssy S[)49Hhc=0\b_DndZBO1 nVvW1i-ݟXѩՖnzLunhǽ`yF"!qF?=8_sc>87Wd,8t+>^<޲6s1~fg_ /<4%=osU3,p}[-DhA!z)sb oie!T}ǹ+:?O }BA7Rڏ~glJǙ)U Y@x3t3Ǎ-_mč SѿnFvH"LªIM2b(ZCmm1<)>"~P/ɹfNrG=JtGQiΕiz:HLr $_aE_FRBSQx ,^2pAx?!Ï/\mCgFNcϧH6"5-Iirc&*<7BOƝC˯Bۖ:J{j mKSX ?縌L 2_x^t-n 6בj "mMEE[ `Xl5s) ' ǚ;ߌ &6*9FJÝ[#Nd*H!liEڪ1cf-\2 5ZJEժV^^ʧJ^|# >h_xބF|5eDΥ+xx=-R%W1In[9z-a=jk@#z@ױyX $uʞfЧXq}˘O.8JMjq|88ojL spx{T9e>್R$Jǻ,E%>Jfp1? >",8d"@spbxP];@q|J \J ZZ#!g'-jfp6q>Œէ s&k8w_X)J:V?g_M&g? 8%/#Z+pqP,tcbLO& ~4\lci69M_yNKa*IYgq}-?3&c9ooΎ`!&Smk}RY˕ژXyFXɮ93 ?7p 8!ɇS6+Fܲ&IyL B[VE!şLj%אCR;0Ϙ`(+D)iBE-{GG)tSc3 ءW:+atnqؙv [\s竻S%˿O.B9^V2|뚹yRT@b{M}pcf<էt:T§g\g!THyL05I%%iNpUJhtFl9P16Ik\9MT~R?KX%[˜! CzIae':ȑ`:Ul<Ryc!Q?z!ˆcO\dֵI#͝h)ȕҦ4{RRy^¢h`n#=୮U>Sgt:8y(#7ՅWPsܴZu>KՉS7d3-r.pL\ A%Տٔ$mU]pGuu'[s½ 5Эwu)ី/Hm.{)ZEoNv+07mtzZŝ۠㏧Hm9 ̈́:vn9.ս`IJTF/qO#8Spnr!zL|-nI<.75Nzݨʽ)럂k,9tkswE?xvcs.Oo}DZ8 hsɗj9h.|c:8:ş({*zu cqT_fnqo/Q#*I^?nD6?,8Xf )4ЧƕmF )3P'B}YxI9i/9fZhw _g)y(/qBla3'] ?CRW1>}3t!;qyY$.gvrPѣ2:"'fe_%4gjup,x iFπu5$?zpa-:#A6lͥA :b.Dy+m @ړ"{dpI&/seGarM+%hJ=-LWD>E HV=[%1DDb hf,JA>z\G)7)]'d{%*Ҕb5$t6b.Q.dDgI"mtJ:G j+򛫒< ?"p%pª s0wa3umńڪ7NYy&j>X+s" z]k){Ljf L'JfUgY'e)Z'ǶއD9-lؓ,oNl,d҆6,fa٘*E"FE[ !\fUY"d,P껸s(BK|ZEexƲg/:zAɆbqo;>WMFW}sp0X.|ҫn.٫N&o6Xꅶ(,m{Zj%/?/ԈHFz *|!`"VhOtP :|Lj lm罥BH") u;;'oύoLm8-ȥF sV9<۔y:  i_kaQ[o[{8yIg迌U{ EH٧eY)wKZ2  ~`e{6?t#\{d<XGdzWw_RO* v0CYJ{H4=ɶ pum8I&blBh=lQ%'Ĝ) . `zzU"5 >vIfAaMJn?E5|썟l#2Q(c@I!ZQ@]GVؘHi4[[6Ĉ@[;4'PAAEˡ}tIi-`*׌hsoȇcb?ZkL]2b`rTv(wW=%8ӧ]q'HC[ot{$B?e\I9TD Շ8\]׋K165K)` Ɓ͔_=e vTnbw 贔>q{ܨsCM`S 52PƏ|Ql(#WKyĊV8#\'Ôħыt\{g H%K^&Ғl<\QA N~kx<]e$U4VV q%'#~8ˠ@GɃ2+iP(霠qw_ IV!i:uHLR@UͷVa03״bR"X~.|AUT{glspXeA.d:wSOq՘L+E9KB }$y 2t) &c]YT_ IC`V\ NBc3!>E nUg\X%N^|"-%NHV @+*]~؃`O߬:8q.Q |q+m ޏ$:V, ϝ}>98>c8Os/DS GBq,(9X]㿘DR() k/hs %6AǺUD"ݝ"=sn)p0r0:JT%u" ]Q݂ / Q9Jx V[g.˚Z|=G$i;~lA3i-E7֦ky6){M&;Zdai m h= lE_]X* ~bI]${3 |bk6ՊA(N'>` [/*3܌]w=)jxz m=qPد7w=~@Q?+Qyl4*vVwμ3* NZJ#|u<0`Y/`^1Z#:tAHv1h_tGkOBiw5 {kjfE]l4Z%굣*T8U>}# m?`g<徧dﴝr1iz6"+ / V7!{єx/xf,9x[q->yN2Z rGS<ȤV44A1h}#mek_8P)!6"E-+gsFzsG@bR=R2\fE}P'X5ґn R2DnGbWM6ȍyGW=9uS2yCP_sʀ(3xW02]a6#^}E'hg 33 o*Cc4i)p3Ƞ[x1ZT-f><X,~&06 )L>/WV(k#~v;'y* s:^94L۠{q&W{Iի. bKAdpNkC@@oGOnI'vEnEVXtZ~ /v|hmWc,j9ujWmFIKb/C9ju  ,ZbFЖ,Ȕ-,k-%bAXA+1Y6J}Y^vu{ [w>hZwJ~kRSwd%&:aT1\g(ȝHAN{G>31j%1àVb${rU].  NG-υi)>w')Mcu>I$9Gty;x姨էrgl곡r1!ϛt!vF%+ e3xljS|R˳[tʻkO%-y2ao ["J}prrDr䠓&}=| k"M>~C?$L?=D[ohE.A'WQWG1ԓ| ?D|)۲m3`)myypBz'a*R>]9yH|.-&9K(YBW-_f˴!n?0QI6_YyzmS 9BEуѓkMt資i3+3&xU2@֚'0|"ٖ?sj| _oߞ-DoQ0$X k@ی.AhMsTY&gug(K|R"YpE9|zw>Vx5/s30f~Ib z(u,.N ynoeV¯V*jZvnxD7f~PD.j=*38B'e0~큅蚁x/szsyJC)I~s,嫌X4%rIS:EjVml:LڏD6}[A\n;rb{,6Bzy)&xÅŴJOa)LV8Cd2my_5\^۰|<C$d|ntL?H&. i|ܓ9k +?2pilDOl`7Έ;"& kW}?.&lGj-j|bk%| GX `?0VX፿n]VK'UFq¨As>7sʩ9gS0/jӛBЮwup7μ6X0\8Zbi2| թ8/ ;5b.… T9 jA%h"B1%s)%!hl ϭ\ 䌛*uI25')p40ež-uŭIw+"Z:>z2 6/Yt7\H-c+25v_ pu348Ѽ^qiw,pϰf?uJ[ΗaɰY ]H jRuj,KWSXqACiAt;S2֬m>\`7'qQHuUP&LVgjJ:>V<(IA^SwM9͂[yl!dn1U*mՈ:ל ЫOs(ǵij+j\R{\M$ϾFq$2 ._@{{)A)G_9ND"Fy- $ :MM2V-)E Cp|077,*&r4E{riO)& jn;V7UbUŹU 4Tz9 (hгD"uZċv~䶬Yj;L`GJ`\,W XgOGLxăS瘽 P`Xpw*^[H& )﹵hWVU:K39 ]*N1Gs|M$\UmZDc(wxx Ԕg&  snFjYjA5=C!Jp*Ul37jZ^D7Yeb7MеU* 9x1Xd:.RhB΂cP=M*C1Sh1q4+4@d=ڌ@9,I]s]]G@)oP0"kv+چg г].&#,;ukQujCUKn<|^1?]8.D_*=IUC0)f-E%3f?8$W t5HzC:0ƙa"IwS&W?̑W[jDS.W#,cr5 ȡ'PPN5BQiVu`= yh `C #R>j-$~:^Hc H55rSύKV㎍ H`FtQ/Z45^o&&a)xbXśN"U{nk Mi"cXO,R߿ݩY8;xGF(Z2} k`g#†ϱ;:b;(1RUlBO@ƕTH}΁TݽN ȱ>9}b׹Bb[(&m҄ LiTÓ`nWk6#ѨG'.YJAqgb#D7sB+O7IG=2]*uk$!bv|.6KH/^CdgGm?n ȤZmby1[nįqVlU(跍zUv%[Kg7hp>QZZ'r~b\@_\ e KktƏEhG='堥QS'-*ɃX#Z'76'!|bZp;vZXBf?z'Qqz #/zUėCЧ~oN8t,DOJx ږʧI]WwfRXåHbѿxHI/L98\#h)~`ۧ=Vr/7:dK&F?;W1h^x]}PG]jL$cr7ks(|7~St(lc-;:tPkC; .ʰb yV~If)|,o?K(-9F@zAorMAan+ LGd <ʰ*},< rg==rI_/*WV=*6oi_#R+'Ozԕ 9%}Cxp7 \vow;bnc޲ϼ!9[BFBYB1qWTN%0gӝ{ ڪTRv}[=ʦՆ=?zB䇲HJÖg*Ct ^z,}A=m\ZСfaôY39% .g2DO5^.΍?"FfMa5uO $-II. oЉaÓǢ'+@6Eу:}Ze7 Oqϲŷrdk^5"o &^poQ6mV6$#+ )gV31ؙ3\.FFIiKn}0(O`>=rNq3g؞Q6 'ZUC9y5,+6>޳Ӏڰo@0Yךm {%V_]#G29TrRf}p:K0n1)ERy \%H^nb5_fOD !›r:!V!vO[(Ƙ =ŗ=PbtJR:8T~b(F"f00,0{0# 7ئ,1KZ)^~.J{=퇢uxuK,5OdOWHbS0?l kW;,pB/=}SvC[SXW TVyYruyѯ{)]#DVԣ$NX^,dpQ|q0TI`peN*p4A*_HDE}D(ś Ycz/($NDNlS X-ƴ*É4vuuzs#YG+,o(F˱ī_ Ӣdz);ެ/rTL'OEu˽"v߉΂Lt$xm?DvrGnTd,5G@}ETݨsU{ʂ{e6jJqnې>[˲7G<{{EݻM+WsxghpwKfa輡 Ua-J*$㊹Ԭ+]+ k9xfuhhOMC;KC}W~%`[ eY쬄6e4A݁ 8pe҂Gg,u~s:M0_]'yۜ''tU3t}Ύ>Wt$qHQIuY^}, *tķAeඪn*`uJhI']?O8o%2Ri^m3pqj]SXO.N|?X -  |_x4 Wo{h)^ǖWK#YڥD 5l`[0B>:O[b \c:eI 9 96S h^RgG'`@ͧhmF=E4>9U=a'hˡ' wαfߏT OR E)x._@Fod8pfK2s JAI6+;IM&aOmoNۧ :hQ{$?}p iu:^~@N26n~K72,6O(g tŰ00i@oNV ۿ-spks3G pЮu8T x?u{iĽNs["h 7 ~wM=O^˲[ j2xLߺA9hc *| 3t(Kg60P'XwHCyR Иˀ7jk!]>Uٔlc);y}sbJ5SުŘEmt=&s h']>]Sԇ}F&[l ʡԢɶk -L6=Rh~^ vO4fa0r}󰝝G(zKo`O{>1խsZ.bCM&kQc3¨ep;(09wR e`8 &Dzn34(/KN͡Y<&^R'}㗭Pnqy=lqz+ވ%"tq}1B;3(VmI&n[a._\r觾߱*^/{qVKkYo҂UUMKMgMך-OSe7^k*M7$$?0kid NX;(pɊ@I<' |5^!_L~v]|x3,FC3חNx^MX+id/%".4Q *"IizWoLv~  ܹaƯou7zś1wiNkWEs&Wu;v $Rp ( oT,U,žC2H&3f% 2&'WN} kD$%>3QBhW*ZOE=!Tk> ͒izoV}4@oz,v5V"#p9vy<,+exaL+/p Yi;5h54`&֦/Hnlnz|Vvu?y bl I ԿSs $|\W!&CS-%'$[@ ZuQ!W(Wq77XF8/%T3G,3d1\y'GOU$jaqY63c+W ">;xfpN?|  bnΎ^(e>$I2mg R '^!p<-*ڗB,U1u؎ƞr3՛u%68fNJ{s (C[:5:`W`~<͘8!Nikt//1R4!DבT/^V_<LUԮCa~Pq}m0B/zKlVw#~+RJd.A NZUJNCFa&0ыm?Eq@& f~$F4#MPb}h׏֠']oSOBo*< ؇nS`~5jw1bl:0uueF.}›yq%e}ð.ָf#" YnR@(6)z-pᙩń8E\4'ADZǩ e`}澴ws'H,Szh*j|&}M^3 )J қ`g;1ا6?pffdۭen{V[˧n{@Zˍ{`וQBXӇS-O# /ĸ15^l]Q޲}+JD3ᷥVB "V8m2Sa|,zTP'V]Iq@~.!o[8i0) 5Z+mLǂedU6@-/U"W ?rk~Lypz2i),Vt9J@ >[^nzA,ZNKj[c [%.J%TlL h<-kj Q*Rv"_IrLhXKp_ LAhec0|k,Ie+#D 3:YF9nLV΋5 }۷͘}/֪Ϸ kgkͅWp?r+jҶf[S¼)US&FʃrIq*kD)_"8qqf,=la ?j͝>&ر;sb#'%Íٌ6YV9?ݲc13wal)I譑 ?ۜ?н hxcli>,];% VFh*f 5_K)QH qq  |x QYe (jۏ3I5+}Vj`](9Vc7P`B#/R"`A }Be; 2b [&'Zڇ.kFА ,W5Ռh>Rđ~hRl:͎O2-nڜ]T5f.:("B&6}]Ŗ}I*(9/Ӱˤ>:Kz|,vhK40Dy\4ma8(dSjإ()"vll+CܛdK>nFoO#ɯ}[ )s"-#JDYRCQkL]CZrx1 ̮X/Gu ™X|)$th+\dJ{):֢QM~-wY|kQyax2&JH 闍[2n-8zs6]u{|5y.ބoQ) G̟D L=!h#aSG$u|;uvD! a J B&W(nJvy{ܧϕ!>ŭ?gzR!>8rTBGRZ:x'.\4@Yh'O8^1ӞOlW ׶u'T[$7Z3!1Ђ*vErFJ?n8Hl|[$F)$#泌Y쁤 #yڰ @$H*`IBم K<\ljN~D`8ېöN4.Mo AGF#"r3jJLGyG>A:Fg| @-!)#,n0CD:Aw֭W=qɵ}[Ir+V\9/ZРˈ߼weǾ EXܬ9qCr0I|.QyctlGZ;>'|~KON}a ]%^ 5č֮M λ9?y=OnLv]tGqk \J>{t"ӫMY ]gņNto~T%up$ WK tכEgEŽ~(ax%}Vi2?`pؾP8:]8D!b7PHDxOy4?~b0=/[J>uOb+}9q#5E*oQz_v%N< b1^'[# g61 u 4l1ap+Z"Q=~2G"xwж^i EڝV~҄"~˞V;hQ ~tU~XjL)POݣ~ p}1L"uu pȟjg* ak'gɤN:?Nb8dhXy. 7$[.:_ \#Byjι'-ebK$TJ> Aexa)~I_^{)6eo=jۈ0p^x!tߎ-[ -4lvk}Wk,W#?yJ 8x ڵ\7 qo#')R5O]z3FR`xX\3 DϮDZLv5/SE +p/ ;:iUk\Ln2R -zw*HO‘݈kKIJ,S(TK.)0UszA^'dvP/wRu9žS_w@-Nl5Rn3ǀ.d[;v:a4NzMca*4+ɑ#¥ ,DZ4Rz@1#vt KrPicA]w̦,?纴)'g1G7\z Rd404P͡yCzBsg Wx`^7y WK) %!gA)R[K~laߪ6{@%w-6ZĈn8Y-m[)W/N*idg*rp9/mal10ܭUSx6;1c$ eO(H Ec1g=quw"pAq9MeӸ4YZ" 53sw[+~xjQ\[p֌cX{rb(`mlPZ}HigOCbYcG{J5s ֙Ev^e ȣxgŌ^21@-:1mpJIZu:ǂpqP_ ֞<-MF+KF/!W+@sGa(w}$'PvPh<* CLOIN׋ 32Hm#r՟M2vG}n&\vF>aˤNzk9Nmv<6d.;=/Iv]Rj%ore[aW[6ԟ)QJo NQP i!WA2:wCa`<ޭvb8?*%\ons>Uޚ 0uƼL,Qح~SRvQ[ 卵ؔ- oK{g7V\U꼍Mm7DHL$J@/xX?ʁHýTIht# 5qiurXعau+<0v)iԌaaD9 Og 5MBnc8_U(V^9"pi+<ƷBmonp#QX^(~/HjJ$l R`f/%}^@m،R<" Tk g,ǯ .P;aK2+0@N6knw\3m(8YB?,Bc+oGlhit-ƽ&(Yp,m^Ui];?f0}#jQˊt\W)yfT9:C/b_k2ryY.eta2Eh_M@#/\P\Eп[.L 7[1z+R[ZQD]S;M`Rx=A-WQ?Jʅr; Z}ɣ6p(08`Q1hR꨿\U LJΫp *nP`!iHFg"k+%.a= uC'Ǿ5:$ 2R*[zsK} C;z XH3sjɡ>yNm~ݳExLZ}ağdQMnZ<@Zxs&rIPnCm<%9a~tmNhM|qU~weSM{ [mC&t,#,x,/r8^;Ëq7|/Gdn;zVVT1!pO~ ֳy 9h9m?' FkcmK'-/pd{.'@{X@vP*!f4=.;ɘrƔCƩo3×M _4/zCF3 ضRu-S!?/FqUaT9 ;o\*FlH9q؇YGcMa|EZX_bw$cbhfqrF($y'˂9%|zox_ ⻌: @*})f w}il[cse46!u%!-jx}hEݬ)I*Ͼso#lJ<A^lkv Bqӻb<.oݻCr]>$=ofH^>$?4$D+HNCtb!k3*wk|)UM~"B$~oUcndpp_Xy+#7.ڱ6 ޗ ]C0xO98@FCx7"GBrx!LIM|CV7`x3jMڃjڃ#\ٷ¦~M86-ntf7NXqYLfqfi Ne>6 KZnOn:}^$8ߊOk5:;MrQ<]k@E8"uÁnS4δDPm|PVvqxfu3Oy>O;ŭ N}&VMݗlJڋMAֈb 9v A,R{Q >ebxnOvz9[lYn R7C/ _|$"=2 r/j bsIv .fHYXtSF r[faoxTE>9ħzO>Z"|91ϪVOmOj7&xOAL l(hw8tzo~Ar`#!`bNc3`>xV76sOJPAR[ߛ֢x+;\t1Idب%;M:] RKFcJ2:tN>?k!t5ͳ$|A Ai<|50|Tć/v+EBm1oKAH۴&ɍ7Ac;,RTYf)2Ү$9{U{Kdl$43$}[$=}VWp-F^i'#fQiZkč: [Ie:Ye}G\e=3k MD)ԯь^- R I8ծ&ׯ$qz1GXNj#MzGp~פgyoC+P@B}[>";Ə/cCjtȏ!9m1kí +-دZ`zh}YGEx2Q9Eg/ef!VXܧ Ƈ cI[Mq٥r8I|.v8;`,mO$lO[ 95J\E"w`W%!TzN?.5&AD E"CK*c5`Gr349Cl hTSP'NyБTWpՏc+?[{qMM̎LBquJ9'@Z8ciO2a}{ATt^9'o"_ǡz?\Wd\!cmE[7@{zy2W+bvRL"`{>oKSEK2j~0+2)l}V P ;zR8n?xG"z~[f&:1uVnudbP=<ن-=}t-b#[MgA=]pmĎPK1 t+ťr(&J0(cL;/0ߡOn a7WvŕG`?ؑ⿓)п=$A،puּOnY WCq)޲QXFe'V>Zd_㝁p>ī>Drv$& Q@ju3HMήg6.Qz)IL(3i A֬YC?-ddOxιbt܈vjLȠeGl^#>9s15&NIūRE$sji\|%YyݩzkloE#wU·G<BqCC v;u +uY~mhb?lϊ&DEZُZ9Z^O"S&ºԏ`ǃ+,+;@aOx& A7E;zi;UpyhZDʁu=)Bq-p^=y {lϸF؁3\Boᴸ0Hh) 69]0$*J!׳$<[ X4{}E}/Ki\:"#>u-kDk\L<"*."opm`z13Ota3sm)ue%9S$Ň='e&wu|rs0eYfϿG4ߒ<:5izoob!f9|^mӪ4O /rzup [YaSUF-]t$ ZըV)C bZCVE se>H=a"EC:d ~B@c_>JT%<]t:BH)X[WzNu1ҟy_avvZ\e:p,M5q`b+y*Tp?BB sҽawC:y3ǖ0ӎ^1Kw),rw> 0B:-қպXz(!S޼}$vQ &Rgz{Fh+ bv> N(4<=Br/2Di5 H ءu?&e3Ϩ]kGd %XƇ5ll0)t^Lģ=dKZh&O(9EQM?s)#hRAnruMq=mKj~>:_C ҉0Lo܎P|5inǘ֮[[co䀢H;Qj .α͊mr?9Z{o>=%&˿{SRĿ9gӧ_O?)mm!bjƥBJ#b7V,P)#'EWx$zS̤RuX8O1d[>cm @@-s7t&9W*f6]xei`m|E 3|oᚍ`ojW1yIVRSՏ۔ m5 秎;~2V.Gd[NEPy@G_'*eW_u87톼O-] ~ζPu4F<4v*pz(qF*Ka&.x(kE6k~;%czQmFP} >ܾeaDF&T^Ff꘬Nʜ> _P1`D>ɤSNz?gR!E)Qآ ?W+jF%5)}P2*; EPBdE|`4}6*}FXLƒ60̾MS>: kwƒPf1c,_>bAf!I- XS w (㗳r  |l/]NM< < 9砾o$I5PB3mv?T] (Զ[8VcO&Evs)MX;$Ei)?gs;[X_1f􆶆tZ~߮Rl'26,~Cc)t|2$_ƻtÚsj.PA40h|~3~>곣`Dn-xOiR\Ǯg=rԵiA‡E %/Ai~g'&L2 qlca{V-h.Ƌ vP$MU-}(k,1r*l @';gaN5я]hzܙݱ1u5 n^Q 4DHȡɡ) ֡$3eP6P5g&URQk•F-7F$sӇ(|FL1h7H:U(&3xb ǙXh8Aqx\_e`|tM,~}{;zF4w2gazu/9-WVC`RJHY,M+cP ap`]4Z J~SEAHc0lI?gUOwO7KT(6Bgm8cJr_^l62!. Al3\jU|IK:FTEjantwZ54Jxc`?gƅ-[* -#3 fAr܉l 81~v&4{TWJJD,ʉ$-M]ؑ'Zz(ɉ(CAznS>#Aپ9VtxSm]̘҇F}G P6(ĈV#8 k)%~3SX9`htr~568)e/gBa1yiЉ` !NmBho ML(O$x瘼EŇD+VωeI)P޵ 5 A6ѣ,ΆrR҄4!SVX4y4E cfI0۾2S Y_9ՉpBYlL{)f2:]ceV:~Wfٱ(@MYJt#e" 8?Ylr8{՜vmї ́w sxJLZd^8A'Sײ,\X@= :;f)EpL2&ox^[2 yZʎFsW_VXnBDm|rz̶۫jPp2[U˨olw"y/<" *~2*4;rثX 4w*E.%[VF1W/ 'H%`A_42vKb~Zs튮 =|GlS E\P{!1U)T cǝR/=NIuz<#uCu4mJy {^u Y~W?fUcR Rj-n{ 7I= &>/pQ@/-v_x_p뭿ZM7KVM^ u +Csx&Wo%k-kpzv1z=nA&O*pj+S6xf,,{KvV䆡k7@z럪.] rn)A.G>`hbFVxs&:UW[1.ØCopN+&X- 6 (f)N3dEPEx#88Cr@tsuYcIft?e_㕀YK}&eمԬoRX>gyYq]2W.!g؛mԻSZ++36% jG`Y̰R)٭_HHJIH]h:cO!'W&@`hq.qeTGuZVpY‘0}#+b'.:7s"Dܗx%$;Ҵ"ceσ䒘{Av>2 _]6eM2{EXJR4.(j"Pi~-)MS\4~0D#^sGn*S. /O:$BC0L|=N٥@eZQ\{'F.0#mRq*BK` raJxqe9rO5WeګG:@JgQ>(?FA7J$`$GMR,=k*W?b}6}t$#c ٬?$ȣOuK%#$0s%b/6t ϋMo0827:\M՘(;sLT^ 1zQE뾪jwtXD2V]P æreĀjYЧ^xrJ2Ql\s0Vt9л8CNnK;N(f$!8(YG̥͂)yNV"'_'eg'<w6d ! Lck%;aIuЃUByCJ'\jQbqdNNC蕆ìw+''!i; jmś+FJ٫/Nd퇎G٫_`iҎCخ,c%CTY#wG@^{{&HnRD caUWSsV 1+^du:I#ù9!$"N-2fHW_bJsI\+J"Yx~M `&56#WҷCZIj#b#r4N=7?4cU><,n8+ ,)yAJqk+e+϶P"9[чұ)VσƘ#sc8MhCuAX/Yڰ`UwtCCH )Gȍ·9N E6Kl| (mH/ z1E{@rbƥ(e/ɋt[_Lt"^J7oC{D܈(ҏT2$9+0|#'BrN8,Jdɐj+aKcƝ| ~0n2^A .8T.ّ"C/þCۏExׂ @wyبx =@}RU vbn!Fd'o0 kɴ}k+Ԯ"o OHuaXZ\c ؘG1H~k%BuHsR{U`lͫVg86zwz |/f44f+rmb,pZt+1:Yxg D̕Oıs僄 "zj4c]f)hm`sK<6ٝh8͕ⷐ CY8PEIt5Ac#ʡͼ!<;I3(@qD=6B8.=}[&1H46^_t] ٜ89.\ڋ#PoDݖSg =2)>URQwgSaC A엢+ B]M2d'bg**N8%Sp|xpŗ8K -iDkOܽZX2yJ::_1#M>$?$ x9$&AڔfXrÄ _3S'-n8wG. u _21"!(G"jb4}Y*\?yjOAE~*2>|OȲfdSX& ""*feh<&7Z[wa[{a[Vh[p> i/,g{tK+ oW3+[Z \? LҘ)՞jp9~e=]ROvbnPq-5p_/c a=oJaMI?@ e?>wj7x>?lPwNRQA?A˴=!@XFAam,i(ES#\#RdL9ΣsAim̄Rtu:"T[lfHeSI !N]1oC'OIa7!f._v~/"NH?6QNnre+neǩTbJB sera'x>i%'u^TA-߆# &^dg1ESDSNQeL4M^|Ehd"

)w"-iWw=#ߘuH.2@UE6f;cRQ̐`( -  n%Hl[S2gʼN>&ј\H8x6&':WF1pwkxj@cKOgL#wlogM=\ H^0 EpfGDNl5(U$:x[y*`g Xo!-쫿rT}c`3AcS̊+6x{݄sy\6 dGz2 DP"l0CJ]7?9)}".0!/jʭwПP HU *O2O4"ȱSc 'ظ]|,)ґEYx 9?WȈqbѥ{ pcf̮,xP$`qp>NcQd!e0%ۺL;pg4('8K/:J~ GiGYOf@9:з4Hab.CzuG!5` h.!)N6hO&zߘ%ȋ2|<"O+H_'呝)M͈똑!O T蕾'3#Wˈ ᔝcR؈)~9cgy 5oPOv/t>r" dJ W+=LC%X{0Yy 5O&5 kZzop^1ˆd7vU> MB7 t'6A?(Nb{J$AfO7)Gv:mzQJ̀P}9Ȱ@O )ִ%a He';U/CE1|{"r0cDg:"CmxM\>_[6eqvzҬ#(wS䒿nFjF\/ľPτ(aI*!@CV F|ScB#΂>A-“RGr(L)g5;Y E.<5/lͷRlP5;vH5 nMcȘvYlŨD͉ tٝ'eKƝF$tH ]'¼C늙B#KI{==ş*T?ʸu|#p&yiٮMvG.w-tkTr4aG?ì;gRY"rvDM.9)k\)}&3'B,~tKpFb0]pUW xc,Q_!(Z yX#k,- ' # ^1(d\M{ɱ _ -^T׾"$ՈcR$^q@ϳu["Bd!Tid-Fwp;e? O\l˼P"Z/h ԄZvtkeukt;Pj4ٮ tHg y&dFj P-g&|/qKM/PzäYX²_?Gٽ|GR}'NL8g4軉 O(uWʪ;3u)3Ze3+~L5`@OV$ b!ג"'Zy`c$Yu'.t?5Cʕ@'~v"`/`e3[{ڳO'Kz}Zdx{՝:`! >/pT<s5kXs:UB "A"KYcAs@P=/]Gx#9f%X!eCSS|ERV)nB!鏢xfYg />wQ`u<+ "ɨ5 6e{R-BucᏴ@ 2y51e  ?A7WZt y-8#/M՝Etb[H=vUlod\ÃͰdLDMÈ_amީb./&!!;3|GxCr(Op q5l9D&5&$,7jV'Q0q{.m1:->؛A)?x؝S{P2\L^%Fr:kC X*z8'+;S-E1TJޤ\.=ْKG X*e+gәoHm"(v#w4@doj'>4k0 G=wTAhD+Ĉɯex@`ܣE gq,h3|u w_ꓲ~euԊ3'BoW~M@0r'?6P.{E3{+ނcB/vf?]_.جG8BA1=gS,:Mu~ƗN4ּ}'.}!ϝz; `o%v:<:[+[M?'3,cMB>H-F". wƜ,?JeR4Fy#Α{9A՞h7<ҟf~m~ΤriFa-eE>9%.z*l3_6!Ё'Iq(ɥUp]n%|DX@$aT%фwh~}o)W,'( A̮Q ;hj!{*ğbAu ϓ`٥@0w A/ӿK56MZHW wyف=pw z ([I{Ynƫ3'} /a0fKuGzĤn7FwSZ7oOܖ[=I70"³L̰BЍ:,8Vf-p ׵8>:sg.>|m.]Sa2tw*z?lrl2Uwb-ze;(<圪f%Z ȳ,J 6ɏ3^nbK.eG-L eKIr7KӉėY>L/sGZ^ $ kB]yF8!RN\z̖EN;uR- %e7,J(;{缯'tvs.AsWLSkEKC8]X7,#6^>[9m_Fx7{&7|j^Qj^SvT5̰^^!%}E5sϳeh^kq3?c]#dp$T/kX?ߊjSHXJ)& #, ɲy)1 όI‧CY^YH% ;bcnk6'_շJ4`fm-CM75viHd|Q ,BПhm@vU^fdh|z~er9^\0C~CZg7pCX8_7f?ev'BIQ#Ca/O05T&ބi^ɉ rU8ߢ&qg^4Fv#ţ%xgue S!(JsMHfAPY~Hu'EsAx*&.L|Ԗn\^3k0J/86>7F[^8 A Gx!B|Y1^+7snyM0?C]KW1ut1?7E;1Fe(F##'0aPįS#ٔ'ua8sq_˦B(_YDr6#ʶgnE}ؗXV\u*<"$vƔ/6>rCYw2Y=#s[hf6Sj9K#C, ޢli2 +Q%ҊvY[t2ӃI)hMe*š!Sݦji| ;c9H}8P0cA6cm'oVKN /V,V8~cՉiu=$(=A=wCJ ~J- 3v1?#J0#Ǥ|52i8ʎ?nwe&3lJ vU;k< 0x%>Jx;y+HO'Jh=<ɕ|1p/  hmE3fY͗pDG/FbK>f1#:jqnYPh C3 Vƛ `} L#xK>Вg?B(JCLX&ρ7[xts-JQ4`fV{#7 ]1U K@/bxأ(܌g=:+Ǣx5]w|= ĕ9 -E>HϢ|ч1l~,ڥ`~nR\ A΋At勄 \A[sj)K>l0ߠLc}9;|QB`x;CzA>!"?3c@fQ.XYBVM(6 Dx)i^I%IF?X}p%{p{0n4vC2-~=XeWkwzf H-j8Iż:wgd)<luC'&:M>]Ud 5iIG|㺽@6`yqr_qqWQiYF_ JhmRVB7hPf$)/MSnMs*JʍFoY}oP!_OXͼ\Űh;GZqJ}}}7!MRV|OR4nA AKa) xoTneK>_t2#ȐOg> POodOy4y^rhUHrM*.?p#{Sgyox4 K|Wr. hm[ތ;Ζ*怑<55mP;HGfcep ~go/^V1\ ^e@mzOx^ ׬Z/,bpD'x_k7ˣQsr;P~)+c*!@E/bt2^=X=QC&#/C/2#l| wÜ#9BQiu0(m)͝ڵSMRo8d]htٽ ! |U{@%D΁,>j$C;Yy5?dƸ&HqJٙkM8/[󍸷Ou`0Pnvʙ;_oD7MIj(aZiKV|IysUP0n`9n>QФ6 ys9DJ &Z̞5g-o)\aXS??k6[4ߨȺ4_ Iѝ3BY,G7̲DR+>+ȋM0 ߯V݌wEʄP_(x´[2xg}& :"P YB啚G%C(qr&DnMnrg@MWpFe}.6yKDv3,QNKN+8 P )O0q(q8~2n0o'\y :lhS>H~!P^P`p;-Yƨc)RGjHQwvv!ؙb&:)[/?RcnJ)k3P}()J)s>7>ׄ,ms&hVt00p<&ZO%K-HHX HLNF&wze)uD+ҡFIS:oٍnd?]KG93 )lyg 89A 1`O58J[%eNGT-i:[`@[R 6Hu̢[?$f{T¢A)܇\+zPBϱ' LEz!$FaXBux?)@:*,NGY޽.1,̴bW_tJ 9mr^ v(5Š(@:U[@^(P,nUV'7 HlMFkg q*BQ yz,Oq{nr{xc",LR 7ІPv-HچgCSi8 +2)f ?ƜG#t1MHDlx%iT#6=t[OSGAu5/O.׌d 8$K"jGd@P-Jpfcv3d fX1@]2 zjI\4ءڑhl=:N\ Za_M@ST[R/PU%14kN(#ד2+SDm;\˾~e*Y2 b a(ކpJb ,%|WjLAMH>B<D ޡj%.~1d_PŤNPWJUB$ACw)\*hN6黴q`7 ,a-6<}%2K08g% RSCv30l^kp8zЏlzxvW~5\Fj<q,B)xR9 ]i7! 64tXMc\qXtMlTb26ة~-ycʨw͂,4>k Iܩ$64EЕퟕg`'4:T7!44Uڨ`5Jj/7D01zw;ݣ(`^V1I癅FPQPddsRU eB& c (!Tńw7jT/FQ1 PWC9&3/C _4'.ګX5$}NteV,<3 oTwߢNRp[ϻ%zEH<% EWy6_֊IC kSVA{9?T,tR+qBN7p1*p2XlIt7qqϦ1u7xY/<*'kނ".|{Ƥp^z]bL䅠#ᐷjVL[ޤ,ܵcMʌcnϜH2bP͙b]|nv-tM+0L[~Z?I/a4M[w ++XpK^Kx#P_ >bIlH[ډ,\w ҷ6R80NB|6k~}R|O N<ƗZCuY(2:8NB_o +ב`wKyD0%wTR^\H)/z Օ61Ul _q F!̤T%k\^o5I]$-)GyTFWeo+,Yxjovin6{ɃhS}-ꖽ6D \& _\y4\) b _F}Hؤoؼ؋"JBr.)[)&FJ glS\[푰E(#_II!7)"oj9IY)ZRVz5) ץR25RNMyw={-kGkbj*jtQ9(j :@*Wt,z+aymٱ֧P5W#s]q_u8Śs:2.=fs嚸(on'0.sq H*7ҋ]bPZ2N5gJylZ9¬eRG3Yb!LV'Joj&\,v#L0ʺ2|w 8X&@Vzu%ДT&ZU+?Y[XDj5)׫5KsYfUy:/«ɣ'nO, Wpŗ<[ADII(m,W0/T#?EcddG2T>&VDu1 5ϊ8qÔ`ӿEBx "}PFz8EbyjӉFCH^Dr! o"{jd," mA1>&<ƈ&4$Ʈ4ẽX;٬ d2S<GH`;OnS6 )H]>RT-YyfiwlʄVUo-Y–_{i?(ö7)/S/z؜"GŇJjU^^gӐSG at@i=O&`dy4ACOEiv Hn( =a95W&f!O)E[AR'V3yyPx$ !$0I䮵1e lb\y8֚R~^4ccb# F*aΊ}구;[G,W0g7e Ɵ!X[Q@Ro= 7_ a4#\;Gߜx%ϵ2IPk5Q? wuyd!cv(Ϗ9n@ȅTPJ0&#Oy;&LJEhYrw֊PJZe(v@Sg))\O3w;xn!m*l#KDU FDAvHH,9`^)%@$UaNxeY˃G^)/#VSf^Ht""-gQ˿ei{ `P\eBvDygu 䭨E+#^vH6ssQ7Y1G䷪L7}C~BjH7兝jJx Q/DϺGZכ`-H`.9*N{ P,Bzi,PdhH7xJyĊ+2>zdZSأo1ڟpi ޏu2E$Xu":Li iSo\A׺+G:\Ӡ7w1, \/UuE,tE+cl.K xK +-(f4L!8w>b$UEt!L-?.@tVFmчAw7\7|ÓTR^lNj^USrc̓$q1-?¯I FKvkSG R9p[t)  K9>8{:;嘹NAdM=1ozl( {ǕZ̕68L7#vn 6Ү'! \,uxT@gd`O|ۧ`UY\,N'y!,4(';M\ )? Na䵯ANe23v\#!P8w#WxdPa f6MUxGJ"TD#7bD&mD%a:!76iX`6l`[t?q'._b|dZkRN*[mJle+'?E,xJB1fK~n8"{mi|B^FoCȿMO  <<60.73S(۹Q [򼆛hr~@y#/iL.m'# u[/C~ ֞{x}l`Z٬ՠ}ekȾvcbӾI) ͠3sS?WaΥ%F̢.c!]FcZ,))ՎSFo0'7(l? z(>)PqBxH?ӼP+)]Iՠv\wq0#0 uDYͮh߭ܳ&JO/6gKWǎD$:{ ,l8ļuV:<( 8IW#R{g8f,<1vl&iVRcc'TA )G}o!3 $By0S+ 8nk1|@'.x>|/4T+Y"nD{%cF~~/H3< F>(qUH 49#-k-Ǚ?H&q߭QG h"[ Co- ҳ;gFk@N9iOfbLz98ht\߫/AT@UeA'^G_ExhÌ PvrʁIljqS+$O9@G#z7gX_b&lVQ$cbT ;u)ngtey㟝<@LG> AGHuRh4 '~1O2U &{FLQSo:XrcrJkx/+RewrA I5.pFwڷ# }͍hMeImQD`xSqތCУRNۈquHgvJ%:U$1k!hJ6N`vQNEv!Syz8-oܢs`]b!;mu5m5tcP"v©t&d;Ho85E\{ g;~;b&mLz(π*Nh $BNK%|t/b۳zf~_dU9tRDc<6GEnZfG#(GSGx_Fl:s$73&o~Z0!ҧY s9*~6U]zɾj.qN -㍺}^mS+r 1"}1ԓ𰮻7X A`;E?3|UlI/[P6k^x^%)@/W2[p\* W}Y]YʇX*Q(p'ȃz5" ! Qi s<~u]0Z]A@lCwH7ۢ.՗*$HF6ͣ&7DyfΚE!/'\CpyRVKQ?,ݡI=q^$Yd,n%l&ǵHЧ$O%u`Y²|77F.Bio&z)xc& ^~1rVw?}c})b=MFX[X"dYaW -ȿ7A0ث%g*v6ԆtiYg$Ep{pnQEXLZ<R_U 6aQ_6Kd]- "HOK[h675s:+\KkjA ͜kPI?9ûQ º8(t6'2H&+}$.~ % pFl:3]21&$X]LC7#&wso*>: `˞vfmC[&hB1G(O<=v+K8 C8G \D]9p(jKV+K%0J#(-QD^_ONe}K) 6x3Ro&Y|^!mUt  9*+sHi<]?XϓPj+anxwmk)S9!W ]rg{ĸ 6为`8Z%8+tSY{ NA7\kMޯI2W5͓JvL*QFf3kA7j zdwK7,_)ːD/|WC/4y,"\t?bo o܃~LQ?Hԇ*%k.f)J.0pw=&\ RU=<ɾ:rSR uH/>Sy$ dϘ <r:5H2Gs+}Y:v|iL)8{f劍4JǼ7R:TqByLRf>MX|Oc,P25o|@]*v?7&|KWzoM%|)fqJ4iS9;kErXg“IP}0APoE͕_`oR5x \JjXՂLBࠋ z2|sL5?LYt{iZ4* (H HE-Qo1;m/z f cNgLV;Pd5ǚL*}]E ZOSXsC㻂i5\(HfPg"/NkHOe0$K+97j +,VMeAS*ZX43&OQG.!xWF@>iS;C.[@42QD@fWD/R|$f;TE'&%#t_+0)q\\Cr L@iFXjhљVNK/^Πk ER t.g{9;YP45;}'8Z(%2ASQcZ=a5! р=KGAS,Ge~YҮ+Э[y T%*~hAmyS:IWq|ʠB|jX :U=^$y ߃w>b Nҽi@i;m]Do; sr>!h$V3SnhScP4o=r#0ߒ .JV]c}P/_8WuWn8w2KslFNN>6duFO+$ }1ȐCmڲ̶\U?&zyF)@ޛ5^4DHxѾ)?$ͯ5K1}(oXqŪ4g:+Z̀Mk:dK DlXy/&oYRoqw1 Dq/ZUn'ѯ ]`1I f<̈́@:"_QUj͕4R̈`xfA|V_;G)gLrw2(eh@Ho@۵ s'&Ě'Y"0C{_ׇNcQz,1Npϥ:," >842-׌e6>KA5KE@. @rve~QFK}>f>j1LefLYOT^@B:{[bqAco7琝G&adΓ ھXHk-$<>o|VI)#󹈐'=G'w(0ٽx\=mXx<Χ& |Pj9T6 ^w"ԧ~Kl B/Svunp,Te16ᵋBtJVNs/"fXC1$xz/D]<̘gȝvj?&!VvPct8/őGxorm߿7)I7^SJ03 Dka.n$Q1vON1V(w<%ae ԋù̕sHz ͜OHl?ooq۷UTLBvߏu+A YeѴp\VD'.rKs<_ 6'PZa .<%]b9-0ϓVI{0ln[)A )q19I̬᷉s( sK(3qyG{P@JdwД?Űxf&)] MgԨqmXZ!w1 _QL/Qlf*e iDo- )U(֖h^,?'T)?(iR4XKa+RVop,quszK/[Dv[Tj ߕ&[9te(ꓗ 65xby<;1#j.R $, O0.dd{lzASP&Pue`M<:!yרy;= ʠ`pK®mIpnzW]ڿ "e ȷ.۠^@Ob~Z9{ `枍790W!MhL<>)bb<<'14wp^۴OEm'8#La#R8mw^["A!rOl@ bo}xw n:"j^05";[洟e&(kql&7-? 7P=hix0Epd?ȱ (&"3{*f{$PX 7p<%J`1e>);@4slf1|_ǿ+ ߁\Jr cpsy]UF ^rk+: :4flF߅Pʋ@GG蹾X{(Lod]- ݤ{)B!ܫ0\kMg>rgMc|~901qվW]1a\ie|6VU]fT!a rO TiP@wGl8sw^nr8^ZF-;*C[G0XET]1*BbTsZ zͥit~ p㜮70KƟ"ji/%pnZ\SoalG1H"VC%ɷ]9] X]D QC) ,- ̕:jvM/o pX ^D$Ü͕y.J`Lѩ7h9 '?dlbW=ٿӌCvvA^v[p|#/3@@) ] Cɋ<oI%Kգ4ƨQOVMx:VA#LqJ'ѣCHO/rYSU֮Z #8{Um-oPq3L rRJ9V?ARAz̮AS2ph],L E2 ֞O5za0_^t8׸['pQ"_>Cizk$+Mo@4g QEO{GHSAWi\N|L7HD&V1'AyRE];G:+Ᶎ6e K_)݃ [,h"}%ᑝB8o{g4<ܬ=,WXFnq?8i?a%g%_:s!0Q#k4򎨧Q1FӤ8TVΥ,1>*XG6Fz37 98$4IuxGF@=aFk?Ap"f D`ئyʣD=zFAfV;?NQ? *1-Ճ /1&TxrMr, }YHkoFF;SnQ=) wpF8Ir[#&4ජ+xM眹g?L'Y8:m^rŦS/ %PB@ךtZ= IQ CoePbY# ̗,Yޣ+xػCK 4V"/YxeXe1nWs 1?et+"Cc)ᑔpA <:HXt.exs)DTBE=Z<Ҷ0f)Tt|+Dj]~,]?cX]5/w"D,pUo`lRR"h5Qp8Vm?x ݌i)2>s3 **T㔇]ۯ:/&PrT🆱~;R=~6g-I%WA!+#xGU:- $y1_gN)Rfmw),a;M걹u}I$w[Q3|Q=xtV)fuNԄ10rU0δxF[ bSrѳ~K|x f oe0 Fk $TY%)wؑ&FOP4QD gDZ\y0;Kiadne[Yqy'E`I)]&fO4C!)(KP>k^&pXK\: E&'D2zRױwaOhHjj=#kd$!vxd'ՈJ#bFHAc+Fdņ(=EQ\daǻ[caq"{~^JԚxͬ^௦ u X|VMB`'3*n0gQx \gtr/_!!PRq# R:M$ȑov ǃcL:Ewv2 0`doSDSa2 Lk5~TNaXM;ήgg+/R_REK,!6ŸMӲOzЂ0|y-"y"~>Ys4~Z'ZޏУSPL99j_GyqT4{S{taK2ϡ *O:+Vܘ@]*Ƹ"J5Ȕ+#}.zzQmrGGɋj@C]] 5"|Mǯ1:34Gx 敏p9hN|.R_@E&mRo rd'*>2c}=)ECgkG/j} I|B5%jɆ&?*kO'0_m{ycצY8-. ]-ZmX>dw =l3 [wN=7a1qthz)ꤲcjسK9ݬ5G{V0"_'֪('nbt|6c׵nxF{w߮#ȪW˖x` f,B$dt>PJH*³0Ⱥww,ECgLhF܍6J"R_mqԸ<T8ؾ' a@@ F7||VmЩE} U7!݆9^[&z嗰w.tӬx X^% :MO @}BuHH' nJO%UYfJGiO&L*R 7l m!tу0b0ޏ 4cPNzoA=BRsiݔ:͋cyyC/+4[TF= uNES;Ey*N8*tO_Iض2lGG? 6A [㻐_7?LNH5 *e23M*F P죋uʄnP~(f)'CzV؏` R;{v[۝?6PM-'33qQCTw5:7wtQhq fE.LC=YZq^3)']8bK39#OϋB{䑲є A8?~ۂŸ 9 b w,9DԞ9.y$gfqVͬeSgalshɕJmRv E=B`_(Gj*Nk.@ѯf Ue6v<;3hs=FO0' 7PjEy| ,?yZadDp!8v2U""x H-Fyo<&xzH'Ȥ]ropvn^=<Ĺ޵~Y奙j E.-V2)iF0⑪GGޤ5upf-}U8p&7ZfLثá+>9)ɂ$Ih"O=j\)M'-:P4 `B(@0bUIzWtct@ ]М,/ Z-JU5:Fq(PC:0F|4ȰsRBtmQ ]rw1,Lαf1ϑJUڡ>yXv 0y쎛Lzz|<`{R{UdAg>ig*b+e y`Rod U@2haҐ|uhYj8/yK HTᭅ̧%u &8{M@-)t+ΊV{Y4%DWFVxz_ۉ|)}8eaZBe15ac1ꭧ`PLܥI۫ubpEL!PZK<j q18g2`_R9X>yj{" ؋s(]PݙL\ui>3".$ (6Uq91JvvUh$jp5BzIy < -Հ~&/ 2Rd`OCW,~>wacAG=z q^Cp BpȗFJ0x;/ :H EKKGJx9bg Xբz#[fy}/I]9g=r DL 볅M"kI'N݆!tZ+x;*^NP(J2~ЉJ̢򫽅`C%TsN5n81s? g?{%fl? q n$h4vl9e#$e_ReKIFAnOl#"rg(1LbԵ6W>35Tꮾ(kȭ@VϮ^fR_2ݥR| v+c۟x kǫ1@1HФ~$΀}<1S0fg+ aJJ ^]"թ=Y R8VŠ boqm{ {Ѐޟr(IO0IyT\t^ 6'kpL$j, I{£?FL8h<`M)a;AzAEK҇ *}#ƳLr[b[s"=Z|,gƓ'N2m ї%V!7pŭ7QHk|Cy\0+\d}5oy]c8 C^PZ0ݢm̕}Amdx#>LC5/|=)Q$+=rUZ $J 's┳M-!&C 0Co+z£)dFPǣ{ATeVFN"EQY]&kLyV=eƻ"зPL({D[M'5lI-2[/I S9- )?%;Y %XP6Wa}^yq-T}v^2⨶0:n] ȫb޾ɫh6r: mKQ|^E? RbκїBnkEһ=V)t3R91IWWT exŰa`xKU>N5`ۿ[Tr-4#KUc-8_Ov9p@x_{"y#$- uv=ڒ:yCϖBpv6vᰎRI dpqzArvILeZ$Zy^#n}@Oj8WAj6e:,ڲwv*╲!V(,li H7kr>4iYW: wQã8VKjxa\344%/M!1D b$gynF\Su\(^,.p5DnD ,ԦjYgjYfvuʼ2-6fK ot0€1@LGLW⦡1޹\6yW>ԙS| h+/rz5Hsiedԅ}<3`dK M-sCAH0SO%r#^~d,)d.xu  >.z)>;?g0ò'/eYd4[AJ853횹);DbtG?>:h9ǸѮ; "gdOBY55&* (U٠s/%ڪWa[:yhvBWq"/e`gt^eb: \ڑ=X\j !*alBJVƻpALӛh`d<8V[l0_)ƈ=#_jM.Pp.i<7zhjt 6%~!*:РI+<7^(w.ko98>QI w" @唋Lj@L+@g-<%)k%9;ORũ cxK~mANu5WzBϿd꯱9Bu,R.8j| 7zYNln"<7`{7հ"Ii gxQkxX[O඙^VQo"E袺dNLMN k2aK=͏1?iF" fdy9?&a<S)mŸ<p8cQ[9&;moяϼNLX~8Afi x.G92 q\U fg͗"#1~oYjs`T#V#{ezh:b M~N0K?MCU1'@z 'mX~Lk.Ћ?rזbߋd/'h:"]vGm⾅ R/s,9ydcc.8%î"8"} HBsb {̲<_&2IffYMKHG"\ホȠgV McMB_<{FS~  WY&XKTc'RY^M{G\] {g]RK&q X؂WP~Ql=Y$^k#Nq+D7d,(Pa%A3z(fV=se.ޱ8* Ø1*c u1w~ EE!7d3{moZ;Tkbi @hʷZ8nEͳ1%˔Nnv9~\VjB|{{hԓ"9G3@ؕ&})1v͕$賍݌ʟE Tyd"FK{6fos%$3qTr#"m'oW~%RЪ Wֳ[sea:3WN/cdǡ2A=zK3ja#;t:BXX~]a((IH%uq;=S)xf tMm'j\_vK=Atb:Ҹphbaxõ}}Uװ&9>x32冘<%gRO=#fiV椠̃V6P+[rVfHT'4ooAjz~}ާZ>yeŸ;qoc;u̩Z#1# g mJ=6WA }v6c0(vBt7Qع*̭KaJ,TOAR*@`fi,6B; *pRB|bx?$O:C5ɏ=ht-EV5L0^O- |$ABӸ}# ;uscYhڄ,nliޠז1"(,. K oAp VxOc#~;_hrC/;'nJЉzc*oOc4 ./pt,OΕPo3`4PeNʠkf:N+A .'!eFμM.HGx@QVȞT|V$Z28Ӹ /yƩS"nȂ6ʐ; ^.KE`uYCIV( 9<5*\͕I= !hv?]9I,jq|+ d`Ma]fH6EWAeh=)feBr3įw;ow‘Mgurv<%ۺ;mGmIÓ$y--8:='֡V+pdoYP UdC@J,Fiz%j&WNS>|whٟ=K1nJ硅gӽ6Hqtr1mJUUc[_HG;a'J? ǒqӺ#8^\۾x ûgC|)ء-}:HX%΍ޡc =-sx(X"ƃ#b:i(W7jf,8^2rb`q0fb.( N%xc'SuA2;Rч!iؾ-"[]~$<|/Ei[5CC% TڐJY&Q7fv8JbPhͲ[A5S @_  V)qIhKHHN $H΁֪&ʘT*e"4'`jթ2DV|ى.F8Q7W>8 (͘8rKȜ3YHOMZ\!cc#lbu"QT,_M'}6荝 X5ZgpRN\ tIzI]Hg:(o Yn>%]Io&k\ 9{R緬%3s哼r?h'ʡʁnԚPi[k$]bczPY՛tU.d ٷ0 M0lׁ`] fbp0.T{Y|655Yܨ%~ĉ~"[`LBIͲT'H3CWlSb"9|e0K $Pʗ>bzyN8vm x$nHRmx zxB3gJnK&13+K}a{ ?P-xA s_eR{ҡl%OZYax+AbC5ƿ4?"WFVHsW iv{0+-bmc;|q-8  ]]6 ͮ]گW"U_LHawNOycXc WE9+:6-ܥ qBd4/ļєN\Y##%6g7za1%!UمwsN[Fl4̣dFOH,p}46 vi;av#?Sr!6mk۴{DxJJ6xy;.ep nvnd{cV7S8 qdSskXh9 ӥýR0_v45(5%Q,/#׌%.F`bb8L.ކ7T"A Xt.ofْeJ!hE'!\pcy%;n6?mt͚/,UqKD[lw[)EYM{2oK`x`؄fZڼB0{~~IH'nT yPY7 %aPJsĩWkX^%'eeԓz A,Ƨ,&v@4n20 R6g6`3C}v; Hu yDH%@VB ;puQ/,ީ/f@ì o G;E,vr']+?z@W2@ͪ՗0{AR/J /rp]? _җ:8. ;8z7֮eѱcZ\lQ\A)g}&xZ|7Ja~@|h'{UN9 4s#QfCEMcixDr-Lj1mFqf7<'lya olƖ`B)u,3޶o/d z#XFPYri& 2 ̫t5CaI^Q}gQYr' V xP魋| |pC+NtFx?cJ`$JHډfâqˀY_]ʮe;vvGaq]G'-?sYGAygp9/|Rx 9@!59jn R(QBlDg}Ê?|h>w.a `F W6 s㾫YԏBiR [ڰ[zL-0 GSmZ2mlK]%٥S*0gQ;G~MQUo#_LH9yr4)gR62,RX Zy2b- 4K+︺$lo$N)eyH2iFf-bH|QZ16O1RxJ~Y/pUr0ꁒdI(bc_t;~`Z{.ڜSqlkZ`{@I#G͢+ÛOn@lX_jtr4/b3xLzJѲ(O|-3e)|i/'? |/P#Y`8c]kSrUJQ]$' "cspvĄDX/!ToX8<ژfYHN5A -/aY~ӿC H) )nJ&i)W.,WzIRhq珚a0JJ_0/mAp?nt_)S8v;ޡVZW-I~ԦSfJPߡ|^I 3{<+*M(;D%u2^/3 WN4A# ǪoxκR/E{nAʢP~v;JH {|81uBm%I sT |%Ԇ-QZ-rSR&)5aR~۲-ӗDtru:\ f'AL,0sz0y dk5AB .KS~[#ܱ|o&[˯5Yx̀ˁ qtD%ǭ9rj!2%sCt| ݑ pEq PTw7>UuW!K SzlOeq&b_F]eX:l>+(FXV<ۣQFNu(~14HXw{~7DŃ8GA7lI!p%wnݻBrLGNILt-xWFV&ʦWehskån$J>8dS옅(MḚ+]TA!V~R)u)vxчCh+O)l¿d͕,Mse'Q0WD&;lRۣTGY/7T7<;~M!欠rL.Q'jX'vN%bǶ8)XrzN[kz 7\>4 kYL&~| b@ I8I$hr%Ad.t͂uY*Nkﲣ"P׏vE (w3:rޖPbps\J<99%fb҃z3Vk<18K$P{EqA\ <67Gp奆-*/T*m*Fr >F_P0?6|ޖ<^yˈmmm@1O1 R# slEȚfw}gN 6CYzlc?hˀ]GJ푌i%,%)ʸ=}[$W\rsyo#Rs(H. يv&^CRXȄ&2sjtDP]ƚ+8Ƌs I UC/b O禴gp9~]x^p%f͎\5]R9Q,xLw?xa5hq1I's"(Lsg1SWش\.}^X /]0b4!8ww>)k7Aehz* MN=\eP)cmϘ;@MK[4PN'Ph?HanD_%̻2kPWN%{*`ȂL{s&U/CW<:bN,)薚])'e`t0B|3]Gr4)ofxߌbs^P#}dlţ@V}-ïW7b gU90{HD.q Hjڒ02`n`ypQP0X2[+f罼Bь(v:PMD]i~{٤܋<4 |毑a ZF4|NB|ҁ%- Ԯml$LNz${<,yґN!?F۱P||SzfsO3vsU ʕ*d(K?l,4W 9\$3^aTYCHglkX 9kRc pjV~njRN~2ԩR>ZLl[x(%)7XCzf{Z9s@٭W1[syC_V#2}t%' ͽY. ߃5p0`oQvxc- %qc|ːԬsRZyǠ;Z/ы5LzE@=H@#:2D\ƗcIEcZh+Zf9Q*z1l#y}$8ں1ȄaNb`-`x &d9[丵F~ÕU`Dgp ՗} M߄\hsb8u҄aq G.P`y.z'}6ړ!4Q&cɘ&諘|/ cp[˅[StMڞkvm?4?%h,d۟7UfxB) Jn$*U@ED\̌ 33 3n˰ t\ ExBb79yn|?ߗ4>}ss'?cC|/X";Ç>s/|Q S %R h(,+m!-.?DI}M˱(FC2 Nڕ/m·zԋ.9]qԟ8h@P3 o}$ZW7 [ϠbQk1wܸ"#gY+f.p?y4ݩzkYzrL=OOQ/c4 r_2vJAyµeaЛNAm% @#ӫ4 ˽C+k8S9MDy]V3m)Wnn{*pCZ;ퟠ@<֘b*Z|}6vOI-SNnmBC)dy Ku}{D|,l\d9PJ0`2DTqn5"|Z:Ó0 l_P]#8=!xii.+7?[ɳaOp-Y+`'.n$)۠,.u޸9yDwZ4uUxl \337"s)Omh#i xtFCvC#(S6`ܳ./J4Mcw `Ҝf\!qv>#dmwhm[~&~ J;q%2E8H8]&[N92l2švohMeiwd:5©|OCE9sA{d:{ɧ(CfMHSʐZN^4oZ͛rfU}gE9S.>c@:_2vѪsX`-N d_/Ջf 2NKji.EC֩lA`ClXFF XH#p#WP2<7X9wA-#7gyaDkl2x\dqF,BcS*FV {'m,YK|~z'=>39@mqmu]tz;童O*OZĥw&ZC{TшS:<^Qr-l7[))N!MS!NC=hLb3P+ĭ1Mɛ{,$`ߺx,:ʇp` hyza#5*GTMD1$NNߦݕM\J'z{ԁU('Pu26(1GIS,NܸMmy)(pf  v3G=j WyMV?kl P "}&d*_ۀ щᅻ|  9wri `rD[qeahՊ; Г*уI|Kp5Y9@ZqGJ贍:\ߞ›h+ iy`j11>rl߲J8i t>#p.Gdʪf;;9t0ƇPRyv*Y ٿ~Ӻ){swp9<]: OԔde)[մEsTXL/.fAnOf`Nigu *W!V F-OwPf'm/ *7$aэoI\\^Ch]}eo4nC<}INV (![#i< .\2$_/*0+foa Q AŬq7LITšj0e7Jd)sۋʬb Aslԏ.N^2;峆w7H!C)Lkp0I6#,0:%q4\ǾƻUd¾ߟ7Q>K%Lv<j̭[OӬomw6HK15p}g%y[圗M QiI\/ەJ RWZ|[t>yȿtK}ot#]q%"L(S?&6;¼j jjҘjͤ)E֣FĊ>DD&x6-viBO+1ƻ?{7{ؓn#t|ԸˤuհDȣ 13p๗Nñ\JsҨCx]WkN+|X^ ZhQ]swGŨ#NQޒ]o͡/b5OăQ) &ME<U*odῐGKf*B)U")_"LKuh}> ?謶x{y`@Z rѿ-pߩFC닩qYdo:l w5YP y3cRȀ(W2./su/lÑF}@*w!;1}8EouP6Mx|G!uKBx*^kʵ{ʓrTRNO<ȓB?(^ێur} ?a:!1Pޠ؈J`Kn鸳:wRWHK S](>E,a&5} i HÐ&GRɡbB|LFX T8IMYiܓ3V:x'[Pf5 0z:9uoBsHP?$)\L~*oK9",0`Ev~M4[KF>bwn2sPs coÍ@|aZ`Ued6?rNv+pa&|#i !n wQ ,I~+: ^kCG]\Y0TӰYe7Cѓ/eKT_J.BudP%x|pbbn8; DRN<\'y a~k'+|6<& 5/|MY^4%VHlPNtk 4b%ѝ,ae?pFa% m?C@4:bnB'~p+(=SPV|' ~@>~_.6 r)<s$;dA.LW/ToHA 0)FBC;40 x(T.T~𨃬]NtSg M *pL.g<'VƴA]bu .W;b 3#nVrζx5.-<@Pe2F뽨!UYm]q\Ŝ Q8O1y\vFK6+l-.B5\*N|dpBL,l~X>9pd}G20xmfri&ֲեopV[Xzx̼c9qYjdˤտ~iSUCib۫5?''/#8>[?-m oѻn/k M<ː{&EzI!ErXQc(f?%ެ:5P֘j5ǾeAMly%ZYMo֫ Afp[O D'T!n2]&LEFUcyt'rSw yuLr;_7 Ep U4do`TƠ^ %BW->0ZVYZ]o^RNb]ŽIঢ&tn:2J1PM}g ,ssN+Չ.rhUك$_bczգ=A9D'0ï~-Nՙ3ө8r"~fry9O hUx 3;$zXY,[TW agҭI,0&)XO5$Gb?rkW`[#9YMDEH>NIibyt2EINMː<;Yų'E$&Si,hi^1nH?uAqq8?l@N>5N,b\{iOr lGP\ǡNR`#N^(Sv;sk;7T7;9)bt 6}F"UH9 sD7LT D`"+ajv.ΌMo&X p8N*8.,>3`lb=uxH31gfhqH'-u rꝲwRuIK-t+:îܴF#ԉy2YԶ^{fj7]2>R l#N;:@ZVNzwxj%~( WGd5Ng0WNIJs`\myIF/V78T/. fEDDf1[εll{_N\,Vi^n%[ˈEc-`ݜ@";_;R؂i;̋}\p,.\ЯGs'rn^!G >6 .<$ s 7U&B?eKSeI].Cտr%nZxO+\J>bGт m!v Q[33mKeS 7s n!*~Gdj]x}N #obݜd:`BmۖXu>Sp =9١l?F:BBh guJ-2WqX?̗BDd=rBr;2Vq)G]cl`[R&Xn Q(e(lQA.v!dZ "G 6rQf/CP\N9׊s;E-b8Y~Ԅ-Yj0f$+`YI!2W+dj:#f q EM(1GXCfZgNxC#rx4Ɓ0Z(F1 us=h9x9/\88 U3.4(ߡRSNtknaWi!kZYRS‰g;qG^{ߡFBn * .fObɭEuU}0j֜6m4Hi. Cff.=yqC] ~J  & өJ9rXT̊u gwpTGNM (]Дjw/X^z\~dZa0o[:C!(cK %G~P/Flx4Jv]^GA}7Jby̷܀/O4bL%ǕŶ= bx |9)vhZ@ /cc1iwjNyS#wk7͔,d݂Q:qtL?d%yS] ˣ4 gY )9ݓp9e}עz䲾Q¯ /pP f9vaHK C;|X _4xן] S S wS~?h@iTx \ PJT-p5wC-ysAN 4Vr`PT `u9מ+f\ZP-cZey}:%{rTn:NmIdTdˤ\pYɔjkĨ}\ΫL@ĦqY7|,JBʶ<yP+u4XǴղ5M%YlM|8_V;E"};MvyP%|R`Y@t:Xf2. >#۩o'ܻ']:<yh遑]b$q x=nS4Ыez +QN%ݳ+(xiRfR`^H x)>-$I5Eh2Xiz&Pc덐xEM}0~aal.\`3Hْ]0<G݈u}`Ly#8/τ<,ln̸2n,C@N>GϱTm{ Ô Qb1?3T"Yݐ4+Yu déC"m$P_8%Tu]o}/!!iG|G_ck' A欐+af?%<;HوDiV:XV!JU)dq\)h댴$<bič8LW6 c1 ~Q 7̌qJv+>a#YS$cؘޗ jp>j0kr:EOI׫Ky1RvЖ? IV/LͿ펩(Hn6HF˫ٺe<rҏB ?nB wgxoC=3.jZzUM%8 'NCyn:ՅYΞ qTq![0Pku񜉪d 5\YZ&y YfoA+0wӂ9e2lHb4ش""sRA<}:}< H*k Os ?ʇͨB۶*窫g0)Y6%eR.< |Պf3^*_z&'_ 5m ~;C`eyq`mGPV>B\bRgP}rDhi-n!C.3]{),Xl6.iGp ܂6T Cwgr0@GQ7WI*uv"IqCn@w֌~9Yq!Ks3LmB+/Kzf*܊ ~dJf4QQSM[Ƚ32QO[T_@슶«?0ftC f\C*V-`"g[|a)DA>sm_}ĝo\^S7]EGQ]:(`4;c bA]ISi<\3VhpH75 hQ?I(0kXug9uٕgݔ-&^PfXH0;ӁHLyuS̖TųRQA8ҵRU3;pRduKwNc(L[Y9D6SY&NU?# /(cE};`ǹk y.JF"lJ-;哧mbm@ݶN2i39"Ï4eX3Xڭm%` E{ë1TIe?G݁*@KfzqADJAAċ q1uzk()wKBiH<<_r'6JFx@n9 }rr(lQqO#tX#p7  xxkj(.y~nO5k"(J.TQ}Z$d5EVˠQinJ]*aԻ?^ɪxlGao!KUZ@حS2 t [HGr+!_hRNUP WHu r)'2~8N6#=HhX rwzQP\Wn}c/ S5o ި`"]t'w۲pZo^'t,գ| B1o?Y s ZB-E@&ם 9@}7T_ҕSr}#+mD-[@R3^n@CK 1+֠nWrEܶmK#}%RgJNP+\ ,[rЧ3L ]C ^)]UoeWPoRvw*ҥ?Z)Fz(iYk]EEZﬗK2Gn<$rua6 Mװ_&Uh⢮~?ІX3A~PiRI6$JWOzWzQ1BQ֜B3s?EmkCbev֓1.v\LCs)v 0Uf6UQ@a(TPtDؕC\xB|a$]Jh+Ч_2?Ǒr;ZmHz\8@èlR3 1sqr s;>bo:u.i\K9P1O)]l=ȧ?$*i[3Oٕ{,m<$”,tz"^Tvҍml}pҒmt>)NJEҘ< zu9#"'iAN6H UFB疖ZxRբyoH]iR6Y ngk`i˗/'V R2G&θuorn!4Wt6XO dAb[hC&v&6("2 E8滢 }6^I 3i.6d.C?Ju$FOY(&@au[Wo:x˹#j^C) `Z%ZT-[7+5L+Au;y*Ocu))jpYGJtZ<)R;ta*Vl ݙ-©d!VOޜ Mi"Suo12_BGd)Oh2M:iWuR,XxFO߳ ;yxOx\P3a7 xسU8VdFX?@j#}cas!Jp_.yWy 2X2iЧ= Jϕi5,^ThohiԖةԋ3@Po:Vi܍c/Aqqoa\Vl ve5`96baUbl;t9wWͭbpl~--@;ABа?1rn ƿ9CߋK@VŒ[_$+Z5thp̒ס 19&] q"Lx0]Fnnn8l_ſ{.,sK E;wgrC>oOX9 pP]g 8#Ck@Ѳڍ;RCGs2qݎ+r#wZ8!D81~^M!c+ouˣ; bHy8k捃XKrl;rk*Ie*E[5l(j5膦})kձ]=bwQhx*Xp3K>$ݙ8&<@܆yWc J3!ݍ FDf5Ol5!;, ta6VZ[v$׏1~g8v G7×+ؒI Le)wKOV\H?3EX YI]06QafGGSU1ćR*cP]n1L"Oш>/Bt"R#6x0&Ov3%b,i@0Db_t;s[cϢ{zC$zJ~>SbD"?In >kMc"p9i#[&v~ϋ_CMZqөL7ibKiHHYmŎբ~'蟎# #=?2)Tb4@kW *FMI$427fX{0 P'iě`t;~D#x g]B<r̰ZAX1XN&9|n)I9drD0h)!Ofcs6A}p6,ͳ`øTr8vɴl(?[صc`/qnyAaс%WAS>pꝡo&շ8\?0|bJAUGzI3TʹW3gڛյ2ՑH* Idh-~bnX#.Y]d}M6B9>e||  b&U~ fc=7 ZxZ09@uUm_QW=npцxD6@-P[SarLtbF |s7F?"= $.yïgPӠP$ 967w'4ܦL3]ʬ̙Go#.n)^Qsbʮ﵋ dT7"leS|Scl߻*p)j{GzExrT -V}5=4%ƍ4ޡqh4zuļDCkpEb9|G` _Ba- ټBj%V>c8ګ'qh@+PcT_ݫp_GbG]j{u2mX?}+CyYq w9X} ˗7h-5UTrxI%ӏ/=xS&x_" RUF^YYlpϦ$II*|ܪ`fu^ZpBuq9 k|$h&/]Ԡq3! E4hn =[O^8~=]<1%|E=f|CTDC_˗K GJ[1*9o)",/_tz$g[ hyj|Oz@Xm,}!tJ3u[Ս"K"^DPGS6iG_.tSJwt0jtP6ɘ#+a?Ȍ(F4ffܦf;zRgCh[6>Ay3H[ez! ,{d&:ѭѬ)î7'XI.ѯu d8h";2!ۣo"$ ] J=BX Zѡ-rSka@n71s0ZU3cO` ߛ)sews5/$㑩]@E}$[8 Xld 7cao Ju%_P殺˴AflSeq;fLJ#dPO§BFf \JC4ELX<M΂0[V:]o$v$pnЌA(@x !¥njzc-f\AG__vf6܅΢L<` ?!:Zs]9 ],!kM! an J4[(qϵJlCwPBX%x_vTňo /jocG0&UGnzwF .5ٴ$wݧC㦊oi&շC a[ l=ݪ<*ۡW{eG`Ȫ}@+2@1 Bp ;']ݣ#$6$U8*xr=܀|M R~بV9\`Lpr.R:X.Z5wL,{IՉNDњwqJ!d`7C+0я!JN IRuk N͍S>kT:2°aXa+9 ( C8!N֍k mP9X>m-߇B^G;Nh.1؉d@n $7c9z!G鶽51ZEyd&_<SGjG4D`)gˋ󲼈gŰ&J#a< K\Ԯa"4MlZwh:?n#n-N+֦ >m. SAXAԏR2D kv-YDn%3]ˍ K>Hãqi7 ss?lKcVsOnb@z(Qԫ> UTŰB(f:%1wnlX|y43Ik֎փa.GA2(% {|L kӔO٣(.ˎPaQ܋GV=T0-MemBa{9+O@kUs|l,I; ,rJX3j?AQWCbx?:(r?N"ͥ̄UD~#70P)0Ia%Nߡa1Q}r;9:._gz;о焬ey']5GG*3Tϗ@|I>\da߃X?A!c]),І'/.V $#5rɗ LKsH r?ոns>vyǁ'[pu\96h\oW!꿶K3~{ d'S~m+jRg>So$K>GdhL1*ȖkJ:9yҦӣJ:O{|7ADI1>rr?5eLuA a/,T"Hq/Tcfq н<ˇL25L,5fsxAIa^$Ri,Qq FC2z`yz4Cq  Hc+d]P<߾x>xt8Ku`q`P d,*;c֣}܆<3:/ͻ2mG6E*\V$FҐf}jIB.FbC33ئMh:g OǞK U7W˿7\(l%7"LA÷P7 H͒8v-wݏt< EHWSKa7jkjg/6ZSL7$,!_mjlۢ0"*g"ذ&Pe*~(Kj2gA&\j_l\^fqL@|x΋mA}i/Vqi~-nSAp/osJ9/oӋ\8G8gKVJa S|,R5k}:_+I .,2F"rsvE@jk(o ,ZG7E2[j,l_G׉&Ea2:Ӹ&OS:j\Xn䁕8g'*$Z*u%_t#̅|.[KOi$W9Lҩױ BېBflMEK  5T{Bzάx0$+SJ&IkGg+5 |B+͊÷ VFJ"dk#&uj؍fCWHصAfFj>Q4^CI81@ AGEs T-{*Cg-l'xm,x<8ͺy/h|E.tOJPDX Ҳg|5_Q'# ,J=f T.7\XtlC/>~ٺ9%sQ6Z)'+L܌w:KߊA jE~મz5V #*ٜXDm"djS0 5e9\$I;k/۫p Cc ,6=ۗ@iPH/s&,Emm$+cȞ-Xlؘ!7XLx®X/Y)-=0<_צXUӣ=|'g]&D֊JgBIcݠ P@CK1e=^́Vo3H!2k5nS'Dϖx D&(P.F:{3.W _qrXV^1[)PYˢ^W޼ ui9i\o+$9rAiH|7OuQn&F0Rۮȹ߱Gws1״y~E[~" R|^}Tvϳ$k8JĻL25EXCoޮR::܉B90 l՜" 3)ҏēKMMAWejcd_8rͮT*"#PMgk.{Legmۀcݐ3=a>*~ӶyF-A ar7 ('r*4!J=Jo:w0ٹ t̵ ܨB z _hKwV{|&.7Se8F⧏j~9!v_ײߓ"]NvJw^,b?]:H2YBSoeU<^GG#2 !:@GyTF[ZPk7QQ # ANxB*ȹPo\^×,_n6mZz~#UX%65kgLư bϿ`~{xy5=GJ(?Poԃ4y{ajiǂM)<:faͷaBϏ뤊A tܤ.G(_ dm:kGPTl:xJxF_xefp$J*Ii~spL+#u/:zN^iN:6}ٵrPGw%{?G%bW2Wx$;x9PEV@"A!lP^9j&.!f(;mǗIg_hq9W.6"0,đ7w2VX7=f]9e-C[OィFS1Gd:<ݑ$mxa.\ Yvn70/4$.$$}1땪hJpQ0a!^4f!Jd|avOIo6T@rӹ YUv۶9JٸK a~3B'v hUϒCPZm;6qI]ڢю>edB+\8Y(o3s8 YDh\:<*.ؽV in6_O4&iXjo~'e?5hQ{od$}WPK_pҔAա qHF ą"~if4Yܜڙoғ&{.۳xI݌ GOBǏ`*f#+ڋ\j{V{Sװ{黄Tjzb i΢8s녻ģK܏C3y"jnj<#8R,zW3{w> ]b|4&ڎ3ߥqe:293& J;208%V}YDjp3F;z$5Ѳ৚m ~̶#v!RД:nU{!Ix:B,haFsFij1X.%Ɠ[%UNp])(n F*x]BUI!q}jIHAb 6,$9i7v.~}Mk9 8<r16T EuK:@!)J5ґ@.I"N}VH(z=&]^c*_H 8"LZ/%\{Ʌ-头Q9wؕ*C2Y~s(jG۸* Jr ]m<{xÏJʊ<PߠbvIO="*B|ρ{ƂY+Ƥ\ys%ۅ7ҏ 1~?`\ GQq~4ID< f'L}=gm5}Q1˟r[#[Oh?=sl JoE"~Y7O }WC dTqk"R ,˙Tq@(/K5fbCo.tSruH ,uuoKo$Nҥ4$l\4|b/4rKz-ӗ,$,<6iZtq#W R2&j T| !af!COd`/yawT'ݙLh M&y "&UĜf #?LՈB"|_o4 SIe[Sb᏿162jUif+{kst.{3[-x70!r*+_mr~C7SRTs6=nCG2@iUͤƀmd؃3U}TTlL+&7vG]lb݂[g2Su[Ip9*&Cr;>+}T=rOœC)3#%Xn#?Zҩ+[iNvAu) 6m(:(Cmccg}fcF4x[M8YZ;~wekӥxRxn<_u,u2?%fZ NeNt5[qiBNQvMw|ʦR[㯡w'͈Z"6!nTE|`Rd M^S]89>v@R3; B(3{J 4Ѳ%v`k #0 EZ]\-kK^s|bz t~FqBrw:ܦEFg wԠf&GH+iS1&ثӄR5ڧThẅLđ7Xs!26 `>f;X3 uw8_@M˗˥RBpd}Oil{\~ KtNl;b֙=i\Rh=ctK"=jdJɕL7"$y0 jҜDH=kBi+ve:keiS#n{C[="c4`b+cYr$;kb{K^큹TR9fz|^3IvȭIP}|Um~J]s ¿rem,b,euhɒNV*džH_L2^>7>ii.r!hz\]~gCIEʵ 7QIѪGCN7ɑ!rNAzػN_|OMK;v)HuFjWE)?90-?7\=Sb9jl?& qQ՚1eYb wZnQҬFtDVhdEUn0LE T44+nÝ-Urw_9ɆZ`ܻSkjAW-(R)Vikq\5&Dun8S ? jD35?hg؇yN.Feo֓ ֮!6>³L KLap]C[iJlɵs|UT~mq [0,aYǥܙ@S}ȸ4{)vm* p]|]3q eאEńPhZC`X(2% MzUBnGhR4lui՛a~dlo:Ͳ1~rڥ~!:LPG *0=BG߹?tY#1TOS􄥕|nHSL[Q#ܢͩ%LgP-yey%Tx!94ɣ5e.΍uMs+(vLeԛfYK]Qzk?䐞R7QA1e{/Krc4zP ǐ#705 Di`SOag_EOXO&;rےs⋢q~Bv.\%Ҳ r*ߐ\>ŁN76on!;=T\֢es׏ȸ 琝WMHUFG脖y9nĤ]F qy`c!f;TjT4;V >mkӀ HfM+{R66v{J?_Ϯl# OVQ\s N6{FPXb\ubT }89N(ɠX4_/AGٕfش (IPEC%qBi)߲S]V< *`1DL__E1زf!0 =q m~2^0dd6Zmhj+YVzRo~^$$6)!hА&2΍wQl)_c ,-dǚGڨqpAk-E7Ҁ+wQ`?+b.<ˀlZLnXCM'0_b=gN^OU1q_STNOr4CUNsUXCq+aDD?BIÞ";ߪ})^K+as+PUR0{S rҶ;c~PWig{ӏHm|Y sxP/˪;$SE۫^Nirݶ=88\%/pe[*N1ցZ>-x=[ցeh-[=p[p` <{(3XYTF"l2 Vw+Roqd rP13wU !udK'[k[WqLU0wxE7ayBS7_Ҭcz&RΉlg3VdiGbr鰃y>0|L$Fໜd(xu^Af +/;ѳ q4b>,J""m.P9@b^d suWa"Vɸi6?8AʛS|GVp= Ô.a̎njQ&nb0R[MM2QTE,K"QU _O?%;Y9/M 6AwiV+A~=o !5cã?ߔ-XXJs{:U9 _az B{ms[s9 >#쑄YUetr$UA<* ) |8\,+Ix"qZX6 C$(zņ˥bG!"#7\h}bX&bER?Mnģa}|Wo5`u&mGcER"@&c0Kzw+ܣdC zy'MqQͧڴDwEexb9(9<1cD64:F'Zո[\F|D³C9ٟC):訑={#XI r?FmGbxC\Ι,Qޟ*IG,F_O |̩}ANl0wNMɫxRB8<fJpMH1 T 상FJ v+$Qٴ_vSt|6'udغa'F&3UfMWtJ6[ͫϫ*Axd^KJwɝ*jjg4lgjC &%vZK?dZ⋢n~*ibcb{ V7K=I(ڭ J k9֊ 2D"EyLX.M1iaiA`Klɘ, 0@YX7w hM^7goLtZkb 8n/0|c0. $Uk=?%FPz-o&6z](n <’ӯ:LAaIL,:K`/C`J di Ԙvdx)ilE|Cc -d|f@|VC>+*DG". 8ps%tpgS_JZE k֟ 8bq t/HyZ߲R>ů$vf*A ¤-JA*obD*MRUaWT 7"%#\)R*|Z0@!ݢ] ň̶Fg{£K 5v>Nڟ2w 솞_/c"ӣ%w<q>UR@.4Ss rrjtYq`vab\ 3~jNgVL]+=5,[%\`>\kHx*c.P就A! !& i2Pg3!O!(^d`ÿb9t7D _@`>lGs|&D9Tx9ԥIDe86+g/Q֪ОkJީY0S 8bn3.v]yAl ~+xV[9b{oC;, Vީo@f\57v8 ImPF7{u\_7^eӨb*cm p_O~"qzV]b?{^cٺX=ug5.E30,2x8H84*-fO=H: fˈ(ߕg~]ЍALI=la^."L.9Ö,վAI;:پl85H:id5rT7Aa:rc=xc3H@"9-Y?/AEJp!SJ4)ܒڥnK0UxujgSDp.f~"JDnߧWЁ:Ɠ܆15m.s\FRfʥX0B3:;(F-V4v fJ'wŰeɞM C^ gpJ?ف+ڀ?C+߷6kΩ QW,6Y] 9Xt4<2:x«dW~ƈҏN9%6,~F@b9ɮ|y#ә|;¶K[@K܀"UV291>?+!k6͑ǒ|6 HUO x"}GT S{ٿ/lfG܏QW)-Y}v]ߧAQm%= SxP6ҪxjvS6孁ċ'ydVuh C$qPb2geiYoE"ɔ,}lEmrxIe#Sax VBq@O?,0%"S\ /|6ؠR ׶ˆqr'CyMBF a4a@l;/|"v0{V[sG%CU=HL%C6TL0e=,m [6aj 0y]r\HnDBjDzO>$ܛ[%d'$ " 87okO?dP6GTR7Ig{Ə`M kcc/k䪙{K+u{,̏ B7suX\Ƥu:s;5%0{zQҬ??Sw5AmP#ʖ.=WFsfVq';,kD0MJn-_;emqpHstOr\.YA{{"+SJi1GV/(K`P ĮƏ+ⶢR}Tz~bIdCb ;1lGck+k9I @B%Σ3^> %W\\$'md-38J dT#`On0-bd/ufqܭ9*ڣfgց9<Ͳuj^u i)vw(IBƩl2W1(j!HMϋ,`\}&X 鄩G)"P+@ǣ9Xj[v[cj9[s[(&#LkF[l}u>-s⯺N2"U|Ś*S1ԟ@N=ΕBFS|Nz¾YQ9rؾU/sq `F! p?Tu4FEFαOcLh-V !t BWne+cHӥα˺$hPs=|e\ \uBʑKZVж0E2MoSfwܪutJrU_Tz^ J-/Eq:"OI4gxɂbf<"'M6 GJX<Ib5 AӃǍUf!]m1܃˛7%Ӂ'I iG7?9sT5Jʸ\jn_iqr_9.–drHlxgç,du+MuG}=f)JZ+?rZx++dԿ<)W]8-j'%QEzi`,@`qereuA m]!k| m[u,5FjZ ۙZ~D=3.AIRӅ}5I&vDWYMtuߎwpn-Y m̶FMΎf$9Y5JԸ )l)`Jb11x8y7N+O&x!geQ9~)zæAstUȔ*֧Ȝ&l7J!!MZ`@+hds ?;ܼGM^X:Ƨpvj(@I$K.泺C]LzF|fپ=v/ ^h mÆR!lcf|iGl.e=V5٨F).Tx_6d3q3$UtCEM_[ 6CK8jÈ!T%DU l2t=>/Na ꮁGᥞ:0>#y~Y>y6;w9AFM/cc Gjh9 yWgMfͣm*b^P#~Dy(!DC?Q+vqڶuM۝x'Z16\'| hqn0;ÜƊ`]޳?B&[ѨIlGH!2eƝ?NZ8a#Bu^hݝtw'KRj1+@lzsRh 9gZR^ T"*+Q?8\h ݎ]Y>x]c/Q3r#] r^x(h-gUlGr GogQu*BrC|Ю}.^?=z(pćȗmmh ~(bA˾*5] ,@Ua]wE )Uu2faf [G~#*~kn:X*u1S<%wOj cF?1oufx_`!M\_cnx$)PLՁC$F+ ;J`p%.xJoX}|},Dvg$u]٦*' C.?JeqMQP,PI=0_u{H/1 ne'$p"p'(܋O9T2jfNаf, 9'DEDȎ;ˣ6Qss#h~\y^")]ꌔ<:>12QCfzՕdH3 }yi޳y30 ivW|IxYi~j\o fl[) R&8&Umb2'}ptaq]k>=N4Xdo&c97 N6Dס=Oea*{%CwMMTϛ9/~ٻK#t:8;NP&:6i]$]6@ud&a~$$фgn궇 rB/[XQ % ;sXGsϛg҄ł!1GZۺ?ec ÛZjӝ}9%7h}I;xwxe(w4-Uz]n4@Y鶛|Ν͝fV\vSǼOF=aI7 1({+m{WY6ۻ ˱C?22oCh1uA^XNnsA3zWib0\Iuq~$,Z:>.';i+|Ɣo,ɋpq*]o}sC#o@ݲ^M8!17,N xULaV ǚ53ʒ?k]0`5{OdIՐrx @Ŏw-[}rtiVs|DyN2x9Դ=|¶n&PվX@b `'* m^/.ܑR1{_gGR4Ka$TK2֊b- ׅvT?d[)90wnإkq=^cF:S;q |Iw{iqcNyM/(Vz z ZJgHxs7p-=r1*#׾ADTMTfo:2(xn\F.ڋ&GW橙VP-edcE~!ZkF s=CΆpǞ:!9ދFw^e!^YDwjAⶨU8(n?&17M d/Zӳ|C|GvW@+8k2#WlȏϚPڐS0^ HH>@2 c ߄L#ᜇ'bC^N792e3o(&7~kqj Єr. <d_ |Y}CيjbRZ$Z,+2n89dbP٬["p($b* j2p-#?}(nb( t}\ siXQݎ^G4Ǫ2Űzt"ްq~AV ]\r p*ԭrKŠ%7ۤi%<APe2h)ܺ;8mgk2UKC+"9ȗ 9j%N4mKj;X]x}־xTZI epI|F^NI b@NncK|0gj|g{NL=LyA(ɤL(qmdKܤH{G (ni4?(OFP<*VpkP|A 2Z!ϝ&8 XAcbq&1&S!ۓ|5/-J@çIdke*NIӅ,bV,f O}XZ+;n tCk능\И{Ssyt8?1q0oD5n,v6|\*0D1XOp@Rˍq3bj?i[!)_W#-wf~w&~$f D*}-u~*+}*V1[`-*x:ZG=̔ #\U18~Yˢnz52q_&j)"w3nP7,|ɔox-n n,nr\h CpO} S?] arᲁ_,+_#'W\ߌ u>%%Zۈq*㖦v$)F1sFr0\b6(>P춑ynē:.ۓ}*v,3nNR󬵆i}d{+$Jݼ)AЪO ckv9fG nև [n,Z>?ѝm+|0_ Gj mG}@ u0sYP=o5_= ,\Yj_`[Aq'PNBV"gʙD@Bċx0@Qĭ0| Pн‡_z"0/D(^T :r}2j{ JolBĩY0j&ph|+?Mz}lxqQG>N&nɁxg zꍘ:xOnڜN<{/T5\DrxKKft>;c2-;!4b41D퓔\ukC;к5@z[I|\8;^k5.|U˂|"#XqaW.Vc̝3biJ*cʦ`LwT=I ~Vq^9P0~> C 9\u K*7|ˊ^U,a.Q_?gQBv ؗOws[ ҂߰&4>W#&L8 =BTe_Aef$npL4Lk`&bVrp=eEP: YG p!.%p퐕?즏 ^f E^߁%omf@V%3dibu eL9;gE)>sW Q{W_U*=vcHk'#;eculFS<-^چz~, `w\S%Wէfѐlb+2($,dukxoV 2S!lhcܓP8ʊky:ߌҾ}_ui_ڷ=J \u\5jcWۘ%ڸ7HmIƌhL~ftJϫ0Ta(!*c{L/}=Z)to}S!|I Be >ȁ+;͈2 aٸ[W/69#nCO8mP#T]u pN<Մ]FXu^) U6,^c`/?✵^ҡ܈c-TϩL;a90,B]*@MnKLPn?Zu\=V!BqpVyҺ:ˆ1I_va |`~}Z*H_>[ױn:X'|;U7&Cvh6Xz *1kII R ӟ'^W$j%\8?;@9$ ^)^V,.RD7ݢV0ߪq1-Xh6PTNE5Ai(XO=oC2x>,A}0(,1/ cl{:C1y=єw CG'3)Fa⦥yūzSȤw:) PfVTZ|صA:$ur 8m#oqM̾=Tº8~&W*i׍PO?)4F3.|_໹(뻷Q?IGE w 0+[bX 2Wݞ*HM"44:]CMf M\{Բtql#?}|/J eG"ębʵ)D%0ȑ-8).\ƞCZ-Z&WW<_&&Ȃt pt~,O$O<'tNK:#f0W|ylN{R7cń_hw'r=!ޝE/ 4It_31\59qp{*(uԓ}kQ'cV|^{ \J:t'KA=6q&zI#9UDj]Qޖ-MEb?rWC`Ms`V{̿-=om_t-r$s|y>+񗵨l!֢ }m):Rܙ?I\T~ź{CIrt[,Rұ۴mrg]"K;ࠇhe=@gy|IaLωF6}op?[zqm+MȬs2PH hbz5}e^ԻDSN#XrZeo = ӚI4FoLNf;:u?Fղ[xCct$cÿmSxl/av38U+W*EQ݃prp,` T #$m~ m(Q7rhT>^?!ڣY'4NGTqa=|=ͯqj-8Nt.G;)Gy`cĮF2]O=R v.ҭޖsHO4- a}S_t/+_m%@YG^BxTqVe;J ~ʇ?l#R缽nC->JVϓs˓o2qV+Sྶ`}[eʬ!Qr7mW:_u`,'>Z&\79<.ɉG9S3=38DzQ&QL5[\~1IUr;TG/v{ՎOKnXfu݌cx:oNÿ}7Dgku;Asy⍑{m>c&n[&÷"[D.楻mWpjOOP) HǤ%4 0#Ntw纀pT@rhm '#<~Rܜ3M4rc6-"3|ȁzMAN^VO%Fa鶰&zK Sh?) cL9 ^.ۋ| &+dѫk\M*q0N,Ʉt^zSLoIAv5c2Vg#[S~ Yk )x8ۿض%fM fW,۫diVVq)Pٕ8i["NMp\,e{,Q'7j1DM2=zG^)7Z\yBWT|w uKRq#F)}_WQS5yd z&tѣm|Th R{^ Tsq'6{9ZS PP#P|?ɹu^;J^T+_"/|?ken9 [sH~2#U 2kp~@8yxP'-ݎY'zʫcr}ZZV{TɃ+9X {dcB8+Eoط n) v9 ۿ{9IZw&Mrܟ?0śF{ u9/E"G}E<@ 0MY$JT`bV2ʝ|MC|D78z˅@.]Q7EEo}o|z 2Lf-ES0" 18^>9`5Y nY\& `?!4tÌ8p~ﶷUeN5:F+v<uq8}SU3@r 5x.M-& p&DK,eLPPͭ(([V= Z~['MNyPG7]\ K2NE/ѠJtV@س u=qԃ1 ocEΈco?o'Iw)62 \gX"&  c(R sO*]*CL8_ $eޘ9 SyX|OLË27eQEԞJ̑Rrz r@y-٧dMi Q,LBYų/H ) *1Ըpr>_o!JNrz_o`I/XϗtVGwGQ1g[Z*I}jKKxpG6db9Z6@5'7(%2.ur&wݦ%q@K÷eb6nba8~-hAL2@q ݦ>mVm Hu0 k_+jt; SA[t5ψ*9mӀd) Sv91aK{l=XB}wH hoY+ȥtƶ|7iӖGnJ[ ߦ`Yy䟌Mi30 !QhѫÛ"B{>Y'E{.-Y1'(Y}iF1B!coPh=S6{;+O=&Ja^9~ V|:"?zF){%1%DBCDr0D[]e;fѹϔ_H!djk5g>#WLSH|zv0Z)$RЍvzkC%4?BhnKI -\ 2r /hBFVMRϸKzԩow:ESfޡ2p˘|p'7R{b#d.xhw;uKRQ6\Ji:v{Pm@78o(HCu-Ly3,[2A.d -<gш\/|+;'8y&U|O P1nB"fmxqƋ,Քe!? ]){Ey#lwp>3ZatY€HH>)k 3ל!kRc P<"0\v=6yxVf?AnWZͥ6R%!"em{]T`ҠBCH?*6㔻.hsǀWVa"{ 4LI4emDɑ1ި q$<)Sb ;V]qSIxQ*H;'-tz/*ӿ gE)6 &G/TGdV(1*P{H Fe_YyPa餐T9,߆@&SԪ8!8a[?V6aQ~}A vS_oD^>-z P]j!2}2|(^O)B7t+ c3]AcƦ+ kXK=tnAurOyw7Օ[cՕ)ENɦ#́W&[1~+V6LdIߡSjEA1L>fCS! _YI` O Xd&18nb'.ؙS_}V 5mRɒwi!H`SiG:fuk3 3bI05OՉj'M+mX l>[47.ZosK?((p$Vm ;Ei dH"ie@-/%9)ѕ_K=j"G?$mLg[öXbW-T!fncTO B_Le(f/w[ +}9g-,_N?E$@X K鸳 ,<"~`mg-` abqWmC]F/{Si v~9:#:"?ؐ<s[Oc`!~^/056w4&U>pZ>͈S96zXT~w=j erE&4:W"籓RLg?N 6NgxM(JƏ^r/SVZd1ӹj1ݏIZ~}P UA'י8Jjct$5sUlwG+ѱCeG@qxh0ȓXHf{LwSZr冄̣"bI}u\MrY|tRqV1Msvi'INDM EF.0aB _SE l 6F.ȅ! Osʑ1)H@ޜaOHؽG8>i4*pJW}rz1b\(߂0zd]}iVbRurJ؄b{ +by;mPy(! l[:]C3nȏv$?hv˗Tv*qAǽQiBhOޭ #qeg}IҎ˙6]SWum!M)C\Ďf.4*]+4ʼnkujfU$?gg/K*U,`>~V$(X9j98y"VZ%WMe/FV.НT#ߞ;}%=,3rO\,ghFķ^ ,LM(DI ?zD?q"lڗ+ëw񪕿`܁f*3tO?M"M;kڏN,'o`e-uٔ `tQko8`!)Ԏ9/aJ0WJNk"(yФ qFQ~}yfCxB.6,b6ϱBKͮfbRte1 ;h"|* s~7t> :K 8/>ynvrEĢ͕3D~߄OLfF3R])HӀ48CUEiξMi"O`p:L<9rT>|rڮ%eB"bK{oVRXOZ=w#Y*iaWi-EwހsaOj/=lBgl'f-s/V>[m O=5$ U(29ܰ;g|;Re|mt\;C*DŽ:?\$8sSZcxi׈0QӶ8H&CUf\mf R8:d u*KdvFVӦ|3e}oL)qIǢ-ȳ̾Y?e*?b('!U@r !)](·}G( PiBo)D@)U6}4-dsaؗSvw;{ Xr)fpB Rf):#p6>x7N1J0jNB>vWދm?. 60 F\~܉=%e`1[cP4=j߾)nSP,YGד9>OtLp0v1xFm*:0Zo<o֒) 8k&2m#ĂKsL2R}F'mR<\cN.MJ@lM#K.V`Ô e82d׏bۚ:vIaNn lWv9u[Z[.:Ѷ=K;039Mx6`U.LhS-' Y ?,z5¤2NyNS8zyO(<\Jz.ȴpA7|7e]*XD)Nҩ Ndh- v#o#OMtV x첑ԅ`DT3H.7V0_ YFe<,8C#+omؐOQ~WЉo)Q.Wo(%&,Cۦ 8 @S143f2 t1/jc.ױɼiQ/eWĢ>3[#a5ꕮSO|*d ;Dp,(igv*KCa LY"Er)@CbmB#Le讶YTlܟ|HŦg0Qxq-b?o'C+'o֋ebnI7;Z&\'EF&,4(QHPfA܎жI7ubQN}a/UV.mi* /Q |~1&q Ӵ=Gx&5iJ8=\JbNe@>ǡqqX8Oɕajl 5|:TMt Awe0Ey¾WXpd H4Z#݉R iE"I3A=|l$KS{E2A(kD3L썲e6gA6̍T̀Gtݡ}"mgoWz.EW}叵H {{QF(d2BdsU6z_%竦0"T&Wb(ŹfSI{e#xBYl`|*mPfvOB]KD."><5,b]ʾ-,=M`WbgKAAu%ϝI218l܌k[ʌʨ z3-Wڲb/mNsΊG4+xRcKwoh*s:O bE^zܮ:W*$nnyqN{coPҠ3@Tc٘v1NN-r Q"}:c@Sg5.\\^ x?'C[ӳA$fHF->7bc8jt#eČ#5,:,M*Be\> iJ@[0:+qEﱾU#:+?kZkԏJOlF ϡ$Y@D?OTj#G_^WߜQ(ЌaL\:y/TY@g== bYU5E~d6/CV\7iWpF}N{axr.%\m]pb-vh;mrE;oS, yʺ1"/Y}"BÀw|$<7ʶs>}ku 7}{. 2dҡP+/@ mlRHHsBq@GkLbvWiz_XT'E!'ӭ*'tDԵ5b$ireˋS )Ĕ)A9}mg+8j6 gݢT;n;г-Я^yW^~>%m' I2y9U[ f3&:K:Z\CD8 V.0Lr2MYزG6#y^V٩7\J"V3}ݙӄNS\{͆\]yXSՒIo4 +ʢ ?ҹj GMyȹAE1\ξʹuvb]g;cÁ7}an|_~ؘ~1NG3-,vɛ)c\l/(5Q@,iߍwoGWwKp ƍC»aEƐI;Div.Ћz Ca,<Ke&SK+"1WC`];(]R 'mwIu(롖y:䧆zP!@.e[,Pڏh4@2UԷ"M F!#7r.lpf&Qm9bb:x 狭pU !iXܚMc\k껁HSLp1j|w z_M 08n!)oP NswEwbY#)&l5pPt(DzY!Z?YXI- meA4x m]NnÄ!:Q56oه>[s;[h}|^9m"s'KvM}= z䒶/s=Ѣ8 mhx.z+.;p+W^m:?L 9*31"wDW3 07XNQ)C7cxHӢc}b\+ k "y0|!"Wm| ]w(I#6H'P,`@6Z n!b~m6r!BP,uXZ7t._ze< 6tHQY n.B3i+PWơ)9%]uKM^KXcSD%<[*ĵ(0ExY% U+[(?wDe&t{ۖzKRa?xm~n t yANŖ 4Fb&2T3đ@4S`1L^ Q:KXvBy cTuQdzoG0RY{{sJ,S)[z;cP~( ۥ-A]y9FgRFStڲl㛥QpwJʳ@lm+A~9{?Uqءf;[\¦:vm^(Ɇ>s6/δU_?}z]gYXQ8`zmj#-B09B q98N"dXdMhӓczť1F!d$!NuI Gƒ,VOVns^~lX (kjcxI/]ԣJ"OOV#ZAfZcbMcxIB4{5~X(iX@n$ö,+0ScNS<2hU]jE*J3Oۚ+n84Ϥ{G+lȕʃ20?\ *LBۤ̑,LHϿFT^|Qb>=__i\/P.91~) žR{*srX *Q111a@ؐu0or UeO͘FQC?C%ׂw4V& 0˽.{އzEʀ2)aH ff ^HLBQ2e)J |+ 7ӊ[_`2`QY<.ٙE i0?>n8J }_9+oh,=79dn%{iNIA $ n~H£ Ind RiEmx1|MyZ PϤ|VYK+3l&<Če9@4\d"ﶖ.+6pit( /6qA y0}op҉B #D]ǞjKl TpE3!BR&$*Yd|kB& o`m("\0~?Z*xLfq?0XqlI D"¼' , RP/˛"66NZ;j)ާ2ko3VA'a!gYlβ ֱQe}(y]5:E6+f¼1`_ѢGbK- Osbjw\p/U[7k߇ai9)4 D4[l$hE5 = EȆ5 0,QtL,$2N-HCFĚ͊8G2P j ԁ4%ʁX$ !M xvp>?/G柏dTnqɷ:<$:ޟ}XGBKT,eE6\ab: #y p&rbY4u4C/vI-+L ?*Vg' Fg bEܕ3>3D eX<%̋_y?9_H'_L/3\= _ǛtSn\J\Q7}Muptz#toDhbˡ i#!dV^J9q^XO5(n^֣]ԭڏFqf#>`̣c^iO1d㴍K]^i1طv n1jN!x[p.ސFATa}A| _u}ϸ Kn@DQ.elX ً.ĆHY.p)EEnB`&;0UF ejX/H!#sBx b,B8^B3 ?G[%N11rE #t6>@7F^Vns9ߡO}58rR$2Dee!VNb!)Y'TeGzyo'L'&p>/JMvN)$ukE?gd '1B)"jR#lǐq=|yEV\FfP|Rh&©d0'/jwL Uzf 9y^yr#!o49K$Ls)VyE1%:a5Zs޿[1ŝwJS,ThMtTy&Ӱj.4';"ةvgAt<y KveqpQ2}]6ӚgkŽv+T߈Gڀ !TsCGmeOj́0ܻ 9 k3߿؃w%Q|31o4X1P%{摴(o&j/^oGTZJC%8R]é#Z@ݺ% D4:&F_.A$nVDUӒrs/(MKr YMl vZvQ9;6+Oi2CbH'K v]hvg(vGL}_؁QlEOѢ{l>TH^^]dH!UQ[ľ0r%OqD#gk| {㑍V஗&ЗZɵ,yK Z3{b5 caEA']O|6o  }cڄ]j7xX%PQ_~E1(1 "FsRwuLo a5Q]lo\yeArIGX2@TV8FڏKpQ81 aib0bWу&22jRNjn*.i[UZ0\!vEb]nݕxcxeWl͝ ]Ә:q1yA/5/Ŀ\l̿ (]&PLÀ>4y#NƓ!P`ݱ&c>~?2 !w(H䮽f{Tw ]n< $sʯuI!IpPt*d(Bx4TL WI7`#l=JeH2&w.}\x@ BHYPng &E`)Lr? <0sQ(틥cj1%}RJ>Tjoyɿq5J߱_o, Ѕ+N\]]N@]\_άh,O?HCߧ{PKo1R}oPLt2}7CY_VܹpfLii$/&Tv|iT0V ee?PP:}vס,r|w>FxQHhނT[~ RbT/)ttK͒b?c1:N¦ߕ)ഈ+Cþs>3{k,B﷣i__Pv-JxWbPL7?d4mJTŜ6o6{z!JjY=!컡E7(E˃t'تt%}\R Ҟؕ+is;NE{PNaUcUSc߷tM}9~r E컱'tz- P璏2uTvx?T|OW( ͮn'(r@dJ#.B|/̳1S)7t֤=˯-XČ\{5讲NAr[XiiBV \$Cy.N4_lYKa"If-"ÕOOŢï RUaXe(IM =q$%J._5҅qJr蜔U49>K}>II k忸\A HpX(Z݀Ek`JNk"{XW.^`*C5PRБ?Φ՟:>OpqQ n^F%2nTB~Ϩ(xXVRGyTڋ(V'h7c98%=_K/b/ZZ|q-ѫ8* 6U=߫sJ-_=(y5_~ gcO)*p?Ab<07Ty9&Rjo:Ȫ|pSτi|3 O-񟾒1dT$μW1nf,Nx ;ahC5y3'īm5Gܒ>WҦwW&͇WHN5+;o!2FL,W&A{GY^H$pBS'/h볍f.3$vW_ߕ$r0,k=ND~3+(SL@tYit6kQe4Į'jv[)q}B䤽LjOQ$ߩg^Gv֯Nfks P=Ufc05aV髨zV7pʁMZ{ɠP&FkC##Kx9 o42ӕ8@sa\m|YΜl=( (IFН_·ЮE?Sگ@6766b5mJ[SyP%~=sn+" )Z>fD#B&[&^sϴf&wxma_((4}`+βLYVXz8% fw|x. ^޼mR{8_|E uEe]\jRuc5=x3j=#0S=_/Ļ~1C\+:V Ebq<0]<2K۞ |$WFE>7XgSGC!TniO,a ziXZ~ch> @oD>c}H[Pf{SE`;6RWU TM]^IJXɛ*0JEPaY #B[EZT-ހFjm$#T'5_x @,°&L7"j([,YxB0Br|S|"{#ʥB U- ({ӟ&4<|95H~.VbGP=탷{g) I*BiD]RT%{%kB?ʞuRDQ >5U{,(嗘X @4~NQېKh wX®r%QI\npz2\#*s˺)CxeKszv߂{NXyZ>Us݅UH#1A8 ۑZ"f?hhEB[|lPrNO |'{D8j>̊+x./UlczլR$_=!@yЕ)HNRe_$`f!SƎihBdbv.hD']Rxq(o$_c<.GG'gr _1h20IN/ i6Kybq٣kfgR۪tvo&_9L#tX+vYM>K'R}ҺNPB&}GR[:%5vw? qJ"囫؃`Q-Qfx P&B'*Et]mt+%ɛÆypxt@ZTyM*1rsMrΌՎRi|E1++bJRjMFVf~/ň2EDWFS KIQ&YK468 Ra1ͦt^wB|VYМ=BNjBZX([Dly7CG j|\XXK$@b&XQ?5 iO./jlɅ}iZMiCu. 5>TbY_xv?cuQX!ʅ~#3LKvm.ɘǐקVy!r'jJMp%dNDjk|SP[&O˱hec1jŬWgjºIXmI|`ICZ@Q6X'%5:MQ2@s%ҪRʪꘛ=5&$CYeņOoLQ/xЄ.ʱd{&ZO6ۥrLYzWh8pio'Q*yS#!}'ў7`kc9v0Unp7&lGv밃<9s( W?ݑ>^S:VʀgJN-oIP1=KM')ݪ'eg .kpmu|VJ0qfn#8; s_rpu5؀ÕAi~H?(k (4f!,6!;M,/,o53p*lf7݂0J^R?=삛d)oFFb𓑈 mڽ6 :<=*'50%6"Se h *˺280LpaNKM]UBT?vml Hz%9AAM}W>I5 +AKCd U uSuA$ fR[33x2={"ej^B$<}O[8kx+TƛbN#2q{:EGkp A)z9Kҭ ӵM3<>(O<9:yjh%%eYg̒Z8Be?R'Vcjbi&eqKWjcZlemq *B>[t|x˔o] n2G288\b3^huhLV]4LjKxSIOE$fY!ք|O~vWMhw`WH+s(Ukoʢ .,i7R˫ԡtSUt@\ՙTS``ћz`+K:S^v]=mg:NS<zPw!ٗ# }9}>a3XgvbGZ%~l;oC ,+r'*MլWhċ cB6P'dFwT_.+uu3ܤ,vUwQ8UiЫ^X˫:p^G1?ù"[j*$ %UF<Ʋ0{L1[1M~IZ#_~i)cjs猶˨u+>7hS{Һqj جd?& I2H6(QLX{>Ŗǧ8<+& Ӟ^7p)L#8Z?$j?5QkB|b(;e6UR&I@Qr|q|b8ˬe^_e^[ >)). "G"6Iu>A1biQ⑦4z.Lu"PO?ECf$k8Y&<\S=6 ْϚDê[<l|6/: `$mA WpXpAe9f"231\ C23#q}gcPFIƓm돴q‹2ō0O#DEA6181%81JCN>CWz%oSqt:"e)E+;P{s ֜"xڜj޷pbؘj=/ObnaE穉(OMD~LF.M8'@*zQA u` kT\̺"1P eJQǔU v_ Rݎ_ߡBP ԞJp;P{yï~n%7I3yJ:L+u?AY.z$IVt-C@ ˎy^ch3)~?4$rrƢ61ڲ5DAgYopF]ud-oۈ\it[mS¬p>+Ql~#5Q1aJi$/S)jfStiQ;1h;ZP?vV 8ϗIe+/ڂY᫽D-ke:oCll0\>ǡر"8v}\Mc$ϴ̴VBM 7H]㽜|Cų s(3Kwɼ^C'0"' MX{ްdU3XŪ"TBOsލQD'ḒzX.fE$u;r_-9Pf/"uڭg䷕ c&*YgY I@4Q~s'Y f ¥%Y(tT }6E2Z4¾afsB;?fwD7pLGL,s_bd Lɞ(?9Pi YKplM:xEYƘQv|$VWM3mHSrȳ$u[MW)N6@cu8X$Ό`#]M r,:ïZYs6*|; xv2 Y1ޮ,NN:h0D)h=j7*ML4)+ t(9.ᒫL%rBaxlfӇK7]a*.-CR8f_(ϵI&V0nodf@kۅ=z}?'ȁ7KyJMo`DSD2xLVq=>z:fR:âJ/i: 0 " oҼ҄?LkxP '^u^Nd^v}-PIٔ坷$/*$պIz#R&Y_~cIs\K&ن BXp3 ==IZ\"?NfsIs 6H81\eJP-*Bua MP{Bu:0H"@;|f|iŃՌ+j琟(0]ݠ⒢|`'hP^`V2؎Z:$ةsb|/w:ܢiBh5@=Ljgj:㾿I{`<'kUYjOw :VpT'oEF<-' h`H{>pai$b6S&ZzWb.HM."t#<:eЧìYEoѴ52l"{:ߗ/uhJ&")8o'|Rq=p\^WɌY$I;ű諒+v zDX^ofdaK= o8\fDLx"]%fn9i(DPoc 㚻B:Zk՜-;Eo2ڱ`fN1dq:i_T򊽝PQH(j2? Ywx>輿HHCs;?;y=R)(ʣP2 +}}J1l#:,^!o*2 baK~z?~xVTx+7_<1q3~ ץȩ8dOBT Q$>qK;\[}BQunKe] SB`YȚo+ +E=ܓK^qq =Ig4*%<6)Jo:B%Gxhe(zc&G1_c?'NcVM%z;v>UEwi}펟qӶW$pQFmw6mLF|]E \% ^i>(tk 鬼oJ r1t ~g叱 g`ŦPj8ɠdxʎC} +&IS(3pX#BŁJW0)0P! ڧ UmRTC}7Џ5TqTxٛf~MxTbB@?ŭP(qbxlX)n%?)# d;~焣Hf(8Eo>FS J$+sӲmL}Ѱ1V~||V ]. pK_Wrꁋ*^Uo&}ۛLB'=B.hJc`#N!6BM)=5c#,CUwYx#Ci)1xN4.KP}>-zCPӭ[7zBOeԳĂ{u#vHc4n}':|%/BvWܡ\2\mWL1!ڤOơΆ0q'Ç`a'/NZ/N֟kPCºG˪IY}1KWba BQ`d3|Տ9v=x;g:2E!>!_|0&7O۾]ys22&vXtD F(8HYiKIJԎ/\RI gRG_‚H%IїD4R\{X>A $P+mVUq=ݔi2QCʲS;WC_RLxxaУ~%`&l`j'7":}EǞibp1ȈY"cZ*s|辝٨ 堎qhdQߦL`@m'tyלWЅgBosbwQ. :#'Kt`61Xo,T"->Ui|lD3-')ؙ<UPKdT+8tޓ&fCCg {<4$ieo>\LI~OZiTe{)R2='Uo$d9 4ՋP,=BR]7e]*f룶Nz69FW w߭'pdMNTeaQLʱ j)=iފ`pQQ.ˑb/C0UϨM!5U{nŭH9_?I|ZsPɯi>iD>99Mh3ͥpwy߇f6z!g:4 Q7hDh#.]5])Fa|F{K<V_0=[9#J(HnEW/W{93_3IOhYRb}-j,ua&W%Gs`L򐢜1ה=?6fkNWpVV$z/1ڼ4uяaw'^+۹khBՊ4͒y1S dq\u"o8lSɖVkX8@X`S"C[|/);UZc v1lw1YKeg(E8c1DB-Ԕo>cWJ ISߋ24<TL8CX6F/2ͤH|&eZ;H }F|!&bir+ʤl6(!r%Q |5{UAf.H<̨8U$"W pWd'ˍPYnE Goϼ499:#l,+ a 5zɫo['jߋ٫ j`?V /6{ \B#IS}8 vvPb|I߻p>"& r/ÜzL*WY6c"} {ͮSzaB')bN}"9-_ J/Ji_ ~gQϱ}AհhT`.]p\0f_t3Y7C(1leXv) XԧI,0@nGݢ†Z7>GzXʜ(+\>wY`΄i%i7J]RJI;Ҿ_H]5gpBa'^g0& ZdnoToVwv^f +},ЃFY\fx 7Up  ~u8}JCIG*wcw`^r,!,K<aTrRe=iˆ,Ya5><Z~-k;BpE,vya |Mb Qlwm$˂̑<тۉ鸬5ڊQԇžR+lgکbY=sKi p6bP$F,X4R?HaUu ea&]UDj0 *pE[P=LrЁ$p5w3zSˌEʆz/y&%#v"ziB%|z R%9b_"~ENZKǀq`.GLOSXjdƲ7|8<,E ^XNn%Qu_"%4XDƾ>FvzY=Wd֊豹? 5`2O֓mHL9dOql4<|YgY/T811+/Bm?RW&~q^<ʙL{Op( u /B4 =p'}r:qrA^2iMn\V*۔ٌAb6e,!&E=:kK\Z%@5cA`N!qJ>*؛z)l=4dƦv;wĎavș=q/4 _S)4 SȺ0f2IfDDyddDq'EY)g2. d4urǸ xܖzC(qɘhn'6]oOu˷r d{foW1MU*]!426oVslYܠPc9^9%L*"] 6C$N"{$0qrTP6:$JFـj?0"CR.?t+i.Gs0$ D$]D@aa1[(pcRtV2S5J1(6wW0× O&:g˱*v)K֭؄a[3^.fju 'ѥ'DF-?R'g ld> ;I]j9Xmga i/_-iΟst \۪5.{ʎqUN}#c?fwU]؅ڠEo#0']o6ߡIi-ާw]O~ׅ3Eayɟy SC<ɩ}Sz~'^wCp'f9Q:[hR".3QYPerc2mj)" 4UM/:{$B ŵ ]",rIR;1XXl2KXF M (*5п=ɶ#My'ƩAX.CS_I ΍TX^ڈK2|;HgysAS9N}3jt+ȹ}x4m7`g2F J <\?@>?poj7Y o0N̾9J2-6 ڈ|ޝ7"YP)S;Vq6!}=fm.t.ѰmCu VDm2d{,sZRJ8}m.5Hg7Pz$bz<d{ِ{)?6 { Ŭń,NzZ(VtB=$/a{{]& ?S<̆o:X4MYn1E! H+O2}8`R|p40S^!*?*,)0Mܯ1S#Yol.L7ugHW*MR!9C34ge#x|K0yrl4~1f>dVx|@8_.pbcy.뭋3\,5j~NJgԤ:=Eyۊۀɸ c9Cs-g'q9O".Wg4l /Z Ubʩ$:g3,d# Ajt gPl-j@k+kV ݤ&bS>ٷ/]j/r-*TdyvUQ 3ڊ-<%G\Wƾ mEGS`W&xHort3:"-mT[Kil6?D)7F3RիK A~vqNPn6.?B%y^MBNZ$D,JKі?`(5ry2y?`?h%O+E:}SR.Ns*hOCjr ݆ѦD~A95xv3.kpr이(RpߚL8ΒPd3>7cX07&u N!3a ~iV|Gfܾ_z1?x}[5@dc|\ބy`Eːy_7yXڑ),tssRlԋxK 5 :W+>6õ,5Zn!Akjo&)+ l&rUq:]YEH%ړ*-9Vr x$Xy%DYOnf/R @FzE7p< ^bWpF+|ט@(? ~Mf%3qCTsw'q4 1U;J#-kn?|EA'a p.IAG%ջe" 2?s/d[d Yeߘs(cZ,O[ 3A\$-2[61_-%N£5(tsB!vu<ٗJAo=᪙c}+?*Bm1>Bs}/iˑNpEYeV' ]4>Kk79Pi˨S=++f7mHNT>9I&B}Oыcl<3'B"m]no̷'|_ݿc5q,Bi:C%#cdӛoBn|cvEWծNd}"RHiAqZwJ()2:s$  #SpX"*ƾ'O`7~o y [wB^/_OA@ֵ_[rj%Us\Fcu\ p4.-ϱZc]o 0 r[@[ֲŧ' a=:uS?gL$}A-*R^LCU}R \z ghʝhMd7'|LwF3w#K 6e2>E3C) }ÿ@:Ð2n@3xk t Wu !LmI'СN6x aۛE4=n-LF? cD5UY %woo ǀ9ɀC*B0+> +Zу_fMT UXS=g3l`!0Z;͋+MqU򅎵Ӏ-L&&Ǚ: 4?_ H 1}(R" DoZ1NQF?(EB)4++u G<@>FdY@W*aJ.(Gby4_\JV'ʎUܖ?bA;SF%-3uZ,3'=f$={BϦg$?4ѳ?{N27,&?m1+YT`60\,{& 3ߌj(of/fU(KB&kk Ff\*^JTlGڏ_`>6wlQvV1o72Cv+UghץLyc0 ,$㯢[H̙Bi/ &?c@׊Iy}{c-^D%`At$X\hVQE9bB),Ǜ2|?Hy7Ha}b^;(XS4Fv=4p'Mv` <:ى=#g8S~Lo.Κ@BxӕP2D!Y|Nt?61qAB\?Ȕ7CoV&,}i忘EC~7o{kބ+7p&K_qdh|l{{ɮw@AGHC8QI\54P/<]yp%nwCyz,a,S( 8%yD`->C{)’jMc9ܗّp`f .}h.̂y}veH9'0?Q(! r~uz e| \S.{-UW낋eK.Sf9h\2|N:9@ku,]:$F+*m:D\:xN".-';mLD9'D_=W*A5KLbvF/~^>g򑄎ay؀dJ%0RG IG˃zqP Ď֑ b^W~ӊ,V(WU_Z(Sќxo"l1Lg\_ wQ\t{NU*[]ۯ<ʝ`Y'ݥKugnxZGjV86LyK=J+XjoS0w YH!!M~sI};vO*!c %f! ~^1h-Cd^QA( ,rA:sbQބ TA *~C;X)[P"e܀n/ᱝT6S83P Ona:?JfO :+\ z{%9CWxVv!M9֮dx]:2ĵ% ĀK$#+cvSx ƇdcF\EЍYsE[CCDM2b"#ͷ+w] Wqi-K}"M!@UէFR'>M{t N D_pKcu Ͼ\"?^XD )8CƄwǹ}'剏TkֺH8 (*^ƹ؂22ACIGH/f}p;=^)o[