QT movie cue?

Is it possible to create a QT movie "cue" or "playlist" so that I can shuttle to the next movie without closing and re-opening the current QT window?
Thanks,
Clint

Rob
I think understand the process you have offered but am not
certain how to write it.
This video is one of 100, my "attempt" is below
Global gmovietime
gmovietime = "..\videos/Circuit" ???? - How do i specify
which movie I am talking about ? OR should I be setting the time
here
end
When opening the window...
On MouseUp
window.... open etc
gmovietime = 48.12 - not sure what the exact way of
describing what 48.12 seconds as MovieTime
end
On video sprite add behaviour:
on enterframe
sprite 2.movietime = gmovietime
end
Sorry if the above is total garbage !!
Mike

Similar Messages

  • Play different cue point in a movie

    I need to have an interface that runs several movies with cue points.
    In the interface I need to have many buttons. Movies can be different with different cue points.
    The first button should perform the first part of the movie (cue point from "a" to "b"), the second button must perform the second part of the movie (cue point from "b" to "c") and so on.
    How I must set the script and wich objects is better to use.
    Thanks.

    It seems you're adding the MP3 as a legacy media object, which is strongly discouraged (and impossible as of Acrobat X).
    MP3 files don't support genuine "cue points", but with Acrobat 9+ Rich Media annotations you can easily set a button to play a file from a specified offset time (in seconds) - by choosing a button action of "Multimedia Operation (Acrobat 9 and later)", then "Seek to time", and entering the offset in seconds from the start of the track in the bottom field of the dialog.
    With legacy media it's possible to do a similar thing with JavaScript, by entering a settings:startAt value in the argument object passed to media.openPlayer(), though this is not documented in the latest SDK and can't be used when authoring in Acrobat X, it's explained in the SDK for version 9. For example this starts playback 2.5 seconds in, provided the external player supports that operation:
    var args = { settings: { startAt: 2.5 } };
    app.media.openPlayer(args);
    Remove the existing script on your button and paste in the above code, changing the value as required. This assumes only one media object is present, if your existing code is more complex you will need to edit in the extra settings obbject by hand. With Rich Media, it's all done for you and there's no scripting involved.

  • Problems concerning sonata playlists and freevo cover art

    Hi!
    I'm setting up a media center PC and I'm having some problems with the playlists created by sonata. Another problem I have is not getting freevo to download cover art.
    First: When ever I try to make a playlist through the "Current" tab in Sonata it creates a m3u file with every song that's listed in the current window. I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata? And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Second: I'm having big problems getting freevo to download cover art to my music. I can download info on movies from imdb, but info for the music doesn't work. I store the cover art downloaded by sonata in the different album folders and these covers show up in freevo. But if I have to play every new song i download first in sonata to get the cover art working in freevo I'll go crazy. It's supposed to work the same way in freevo as in sonata isn't it???
    It also seems that mplayer can't play m3u files. Using the mentioned sonata made m3u file in mplayer does nothing. Mplayer starts but nothing happens.
    My goal is to be able to make playlists through sonata and then play these lists using freevo. I don't want to get up from the couch. 
    Here's my local_conf.py:
    # -*- coding: iso-8859-1 -*-
    # local_conf.py - System configuration
    # $Id: local_conf.py.example 10508 2008-03-12 07:24:34Z duncan $
    # Notes:
    # This file contains your freevo settings, overriding the settings in
    # freevo_config.py. freevo_config.py, which is usually installed in
    # /usr/share/freevo, contains all the core settings. To change the settings copy
    # this file to ~/.freevo/local_conf.py or /etc/freevo/local_conf.py
    # It does not contain all the possible settings that you can change, see
    # freevo_config.py for all the possible settings. Also it does not contain
    # settings for the plug-ins, plug-ins contain their configuration information and
    # the can be listed with:
    # | freevo plugins -l
    # and the settings can se shown with
    # | freevo plugins -i <name of plug-in>
    # E.g.: when you want a alsa as mplayer audio out, just put in local_conf.py:
    # | MPLAYER_AO_DEV = 'alsa9'
    # The vertical line indicates code.
    # This is no normal config file, it's Python code. Because of that, you
    # need to follow some rules to avoid crashes. The examples should explain
    # the settings, but make sure a line starting with a variable has NO SPACES OR
    # TABS at the beginning.
    # Freevo - A Home Theater PC framework
    # Copyright (C) 2002 Krister Lagerstrom, et al.
    # Please see the file freevo/Docs/CREDITS for a complete list of authors.
    # This program is free software; you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation; either version 2 of the License, or
    # (at your option) any later version.
    # This program is distributed in the hope that it will be useful, but
    # WITHOUT ANY WARRANTY; without even the implied warranty of MER-
    # CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
    # Public License for more details.
    # You should have received a copy of the GNU General Public License along
    # with this program; if not, write to the Free Software Foundation, Inc.,
    # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    CONFIG_VERSION = 5.23
    # ======================================================================
    # General freevo settings:
    # ======================================================================
    # LOCALE='iso-8859-15'
    # AUDIO_DEVICE = '/dev/dsp' # e.g.: /dev/dsp0, /dev/audio, /dev/alsa/?
    # AUDIO_INPUT_DEVICE = '/dev/dsp1' # e.g.: /dev/dsp0, /dev/audio, /dev/alsa/?
    # MIXER_MAJOR_CTRL = 'VOL' # Freevo takes control over one audio ctrl
    # 'VOL', 'PCM' 'OGAIN' etc.
    # MIXER_MAJOR_MUTE_CTRL = 'PCM' # used in alsamixer.py There are systems where
    # volume and mute use different controls
    # MIXER_DEVICE = '/dev/mixer' # mixer device
    # MIXER_CONTROL_ALL = 1 # Should Freevo take complete control of audio
    # MIXER_VOLUME_MAX = 90 # Set what you want maximum volume level to be.
    # MIXER_VOLUME_DEFAULT = 40 # Set default volume level.
    # MIXER_VOLUME_TV_IN = 60 # Set this to your preferred level 0-100.
    # MIXER_VOLUME_VCR_IN = 90 # If you use different input from TV
    # MIXER_VOLUME_RADIO_IN = 80 # Set this to your preferred level 0-100.
    START_FULLSCREEN_X = 1 # Start in fullscreen mode if using x11 or xv.
    # SYS_SHUTDOWN_CONFIRM = 1 # ask before shutdown
    # Physical ROM drives, multiple ones can be specified
    # by adding comma-seperated and quoted entries.
    # Format [ ('mountdir1', 'devicename1', 'displayed name1'),
    # ('mountdir2', 'devicename2', 'displayed name2'), ...]
    # Set to None to autodetect drives in during startup from /etc/fstab,
    # set to [] to disable rom drive support at all
    # ROM_DRIVES = None
    # Hide discs from the wrong menu (e.g. VCDs in audio menu) and empty discs.
    HIDE_UNUSABLE_DISCS = 1
    # Attempt to set the speed of the ROM drive. A good value for keeping the
    # drive silent while playing movies is 8.
    # ROM_SPEED = 0
    # Perform a whole system shutdown at SHUTDOWN! Useful for standalone boxes.
    # SYS_SHUTDOWN_ENABLE = 0
    # Command to execute to shutdown the system
    # SYS_SHUTDOWN_CMD = "sudo shutdown -h now"
    # SYS_RESTART_CMD = "sudo shutdown -r now"
    # ======================================================================
    # AUTOSHUTDOWN CONFIGURATION
    # ======================================================================
    # replace the default shutdown plugin
    # plugin.remove('shutdown')
    # plugin.activate('autoshutdown', level=90)
    # activate the timer
    # plugin.activate('autoshutdown.autoshutdowntimer')
    # -- autoshutdown menu item configuration --
    # SYS_SHUTDOWN_CONFIRM
    # Set to True to popup dialog boxes for confirmation.
    # this applies to menu items only.
    # AUTOSHUTDOWN_CONFIRM = True
    # -- autoshutdown timer configuration --
    # TIMER_TIMEOUT
    # Set the timeout in minutes after which the system
    # is shutdown. The allowed idle time and the running
    # processes (see below) are evaluated to determine if
    # a shutdown is allowed. Menu navigation in freevo will
    # reset the timer.
    # AUTOSHUTDOWN_TIMER_TIMEOUT=30
    # -- autoshutdown behaviour configuration --
    # PRETEND
    # Set to True to disable the actual shutdown command.
    # AUTOSHUTDOWN_PRETEND = False
    # PROCESS_LIST
    # List the processes that will prevent an automatic
    # shutdown. If there are important programs that
    # should not be interrupted, then add them to this
    # list. Set to None if a shutdown is always allowed.
    # AUTOSHUTDOWN_PROCESS_LIST = [
    # 'emerge',
    # 'tvgids',
    # 'transcode',
    # 'cdrecord',
    # 'mplayer',
    # 'top'
    # DEFAULT_WAKEUP_TIME
    # Set the default time at which to wakeup if there
    # are no recordings scheduled. The time is specified
    # in localtime 24 hour format. Set to None to disable
    # default wakeup time.
    # AUTOSHUTDOWN_DEFAULT_WAKEUP_TIME = "13:00"
    # FORCE_DEFAULT_WAKEUP
    # Set to True to always wakeup at the default wakeup
    # time. Set to False to only wakeup at the default
    # wakeup time when no recordings are scheduled.
    # AUTOSHUTDOWN_FORCE_DEFAULT_WAKEUP = True
    # ALLOWED_IDLE_TIME
    # The number of minutes that may be spent idle until
    # the next scheduled recording or default wakeup. That
    # is, if the gap between "now" and the next recording
    # or default wakeup is less than the allowed idle time
    # then a shutdown is not performed but the system is
    # left running. If the period from now to the next
    # recording or default wakeup is more than the allowed
    # idle time, then the system is shut down and a wakeup
    # is scheduled. Use this to minimize the number of
    # shutdown/boot sequences when many short programs are
    # recorded in a short period of time. Note that this
    # variable is used by both the timer and the menu.
    # AUTOSHUTDOWN_ALLOWED_IDLE_TIME = 45
    # -- Choice of wakeup method
    # The wakeup can be done via acpi-alarm or nvram-wakeup.
    # AUTOSHUTDOWN_METHOD = 'acpi'
    # AUTOSHUTDOWN_METHOD = 'nvram'
    # -- autoshutdown acpi-alarm configuration
    # This method uses the wakeup on alarm function that most BIOSs have.
    # The wakeup time is set by a simple
    # "echo 2004-08-02 20:15:00 >/proc/acpi/alarm"
    # On most mainbords you will have to ENABLE "Wake on Timer", "Resume on Alarm",
    # "RTC Alarm Resume" or similar things for the acpi wakeup method to work.
    # If you want to use acpi, you need to create a small script:
    # !/bin/sh
    # echo "$1" >/proc/acpi/alarm
    # You have to be root or use sudo for this to work.
    # AUTOSHUTDOWN_WAKEUP_CMD = sudo /PATH/TO/set_acpi.sh
    # -- autoshutdown nvram-wakeup configuration --
    # The nvram-wakeup utility is used to write the
    # wakeup alarm to the RTC in bios. Read the
    # nvram-wakeup documentation about this topic,
    # a working nvram-wakeup configuration is needed.
    # WAKEUP_CMD / NVRAM_OPT
    # Path to nvram-wakeup and options. Options can
    # be used to specify a config file.
    # AUTOSHUTDOWN_WAKEUP_CMD = "/usr/bin/nvram-wakeup"
    # AUTOSHUTDOWN_NVRAM_OPT = "--syslog"
    # WAKEUP_NEEDS_REBOOT
    # Set to True if the bios needs a reboot to catch
    # up with the rtc alarm that nvram-wakeup sets. The
    # boot loader options should be set too. Read the
    # nvram-wakeup documentation about this topic.
    # AUTOSHUTDOWN_BIOS_NEEDS_REBOOT = True
    # -- if the bios needs a reboot --
    # BOOT_LOADER
    # Set to "GRUB" or "LILO" Only needed if bios needs
    # a reboot to initialize the RTC wakeup call.
    # AUTOSHUTDOWN_BOOT_LOADER = "GRUB"
    # REMOUNT_BOOT_CMD / REMOUNT_BOOT_OPT
    # Grub needs to write to /boot/grub/grub.conf. Set
    # the command and options to remount the /boot
    # partition writeable. Set to None if this is not
    # needed.
    # AUTOSHUTDOWN_REMOUNT_BOOT_CMD = "/bin/mount"
    # AUTOSHUTDOWN_REMOUNT_BOOT_OPT = "/boot -o remount,rw"
    # GRUB_CMD / GRUB_OPT
    # Grub-set-default command and options that will
    # reboot and poweroff the system.
    # AUTOSHUTDOWN_GRUB_CMD = "/sbin/grub-set-default 0"
    # AUTOSHUTDOWN_GRUB_OPT = "0"
    # LILO_CMD / LILO_OPT
    # Lilo command with options that will reboot and
    # poweroff the system.
    # AUTOSHUTDOWN_LILO_CMD = "/sbin/lilo"
    # AUTOSHUTDOWN_LILO_OPT = "-R PowerOff"
    # ======================================================================
    # Events
    # ======================================================================
    # You can add more keybindings by adding them to the correct hash.
    # e.g. If you want to send 'contrast -100' to mplayer by pressing the '1' key,
    # just add the following line:
    # EVENTS['video']['1'] = Event(VIDEO_SEND_MPLAYER_CMD, arg='contrast -100')
    # See src/event.py for a list of all possible events.
    # Some events to jump to menus
    # EVENTS['menu']['GUIDE'] = Event(MENU_GOTO_TVGUIDE) # Not working
    # EVENTS['menu']['VIDEOS'] = Event(MENU_GOTO_VIDEOS)
    # EVENTS['menu']['MUSIC'] = Event(MENU_GOTO_MUSIC)
    # EVENTS['menu']['PICTURES'] = Event(MENU_GOTO_IMAGES)
    # EVENTS['menu']['GAMES'] = Event(MENU_GOTO_GAMES)
    # EVENTS['menu']['RADIO'] = Event(MENU_GOTO_RADIO) # Not working
    # EVENTS['menu']['POWER'] = Event(MENU_GOTO_SHUTDOWN)
    # Use arrow keys for back and select (alternate way of navigating)
    # MENU_ARROW_NAVIGATION = False
    # Process keyboard events from SDL. You want this unless you use only lirc
    # or event devices below.
    # USE_SDL_KEYBOARD = True
    # Keymap to map keyboard keys to event strings. You can also add new keys
    # here, e.g. KEYMAP[key.K_x] = 'SUBTITLE'. The K_-names are defined by pygame.
    # List of /dev/input/event# devices to monitor. You can specify either the
    # device node (e.g. '/dev/input/event1') or the name of the device (e.g.
    # 'ATI Remote Wonder II'). If you monitor your keyboard both here and with
    # USE_SDL_KEYBOARD, then you will get duplicate events.
    EVENT_DEVS = []
    # Keymap to map input events to event strings. You can change current mappings
    # and add new ones here, e.g. EVENTMAP['KEY_COFFEE'] = 'SUBTITLE'. Key names
    # are defined by the Linux input layer (input.h). An axis is described by a
    # pair, one for positive and one for negative movement, e.g.
    # EVENTMAP['REL_Z'] = ('LEFT', 'RIGHT')
    # Use Internet resources to fetch information?
    # For example, Freevo can use CDDB for album information,
    # the IMDB movie database for movie info, and Amazon for cover searches.
    # Set this to 0 if your computer isn't connected to a network.
    USE_NETWORK = 1
    # Directory location to save files when the normal filesystem
    # doesn't allow saving. This directory can save covers and fxd files
    # for read only filesystems like ROM drives. Set this variable to your
    # old MOVIE_DATA_DIR if you have one. It needs to be set to a directory
    # Freevo can write to.
    # OVERLAY_DIR = os.path.join(FREEVO_CACHEDIR, 'vfs')
    # Umask setting for all files.
    # 022 means only the user has write access. If you share your Freevo
    # installation with different users, set this to 002
    # UMASK = 022
    # Suffix for playlist files
    PLAYLIST_SUFFIX = [ 'm3u' ]
    # Use md5 in mmpython to create unique disc ids. Enable this if you have
    # problems with different discs having the same id.
    # MMPYTHON_CREATE_MD5_ID = 0
    # Keep metadata in memory
    # Setting this variable will keep all cache files in memory. Startup will be
    # slower, but for large directories, this will speed up the display.
    # 0 = Only keep current dir in memory. Use this if you have too much data
    # and not enough RAM
    # 1 = Once loaded, keep cachefile for directory in memory
    # 2 = Load all cachefiles on startup
    # WARNING: you should not run 'freevo cache' when freevo is running.
    # MEDIAINFO_USE_MEMORY = 1
    # Cache images. This uses a lot of disc space but it's a huge speed
    # enhancement. The images will be cached in OVERLAY_DIR
    CACHE_IMAGES = 1
    # ======================================================================
    # Plugins:
    # ======================================================================
    # Remove undesired plugins by setting plugin.remove(code).
    # You can also use the name to remove a plugin. But if you do that,
    # all instances of this plugin will be removed.
    # Examples:
    # plugin.remove(plugin_tv) or
    # plugin.remove('tv') will remove the tv module from the main menu
    # plugin.remove(rom_plugins['image']) will remove the rom drives from the
    # image main menu,
    # plugin.remove('rom_drives.rom_items') will remove the rom drives from all
    # menus
    # See freevo_config.py for a list of loaded plugins
    plugin.remove('tv')
    plugin.remove('headlines')
    plugin.remove('idlebar.tv')
    plugin.remove('idlebar.diskfree')
    plugin.remove('file_ops')
    plugin.remove('tv.generic_record')
    plugin.remove('tv.view_recordings')
    plugin.remove('tv.mplayer')
    plugin.remove('tv.manual_record')
    plugin.remove('tv.scheduled_recordings')
    plugin.remove('tv.view_favorites')
    plugin.remove('video.moviecovers')
    # User setup
    plugin.activate('audio.coversearch')
    # plugin.activate('video.moviecovers')
    plugin.activate('video.details')
    # list of regexp to be ignored on a disc label
    IMDB_REMOVE_FROM_LABEL = ('season[\._ -][0-9]+', 'disc[\._ -][0-9]+',
    'd[\._ -][0-9]+', 'german')
    # list of words to ignore when searching based on a filename
    IMDB_REMOVE_FROM_SEARCHSTRING = ('the', 'a')
    # When searching for a movie title in imdb, should the result be
    # autoaccepted if it is only one hit?
    # 0 = show menu even if it is only one hit (gives you an opportunity to cancel)
    # 1 = autoaccept
    IMDB_AUTOACCEPT_SINGLE_HIT = 1
    SCREENSAVER_DELAY = 30 # of seconds to wait to start saver.
    SCREENSAVER_CYCLE_TIME = 60 # of seconds to run a screensaver before starting another saver.
    plugin.activate('screensaver')
    # Use ivtv_record instead if you have an ivtv based card (PVR-250/350)
    # and want freevo to do everthing for you. TV_SETTINGS must be set
    # correctly. To use you need to set the following two lines:
    # plugin.remove('tv.generic_record')
    # plugin_record = plugin.activate('tv.ivtv_record')
    # Enable this for joystick support:
    # plugin.activate('joy')
    # Headlines
    # You are free to use any rss feeds in the HEADLINES_LOCATIONS below
    # These are just working examples for the Freevo feeds.
    # To turn off Headlines add plugin.remove('headlines')
    # plugin.activate('headlines', level=45)
    # HEADLINES_LOCATIONS = [
    # ('Freevo news releases', 'http://sourceforge.net/export/rss2_projnews.php?group_id=46652'),
    # ('Freevo file releases', 'http://sourceforge.net/export/rss2_projfiles.php?group_id=46652'),
    # ('Freevo summary+stats', 'http://sourceforge.net/export/rss2_projsummary.php?group_id=46652'),
    # ('Freevo donors', 'http://sourceforge.net/export/rss2_projdonors.php?group_id=46652'),
    # CD Ripping
    # CD_RIP_TMP_DIR = '/tmp/'
    # CD_RIP_TMP_NAME = 'track_%(track)s_being_ripped'
    # CD_RIP_PN_PREF = '%(artist)s/%(album)s/%(track)s - %(song)s'
    # CD_RIP_CDPAR_OPTS = '-s'
    # CD_RIP_LAME_OPTS = '--vbr-new -b 192 -h'
    # CD_RIP_OGG_OPTS = '-m 128'
    # CD_RIP_FLAC_OPTS = '-8'
    # CD_RIP_CASE = None # Can be title, upper, lower
    # CD_RIP_REPLACE_SPACE = None # Can be '_', '-', etc.
    # CD Burning
    # CDBURN_AUDIO_DAO = 1
    # CDBURN_MKISOFS_PATH = '/usr/bin/mkisofs'
    # CDBURN_CDRECORD_PATH = '/usr/bin/cdrecord'
    # CDBURN_TEMP_DIR='/tmp/'
    # CDBURN_DEV = '/dev/cdrom'
    # CDBURN_SPEED = 32
    # Re-encode
    # This plug-in transcodes a video to a different format
    # plugin.activate('video.reencode')
    # REENCODE_CONTAINER = 'avi'
    # REENCODE_RESOLUTION = 'Optimal'
    # REENCODE_VIDEOCODEC = 'XviD'
    # REENCODE_VIDEOBITRATE = 1000
    # REENCODE_AUDIOCODEC = 'MPEG 1 Layer 3 (mp3)'
    # REENCODE_AUDIOBITRATE = 128
    # REENCODE_NUMPASSES = 1
    # REENCODE_VIDEOFILTER = None
    # Freevo Music Player Daemon
    # http://www.musicpd.org/
    # plugin.activate('mpd')
    # Freevo Bluetooth Phone Settings
    # This plugin uses The Python bindings for Bluez bluetooth stack.
    # It can be downloaded from http://org.csail.mit.edu/pybluez/download.html
    # or installed with the package manager of your operating system.
    # To this plugin to work you need the j2me midlet installed in a compatible
    # phone.
    # plugin.activate('freevused')
    # if RFCOMM port is already binded wait this seconds to retry binding
    # FVUSED_BIND_TIMEOUT = 30
    # Translation of commands from j2me client to events of Freevo
    # FVUSED_CMDS = {
    # 'PREV': 'UP', # 1st row left
    # 'STRT': 'SELECT', # 1nd row center
    # 'NEXT': 'DOWN', # 1st row right
    # 'RWND': 'LEFT', # 2nd row left
    # 'PAUS': 'PAUSE', # 2nd row center
    # 'FFWD': 'RIGHT', # 2nd row right
    # 'VOL-': 'MIXER_VOLDOWN', # 3rd row left
    # 'STOP': 'EXIT', # 3rd row center
    # 'VOL+': 'MIXER_VOLUP', # 3rd row right
    # 'VOLM': 'MIXER_VOLMUTE', # 4th row left
    # 'SLCT': 'ENTER', # 4th row center
    # 'MAIN': 'MENU' # 4th row right
    # Freevo Button Bar Plug-in
    # plugin.activate('buttonbar')
    # You'll also need to map the 'RED', 'GREEN', 'YELLOW'
    # and 'BLUE' events to keys for example (don't use this
    # it overrides some default keys)
    # KEYMAP[key.K_F5] = 'RED'
    # KEYMAP[key.K_F6] = 'GREEN' #Already mapped to record
    # KEYMAP[key.K_F7] = 'YELLOW'
    # KEYMAP[key.K_F8] = 'BLUE'
    # Freevo Screensaver Plug-in
    # SCREENSAVER_DELAY = 120 # of seconds to wait to start saver.
    # SCREENSAVER_CYCLE_TIME = 60 # of seconds to run a screensaver before starting another saver.
    # plugin.activate('screensaver')
    # plugin.activate('screensaver.balls') # Bouncing balls all over the screen
    # plugin.activate('screensaver.bouncing_freevo') # The freevo logo bouncing around the screen
    # ======================================================================
    # Freevo directory settings:
    # ======================================================================
    # You can change all this variables in the folder.fxd on a per folder
    # basis
    # Example:
    # <freevo>
    # <folder title="Title of the directory" img-cover="nice-cover.png">
    # <setvar name="directory_autoplay_single_item" val="0"/>
    # <info>
    # <content>A small description of the directory</content>
    # </info>
    # </folder>
    # </freevo>
    # Should directories sorted by date instead of filename?
    # 0 = No, always sort by filename.
    # 1 = Yes, sort by date
    # 2 = No, don't sory by date for normal directories,
    # but sort by date for TV_RECORD_DIR.
    DIRECTORY_SORT_BY_DATE = 0
    # Should directory items be sorted in reverse order?
    # DIRECTORY_REVERSE_SORT = 0
    # Should we use "smart" sorting?
    # Smart sorting ignores the word "The" in item names.
    DIRECTORY_SMART_SORT = 1
    # Should files in directories have smart names?
    # This removes the first part of the names when identical
    # DIRECTORY_SMART_NAMES = 1
    # Should Freevo autoplay an item if only one item is in the directory?
    DIRECTORY_AUTOPLAY_SINGLE_ITEM = 0
    # Force the skin to use a specific layout number. -1 == no force. The layout
    # toggle with DISPLAY will be disabled
    # DIRECTORY_FORCE_SKIN_LAYOUT = -1
    # Format string for the audio item names.
    # Possible strings:
    # a=artist, n=tracknumber, t=title, y=year, f=filename
    # Example:
    # This will show the title and the track number:
    # DIRECTORY_AUDIO_FORMAT_STRING = '%(n)s - %(t)s'
    # DIRECTORY_AUDIO_FORMAT_STRING = '%(t)s'
    # Use media id tags to generate the name of the item. This should be
    # enabled all the time. It should only be disabled for directories with
    # broken tags.
    DIRECTORY_USE_MEDIAID_TAG_NAMES = 1
    # The following settings determine which features are available for
    # which media types.
    # If you set this variable in a folder.fxd, the value is 1 (enabled)
    # or 0 (disabled).
    # Examples:
    # To enable autoplay for audio and image files:
    # DIRECTORY_AUTOPLAY_ITEMS = [ 'audio', 'image' ]
    # To disable autoplay entirely:
    # DIRECTORY_AUTOPLAY_ITEMS = []
    # Make all items a playlist. So when one is finished, the next one will
    # start. It's also possible to browse through the list with UP and DOWN
    # DIRECTORY_CREATE_PLAYLIST = [ 'audio', 'image' ]
    # Add playlist files ('m3u') to the directory
    # DIRECTORY_ADD_PLAYLIST_FILES = [ 'audio', 'image' ]
    # Add the item 'Random Playlist' to the directory
    # DIRECTORY_ADD_RANDOM_PLAYLIST = [ 'audio' ]
    # Make 'Play' not 'Browse' the default action when only items and not
    # subdirectories are in the directory
    # DIRECTORY_AUTOPLAY_ITEMS = [ ]
    # ======================================================================
    # Freevo movie settings:
    # ======================================================================
    # Where the movie files can be found.
    # This is a list of items (e.g. directories, fxd files). The items themselves
    # can also be a list of (title, file)
    VIDEO_ITEMS = [
    ('movies', '/home/per/movies'),
    ('movies extra', '/extra/movies'),
    ('tv', '/home/per/tv'),
    ('tv extra', '/extra/tv'),
    # Some people access movies on a different machine using an automounter.
    # To avoid timeouts, you can specify the machine name in the directory
    # to check if the machine is alive first
    # Directory myserver:/files/server-stuff will show the item for the
    # directory /files/server-stuff if the computer myserver is alive.
    # The list of filename suffixes that are used to match the files that
    # are played wih MPlayer.
    # VIDEO_MPLAYER_SUFFIX = [ 'avi', 'mpg', 'mpeg', 'wmv', 'bin', 'rm',
    # 'divx', 'ogm', 'vob', 'asf', 'm2v', 'm2p',
    # 'mp4', 'viv', 'nuv', 'mov', 'iso',
    # 'nsv', 'mkv' ]
    # The list of filename suffixes that are used to match the files that
    # are played wih Xine.
    # VIDEO_XINE_SUFFIX = [ 'avi', 'mpg', 'mpeg', 'rm', 'divx', 'ogm',
    # 'asf', 'm2v', 'm2p', 'mp4', 'mov', 'cue' ]
    # Preferred video player
    VIDEO_PREFERED_PLAYER = 'mplayer'
    # Only scan OVERLAY_DIR and VIDEO_SHOW_DATA_DIR for fxd files containing
    # information about a disc. If you only have the fxd files for discs in
    # one of this directories (and subdirectories), set this to 1, it will
    # speed up startup, 0 may be needed if you have fxd files with disc links
    # in your normal movie tree.
    # VIDEO_ONLY_SCAN_DATADIR = 1
    # try to detect a movie with more than one file and join them as one
    # item
    VIDEO_AUTOJOIN = 1
    # try to find out if deinterlacing is needed or not
    # VIDEO_DEINTERLACE = None
    # Instruct player to use XVMC for playback
    # VIDEO_USE_XVMC = None
    # Pass field dominance parameter to MPlayer
    # VIDEO_FIELD_DOMINANCE = None
    # PRE and POST playing commands. Set these to a runnable command if
    # you wish to do something before and after playing a video, like
    # dimming the lights
    # VIDEO_PRE_PLAY = None
    # VIDEO_POST_PLAY = None
    # ======================================================================
    # Freevo audio settings:
    # ======================================================================
    # Where the Audio (mp3, ogg) files can be found.
    # This is a list of items (e.g. directories, fxd files). The items themselves
    # can also be a list of (title, file)
    # To add webradio support, add fxd/webradio.fxd to this list
    AUDIO_ITEMS = [
    ('music', '/home/per/music'),
    ('music extra', '/extra/music'),
    ('playlists', '/home/per/.mpd/playlists'),
    # The list of filename suffixes that are used to match the files that
    # are played as audio.
    # AUDIO_SUFFIX = [ 'mp3', 'ogg', 'wav','m4a', 'wma', 'aac', 'flac', 'mka' ]
    # Regular expression used to recognize filenames which are likely to be
    # covers for an album
    # This will match front.jpg and cover-f.jpg, but not back.jpg nor cover-b.jpg:
    # AUDIO_COVER_REGEXP = 'front|-f'
    # Format strings used to seach for audio cover images.
    # Fist matching GIF, JPG or PNG image will be used as cover.
    # Examples:
    # AUDIO_COVER_FORMAT_STRINGS = [ 'cover-%(artist)s-%(album)s', 'mycover' ]
    # AUDIO_COVER_FORMAT_STRINGS = [ '%(album)s', '../covers/%(album)s', '../covers/nocover' ]
    # Preferred audio player
    AUDIO_PREFERED_PLAYER = 'mplayer'
    # Show video files in the audio menu (for music-videos)
    AUDIO_SHOW_VIDEOFILES = False
    # ======================================================================
    # Freevo image viewer settings:
    # ======================================================================
    # Where image files can be found.
    # This is a list of items (e.g. directories, fxd files). The items itself
    # can also be a list of (title, file)
    IMAGE_ITEMS = [
    ('pictures', '/home/per/pictures'),
    # The list of filename suffixes that are used to match the files that
    # are used for the image viewer.
    # IMAGE_SUFFIX = [ 'jpg','gif','png','jpeg','bmp','tiff','psd' ]
    # The viewer now supports a new type of menu entry, a slideshow file.
    # It also has the slideshow alarm signal handler for automated shows.
    # It uses a new configuration option:
    # IMAGE_SSHOW_SUFFIX = [ 'ssr' ]
    # The viewer can exclude certain types of images based on the regular expression list
    # eg IMAGE_EXCLUDE = [('thm','tn_')]
    # IMAGE_EXCLUDE = None
    # Mode of the blending effect in the image viewer between two images
    # Possible values are:
    # None: no blending
    # -1 random effect
    # 0 alpha blending
    # 1 wipe effect
    IMAGEVIEWER_BLEND_MODE = -1
    # When viewing images on a TV screen where the pixels are not square
    # the images need to be scaled according to the aspect ratio of the TV
    # Use this setting for 16x9 TVs
    # IMAGEVIEWER_ASPECT = (float(1024) / float(720))
    # Use this setting for 4x3 TVs
    # IMAGEVIEWER_ASPECT = (float(768) / float(720))
    # Use this setting for Monitors including HDTVs
    # IMAGEVIEWER_ASPECT = 1.0
    # IMAGEVIEWER_ASPECT = 1.0
    # ======================================================================
    # Freevo games settings:
    # ======================================================================
    # MAME is an emulator for old arcade video games. It supports almost
    # 2000 different games! The actual emulator is not included in Freevo,
    # you'll need to download and install it separately. The main MAME
    # website is at http://www.mame.net, but the version that is used here
    # is at http://x.mame.net since the regular MAME is for Windows.
    # SNES stands for Super Nintendo Entertainment System. Freevo relies
    # on other programs that are not included in Freevo to play these games.
    # NEW GAMES SYSTEM :
    # =================
    # The GAMES_ITEMS structure is now build as follows :
    # <NAME>, <FOLDER>, (<TYPE>, <COMMAND_PATH>, <COMMAND_ARGS>, <IMAGE_PATH>, \
    # [<FILE_SUFFIX_FOR_GENERIC>])
    # where :
    # - <TYPE> : Internal game types (MAME or SNES) or
    # generic one (GENERIC)
    # - <COMMAND_PATH> : Emulator command
    # - <COMMAND_ARGS> : Arguments for the emulator
    # - <IMAGE_PATH> : Optionnal path to the picture
    # - <FILE_SUFFIX_FOR_GENERIC> : If the folder use the GENERIC
    # type, then you must specify here
    # the file suffix used by the emulator
    # GAMES_ITEMS = [
    # ('MAME', '/home/media/games/xmame/roms',
    # ('MAME', '/usr/local/bin/xmame.SDL', '-fullscreen -modenumber 6',
    # '/home/media/games/xmame/shots', None)),
    # ('SUPER NINTENDO', '/home/media/games/snes/roms',
    # ('SNES', '/usr/local/bin/zsnes', '-m -r 3 -k 100 -cs -u', '', None )),
    # ('Visual Boy Advance', '/home/media/games/vba/roms/',
    # ('GENERIC', '/usr/local/vba/VisualBoyAdvance', ' ', '', [ 'gba' ] )),
    # ('MEGADRIVE', '/home/media/games/megadrive/roms',
    # ('GENESIS', '/usr/local/bin/generator-svgalib', '', '', '' ))
    # GAMES_ITEMS = None
    # These settings are used for the MAME arcade emulator:
    # Priority of the game process
    # 0 = Don't change the priority
    # >0 - Lower priority
    # <0 - Higher priority
    # GAMES_NICE = -20
    # MAME cache directory
    # GAMES_MAME_CACHE = '%s/romlist-%s.pickled' % (FREEVO_CACHEDIR, os.getuid())
    # ======================================================================
    # Freevo SKIN settings:
    # ======================================================================
    # XML file for the skin. If SKIN_XML_FILE is set, this skin will be
    # used, otherwise the skin will rememeber the last choosen skin.
    # SKIN_XML_FILE = 'blurr'
    # Select a way when to switch to text view even if a image menu is there
    # 1 = Force text view when all items have the same image and there are no
    # directories
    # 2 = Ignore the directories, always switch to text view when all images
    # are the same
    # SKIN_FORCE_TEXTVIEW_STYLE = 1
    # Force text view for the media menu
    # (The media menu is the first menu displayed for video, audio, images
    # and games).
    # SKIN_MEDIAMENU_FORCE_TEXTVIEW = 0
    # ======================================================================
    # Freevo OSD settings:
    # ======================================================================
    # System Path to search for fonts not included in the Freevo distribution
    # OSD_EXTRA_FONT_PATH = [ '/usr/share/fonts/truetype' ]
    # Font aliases
    # All names must be lowercase! All alternate fonts must be in './share/fonts/'
    # OSD_FONT_ALIASES = { 'arial_bold.ttf' : 'VeraBd.ttf' }
    # For non-european character sets the OSD_FORCE_FONTNAME and
    # OSD_FORCE_FONTSIZE can be set. The size is a scaling ratio, ie 1.2.
    # Setting OSD_FORCE_FONTNAME='batang.ttf' and OSD_FORCE_FONTSIZE=1.0
    # allows Korean characters.
    # OSD_FORCE_FONTNAME = None
    # OSD_FORCE_FONTSIZE = None
    # Number of seconds to wait until the busy icon is shown in the menu.
    # Busy icon can also be shown right away when there is more than a certain
    # number of files in a directory.
    # Set this to None to disable this.
    # (seconds, files)
    # OSD_BUSYICON_TIMER = (0.7, 200)
    # Number of pixels to move the display to centre the OSD on the display
    # OSD_OVERSCAN_LEFT = OSD_OVERSCAN_RIGHT = 0
    # OSD_OVERSCAN_TOP = OSD_OVERSCAN_BOTTOM = 0
    # Setting the cursors when freevo is run in fullscreen mode
    # OSD_X11_CURSORS = '/usr/lib/X11/cursors/black.cursor /usr/lib/X11/cursors/blank.cursor'
    # Execute a script on OSD startup.
    # OSD_SDL_EXEC_AFTER_STARTUP = ""
    # Execute a script on OSD close.
    # OSD_SDL_EXEC_AFTER_CLOSE = ""
    # Stop the osd before playing a movie with xine or mplayer. Some output
    # devices need this. After playback, the osd will be restored
    # OSD_STOP_WHEN_PLAYING = 0
    # Dim text that doesn't fit instead of using ellipses.
    # OSD_DIM_TEXT = 1
    # OSD sound effects
    # OSD_SOUNDS_ENABLED=False
    # OSD_SOUNDS= {
    # 'menu.navigate': None,
    # 'menu.back_one': None,
    # 'menu.select' : None
    # ======================================================================
    # Freevo remote control settings:
    # ======================================================================
    # Location of the lircrc file
    # For remote control support, Freevo needs a lircrc file, like this:
    # begin
    # prog = freevo
    # button = select
    # config = SELECT
    # end
    # Check contrib/lirc for examples and helpers/freevo2lirc.pl for a converter
    # script.
    # LIRCRC = '/etc/freevo/lircrc'
    # Joystick support
    # 0 = Disable joystick support
    # 1 = Use js0,
    # 2 = Use js1,
    # ... etc
    # JOY_DEV = 0
    # JOY_SENS = 32000
    # JOY_LOCKFILE = /path/to/joystick/lockfile
    # Freevo can support as many buttons as your controller has
    # as long as there is a corresponding entry in JOY_CMDS.
    # You will also need to plugin.activate('joy').
    # FYI: new kernels use /dev/input/jsX, but joy.py will fall back on /dev/jsX
    # JOY_CMDS = {
    # 'up' : 'UP',
    # 'down' : 'DOWN',
    # 'left' : 'LEFT',
    # 'right' : 'RIGHT',
    # 'button 1' : 'PLAY',
    # 'button 2' : 'PAUSE',
    # 'button 3' : 'STOP',
    # 'button 4' : 'ENTER',
    # Here are the PS3 joy stick mappings
    # JOY_CMDS = {
    # 'button 5' : 'UP',
    # 'button 7' : 'DOWN',
    # 'button 8' : 'LEFT',
    # 'button 6' : 'RIGHT',
    # 'up' : 'UP',
    # 'down' : 'DOWN',
    # 'left' : 'LEFT',
    # 'right' : 'RIGHT',
    # 'button 14' : 'SELECT', # <circle>
    # 'button 16' : 'EXIT', # <square>
    # 'button 15' : 'STOP', # <x>
    # 'button 1' : 'ENTER', # <select>
    # 'button 11' : 'VOL+', # <L1>
    # 'button 9' : 'VOL-', # <L2>
    # 'button 2' : 'MUTE', # <L3>
    # 'button 10' : 'MUTE', # <R2>
    # 'button 4' : 'PLAY', # <start>
    # 'button 13' : 'PLAY', # <start>
    # 'button 17' : 'MENU', # <ps>
    # ======================================================================
    # TVtime settings:
    # ======================================================================
    # Location of the TV time program
    # Default: Use the value in freevo.conf
    # TVTIME_CMD = CONF.tvtime
    # ======================================================================
    # MPlayer settings:
    # ======================================================================
    # MPLAYER_AO_DEV = 'oss:/dev/dsp' # e.g.: oss,sdl,alsa, see mplayer docs
    # MPLAYER_VO_DEV_OPTS = '' # e.g.: ':some_var=vcal'
    # DVD_LANG_PREF = 'en,se,no' # Order of preferred languages on DVD.
    # DVD_SUBTITLE_PREF = '' # Order of preferred subtitles on DVD.
    # Priority of mplayer process. 0 is unchanged, <0 is higher prio, >0 lower prio.
    # prio <0 has no effect unless run as root.
    # MPLAYER_NICE = -20
    # Mplayer options to use the software scaler. If your CPU is fast enough, you
    # might try a software scaler. You can disable it later for some larger files
    # with the mplayer option '-nosws'. If you have -framedrop or -hardframedrop
    # as mplayer option, the software scaler will also not be used.
    # A good value for this variable is:
    # MPLAYER_SOFTWARE_SCALER = "-subfont-text-scale 5 -fs -sws 2 -vf scale=%s:-3,"\
    # "expand=%s:%s " % ( CONF.width, CONF.width, CONF.height )
    # older versions of mplayer may need
    # MPLAYER_SOFTWARE_SCALER = '-xy %s -sws 2 -vop scale:-1:-1:-1:100' % CONF.width
    # MPLAYER_SOFTWARE_SCALER = ''
    # Mplayer arguments for different media formats. (eg DVDs, CDs, AVI files, etc)
    # Uses a default value if nothing else matches.
    # MPLAYER_ARGS = { 'dvd' : '-cache 8192',
    # 'vcd' : '-cache 4096',
    # 'cd' : '-cache 1024 -cdda speed=2',
    # 'tv' : '-nocache',
    # 'ivtv' : '-cache 8192',
    # 'avi' : '-cache 5000 -idx',
    # 'rm' : '-cache 5000 -forceidx',
    # 'rmvb' : '-cache 5000 -forceidx',
    # 'webcam' : 'tv:// -tv driver=v4l:width=352:height=288:outfmt=yuy2:device=/dev/video2',
    # 'default': '-cache 5000'
    # Number of seconds before seek value times out. This is used when
    # seeking a specified number of minutes into a movie. If you make
    # a mistake or change your mind, the seek value will timeout after
    # this many seconds.
    # MPLAYER_SEEK_TIMEOUT = 8
    # Autocrop files when playing. This is useful for files in 4:3 with black
    # bars on a 16:9 tv
    # MPLAYER_AUTOCROP = 0
    # Try to set correct 'delay' and 'mc' values for mplayer based on the delay
    # from mmpython.
    # This should correct av sync problems with mplayer for some files, but
    # may also break things. (I don't know, that's why it's disabled by default).
    # WARNING: When seeking, the playback is out of sync for some seconds!
    # MPLAYER_SET_AUDIO_DELAY = 0
    # Mplayer video filter for interlaced or progressive videos. If you have
    # a slow pc, do not use post processing
    # MPLAYER_VF_INTERLACED = ''
    # MPLAYER_VF_PROGRESSIVE = 'pp=fd'
    # For pal and dvb-t recordings, the following looks good
    # MPLAYER_VF_INTERLACED = 'pp=md/de,phase=U'
    # MPLAYER_VF_INTERLACED = 'pp=de/fd'
    # MPLAYER_VF_PROGRESSIVE = 'pp=de'
    # For the autodetect TOP/BOTTOM field first in mplayer
    # (if this feature present in mplayer)
    # MPLAYER_HAS_FIELD_DOMINANCE = 1
    # ======================================================================
    # Xine settings:
    # ======================================================================
    # You need xine-ui version greater 0.9.21 to use the all the features
    # of the xine plugin
    # XINE_VO_DEV = 'xv'
    # XINE_COMMAND = '%s --auto-play=fq --hide-gui --borderless --geometry %sx%s+0+0 --no-splash' % \
    # (CONF.xine, CONF.width, CONF.height)
    # XINE_ARGS_DEF = "--no-lirc --post='pp:quality=10;expand'"
    # XINE_AO_DEV = 'oss' # alsa or oss
    # Set to False if xine doesn't have '--no-lirc' option
    # XINE_HAS_NO_LIRC = True
    # Set to True is xine supports get_time this enables the position to be saved
    # XINE_BOOKMARK = False
    # ======================================================================
    # Freevo TV settings:
    # ======================================================================
    # This is where recorded video is written.
    # XXX the path doesn't work from the www cgi scripts!
    # TV_RECORD_DIR = None
    # This will enable duplicate recording detection
    # TV_RECORD_DUPLICATE_DETECTION = True
    # This will enable only new episodes to be recorded
    # TV_RECORD_ONLY_NEW_DETECTION = True
    # ================================================================================
    # Watching TV
    # ================================================================================
    # XXX You must change this to fit your local conditions!
    # NORM: ntsc, pal, secam
    # INPUT: television, composite1
    # CHANLIST: One of the following:
    # us-bcast, us-cable, us-cable-hrc, japan-bcast, japan-cable, europe-west,
    # europe-east, italy, newzealand, australia, ireland, france, china-bcast,
    # southafrica, argentina, canada-cable, russia
    # TV_SETTINGS = 'NORM INPUT CHANLIST DEVICE'
    # Video input device
    # Usually /dev/video0, but might be /dev/video1 instead for multiple boards.
    # FreeBSD uses the Brooktree TV-card driver, not V4L.
    # TV_DRIVER = 'v4l'
    # TV_DEVICE = '/dev/video0'
    # TV_INPUT = 0
    # ================================================================================
    # Listening to radio
    # ================================================================================
    # Radio device default is None, /dev/video24 for ivtv
    # RADIO_DEVICE = '/dev/radio'
    # Radio commands:
    # plugin.activate('audio.radioplayer')
    # plugin.activate('audio.radio')
    # for fmtools
    # RADIO_CMD = 'fm'
    # RADIO_CMD_START = (RADIO_CMD + ' -d %s ' % RADIO_DEVICE + ' -q %s 65535')
    # RADIO_CMD_STOP = (RADIO_CMD + ' -d %s ' % RADIO_DEVICE + ' -q off')
    # for ivtv-radio
    # RADIO_CMD = '/usr/bin/ivtv-radio -d /dev/radio0 -i /dev/video24'
    # RADIO_STATIONS = [
    # ('DRS 1', '94.80'),
    # ('VIRUS', '104.30'),
    # (u'Radio Zürisee', '90.20'),
    # Additional options to pass to mplayer in TV mode.
    # eg. To turn off deinterlacing:
    # TV_OPTS = '-vop pp=ci'
    # TV_OPTS = ''
    # TV_SETTINGS = '%s television %s %s' % (CONF.tv, CONF.chanlist, TV_DEVICE)
    # Size (in MB) of the timeshift buffer. (ie: how long you can pause tv for.)
    # This is set to a low default because the default buffer location is
    # under FREEVO_CACHEDIR and we don't want to blow /var or /tmp.
    # TIMESHIFT_BUFFER_SIZE = 128
    # TIMESHIFT_ENCODE_CMD = 'mp1e -m3 -c%s -p%s -r14,100' % \
    # (TV_SETTINGS.split()[3], AUDIO_INPUT_DEVICE)
    # TIMESHIFT_BUFFER = '%s/timeshift.mpeg' % FREEVO_CACHEDIR
    # TV_DATE_FORMAT = '%e-%b' # Day-Month: 11-Jun
    # TV_TIME_FORMAT = '%H:%M' # Hour-Minute 14:05
    # TV_DATETIME_FORMAT = '%A %b %d %I:%M %p' # Thursday September 24 8:54 am
    # This is the filename format for files recorded using Freevo.
    # You can use any of the strftime variables in it, provided you
    # put two '%%' at the beginning.
    # Some examples:
    # %%A - Full weekday name.
    # %%H - Hour (24-hour clock) as a decimal number [00,23].
    # %%M - Minute as a decimal number [00,59].
    # %%m - Month as a decimal number [01,12].
    # %%d - Day of the month as a decimal number [01,31].
    # %%p - Locale's equivalent of either AM or PM.
    # More can be found at: http://www.python.org/doc/current/lib/module-time.html
    # TV_RECORD_FILE_MASK = '%%m-%%d %%H:%%M %(progname)s - %(title)s'
    # If using the persistent recordserver
    # TV_RECORD_SCHEDULE = FREEVO_STATICDIR + '/schedule.pickle'
    # TV_RECORD_FAVORITES = FREEVO_STATICDIR + '/favorites.pickle'
    # TV_RECORD_FAVORITES_LIST = FREEVO_STATICDIR + '/favorites.txt'
    # RECORDSERVER_IP = 'localhost'
    # RECORDSERVER_PORT = 18001
    # RECORDSERVER_SECRET = 'secret1'
    # If the recordserver runs as root, set the uid to the given one
    # after startup. The gui must also match one of the users group ids
    # RECORDSERVER_UID = 0
    # RECORDSERVER_UID = 0
    # Remove old recordings if GB free is less than specified value
    # RECORDSERVER_CLEANUP_THRESHOLD = 0
    # start every recording X minutes before scheduled,
    # and stop X minutes after scheduled - default to zero minutes.
    # This must be a value in seconds although at the moment only has
    # the percision of one minute.
    # TV_RECORD_PADDING_PRE = 0
    # TV_RECORD_PADDING_POST = 0
    # Number of minutes before or after the start time of a favorite where
    # a program matching the name, day of week etc should still be considered a
    # favorite. For example a favorite has a start time of 21.00, but the program
    # has been brought forward by the broadcaster by 10 minutes to 20.50, with
    # a margin of less than 10 this program will not be recorded as the start time
    # is outside the margin. But if the margin is set at 10 minutes or greater this
    # program will be considered a favorite and recorded. Probably about 45 minutes
    # is the best bet, better a false positive than a false negative.
    # TV_RECORD_FAVORITE_MARGIN = 45
    # PRE and POST recording commands. Set these to a runnable command if
    # you wish to have special mixer settings or video post processing.
    # VCR_PRE_REC = None
    # VCR_POST_REC = None
    # VCR_AUDIO = (':adevice=%s' % AUDIO_DEVICE +
    # ':audiorate=32000' + # 44100 for better sound
    # ':forceaudio:forcechan=1:' + # Forced mono for bug in my driver
    # 'buffersize=64') # 64MB capture buffer, change?
    # TV capture size for viewing and recording. Max 768x480 for NTSC,
    # 768x576 for PAL. Set lower if you have a slow computer!
    # For the 'tvtime' TV viewing application, only the horizontal size is used.
    # Set the horizontal size to 400 or 480 if you have a slow (~500MHz) computer,
    # it still looks OK, and the picture will not be as jerky.
    # The vertical size is always either fullscreen or 480/576 (NTSC/PAL)
    # for tvtime.
    # TV_VIEW_SIZE = (640, 480)
    # TV_REC_SIZE = (320, 240) # Default for slower computers
    # Input formats for viewing and recording. The format affect viewing
    # and recording performance. It is specific to your hardware, so read
    # the MPlayer docs and experiment with mplayer to see which one fits
    # your computer best.
    # TV_VIEW_OUTFMT = 'yuy2' # Better quality, slower on pure FB/X11
    # TV_REC_OUTFMT = 'yuy2'
    # XXX Please see the mencoder docs for more info about the settings
    # XXX below. Some stuff must be changed (adevice), others probably
    # XXX should be ("Change"), or could be in some cases ("change?")
    # VCR_CMD = (CONF.mencoder + ' ' +
    # 'tv:// ' + # New mplayer requires this.
    # '-tv driver=%s:input=%d' % (TV_DRIVER, TV_INPUT) +
    # ':norm=%s' % CONF.tv +
    # ':channel=%(channel)s' + # Filled in by Freevo
    # ':chanlist=%s' % CONF.chanlist +
    # ':width=%d:height=%d' % (TV_REC_SIZE[0], TV_REC_SIZE[1]) +
    # ':outfmt=%s' % TV_REC_OUTFMT +
    # ':device=%s' % TV_DEVICE +
    # VCR_AUDIO + # set above
    # ' -ovc lavc -lavcopts ' + # Mencoder lavcodec video codec
    # 'vcodec=mpeg4' + # lavcodec mpeg-4
    # ':vbitrate=1200:' + # Change lower/higher, bitrate
    # 'keyint=30 ' + # Keyframe every 10 secs, change?
    # '-oac mp3lame -lameopts ' + # Use Lame for MP3 encoding, must be enabled in mencoder!
    # 'br=128:cbr:mode=3 ' + # MP3 const. bitrate, 128 kbit/s
    # '-ffourcc divx ' + # Force 'divx' ident, better compat.
    # '-endpos %(seconds)s ' + # only mencoder uses this so do it here.
    # '-o %(filename)s') # Filled in by Freevo
    # TV_VIDEO_GROUPS setting to handles multiple arbitrary groups of devices
    # for viewing or recording. It is possible to have different Freevo
    # channels use different Video Groups.
    # See the wiki for more details:
    # http://doc.freevo.org/MultiTunerConfig
    # http://doc.freevo.org/Analoguemulti
    # This example is when you have one IVTV type card installed
    # TV_VIDEO_GROUPS = [
    # VideoGroup(vdev=TV_DEVICE,
    # adev=AUDIO_DEVICE,
    # input_type='tuner 1',
    # input_num=0,
    # tuner_norm=CONF.tv,
    # tuner_chanlist=CONF.chanlist,
    # group_type = 'ivtv',
    # desc='PVR-350 Video Group'),
    # This example is for two normal TV cards to allow you to use one card to
    # view a programme and the other card to record at the same time
    # TV_VIDEO_GROUPS = [
    # # Use this group for watching tv
    # VideoGroup(vdev='/dev/video0',
    # adev=None,
    # input_type='tuner 1',
    # tuner_norm=CONF.tv,
    # tuner_chanlist=CONF.chanlist,
    # desc='Watching Video Group',
    # record_group=1),
    # # Use this group for recording tv
    # VideoGroup(vdev='/dev/video1',
    # adev=None,
    # input_type='tuner 1',
    # tuner_norm=CONF.tv,
    # tuner_chanlist=CONF.chanlist,
    # desc='Recording Video Group',
    # record_group=None),
    # Settings for ivtv based cards such as the WinTV PVR-250/350.
    # TODO: Add descriptions and valid settings for each option.
    # bitrate in bps
    # stream type
    # Options are: 0 (mpeg2_ps), 1 (mpeg2_ts), 2 (mpeg1), 3 (mpeg2_pes_av),
    # 5 (mpeg2_pes_v), 7 (mpeg2_pes_a), 10 (dvd)
    # TV_IVTV_OPTIONS = {
    # 'input' : 4,
    # 'resolution' : '720x480',
    # 'aspect' : 2,
    # 'audio_bitmask' : 233,
    # 'bframes' : 3,
    # 'bitrate_mode' : 1,
    # 'bitrate' : 4000000,
    # 'bitrate_peak' : 4000000,
    # 'dnr_mode' : 0,
    # 'dnr_spatial' : 0,
    # 'dnr_temporal' : 0,
    # 'dnr_type' : 0,
    # 'framerate' : 0,
    # 'framespergop' : 15,
    # 'gop_closure' : 1,
    # 'pulldown' : 0,
    # 'stream_type' : 10,
    # TV Channels. This list contains a mapping from the displayed channel name
    # to the actual channel name as used by the TV watching application.
    # The display name must match the names from the XMLTV guide,
    # and the TV channel name must be what the tuner expects (usually a number).
    # The TV menu is supposed to be supported by the XMLTV application for
    # up to date listings, but can be used without it to just display
    # the available channels.
    # This list also determines the order in which the channels are displayed!
    # N.B.: You must delete the XMLTV cache file (e.g. /var/cache/freevo/TV.xml.pickled)
    # if you make changes here and restart!
    # Format: [('xmltv channel id', 'freevo display name', 'tv channel name'), ...]
    # If this variable is set to None (default), Freevo will try to auto-detect
    # the channel list based on the xmltv file. This doesn't work for all
    # xmltv grabber, e.g. the German list doesn't contain station lists. In this
    # case Freevo will output the possible list for you to add them manually.
    # If auto-detection doesn't work or you want to edit the list, run
    # freevo tv_grab -query.
    # Setting this variable to [] will deactivate the tv guide. If you don't have
    # a tv card, you may also want to add plugin.remove('tv') to remove the whole
    # tv menu.
    # All channels listed here will be displayed on the TV menu, even if they're
    # not present in the XMLTV listing.
    # Timedependent channels:
    # The TV_CHANNELS-list can look like this:
    # TV_CHANNELS = [('21', 'SVT1', 'E5'),
    # ('22', 'SVT2', 'E3'),
    # ('26', 'TV3', 'E10'),
    # ('27', 'TV4', 'E6'),
    # ('10', 'Kanal 5', 'E7'),
    # ('60', 'Fox Kids', 'E8', ('1234567','0600','1659')),
    # ('16', 'TV6', 'E8', ('1234567','1700','2359'),
    # ('1234567','0000','0300')),
    # ('14', 'MTV Europe', 'E11') ]
    # As you can see the list takes optional tuples:
    # ( 'DAYS', 'START','END')
    # 1234567 in days means all days.
    # 12345 would mean monday to friday.
    # It will display "Fox Kids" from 06:00 to 16:59 and "TV6" from 17:00 to 03:00.
    # 03:00 to 06:00 it won't be displayed at all.
    # TV_CHANNELS = None
    # A lambda function to sort the TV_CHANNELS
    #TV_CHANNELS_COMPARE = lambda a, b: cmp(int(a[2]), int(b[2]))
    # TV_FREQUENCY_TABLE - This is only used when Freevo changes the channel natively.
    # This is only the case if you are using V4L2 and any of the following plugins:
    # timeshift, ivtv_record, ivtv_basic_tv.
    # For the standard frequancy tables see src/tv/freq.py. To add your own just
    # replace tuner_id in the following example with a valid tuner id (ie: '5' or
    # 'BBC1') and a frequency in KHz. You may have as many entries as you like,
    # anything here will simply override a corresponding entry in your standard
    # frequency table and you can also have entries here that are not present in
    # there.
    # TV_FREQUENCY_TABLE = {
    # 'tuner_id' : 55250,
    # Program to grab xmltv listings. To get a grabber, you need to download
    # xmltv. A possible value for users in the USA is tv_grab_na
    # Use the tv_grab helper to grab the listings and cache them. Start
    # 'freevo tv_grab --help' for more informations.
    # XMLTV_GRABBER = ''
    # If you want to run tv_sort on your listings add the path to tv_sort here.
    # tv_sort will make sure all your programs have proper stop times, otherwise
    # programs might get cut off at midnight.
    # XMLTV_SORT = ''
    # Number of days the grabber should get
    # XMLTV_DAYS = 3
    ## ONLY ADJUST THIS IF YOUR GUIDE TIMES ARE INCORRECT ##
    # GMT offset for XMLTV feeds that don't contain timezone information
    # An example of this is the OzTivo feed which has the timestamps
    # in the XML pre-adjusted for your timezone
    # XMLTV_TIMEZONE='+0100'
    # ======================================================================
    # Freevo builtin commdetect server settings:
    # ======================================================================
    # COMMDETECTSERVER_UID = 0
    # COMMDETECTSERVER_GID = 0
    # COMMDETECTSERVER_IP = 'localhost'
    # COMMDETECTSERVER_PORT = 6667
    # ======================================================================
    # Freevo builtin rss server settings:
    # ======================================================================
    # RSSSERVER_UID = 0
    # RSSSERVER_GID = 0
    # RSS_CHECK_INTERVAL = 3600
    # RSS_FEEDS = '/etc/freevo/rss.feeds'
    # RSS_VIDEO = '/media/video'
    # RSS_AUDIO = '/media/podcasts'
    # ======================================================================
    # Freevo builtin WWW server settings:
    # ======================================================================
    # To activate the built in web server, uncomment the following line
    # plugin.activate('www')
    # Web server port number. 80 is the standard port, but is often
    # taken already by apache, and cannot be used unless the server
    # runs as root. Port 8080 is the default, change to 80 if
    # needed.
    # WEBSERVER_PORT = 8080
    # Username / Password combinations to login to the web interface.
    # WWW_USERS = {
    # "user1" : "changeme",
    # "optional" : "changeme2"
    # Divide the TV guide into intervals of this length (in minutes)
    # WWW_GUIDE_INTERVAL = 30
    # Precision for TV guide (in minutes)
    # WWW_GUIDE_PRECISION = 5 #
    # Show this many blocks at once
    # WWW_GUIDE_COLS = 6
    # WWW_STYLESHEET = 'styles/main.css'
    # WWW_JAVASCRIPT = 'scripts/display_prog-head.js'
    # Integrate personal web pages into the web server
    # WWW_PERSONAL_PAGE = [
    # ('My Page', 'a single personal web page', 'page.html'),
    # ('My Site', 'site description', 'site/'),
    # ======================================================================
    # Internal stuff, you shouldn't change anything here unless you know
    # what you are doing
    # ======================================================================
    # Config for xml support in the movie browser
    # the regexp has to be with ([0-9]|[0-9][0-9]) so we can get the numbers
    # VIDEO_SHOW_REGEXP = "s?([0-9]|[0-9][0-9])[xe]([0-9]|[0-9][0-9])[^0-9]"
    # Remote control daemon. The server is in the Freevo main application,
    # and the client is a standalone application in rc_client/
    # ENABLE_NETWORK_REMOTE = 0
    # REMOTE_CONTROL_HOST = '127.0.0.1'
    # REMOTE_CONTROL_PORT = 16310
    # Remote control daemon. Similar to the one above, but uses TCP instead
    # of UDP. It is possible to send commands with a telnet client.
    # ENABLE_TCP_NETWORK_REMOTE = 0
    # REMOTE_CONTROL_TCP_HOST = '127.0.0.1'
    # REMOTE_CONTROL_TCP_PORT = 16311
    # XMLTV File
    # This is the XMLTV file that can be optionally used for TV listings
    # XMLTV_FILE = '/tmp/TV.xml'
    # XML TV Logo Location
    # Use the "makelogos.py" script to download all the
    # Station logos into a directory. And then put the path
    # to those logos here
    # TV_LOGOS = OS_CACHEDIR + '/xmltv/logos'
    # ======================================================================
    # Idlebar and plugins
    # These are the default idlebar settings, there are many more see:
    # freevo plugins -l for a complete list
    # To turn off use plugin.remove('idlebar.cdstatus')
    # clock display
    # %A - Full weekday name.
    # %a - Abbreviated weekday name.
    # %B - Full month name
    # %b - Abbreviated month name
    # %I - Hour (12-hour clock) as a decimal number [01,12].
    # %H - Hour (24-hour clock) as a decimal number [00,23].
    # %M - Minute as a decimal number [00,59].
    # %m - Month as a decimal number [01,12].
    # %b - Name of Month
    # %d - Day of the month as a decimal number [01,31].
    # %p - Locale's equivalent of either AM or PM.
    # %y - Year without century as a decimal number [00,99].
    # %Y - Year with century as a decimal number.
    # ======================================================================
    # plugin.activate('idlebar')
    # plugin.activate('idlebar.tv', level=20)
    # plugin.activate('idlebar.cdstatus', level=25)
    # plugin.activate('idlebar.diskfree', level=30)
    # plugin.activate('idlebar.clock', level=50)
    # CLOCK_FORMAT = '%a %d %H:%M'
    # Debugging and logging settings
    # logging can be one of:
    # CRITICAL, ERROR, WARNING, INFO, DEBUG or NOTSET
    # debugging is a number from 0 to 9, 0 is no debugging 9 is most
    # LOGGING = logging.DEBUG
    # LOGGING_RECORDSERVER = logging.DEBUG
    # DEBUG = 1
    # messages go to stdout
    # DEBUG_STDOUT = 0
    # messages from starting a child application
    # DEBUG_CHILDAPP = 1
    # timing messages
    # DEBUG_TIME = 0
    I've been reading wikis and googling now the entire weekend so I hope someone here can help me.

    Perre wrote:I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata?
    It's clearly not impossible, just different than you expect. Create your playlist as you want it to appear in the Current tab (meaning don't dump every single song from your library in there, just the ones you want) and then save the playlist.
    Perre wrote:And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Look at save_absolute_paths_in_playlists in your mpd.conf.

  • Cue Point To Load A New Movie...

    Hi,
    I'm a graphic designer. Actionscript is arcana for me now. It
    has changed over time and I haven't had time to upgrade.
    I would really appreciate a simple script that load another
    flv when the current finish playing. I know this done by adding a
    cue point at the end of the video, but even though I have tried, I
    don't seem to find a way to do this.
    Please, can someone give me a simple scrip that I have to
    change only the name of the movie or tell me where I can find a
    simple tutorial that teaches me how to do this?
    Thanks

    PS, all of the frames, in the main movie, and the loaded
    movie, (which is in the library) have stop actions with goto
    next/prev frame actions on each frame
    (just giving you a bigger picture in case it helps)

  • Cue point to jump to next frame of movie

    Hi. I'm a bit lost assigning an action script created
    CuePoint (Entered in Paramenters Window for FLV media component) to
    tell my SWF movie to advance to the next frame and thus call the
    next video I want to throw onto that next keyframe.
    I know this must be basics to most, but somewhere I'm
    missing it. Once a CuePoint is created, how do I link that to
    trigger an action?

    Thanks for reply. I was out of things for a week with flu.
    Serious flu. Now I have to catch up. Grrrr.
    Does that mean ("cuePoint" , ... needs to be replaced with
    the actual name of the cue point to work?
    + The Cue point Parameters. What should they be set
    as?

  • Help - Using Cue Points to Play Movie Clips

    I have a FLV, into which I have placed about 8 cue points. I
    want a movie clip to play - (each movie clip is simply a snippet of
    supporting text for the video) - when a cue point is "hit". I am
    really quite baffled by most of the documentation that I have read
    so far.
    How can I do this? Many, many thanks for any support you can
    give.
    tommy53

    You can build out a menu by reading the cuePoints array in
    the NetStream.onMetadata handler, or by using the MetadataEvent
    with the FLVPlayback component (AS3). The simple thing for me to
    say is to refer to Chapter 9 of my new Flash Video book. :) (see
    link in my signature below.)

  • Using cue points to acrivate movie clips

    I'm trying to write a simple piece of ActionScript that I can
    adapt and re-use easily. (I'm not very good at programming and I've
    been finding the "help" information very confusing.) I've devised
    quite an elegant solution, if only I could get it to work!.
    I'm using a single frame loop with an onEnterFrame
    construction that deletes itself when the flv has finished playing.
    I've set up a movie clip with various start points for animations
    to be activated at cue points. I'm testing for the cue points in
    the same frame, storing previous cue point names so that each cue
    point triggers the corresponding animation once only. I know the
    main logic works because I've tested it with trace statements to
    prove that the cue points are actually being reached. The problem
    is that the goToAndPlay instructions don't seem to activate the
    movie clip as intended.
    My best guess is that the stop action on the self-looping
    frame is also stopping the movie clip as soon as it starts. Even if
    that is true, I don't know how to solve the problem. And I'm sure
    one of you much more clever people will know better. Here's the
    code. Any suggestions?

    You can build out a menu by reading the cuePoints array in
    the NetStream.onMetadata handler, or by using the MetadataEvent
    with the FLVPlayback component (AS3). The simple thing for me to
    say is to refer to Chapter 9 of my new Flash Video book. :) (see
    link in my signature below.)

  • Cue point event to display text link in movie

    HI -- This may be a fairly mundane question but I am having a
    hard time figuring it out. I have a movie with several cue point
    events. I would like a text link to be added to the right of the
    movie when a certain cue point is hit. I would like the link to
    stay in place and each time a new cue point is hit, a new link is
    added below the last link.
    I am stuck and can't seem to get this to work. Having a hard
    time figuring out the action script. Any suggestions? I have
    already followed the macromedia tutorials on this subject and am
    just floundering.
    thanks!

    Since you are storing the number as an 'int' and then converting that int to a String for display, then you shouldn't expect 0's to be added on if the number is currently 0:
    1) curnum = 0
    2) 0 key is pressed
    3) curnum = curnum * 10 + 0 = 0 * 10 + 0 = 0
    A real calculator wouldn't keep appending 0's... at least, not a simple calculator comparable to the one you are writing. If you want to append 0's, try this:
    - Keep a count of the number of 0's pressed.
    - If curnum is changed to 0 (by pressing clear, for example, or turning on the calculator), reset the zero count to 1.
    - Each time the '0' key is pressed, if curnum is 0, then increment the '0' count.
    - When you update your display, use the following logic: if curnum is 0, then display the number of 0's specified in the zero count, otherwise just display the value of curnum.
    Jason

  • Convert from .bin/cue to .mpeg or .mov

    Hi,
    Im not sure this question is in the right place, but here it goes. Anyone know how to do this? Basically, i got a movie in bin/cue format and i want to convert it to .mov or mpeg. Any hints would help.
    Thanx!

    when I open the program, it said I needed mpeg2enc to download and install. I noticed the word "intel" in the website address. I don't have a g5 with intel processor, only a G5.When I selected download, it took me to a page that contain tons of words, which probably is computer language. What do I do?
    This what the page look like-
    þíúÎ
    ¨8__PAGEZERO$__TEXT°°__text__TEXT ìôì€__picsymbol_stub__TEXT2à ´"à€$__symbol_stub__TEXT<”,”€E__cstring__TEXT<”>¼,”__const__TEXT{PákP__literal8 __TEXT‡8˜w8__eh_frame__TEXTˆÐ xÐ`__constructor__TEXTܝÜ__destructor__TEXTܝÜ__textcoal_nt__TEXTܝÜ@__liter al4__TEXT¿ô¯ôœ__DATAÀа  __data__DATAÀ¬°__la_symbol_ptr__DATAǬ·¬E__nl_symbol_ptr__DATAÈÀ¨¸ÀŠ__dyld__DAT AËh»h__gcc_except_tab__DATAË„»„__const__DATAÏ ¿ __datacoal_nt__DATAÑ´lÁ´@__bss__ DATAÓ ô__common__DATAå ¦¨8__LINKEDITlÐ /usr/lib/dyl 4>#ª??/usr/lib/libSystem.B.dylibÐ_ڐÜPMÕÀ4Õ¨ÔtM°( ì|:x8!ÿüT!48”!ÿÀ€z8š;cW{:|¤ÚH à|¦¿ÿð”!ÿ BŸè¦||x|ž#x|½+xH¥=?“‰žÌ=?“ÉžÐ=?“©žÔ=?)§”‰ A� }‰¦N€!=?)§‰ A� }‰¦N€!H‘=?‰žà� ,A� }‰¦N€!Hé=?‰žÜ� ,A� }‰¦N€!<8cd8@HY€a@,A‚H8=?)§Œ ~}i[x,A‚X99@ˆ,A‚(| P®,/@¢}
    J9J>| P®,@‚ÿà,A� 8H€=? žØ¦ëx€,A‚„,@‚ÿøƒãxÄóx¥ëx8ÆHµHE|¦“áÿü”!ÿ BŸè¦<8cü8@Hy@}‰¦N€!€h8!`|¦ƒáÿ üN€ =`kËh,‹A†N€ 8 N8€`„<à8`8D8`;8Dà=€� Ëh| ¦=€aŒN€ =`kËl}i¦N€ |¦¿aÿì||x”!ÿ |›#x8`8€(HÝ8(|}x8`-““}H¤ëx}8`-€h8!`»aÿì|¦HX|¦¿ÿð|}x”!ÿ ;À8 `-|œ#xHY9a@,a@A‚T+€ |è@¢,€ |à@¢ € }>Kx), (A¢HÉ€ 9i,@‚ÿ¼H€a@|dx8`-HÉ,A‚$�  A¢}‰¦ÃóxN€!ÃóxHY€h8!`»ÿð|¦N€ |¦“áÿüBŸ”!ÿ°è¦H=?)¤D), A‚  (A,<€c›”Hµ€X<8!P€c›|¦ƒáÿüHt€X8!Pƒáÿü|¦N€ |¦¿¡ÿôBŸ覔!ÿ°<;À8cäHu=?)¤)|H@@€0}=KxÃóxH-ÕÄóx|ex;Þ<8cøH|è@A€ÿÜ8`H
    …|¦¿¡ÿôBŸ覔!ÿ°<;À8c”H=?)£”€ |@A4|xÄóx8`H-Äóx|ex;Þ<8cˆH¥|è@@ÿØ8`H
    |¦¿ÿàBŸ覔!þ@|˜#x|yx<Ÿ8„@HE|{y@¢0<$Ëx8cDH <¤ëxÅóx8cl&ËxH%Hè;@; ;ÁPHÀ<U%>8c¦ëx'Ëx;@ÿÿH$åHœÃóx;½H,A¢ŒˆP,#A¢€W@<8¡ P…<Ÿ9< ‘!<Ãóx88„¼…ãx8Ü8ü99<9\
    H,@¢ÿL…ãx8€¡%8¥8 ÿÿT>(þA¡ÿX8„,@ÿà;ZÃóx8€PeÛxH,@‚ÿPcÛxH•,€A‚<$Ëx8càH$
    8`ÿÿH¼=?8¡P9)Ì<Ÿ}#Kx8„L9)|«+x}#HPq U)ø~A‚9)})¦¡+ €9k±$8„°8cBÿä,A¢X<|¾+x$Ëx8c H#;¾þ ž< ¾8cD Þ þ¡¡>
    ¡  ;ސ8H"É|è@ÿÈ8`€È8!À»ÿà|¦N€ |¦¿ÁÿøBŸ覔!ÿ°<Ÿ8 8„$|~xH
    Y,@� 8HÄ<ŸÃóx8„,8 H
    5,@� 8H <ŸÃóx8„48 H
    |cy@‚ =?i™ì=?È _ =?Ø ™ðHh<ŸÃóx8„<8  Ù,@� 8HD<ŸÃóx8„D8  ‘,@‚4ˆž8~h„F |€!KÿüÝ,@‚8=? ™ìHø<ŸÃóx8„L8  i,@¢Ì<<Ÿ€c ä8„T8c° <<Ÿ€c ä8„t8c°Hé<<Ÿ€c ä8„Œ8c°HÑ<<Ÿ€c ä8„¸8c°H¹<<Ÿ€c ä8„è8c°H¡<<Ÿ€c ä8„8c°H‰ <<Ÿ€c ä8„P8c°Hq<<Ÿ€c ä8„„8c°HY8`Hí<Äóx8cäH!…€X8!P»Áÿø|¦N€ |¦“áÿüBŸ覔!ÿ°<<Ÿ€cžÔ8„8c°H
    ý8`H‘|¦¿ÿðBŸ”!ÿ°è¦=?i—t( Aè=?Uk:9)8|H.|J| ¦N€ (xè� X(À<<<8c'ÐHé=?9)—À€ ,@� 8. =?9)—x€ ,@‚h<?ß`“¹=H¬=?=`)—˜9@ak“¹8., n?¿=??Ÿ‘}—x?ߐ—À=‘I—Ô8 =?‘^—ˆ —È9k—Ì8A‚8<8c'øH9H?Ÿ?¿?ß<8c(H89]—x9`*=‘~—ˆ, —ä=?‘i—è@‚<`“¹
    9|—À€,@‚(*<t„` ).| –})þp|žp| P=?9)—Ä€ ,@‚Œ8¼ H€?ß; ;ž—ˆ<“¼8c(8Hu“¼=?9)—”€ ,ÿÿ@� 8 =9k—À€,@‚ô=?<t„)—x` =).| –})þp|žp| PHÈ<8c(`H<&=`% k—˜=_=?9,n —x9J—ÌA‚98æ=?‘
     —À<8c(€H¹8=?ß9k—”—ˆ+, ÿÿ@� 8=?9)—€€ ,@� 8 =9(—ä€ ,ÿÿ@� 8 =?9)—È€ ,ÿÿ@� 8  =_89J—Ä=?j —è,@� 8¼
    =?9)—|€ ,@‚¸8æ H¬<8c( Hé8==`z(•À?ßak—ˆ, `=?‘i—x@¢€=?€ •Ä,ðA� , @¢h=9k—ð+, @‚8x9 x8 °(X@¡<8c(ÄHE8=?`¸9`. —ø8=?‘i—À=? —ôH°€•À,À@‚Œ=?€ •Ä,àA� ,@@¢t?¿;½—ð},@‚<`ô|x=+ÿÿ<9)H`¸| @@¡<8c)H}=?8à‘i—ø9`=? —À=?‘i—ôH<8c)HH1<8c)Hm=?8 —€9@==?‘K—è=‘I—ì==?‘K—Ì‘I—ÈH<8c)ÔHQ8=?ß9k—”—ˆ+, ÿÿ@� 8=<&h•À`% =?=@ —x,à=?9`æ‘i—ÀaJp=?8‘I—ø=? —ô@¢H=?€ •Ä,àA� ,@@¢0<8c)üH½=?9i—ð€,@‚€<`hHP€•À,À@‚L=?€ •Ä,àA� ,@@¢4<8c*$Hm=?9i—ð€,@‚0<`ôH <8c*LHÍ<8c*”H =?)—ð<`¨9)ˆ| @@¡<8c*ØHá8=?= —萗ì=?= —Ȑ—ÌH”<8c+HÕ=?9)—x€ ,@‚<r`pà =?9)—”€ ,ÿÿ@� 8 =_8æ9J—€=?j?ߐ —À8,—ˆ@� 8
    8=? —èH?ß=ƒž—ˆ,A‚,A‚DH=?9)—È€ ,ÿÿ@�   =?9)—Ì€ ,ÿÿ@¢`  HT=?9)—È€ ,ÿÿ@� 8  =?9)—Ì€ ,ÿÿ@¢$}+Kx8=?)—˜, nA‚89(—ä€ ,ÿÿ@� 8 €X8!P»ÿð|¦N€ ,|¦BŸ}H¦|¦A‚((A,8`M‚ Hl,A‚8H`=*€ ´,pA� ,s@� 8`N€ ,n8 M‚ H0=*€ ´,pA� ,s@� 8`N€ ,n8`M‚ 8`N€ |¦¿ÿÐBŸÛÁÿðÛáÿø覐?_”!ÿ@9z� ;€,@‚0=?) D8 ÿÿ(@¡<;8c"°HH‘+??;¹€,@‚,=?) D9)ÿþ( A¡<8c"üHE8p;¹€,@‚0=?€  D,A� ,@¢<8c#H 8n;z� €›,A‚?ß;Þ D~| A‚ü,A‚ô=?)– € |@@ à;`? C0ƒãxHÉ€›€`=?“¡p8a@l€ËÉT\tËápH¡€D<“¡Pÿÿð(l€8c#$TÈPüð(ÿÿ$Ûá€ü ø€€€¡„H•ƒãx€žHY€`€ž8a@l€“¡ptËápH9€D<“¡Pÿÿð(l€8c#XTÈPüð(ÿÿ$Ûá€ü ø€€€¡„H-€� =? H?¿;½=, @‚=?) @‘=, @¢<8c#ŒHí8=?), @¢99€ˆi|ctKÿý}€ÈÃx8!À|¦ËÁÿðËáÿø»ÿÐN€ |¦ÛÁÿðBŸÛáÿø¿AÿØ”!ÿ@è¦=?;`)ŒÔ, A‚l?Ÿ€Œ|,@¢<8c!THÝ?ß;ÞŒ„€ž8ÿü(@8ÿÿ(A”8<8c!œ? C0H8a`€ž=?ËÉQÔHÍ€`€ž8a@“¡pl€ tËápH€D<“¡Pÿÿð(l€8c!䀞TÈPüð(ÿÿ$Ûá€ü ø€¡€€Á„HHx8a`? C0H];`€`=?“¡p8a@l€ËÉQÔ€žtËápH1€D<“¡Pÿÿð(l€8c"$TÈPüð(ÿÿ$Ûá€ü ø€€€¡„Hm=?)Œˆ, @¢<;{8c"`HMH?Ÿ€œŒ|=k“”?_T‰:€ºŒ€})Z€Éÿü|0@@¡<;{8c" H
    ?¿?ß;½Œ¼;ÞŒÀ€>|H@¡<;{8c"ÐHÝ=?)ŒÈ, A‚T?Ÿ€;œŒÌ|} [Ö})YÖ|H@‚€} [Ö})YÖ|HA‚ <8c"øH€œ<8c#@HÅ=?€ Œh,A€X,@� ,@¢H:Œ€9)ÿþ( @¡<8c#\H‰=?)ŒØ, A¢<8c#ŒHÝ<8c#ÔHÑ€ÈcÛx8!À|¦ËÁÿðËáÿø»AÿØN€ |¦ÛáÿøBŸ¾AÿÀ;@”!ÿpè¦||x|›#x;>Ÿ>>_>ÿ>¿??>ßH(zAø=?Tk:9)d|H.|J| ¦N€ ÜØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØØ@ØØØØØØÌØØØØØØØP¸€Ø ,ì„ØüØàhØX0Ø� ؐØxØØØØØØØØøìH Ø|ØØØØØØ´tðÈ´ØØpØØØ=?;´‰€) €iHúEcè}HÔ=??¿) ;½‰ø€iHú!<TcP*`€9#°}| @@¡ <;Z8c!pHx=?) €iHùå,=?i‰„@ p<;Z8c!ˆHH=??¿) ;½Š€iHù8cÿø(}@¡8<;Z8c!œ H8=? ŠH=?) €iHùm8ÿÿs‰ˆ(@¡ø<;Z8c!´HÐ=?;²‰”) €iHù9,}@¢ÈKÿéHÀ=?;׉˜) €iHù,~@ ¢Kÿèõ=?€)¬€‰| @A „<8„ÿÿ8c!Ô;ZHHl=?) ƒ H\=?) €iHø±(=?i‰œ@¡<<;Z8c!ðH=?) €iHø( u‰Œ@¡<;Z8c Hè=?) €iHøU( =?i‰ä@¡à<;Z8c",H¸=?) €iHø%(=?i‰¤@¡°<;Z8c"LHˆ=?) €iH÷õ(=?i‰¨@¡€<;Z8c"h HX=?) €iH÷Å(y‰x@¡THL=?) €iH÷¥8ÿì=?(Œi‰È@¡,<;Z8c"„H=?) €iH÷q,v‰ÌA¡<;Z8 c"¤HØ8=? ‰èHà?߃¾ €}Hø1,@‚ =ˆ |t,tA‚,bA¢<;Z8c"ÀH„~ +ˆ |t,t@� 8H,b@¢t8=? ŠHd=?) €iHö¹( =?i‰|@¡D<8€8c"à8   ÙH(=_* iˆ|t,pA‚A� ,nH,s@‚ j +ˆ =?|t ‰ Hà<;Z8c#H¸=?) €iHö%=?i‰ÐH´=?) €iHö =?i‰ÔH˜8=? ‰ØHˆ8=? ‰ÜHx=?ËéNà=?) €iHõ¡üø?¿;݉°Ø>A€=?È Nøü@<;Z8c#(HÕÛþ=?9)‰¬€ ,@¢È‰°=É«NàühA¢8 Hô8=? ‰¬Hä=?) €iKÿèIHÐ8=? ‰ðHÀ8=? ‰ìH°=?) €iHôá=?È O=?Ø)‰¸üA€=ÈOü@¡x<;Z8c#LHP=?) €iHô™=?=É©‰¸=?È NàØ+‰Àü
    A€=?È Nðü
    @¡(<;Z8c#pH
    ÁH<8c#”H
    ±;Z<¿ƒãxdÛx8¥!0Hôy,ÿÿ@‚÷è,A� €{Kÿé]€y‰xH1=?ƒÉœ>| àA‚d8ÿÿ| @¢PU :8€|{.Hó½,=?iˆü@ D€<8c#´;ZT:|›.H
    <8c<HóaH;ZH8=? ˆü<<Ÿ<¿<ß<ÿ8c‡È8„‡Ì8¥šÐ8ÆšÈ8çšÌH¬µ?ß;އȀ,@¢<;Z8c#ÌH ©??;9‡Ì€,@¢<;Z8c#øH …,@¢<;Z8c$ H mKÿè}KÿðýZKÿó}Z,A� €{Kÿè%?_<;º‰Ãx€8c$L;’‰”;w‰˜H•€ž<8c$lH…€™<8c$„Hu€}€œHý€œ|ex<8c$œHU€{H¥€›| ex<8c$¸H9ƒ´‰€,A‚,<€b þp`„MÓ<| –8c$Ô|„6p|€ PH H<8c$èHù;Ó‰ˆ€ž,A¢4€‰h1 ÿÿ|iHµ€žü<8c$øØ@€¡DH¹<€cšÈH¹|dx<8c%4H€–‰Ì,A‚(<8c%PH…<Ÿ<€„‰„8c%pHqH<8c%˜ Ha€•‰Œ<8c%´HQHYHåÃx<Ÿ8„%ÈHòÉ,?ß;Þ‰d~@¢<Ãx8c%ÌHíH1HØH\ÁHÛ™Hî=H8ñ€~Hñõ€˜8!8 `|¦ËáÿøºAÿÀN€ |¦¿ÁÿøBŸ”!ÿ°è¦8cHðu|~y@¢<8cXH}WÀ> ,@¢8|~€X8!P|¦»ÁÿøN€ |¥+y9`ÿ@D|lx|¨+x|0|‰#x}Šcx@€ |0P| ¦}jI®}`XøT>9)Bÿð5ÿÿ}Œ2@‚ÿÌ|8L€ |1Ö}8P|`9 | 0@€|ɦ}cI®}`XøT>9)Bÿð5ÿÿ|c2M‚ KÿÿÐ|¦½¡ÿ´BŸ”!ÿpè¦HYÕ=?=É©}09k|X=?È BXü
    LA‚@¢=?È Bˆý*H=?È Bˆý(==?H}\È }8=?,
    Ù«Ø |`A‚@A,
    A‚Hl,
    A‚DH`8=? |h==?|8‘I|lHt=?=‘I|h=?‘K|l‘I|8HX=?8‘I|h==?|8 |lH8€}\=?9)|h,@8 9`=?8 |8=?‘i|l=?=_){œ=J{@=} <ÿ€ç}, ‘|@9JUJá>=‘H|œ=?=_é|<9j| A‚=?){D9)U)á>H=?){D9)U)á<‘+==?9k|°){̃Ê| /‰ÊóxAž Þp=?ƒh|œƒ‰{ >¿=?Wd 6:I|x“Ë=?/8?9é|€==?T2:+||U@ 69)|„’:µ||¦+x¯ Aš|¦p,>ߐÕ|x:Ö|”@¢|pv|˜#xAš|˜p|x@‚|p=?|x9)|¨Až|p‘i|x=?9)|¬Až|p‘i|«+x=?9)|¤AžT« <‘i|Ê3x=9k|´AžTÊ<¥Ö‘K| p})”|§p|ç”|p|”|çÖ=}L| p|”9)=_J}X|IÖ=?W‹:9)}”|ÆÖU<}kJ€«ÿü}R=?}[ñÖ=;É|Ø=?|ý:;k |ˆ;‰|Œ==?©|˜9“«|¼|=?é|¸=Ü<‘}Cx‘K|È8ct;@HU€~=?Tc:;©|ÔKÿûm€}|@@€ì~0‹xtÛx> ?~N“xëx“ãx·ëx:1|„Òóx»ëxƒ8 Kÿû)W\:||é.; w,W©:|X.ÉA� €sH€tKÿúõ;½,~@ÿ́{;Z€Ž}<X.€°€i€Ï€ñKÿû!%Ëx{Ãx€ö}<X.€Õ€iKÿû%Ëx{Ãx€ö}<X.€Õ €iKÿúá€|@A€ÿD€˜8!¹¡ÿ´|¦N€ ,?8A8,A8,A8,A8|xN€ ÛÁÿð|¦BŸÛáÿø½¡ÿ¤”!þðè¦==?kxh=@;š€‰x`aJÉÿ0ÿÿ}Y=?€©xd8=?, wü?ß=?=‘Iwˆ=?žw@©w<‘wLA‚<ß8Æ  <ß8ÆòÌ<8c´H]=?<ÿ)xl=á”, €xp=9kwHwDA� |
    xH9@€á”>w@9wD‘K€|HA� 8 ÿÿ?Ÿ?¿| ?€x =_;x,,=ßh!|i) é}'I‘Axvà‘*väA€(,@8ÿù(A=¿8
    v´H0€x =¿9mv´9 ,A‚€x,,@‚9 ‘+€và=(xx=_‘ˆ,1iÿÿ|I<ÿJx$=kx(=? vè?_‘Zv`=?á€9)vh‘gvd8ÿ@‚8ÿ?ߐ ;Þx~,@¢<8cÐHÿ½~< =9v˜89)ÿú( Ah=?m`€)x<ÿ=_=})^p})”?ß‘'vŒ=?D<C0@È =x=?É¡@JxŒý(kxˆ‘Ivœ=?‘hÙ©vxHÜ€x ,@¢l,'=_9Jvx}i[x@€9 'km)€‘!D<C0@= t„a) <ÿ}+H–É¡@È=x}kþp<ÿý(?ß})žp}+HPÙª‘'vŒHh}`[x=,'9kvx@€8'l€?ߐD=<C0>xX@<ÿÈ=x})p })”É¡@, p9GvŒý(Ù«@9 p‘*gvŒ<C0@=?Ukp"€‰x=?‘aDÈ =°,É¡@=?ý(Ù©vA¢$€x h1@ÿÿ|jHªá=?Ø)whH<ÿ=?È=pØ wh=?<C0)x=@=)耾xX€x <ÿkx€T¥h$x„m)€‘!D1Kÿÿ|ŠY=?=)x|,É¡@=_È=x=ÿ1hÿÿ|A€çx¤1 ÿÿ|ÈIý(=?Jx\©w8==?‹v€ v„==?Ëvˆéx8=?=Ù©w`=?‘Kw\9Ov  v¼@¢< 9)ÿú( @8=
    €x¨=?9)v¬9,@‚9<ÿkx¨Gx0‘ }`Y,
    p=!k‘„8=? v°‘hv¸A‚$A,
    n8 ,
    s8A‚ 8H8=? vÀ€x0,pA‚A,nA‚8H\,s@¢T8=?<Ÿ vÄ=8„ø=?v̐ vÈHP8=?<Ÿ vÄ=8„=?vȐ vÌH(8=? vÄ==?v̐ vÈ<Ÿ8„<8cHû< , A€”, @8 ÿù(A€=?)x˜, A‚0<ÿ=GvX=?€v\=áŒ‘‘IvАvÔHl€v`=?9)vÐ9`,A‚9`Ð=_€
    v\‘A‘i=?=‘aŒ vÔH,<ÿ=€vX=?hv\áŒ‘ vÐ=?‘ivÔ€
    v´=?)x =_,=‘+vØ8‘A˜9*vÜ‘a| @‚T?ß;Þx”€~,ÿÿA‚ Hý|dx<8c<Hùဠ=?€ ‰X€á˜ 8|vÜH €x =9kvì,}j[x}h[xA‚€x,9 ,@‚9 ‘*<Ÿ‘+<‘(8c`€„vìHùe€x ==?,=h9)vø0àÿÿ}G9kw9w‘K‘I}Cx‘I}Cx‘I‘K‘KA‚=?9`)xœ, A‚9`!”?ß;Þx‘g;iwDƒ>;‘h|IÖ‘f,@¡$8€<|„KÖ8c€žHøýƒ>;€áU#(4Œ=?€v\;‰whvX|Ö [–HâA,|@¢<8c|HùE€;À|@€œ>qÛxrÛxpÛx”ãxšãx•ãx:svà;`:À:à,@‚P€qƒ”|yÖHß¹|ƒ´€ }Kÿöِ}€qƒ”|xÖHß• ƒ´€ Kÿöµ}H´ƒš~ã»xHßq›â|ƒº};ê€iKÿö‰|{é.~óxƒºHßI»ê ƒš›â€ Kÿöa|€rƒš|~P|yÖ›âHߐ|ƒº»ê€}Kÿö1}€rƒš|~P|xÖ›âHÞå|ƒº»ê€}Kÿö}€,A‚Du}{Z€� 5};J€  u|X.}{Z5};J€  €;Þ;{ ~ÖÂ|~÷ÊA€þ˜H
    •?€C0€á€?ß8aP;~vp;§vd€H÷¹€P“@<ÿl€ËÇ=x€8a`DËá@H÷‘€d“pÿÿð(l€€áˆt'xxÈp, üð(ÿÿ$ÛûA¢D==?È=¸<É©=À8cœü2=?üh$Ø ü € €¡¤Ø w0Hö  =?Ûéw0€và,@¢HHéHX<8cÐH$<8 H<8cH <8c„Hõ¹8v H€v ,A‚˜€áŒgvX(At(v\( @Ad89)Tá>U)á>|IÖ(ŒAHt=?<C0È =°p=?É¡pÉžvpý(È =¨ý2ü
    A=_È
    =È� @<8cÀHõ8v €v ,A‚p€á”;À€wD|@€\=?|
    xiwWÉ(4| X.})Z(A¡þè€ (A¡þè,A‚€ (A¡þà€ (A¡þà;Þ|PA€ÿ¸€và,A‚8;Ív´€,@¢<8cðHôµ8€á„;Çv¸€,A‚<8c(HôE8€á|;ÇvØ€,A¢<8clHô8 ?Ÿ;À;œvø;`WÝ:|à.,A¢<Äóx8c”Hóå}á.;Þ,@ÿÔ?Ÿ;À;œw;`WÝ:|à.,A¢<Äóx8c¸Hó¥}á.;Þ,@ ÿÔ?Ÿ;À;œw;`WÝ:|à.,A¢<Äóx8càHóe}á.;Þ,@ÿÔƒÎvà,@‚$;¯v €,A¢<8cHó-“Ý;Ív´€,A‚€áx €vä,A‚D(v\9)q*A¢0<8c8Hó1<8ctHó%9 €áx8‘>vä€
    v´,A‚,x;Èvä€,A¢<8cœHò8€
    v´,A‚,€á˜;ÇvÜ€,A¢<8cÐHòi8€á”;À9'wD€ |@€@?}:Kx;{w;€[WÝ(4}=P.}}R€‰H08‰ÿÿ| @@¡,<8cüHò {}=X.}}Z‰H09)ÿÿ‘+[}}R+� ‰H08‰ÿÿ| @@¡(<8c,HñŁ{}}Z+‰H09)ÿÿ‘ ,A‚Œ[}}R+€‰H08‰ÿÿ| @@¡,<8c\Hñy{}}Z+‰H09)ÿÿ‘+[}}R+€‰H08‰ÿÿ| @@¡(<8cŒHñ5{}}Z+‰H09)ÿÿ‘+€;Þ|A€þØ€8!ËÁÿð¹¡ÿ¤|¦ËáÿøN€ |¦|‰p})”BŸ}H¦|¦U 8| P|H@€} Kxl€=`C0ÿä=*‘aÿàl`€Éi-l=*É¡ÿàɉh4=*ýX(ÿäÈÿàýŒrÉ©-ÄüX(ýŒrýŒ:ý `Ù¡ÿè€aÿìN€ |¦¾ÁÿØBŸè¦;À?¿?Ÿ”!ÿ€9|f“Ë9=f“É8`€KÿéY=?if8`€KÿéI=?if”8`€Kÿé9=?if˜8`€Kÿé)= ?=€‰g¬kfœ(A,=?T‹:9)”|H.|J| ¦N€ ,T”¼ä?ß???;Þ ,H 8?ߐf?f??;Þ \;!x;9"xHÈ=??ßÉ©g°?=?8È ,à;Þ Œ=?fü
    ƒ)gT;!øA‚fHˆ?ß???8f;Þ ¸f;"ø;9#xH`?ß???8f;Þ Øf;#ø;9$xH8?ß???8f;Þ ôf;xÔ;9yTH<8c
    (Hï‰,A� ÃóxHî¡?_?;À;Zf;{f”WÜ<Äóx||Â.Kÿý‘8ÿÿ|}x(þ@¡<8c
    PHï9:Äóx¼K.||Ê.Kÿýa8ÿÿ|}x(þ@¡<8c
    pHï ;ށ;,?¼K.@ÿ”=?8@Éi- | ¦=?<ŸÉ‰-P<¿<ß<ÿ;À8„f˜8¥f=C08Æfœ8çf”%WË<D;Þ|J.‘@DÈ@üX(� $ý Ù¡H€L|S.'F|J.‘@DÈ@üX(� $ý Ù¡H€L|S.Bÿ˜=?=‚Én˜8À=?‚ën”ƒ‰f==?ƒnƒ)nŒ==?ƒKnˆÉ)-H==?ƒkn„€In€==?‹n|ƒ© f”<`C0=?<€ÉI- =?Éi-8@;À| ¦TÅ02WÇ<}eò|â.Uj<Uk:;Þ|1Ö|
    ³.T>}Ö}'ê.Da@È@üP(ü|Å.ý€ýŒr})1Ö}
    Û.ý‹`$U >}*».D|Ö|
    c.É¡@ýP(ý€`ý h}‹Õ.üh}«Í.ürü$ü|.Bÿh8Æ,p@ÿL€ˆ8!€ºÁÿØ|¦N€ |¦¿ÿàBŸ覔!ÿ ?¿ƒÝj́>9)ÿÿ( ?þ@¡<8c\HìÍ?Ÿ<jÈ€ ,A‚€(ÿ@¡<8cˆH졃ÝjÌ€p ÿ@¢<8c¸Hì…?;jÄ€ ,A‚€p A¢<8cèHìY?¿ƒÝjÀ>9)ÿÿ( ?þ@¡<8cHì5<jÈ€ ,A‚€(ÿ@¡<8cDHì
    ƒÝjÀ€p ÿ@¢<8ctHëñ;jÄ€ ,@¢€p A¢<8c¤HëÉ=?)j¼€ ,A‚HƒÝjÀ€p A¢<8cÌH뙁;jÄ€ ,@¢€p A¢<8cüHëq<jÈ€ ,A‚(=?)j¸i9kÿÿ(
    @¡4<8c<H$=?)j¸i9kÿÿ(@¡<8cpHë=?)j´i9kÿÿ(@¡<8c Hêõ=?ƒÉj°=?È (¨É¾ü
    L@‚@¢<8cÈHêÉɾ=?È ) ü
    @¡<8cèHꩁ<jÈ€ ,A‚$ɾ=?È )(ü
    @¡<8c Hêy=?<ƒÉj¬`ÿþ>9)ÿÿ| @@¡<8c HHêM<jÈ€ ,A‚€(ÿ@¡<8c |Hê%;jāi9kÿÿ(@¡<8c ¬Hê=?)j¨€ (@¡<8c ÔHéå=?)j¤)8 ÿÿ(A� , @¢<8c øHé¹=?)j )8 ÿÿ(A� , @¢<8c
    (Hé=?)jœ)8 ÿÿ(A� , @¢<8c
    dHéa=?)j˜€ (?ÿ@¡<8c
    ˜HéA=?)j”€ (?ÿ@¡<8c
    ÌHé!=?)j€ (@¡<8cHé?;€8jŒ€ |@€ø=?ƒIjˆ}9Kx=?ƒijȁzWž(4}>X.9)ÿÿ( @¡<8c,H豁z}>Zi9kÿÿ(@¡<8cPH荀,A‚ :|H.(@¡<8ctHèe€,A‚$:}>J€ (@¡<8c”Hè9ƒ¹jˆ]}>R€ ,@¢<8c´Hè]}>R€,@¢<8c´Hçõ,A‚è]}>Ri9kÿÿ(@¡<8cÔHçɁ]}>Ri9kÿÿ(@¡<8cÔH祀,A‚ $=}>J€ (@¡<8côHçy€,A‚$:}>J€ (@¡<8côHçMƒ¹jˆ}}>Z€ ,@¢<8c´Hç)}}>Z€ ,@¢<8c´Hç 8jŒ;œ€ |A€þ$€h8!`»ÿà|¦N€ |¦¿AÿèBŸ覔!ÿ?ƒÛd\€(@¡<8cìHæ©?_ƒºdX€(@¡<8cH扁>( @¡<8c0HåáH˜8 ÿÿ(@¡<8clHæU>8 ÿþ(A¡<8c€Hæ9=8 ÿü(A� q A‚<8c¸HæƒÛd\=zdX9]È€þ=_+9J]ÜTë:}kB9)ÿüU)ø~9kÿü|H®),‰R@¢<8cÈHåÁ€þ,@¢(?߁>dd € ,A‚<8cìHå•H?߁;d\€ ,A‚$=?)dœ€ ,A‚<8cHå];d\€ ,@¢$=?)dœ€ ,@¢<8cLHå-;d\€ ,A‚$=?)dh€ ,@¢<8c„Häý=?)dŒ€ (@ :dX€ (@¡<8c¸Hä́>dd; € |@€¸}:Kx=?ƒid`[W¾(4€}>P.| @@¡<8cðH䉁[}>R|€ |X@@¡<8c4Häe,A‚L[|}>R€ |X@@¡<8cxHä9[}>R|€ |X@@¡<8cÀHä€;½|A€ÿ\=?)dT€ ,@‚¬=?|ƒ©d¤€|X@@¡<8c HãÍ=?� ƒÉd˜>| @@¡<8c DH㩁>}<C0@=_}kIÖÉj"À<H‘!L=?‘aD)dPÉ¡@ɉýX(ÈHüX(ý2ü
    @¡<8c €HãI<<C0H=‘!L=?È "À=?É¡H)dˆý(È#ɉý2� h@¡<8c ¼Hâý=?|)d„€ |X@@¡<8c ôHâÙ€x8!p»Aÿè|¦N€ |¦eBŸ9|H¦|¦=")`L€ ="‘ˆ¬‘Œ)`x€é,A‚,=")`ìi‘È }`Y‘´9k‘e°H´=")`è), A‚„e9 ‘%°}`p|”T:}`XP,A‚4A,A‚Hl,A‚$,A‚8HX8ÈH<åÈ 8È=")`ì€ hH$åÈH8‘%Ȑ°=")`ì€ ´€å”,A‚TA,A‚H,A‚„H8="¨œ ¤)`Di€xi� HD=b9@k`D+€ œ+€ ‘E¨ ‘E¤+€ x+€|HŒ=bTŠ(4k`D+|
    H.œ+}*J€  +}*J€ ¤+}*J€ ¨+}*J€ x+}*J€|+}*J€ €+}JJ€
    „=bTç:k`ä=`à=B}gZJ`܁+ÿü}B}GR0Éÿÿ|I="Ì)`Ø€ÿü|çJ1`ÿÿ}+‘%¸€ÿüÀ*ÿü‘%¼€ÿüÄN € |¦9`BŸ9 }¦‘#ä|¦‘cˆ€°,@¢8°H‘c°€”,L¢ Œ=hk]Œ8”9@+€ œ+€ ‘C¨ ‘C¤+€ x+€|N€ ¾ÿÐ|¦|txBŸ”!ÿ|c*|Ø3x|gP|¶+xè¦|c"|ù;x|•#xHA:à|À|{xÃx@€8|ª;@¶~Þ³x£ëxH|ØP ||x| þp} x| P,@|¸@� |xÚóxÞÊ›ãx|À½Ê@ÿ¼,@‚ظÊ}8²|HÃx@€P|ª};KxÝÃóxH€¥||P|iþp} x| P,@|¸@� |xºëx½ÊÞÊ|ØA€ÿÄšÀ@l|²|@€`VÀ<|@ <¤ëx8c¨~Ú³xHÝUH@^pÞ”|ËÖ|ÉÖ|ðQA� |ÈPÞ|ÐP|°@� ~Ú³x–À@Ãx=?)]x€ |P|@|x<DÓx8cìHÜé€x8!pCÓx|¦ºÿÐN€ |¦¿aÿìBŸ”!ÿ`|ž#xè¦|}x8a@|»+xHÉy8a@8pHÉI!p<`
    ?| @A¡<€8a@`„
    @HÉ,;@@H£ëx„ãxeÛx8ÀHȽ,A¢ Hȍ€cHÈa|dx<8c@HÝ 7Þÿÿ;½@‚ÿÀ€¨8! »aÿì|¦N€ |¦¿ÿèBŸè¦Ûáÿø8=?”!ÿ|~x0) € ,A‚@c<C0 @})Z=m)€É«‘!D=?È É@ýŒ(ÿìrH0 <C0c@})Zm)€‘!D=?È É¡@ÿí(=?=)ZôȈɩü
    @¡@H0=?=)ZX||x|#xkZðÈ)Èü?$ü!2Hµ|„è|cáH8=?=)ZXkZÉ©=?)Zðý¿h$ÈÈ)ü!*ü-rH u€8><|KyA‚|@A€4|@� | @A€$€~,A‚h=?)Zì€ ,A‚T<8c¨HÚ…8>8`€¾8€Þ< €þ@D}kJ8‘ }F@}%90‘>8‘^<,9`A‚=?)Zè€ ,A‚9`� ,‘~4|`~A‚8€?ŸH?Ÿ<Zli8‹ÿÿ=?=)ZäkZÜ€©=?)Zà€ë€ÉKÿû-<Zl~i4ÿÿ@¨€,@‚(8ÿÿ} [Ö})YÖ| P|XP} [Ö})YÖ|iPH }#[Ö})YÖ})P})XP| [Ö|YÖ|`HP€ž8=`C0l€‘aHl‰€‘!D=?‘a@=LÉ©È@ɁHüh(~ýŒh(É«¸ü`$üh(Ø(H 89 9@‘>(‘^,|dx|Zl+9)ÿÿ‘>+, @‚‘>8 HH€4,A‚$8kUi<}$J9)ÿþ})[ÖH‘>€}$9)ÿÿ})Ö8©ÿÿ}% P¾ 8Éÿÿ}e2Þ$9k| A‚<8cÌHÙ-€x8!pËáÿø»ÿè|¦N€ c|¦BŸ,}¦|¦@‚€4,A� ‘dH#}+J9)ÿÿ‘$=(c)W$D€ }+P|
    HA€8 ÿÿ|
    x#€| P|R8#, A‚8”€,@‚08ä#4‘$è€0ô#$‘$ì€ ðN€ 8ôäèN€ #9@89)ÿÿ‘$c‘Dô9kÿÿ”‘d‘DäN€ c|¦BŸ€9k#C|“áÿü9)9J”!ÿ‘c覑#‘CA€¨#8, A‚|Éc(üXØ@€D|
    @dC8 =`C0l€TmI€‘!L=?‘aP‘aHɉ¤=?É¡PÈHý`()U€ü`(iüh$9kÿÿ‘cü*Ø(H =?C)U€€ HC€|P@¢Kÿú€x8!pƒáÿü|¦N€ |¦¾¡ÿÔBŸ覔!þà>ß?¿ƒ–TØ|yxƒ½TÜ;€€}|cÖTc80KÿÎýyЀ€}|cÖTc80KÿÎåƒYАyÔ>¿5TÔ||x€ |@€X>ÿ7TÐ;`€ |@€,;¹Ø;Á@€}8=9~@|H“!@“aD“H“AL“P@A‚$,A¢ÄóxHC)€}8Hd€™Ü£ëxÅóxH8=HP|}x8~ @€ž@€|A‚8„D|@‚ÿø€ƒ<ðð€c`ðñ|ƒ P|„p|„ÖHD‰£ëxHt½8~@>@€| A‚9)D| @‚ÿø€ƒ<ðð€c`ðñ;{|ƒ P|„p|„ÖHD=vT؁7TЀIT80|PœZA€þä5TÔ;€ |A€þ´8 ;`Hƒe;@yp8 HƒUyl8 HƒI=?=yt‚éTȃTÄ,@� ƒ×HƒØƒ™pÃóxKÿÍW}:|}á.;{Ãóx9l]I.ƒ™tKÿÌõ,|}á.@ÿ¸8y8€Hœ€(8! |¦º¡ÿÔN€ |¦¿aÿì||x”!ÿ |›#x|~x;£¤Ãóx;ÞTKÿýa|è@ÿð8<€*ª| ¦8 `„ª«†ãx9e€æl}K –}iþpp}e[x8ÆT| PP|XP T})âil€ pé\ h‘ d‘i`Bÿ¸~Ûx;»¤Ãóx;ÞTKÿüá|è@ÿð€h8!`»aÿì|¦N€ |¦¿Áÿø|~x”!ÿ°€”,A‚,H~ÃóxH|!ÃóxHší€X8!P|¦»ÁÿøHšÜ€X8!P»Áÿø|¦N€ |¦¿Áÿø|~x”!ÿ €Øcܐ@|x|X@@€4Hœ©€a@Hf¥€a@Hv¹!@~Ü9)| X@‘!@}#KxA€ÿÔ€h8!`»Áÿø|¦N€ |¦¿ÿðBŸ”!ÿ è¦|~x?Ÿ€”<<P´8cö쀞|©®€Þ€þ|¥tHÑy€°,|xA‚,,@¢<Ÿ8„÷ <Ÿ8„÷<8c� HщÃóxH'=ÃóxKÿÿÃóx?¿€JLHUÃóxKÿþ‘=?)P”€ ,A¢dÃóxKÿò€¾°,@¢<Ÿ8„÷ <Ÿ8„÷<8c� HÑÃóxH'MÃóxHcñÃóxHwùÃóx€JLHáÃóxKÿþ>ø|P´€”, ž}+®€Þ€þ€~€ž}%tA‚=_9J÷ =_9J÷ Á@áD|hx|‰#x€h<È!@}„cx‘@‘!D|¦8c÷$ÈA@8!`»ÿðHÐh|¦¾¡ÿÔBŸ覔!ÿp<8cõ´HÏý?Ÿ=?ƒI O?¿;œH¬>¿???>ÿ>ß;½YÔ˜ãx<8€8cH°H™Ý<8cHüH™mƒÝ<8€8cIHH™½€Þ€”<€þ8cõÌ|º®€ž|¥tH ÏÁ€°,|xA‚$,@� 8•õdH8™õh<8cõlHÏ‘ÃóxH%E€~H˜ÃóxKÿý€ H˜ Ãóx€œHQÃóxKÿü;Nô€ ,A‚\ÃóxKÿð€¾°,@� 8•õdH8™õh<8cõlHÏ!ÃóxH%UÃóxHaùÃóxHvÃóx€˜HéÃóxKÿü%€ø€ž,A� 8·õ|H8¶õ€~ž<È8cõà€Þ€þ}j[x‘aP‘Tü€>ÈaPÁPáTØ<È!P‘P‘!T‘8ÈAPHÎ}8~8€H—aKÿþ\ |¦¿¡ÿôBŸ覔!ÿ°|}x<8cF´H—¹8€=?<“©WØ8cGH˜€X<8!P|¦8cGL»¡ÿôH—„|¦Ûáÿø¾!ÿ¼”!í BŸ è¦;8a@:àH| :Áà9`8@}i¦=? FH9!¸8   9)TBÿð9`;a ð}i¦89!
    Ȑ   9)TBÿðcÛx~ijxKÿùå>¿ƒÕL¬€,@¡<¿8að€¥G08€Kÿð‰; yÛx;A”8a@8€H|=?<€)L¨<“¡8có¤i“ ¡”}+–“¡˜“¡¤“¡œ“¡ }KÖ‘!БAÔ}$Kx}ESx‘!È‘AÌHÌ¡=?:ƒ‰L¤~ƒ£x“¼KÿðÅ=?|)Lì€ |@€\>`*ªÒóx‘ãxbsª«}<Kx;Á¤€˜,@‚D9X99}
    ˜–}Kþp~ƒ£x@PPPxT;Z‘9$Ëx“� :ËxKÿô!H`9w€¹\}K˜–}iþpd;¹€ù`~ƒ£x€Ùh~éPP~àXP7T}6J©\}$Kx‘ d}:Kxé`Éh“©“� Kÿô¥88€|x|xH”Õ€€a €šl|`Hn%,A¢€<€ 8có¸|€"H̉€aEÓx€˜Kÿé¹€,@CÓxKÿý% CÓxKÿù}~ƒ£xKÿôU1€9)| ‘1A€þā5L¬€ ,@� 8zH“áHÑ=?)M€ ,A‚@= C0€œ‘!=!É� |J=?l€È
    „ÉýŒ(ÿìrH0= C0€œ‘!!|J=?l€È
    „É¡ÿí(=?=)LèÈ
    |É©ü
    @¡@H =?=)LL||x|#xkLäÈ)Èü?$ü!2H}½ œH@=?=)LLkL„É©=?)Läý¿h$ÈÈ)ü!*ü-rH|Ù||x|#xW‰èW èþ<}%xW„èþ8cóäHÊHX|~x;è|à A‚Ä;œþ¬8 ;¼Ø€|Ø€H:QHHÌ€<8ã€}`Ž9|ƒ P|„&p|„ÖH:Kÿÿ¸;è|àA‚ä;œþ¬8 ;¼Ø€|Ø€H:H0=<8〝`Ž9|~x}#Kx|‰ P|„&p|„ÖH9ÁH,€<8ã€}`Ž9|ƒ P|„&p|„ÖH9Kÿÿ|~x; Ø|àA‚¸;œþ¬8 ;¼Ø€|Ø€H9…H(€}<8〝`Ž9|ƒ P|„&p|„ÖH9MHv™€<8ã€}`Ž9|ƒ P|„&p|„ÖH9)Kÿÿ˜; Ø|àA‚t;œþ¬8 ;¼Ø€|Ø€H9H4=<8〝`Ž9|~x}#Kx|‰ P|„&p|„ÖH8ÕÃóxHhy€<8ã€}`Ž9|ƒ P|„&p|„ÖH8KÿÿŒ€h8!`Ëáÿøº!ÿ¼|¦N€ ¿!ÿä|¦|½+y”!ÿ ||x|ž#xA‚ƒC¤ƒ#¨ ƒCœƒ# €°,@¢è€,@� W½8Hø,@¢ŒW»:8€{òW½8€{(â½òH €|,€DÓx|cPH€|0� $Ëx|cp|p|cPHå€{08€HÍ€|<€DÓx|cPHÅ€|@€$Ëx|cp|pHW½8DÓxâ½ò€€|,|cPH€~8H€|0� $Ëx|cp|pH4€,@¢PW©:8€})òW½8€i(H=DÓxâ½ò€€|,|cPH-€|0� $Ëx|cPHHì,@¢ W»:8€{òW½8€{(â½òHá€|,€DÓx|cPHÙ€|0� $Ëx|cPHÅ€{08€H€|<€DÓx|cPH¥€|@€$Ëx|cPH‘€, ‘<0€<=H\W½8DÓxâ½ò€€|,|cPHQ€~8Hq€|0� $Ëx|cPH5€~<HU€,< ‘<0‘<@€h8!`»!ÿä|¦N€ |¦¿ÿðBŸ覔!ÿ°=?;Àƒ‰Dt|}x<|H@€|€$}>HP9)ÿÿ|N0p A‚T€Lp A‚4,@WÉþ8©H8 €WÄ80€}|€"HáH€WÄ80€}|€"H©<;Þ|HA€ÿŒ€X8!P»ÿð|¦N€ ,8(@‚€$,A‚0#€ ”,L¢ €$,L‚ €L`LN€ c€”L,@¢P€Lp@‚D9+ 89`}i¦ 9)Bÿø#8À|ɦ89), 9)BÿøHŒ€”,L¢ €°,@¢€€P,@¢t€LCL|Rxp@‚`q@A‚$€,#T|H@¢H€0#X|H@¢8qFA‚$€4#\|H@¢ €8#`|H@¢8(N€ K°,
    M‚ €ãP,L¢ €LL|BxpL‚ qA‚<€,#T|HL¢ €0#X|HL¢ €tiI É}&I|HL¢ q A‚<€4#\|HL¢ €8#`|HL¢ €xiI!i}+I|HL¢ ã(N€ |¦¿¡ÿôBŸ”!ÿ°|~xè¦H!8€ 8`H€~8€
    H
    €~”8€H€~˜8€Hõ>”8 ÿþ(A¡<8`8€HÙ8`?¿=A”€ ,A‚€~œ8€Hµ>”H?¿, @¢08`8€H•8`=A”€ ,A‚€~¤8€Hu8`8€Hi=A”€ ,@¢€XÃóx8!P|¦»¡ÿôH€X8!P»¡ÿô|¦N€ |¦¿Áÿø|~x”!ÿ°H8€ 8`µH 8`8€Hý€~œ8€Hñ€~ 8€Hå€~¤8€HÙ€~¨8€HÍ€~¬8€HÁ€~°8€Hµ€°8`,@¢€~´8€H™€~¸8€H8`8€H€~À8 €Hu€~¼8€Hi€~Ä8€H]€~È8€HQ€~Ì8€HE€~Ì8€H9€X8!P8€|¦8`»ÁÿøH|¦¿¡ÿôBŸ”!ÿ°è¦|ž#x|}xHõ= ?)?l€ ,@‚=?)?d€ (
    ðA8~8€ HWÃ~8€ 8cHµÃ>p8€H©€À,A‚€P=?)?ì|i® €P|p8€Hy€X8!P8€|¦8`»¡ÿôH\|¦¿¡ÿôBŸ”!ÿ°è¦|~x|#x€ô,A¢ H
    u£ëx=8€‰}‰¦N€!€ä,A¢ =£ëx€žð‰€¾ì}‰¦N€!=£ëxÄóx‰}‰¦N€!£ëx=Äóx‰}‰¦N€!€ô,@‚0€,A‚$~ä,A‚ =?)?(€ ,A� Hñ~ä,A¢€~€žèH]€XÃóx8!P¤ëx|¦»¡ÿôH|¦½¡ÿ´BŸ”!ÿ`è¦|—#x||xKÿûé:€=?)>€ ,A‚ €”,@¢<8€€c>H‰7~ã»x„ãx:@‰; }‰¦N€!|P=¿- € |@€=?:¼ ‘!@:<,:`:(ƒãx~D“xKÿý~©«x8|PpTð¾A‚9k}i¦’i9)Bÿø9`8}i¦~)‹x 9)Bÿø!@;`;@I>€
    |@€d¹=?=É>ë=˜}VSx’œL~ã»x€Ø7ÀꁉÄóxÔóx}‰¦N€!~ ÃóxHg}€$,A‚ €P> |HA‚€L`L,8€A‚69)ÿÿ|H@¢8€ÃóxKÿøi€(,A� ;ZHœCÓx;@H¡€|”€žLHy€LpA‚€¸,@¢€~P8€HI€°,@¢(€$,A‚€¸,@¢€~8€H>Lq A‚8€À,A‚€ |n® € |p8€Hå€ P>Lq A¢ƒãx8žL8 KÿôA>Lq A¢ƒãx8žL8 Kÿô%>Lq A¢@=?€~$ƒ =ȁ89)ÿú|cN0Tc¾Hå€,A‚€˜€~$8„ÿúH]ÃóxKÿöe>Li pA‚$9`8}i¦~©«x 9)Bÿø>Lq @‚€”,@¢(q+@‚ 9`8}i¦~)‹x 9)Bÿø€;{;½;9|A€ý¼- :R€ |A€ý 7~ã»x„ãx� }‰¦N€!€¨8! |¦¹¡ÿ´N€ |¦¿aÿìBŸ”!ÿè¦Hu8`³8€ Hm8� =?)9è€iHY8� =?)9Ü€iHE8€=?)9Ô€iH18€=?)9ЀiH?;9ä€ ,A‚D=?):0É©=?È ÷Äü
    @‚=?):„€ ,A‚<`8€`cÿÿH0=?)9ÌÈ =?È)ø\ü $H§a8€üØ@€aDH™8€8`H8€
    =?)9È€iHy8€=?):€€iHe8€?¿ƒ½:|€}HQ€,A‚<=?ƒ©:x=?ƒ‰:t;Ý?‰=8€|;½U)
    ü|iZ.H|ð@ÿà?¿8€ƒ½:p€}H
    ù€,A‚<=?ƒ©:x=?ƒ‰:l;Ý?‰=8€|;½U)
    ü|iZ.H
    ½|ð@ÿà;9ä€ ,@� HH]€x8!p»aÿì|¦N€ |¦“áÿüBŸ”!ÿ è¦Hi8`µ8€ H
    a8`8€H
    U8€=?=)7˜k7”€i€Tc 6|cxH
    -8€=?)8`€iH
    8€=?)7Ø€iH
    8€=?)7à€iTc£> í8€=?)7Ô€iTc£> Õ=?)7ÄÈ =?È)öTü $H¥m8� üØ@€aD|c–p ¡8`8€ •8€=?)7À€iTc²¾ }8`8€ q8`8€ e8`8€ Y€h8!`|¦ƒáÿüN€ |¦“áÿüBŸ”!ÿ°è¦H
    %8`µ8€  8`8€ 8€=?)6t€iHý8`8€Hñ8€=?)6p€iHÝ8€=?)6l€iHÉ8€=?)6h€iHµ8€=?)6d€iH¡8`8€H•€X=?8!P )6`|¦ƒáÿü8€€iHp|¦¿ÿð|#x”!ÿ°||x Q8€ ;À8`²HE|è@€||ð®8€;ÞH-|èA€ÿì€X8!P»ÿð|¦N€ |¦¿ÿð|}x”!ÿ°|œ#xHñ8`¸8€ H
    é£ëxH58€H
    Ù8€ƒãxH
    Í€X8!P8€|¦8`»ÿðH
    °|¦=`ˆˆBŸakˆ‰|ˆ¦=*ª=$|¦)4´aª«É‰=$È ó„ýŒ*ý `Ù¡ÿà!ÿä|KÖ|IÖ| KÖ|àP}%X–|ªþp})*}).p|
    HP<|(P} (PT02| X–}*þp|J|.p|ªP}%X–|ªþp})*}).p|
    HP<|(P} (PT
    h$}iX–} þp}kJ}k.p| XP}@–|©þp}p| @P|(PT˜|cSx|c3x|c;x`cN€ |¦”!ÿ°H
    ©€X8€ 8`·|¦8!PH ”|¦¿aÿìT©:”!ÿ }),BŸ¨|{xi 覐  |œ#x|kP@� HUHH€Ä8`,A‚=?)4x =?)4h;©?;Ɉ;ÞT
    ü|œ®,A¢€»¼HÁ8`H8c|è@ÿЀ¼,A‚8`8€ 8`8€€h8!`»aÿì|¦H´|¦¿!ÿäBŸ覔!ÿ =?|{xƒÉ3œ|œ#x=?8`ƒ©3¬; ;^?€Ä,A� ˆHˆT<|œ¨„,A‚(,A‚HÑ;  8 Hõ8`H8c;Þ;½|Ð@ÿ €h8`8!`8€|¦»!ÿäHø|¦¿ÿð;¤ÿÿ8BŸ|è0”!ÿ°Ui 6Ëÿð8éÿÿè¦|8|exU`(4@� | PH|0@� |£|0A� |8@¡$<<Ÿ€c1ä8„Ù°8c°HÍ8`H›a| þp,| *x} HP})Z9)ÿÿ}>î0@ ÞÐ8ÿÿÃóx}<8H¹,A‚(,A¢ €Xƒãx8!P¤ëx|¦»ÿðH€X8!P»ÿð|¦N€ |¦|dxBŸ}H¦|¦<j8céHd|¦|dxBŸ}H¦|¦<j8cèæH|¦|dxBŸ}H¦|¦<j8cèöH$|¦|dxBŸ}H¦|¦<j8cè¦HÔ| ¦¿¡ÿôBŸ覔!ÿ°=?|€þp)1||"x}`XP|#x€ |@¡<8cØlH²…H›,;ÀA‚}kq;Þ@‚ÿøWÀ:} |c.ˆ‰|„tH,A‚<,«ëx@ 9 })ð0}=J9iÿÿ€XÄóx8!P}c[x|¦»¡ÿôHÄ€X8!P»¡ÿô|¦N€ |€þp9`|"x|€ P,A‚|„q9k@‚ÿøUi:})ˆi|ct|cZN€ |cy@‚(,A� ,ÿÿ@¢|ƒ ø8€Tcþ cHH8 H|¦(?BŸ|€þp¿¡ÿô|"x覔!ÿ°|~x|#x}`XP9@=A$,A‚(08€ |@8H=(08€ |ø|A¢<Äóx¥ëx8c×PH± H™¡,8€A¡<,(A4,A‚(=?9)énH(=?9)ç¢|Z9)ÿþH@,AH,A@,A‚=?9)êH=?9)èB|Z9)ÿêT<}@Jˆ
    |t,A‚ˆjHW£þ8€Hh8€8`H8€ÃóxHõ8� =?£ëx)/€ ,A‚4,@¡8`8€HÅ,ÿ@ 8`€8€H±£ëx8€€X8!P»¡ÿô|¦H”|¦,BŸ}H¦|¦|€þp|"x|€ PA¡<,(A4,A‚(=*9)çÆH(=*9)åú|"9)ÿþH@,AP,AH,A‚=*9)èfH=*9)æš|"9)ÿêT<|`J‰#})t8iN€ 8`N€ ,!|¦BŸ¿Áÿø|~x”!ÿ°è¦@¡8`8€H;Þÿß,!Aÿì8ÿÿ( @¡$<<Ÿ<ß8cÕ,8„ÕL8 ò8ÆÕXHb}=?WË<€X9)ã>}kJ8!Pˆ‹ÿÿ|¦ˆkÿþ»Áÿø|„tHD,!|¦BŸ9@}¦|¦@8c ÿß9J,!Aÿô=(Tk<9)â¦}kJˆkÿÿ|ct|jN€ |¦Tc(4BŸ|c"}H¦Tc<=*|¦9)âœ|cJˆƒÿÁˆcÿÀ|„tHÀ|¦Tc(4BŸ|c"}H¦Tc<=*|¦9)âd|cJˆcÿÁ|ctN€ |kþp|¦BŸ¿Áÿø}`xè¦|P=?T<9)ãp”!ÿ°}`J|~xˆ‹|i®|„tHE,A¢ €XWÃþ8!P8€|¦»ÁÿøH €X8!P»Áÿø|¦N€ |¦BŸ}H¦|¦|`þp=*|x9)âô}`XPUk<}kJˆk|ct8cN€ ,8€A‚@� 8`H8`8€H¬1#ÿÿ| |x8cN€ |¦Tc<BŸ}H¦|¦=*9)áü}cJ|cH®ˆ‹|„tHh|¦Tc<BŸ}H¦|¦=*9)áÌ|cJˆc|ctN€ |¦9 BŸ9@|è¦|¦==g95p85l‘(‘HN€ , |¦BŸ¾áÿÜ|zx”!ÿè¦|ž#xA‚8ÿÿ| 0|zx>ÿ9w54€|A€t=??ƒ +?Ÿ}}[x;{50; ;œ58=€{| ðP€˜|cH0@0|cx{H˜Q€<\ÀðP“=,1Š}i”‘|‘œ@€ÿ´,A‚,=9W549k50*€}>HP|ð0‘*|Óx€x8!p ºáÿÜ|¦N€ |¦BŸ}H¦|¦=*€‰4<,M‚ 8`Kÿþà|¦BŸ|H¦|¦="<€Æ49)4€é  ÆU~Tà8|«x|Ê3x 8|Éþp|ŒP|kIN€ H¥|¦BŸ}H¦|¦=*)(Ø€ ,@‚=*))耉H=*))è€ T<=*cl))à€k=j€©=*))äk)Ü|£*‰€Ë}‰¦|Ã2N€ |¦¿Áÿø|~x”!ÿ €Øcܐ@|x|X@@€$Hsù!@~Ü9)| X@‘!@}#KxA€ÿä€h8!`»Áÿø|¦N€ |¦¾ÁÿؐBŸ”!ÿ|Øpè¦|zx©#?ƒ£|ùp¨})p})ÁÖƒ{(ð|p€d›½p½½J}‰¦|–#x|·+x€� &ËxÃx|cêN€!&Ëx›||x€vÃx€—}‰¦|cêN€!€œ|`â€x8!p|¦ºÁÿØN€ |¦¾!ÿĐBŸ”!ÿpè¦}9Kx}pƒc|÷;x©c}Cx{pD}kp‚Ç{Z$=«C|³+x«¤|Ò3xƒ„~ųx¨~&‹x‚� ½p‚� ½ÁÖ€ã|p“!8~¤«xk(0~ƒ£xZpœp‹ZÁÖœ}‰¦œê9p{ÒN€!€� ?¿€’ƒ½(,|zx€s'ËxÃx|„â|cÚ}‰¦N€!'Ëx€ZÃx€’|`Ú€·}‰¦|„âN€!€˜8!|z|¦º!ÿÄN€ |¦½¡ÿ´BŸ”!ýpè¦<Ÿ=?4|mx)&ôD'€ j‚C,ƒÃYÖ‚£A‚‚~d‚h ‚~\‚`>lV¥<V@<~«p€i
    p=?KR)'|cÂ|cª~¹p &pa`=?)':à€4?Ÿƒ©8́>l8퐡89Á`<ƒœ&ð€ ‚Ä'8€|Zœ|R€¶l}‰¦>l€ |Z|Rp>l€ |B8|Ґd>l€ !<|ê±@|ʱ!B|Ú’áXh’á\3’áT})Â’áP})ª‘!LN€!8ჶ8€œ8Á€al½p}‰¦¥ëxN€!8ၜ¥ëx€ap 8€}‰¦8ÁN€!!ƒ~”€m,|JT<}k‘a0@¢“aÀ‘aH ,@¢¤>\;A`€“8 €i}Æsx=?^x)&0~¨«x€ö€ =?)&ì~|ƒ©~I“x@8<‘a8“¡D“AHH3y€ÖCÓx’á|~d›x}Åsx8àKÿû¥“aÄ||x€¸,@¢€;a€!`~H“x|
    p|p})ah€d;¡À‘!€}k:|R!p„;à€l})R‘aˆ}Åsx|R‘!ŒfÛx~§«x;! >\;°^|€i€“>x“¡8“< “!@“DH!]€Ö~d›x}Åsx8àCÓxKÿúå}Åsx€Ö8à~d›x|qxTÆ<£ëxKÿúÅ~d›x€Ö|}x8àeÛxƒãxTÆ<Kÿú¥ =?}ýƒ©%Ѐ,@¢D€“889a 8$Ãóx@~¦«x~Gp(Ëx Ãx‘a<}Åsx9A H*€,@¢$€a$|ˆ@€|x@€T|<8H |x@€~<‹x8 }ü{x8Ä€0|8ÜÈÌØ@ @� €0H¼€¡4=?)&è9ƒ¥'‰€`€½}‰¦€ÁP€áT€aLN€!}Åsx€Ý8àaH~d›x8a@Kÿù…<T`:|H@Ø!Ä8À, “@¢(¨`©!b€8€¡<|P}%HPÈ‘!ÌH”, @¢<¨¢©! 8T<a<}(HP|P‘!Ȑ́!€ ‘!øüHT©!€<€¡8U)<¨à}$HP©aâ©AÀ|PØUk<‘!Ì}dXP€Ø}EPP!ø‘AÈ‘aܐè‘!ð“HŒ9 8a‘!̐đ!À‘!ÈHl>\?Ÿƒœ&0?ƒ{&ì;A`€i~¨«x^x~I“x€ö; €|8 |}Æsx€“9ဃ»8‘a@“¡D“!<“AHH/Õ€Ö~d›x}Åsx8à’á|CÓxKÿø€„~`|qx^€~I“x€k~¨«x€ö 8 {}Æsx€ƒ¼8‘aD“!<“¡@‘áHH/m€Ö~ƒx}Åsx8à’áœ}ã{xKÿ÷™}Çsx|tx9 }ä{xCÓx~e›x~ƒxKÿø1| |vxA|A~<‹x8H |°A~œ£x8 ~ܳx À8Ä€¸,@¢ô€4;a€€h;Àƒ¤':áà:Á ;°}}ÅsxfÛx~§«x}ip}jp|J~H“xˆ;A!`;! €p})Z‘!€|R!d€l})R|R‘!„Œ>\^|€i€“>x’Á@“D“8’á<H݁>`~H“x^„~§«x€i}Åsx>€fÛ x€’Á@“D“A8“!<H¥€Ý~d›x}Åsx8à8a`Kÿö-}Åsx€Ý8à~ƒx|qx}ã{xKÿö}Çsx9 }ä{x~e›x~ƒx|tx8a`Kÿö©}Åsx€Ý|vx8à~d›xTÆ<ÃxKÿõÍeÛx€Ý||x8à~d›xTÆ<~ã»xKÿõ}Åsx€Ý8 à}ü~ƒxTÆ<CÓxKÿõeÛx€Ý||x8à~ƒxTÆ<#ËxKÿõm~ƒxÜ9 DÓx}ÇsxU<~e›xÃxKÿögÛx||x9 $Ëx~ã»x~e›x~ƒxU<KÿõÙ|||@€<|ˆ@€4|x@€,| @€$|ð@€8~ܳxÄ ÀH¬|ˆ@€(|x@€ | @€|ð@€||x H@|x@€ | @€|ð@€~<‹x8H8| @€ |ð@€}ü{x8À9 H|ð@€~œ£x8À9 ‘!ÄH8ÜóxÀ8Ä€0| @ @8ÀHø€Ä“,@¢@€¡8<¨`©ab©A€|P©!‚}hXP}EPPÈ}(HP‘aÌ‘AБ!ÔH¬¨á"€<¨ÀTç<|ä8P©!€ 8¨ÁU)<|P©aà€<È€8}$HP¨¡ €8|À0P©Aâ€Ø|¤(P©}dXP‘!ÌUJ<!øU<€<è‘!ð}DPP€}@P!8‘aØ‘AܐÁБԐ¡àáäì‘!ô€
    D(]|x,|PA‚9+D| P}+Kx@‚ÿô‘!,|@P=T:8¡À|PP|H|xA‚(,A¢|¤+x8 DHˆ €}8DH€D£ëxH
    q€˜8!¹¡ÿ´|¦N€ |¦½¡ÿ¤BŸÛÁÿðè¦Ûáÿø>?”!ý0|vx1x9‚c9`€ :@ƒ£D8ÀÓÖƒƒ@‚ã¤ëx‚–£ëx‘a…ãx‘‘H€–D8 Hy0|èPT:} HP‘0=?)\€ ,A‚÷d7h‘!lHw`÷\‘al7l~ˆpÝp~˜p€i(ê=?Ú&p|cò)p|c¢9@a`VŽ<ƒ‰Vm<wl=?)l8€€8 Öƒi8ö|B=?|ê‚©Xl‚Qx7l•€ €²}‰¦|B|êp7l€ |â|ʐd7l€ ±Á@|Ú±¡B|‘AX|Ò‘A\h/‘AP})ò‘AT})¢‘!LN€!€;Á`•8€|p€al}‰¦¥ëx8ÁP8áTN€!•¥ëx€ap8 €}‰¦8ÁX8áTN€!€X9 aP;;!À}kV€Uk<}JZ‘!À|‘AA‚,,A¢}Cx$Ëx8 DH……9D‘H}CxÃx%ËxH
    郷”,@¢Ô=?ƒ‘x)P9€aL‰€`€¼}‰¦€ÁP€áTN€!€Ü8aH}ä{x“¡Ä8a@ÌÅóxÀ8àÈKÿ€a|A‚,, A¢}Cx$Ëx8 DH„́9D‘H}CxÃx%ËxH
    17\;a`ƒQx8€i8 =?€)˜ÆóxWx~ˆ£xƒ‰=?)T€úƒ©~i›xw|<‘a8“@“¡D“aHH&¡©!`8©abcÛx€ Ú}.HP|}mXP‘!È89 À‘!Ä}ä{x‘aÌÅóx8àKÿ€a|A‚,,A¢}Cx$Ëx8 DHƒÕ9D‘H}CxÃx%ËxH 9€¸,@¢Ìƒ±x;€€h;aÀ};Aà:¡ :A°}ip}jp|JÅóxˆ†ãx!`~‡£x€p~h›x})Z‘!€|R!d€l})R‘ !„|RŒ7\€€iW|7x“a8“A<’¡@’ADH©!Â8©AâcÛx©aÀU)<©à}-HP€ÝUJ<À}nXP8‘!̐Ä}@P€Ø}MP P!øTÆ<‘aÈ}ä{x‘ØÅóx‘AÜ8àè‘!ðKÿí=€Ý…ãx|}x}ä{xCÓxTÆ<8àKÿí|}€a|A‚,,A¢}Cx$Ëx8  DH‚M9D‘H}CxÃx%ËxH±=?)8€ ,@¢<€8\89a`8d~ã»xÅóx~†£x~gp~¨«x~I“x‘a<9A @H1€9 ©a¢|©A 8‘!ĐÀUk<€\}NPP!`}mXPø€d‘AÈ‘aÌ‘!üHp,@¢¤=?w\ƒ©˜;`=?ƒ‘xƒIT8 7|Æóx€~ ˆ£x€k€Wx€ü}‘!8~i›xD8`‘a@“a<HH#u: al’¡|:A€€ü8 7`Æóx€‹~ˆ£x€i~i›xƒ½W€z€„“ a<8“¡@‘aD’AHH#©a`8©!b8a`©A€}nXP©‚}-HP€Ü}NPPÄ}
    @P8’¡œ‘aÈ}ä{x‘!ÌÅóx‘AÐ8à‘ԐÀKÿë €a|A‚,,A¢}Cx$Ëx8 DH€=9D‘H}CxÃx%ËxH¡1x8€l~C“x€ÉÅóxÀ8àKÿꙁ€a|A‚,,A¢}C x$Ëx8 DH́9D‘H}CxÃx%ËxH11x €Ál~D“x 8a`}å{xÀÇóx9 Kÿê݁€a|A‚,,A¢}Cx$Ëx8 DHU9D‘H}CxÃx%ËxH¹€¸,@¢L‚±x:A€€h;¡ u;°Åóx~F“x}ip} jp|J~‡£xˆ~h›x!`€p})Z9aà‘!€|R!d€l})R‘!„|RŒ8À7\€€iW|7x8‘a<“¡@“DH‘7`~‡ £xW„~h›x€i:!lÅóx~F“x€‰7€:á “¡@“D’8’á<HM8©aâÄ8aÀ€ØUk<©!Â}mXPè~„£x€øU)<«¡}-HP«"}å{x¨áàW½<©AÀWœ<«a|î8P«A àP}NPPðNÐP€nØP‘aÜèPa8U<€Ál‘!Ì9 áØÇóxì ‘AÈ“aГ¡Ô“Aà“ä‘aôÀKÿèå|}x€Ál~ä»x}å{xU<8aà~G“x9 Kÿ轁|}€a|A‚,,A¢}Cx$Ëx8 DH}19D‘H}CxÃx%ËxH•ƒ±x88aÀ}ä{x€ÝÅóxÀ8àTÆ<Kÿ牀Ý}ä {x|}x~E“x8aàTÆ<8àKÿçi|}€a|A‚,,A¢}Cx$Ëx8 DH|™9D‘H}CxÃx%ËxHýƒ±x8€l~ƒ£x€ÝÅó xÀ8àTÆ<Kÿæñ€Ý~E“x€l|}xTÆ<8à~ã»xKÿæс|}€a|A‚,,A¢}Cx$Ëx8 DH|9D‘H}Cx%ËxÃxHe a‘ah}f[x|@@}}[x}Cx}e[x}j[x@€,€
    @=@|H@€}]Sx8¥D|8@¡h|ª+xA€ÿÜ|8@Áh|Å3x@€=??€C0ËÉØü=?ËéØ\%@“@m)€‘!D€@“Hl€É¡@ Lýø(ÈHüø(ü²ü
    L@‚@¢T€p€|A‚0,A¢|¤+x8 DH{ €p8D€¡hH€–D~ƒxHi€¡h8¥D|@@¡hA€ÿdaHL€|}x!| A‚9)D| @‚ÿø€a<ðð€`ðñ|ƒ P|„p|„ÖHþI£ëxH.}|@}i[xA‚9)D| @@‚ÿø€˜<ðð€x`ðñ|ƒ P|„p|„ÖHþ €Ø8!Ð|¦ËÁÿðËáÿø¹¡ÿ¤N€ |¦¾AÿÈBŸ覔!ýà=?|tx)
    ¬ƒÃ€ ‚£,‚ãA‚ƒ>d‚Þh ƒ>\‚Þ`>l~èp~ªp~æp€ ~£p=?)
    È|ªƒ©=?)
    ÀWº<¹Ö\p€‰Gp=?)
    ¼`Â}AÖ“a`€©~l}JB|ç1Ö€|@RAl>l€ }€R‘p>l€ |"|ÀRÁd>l€ |*|}:‘h€°,@¢4«pªp}&Z}HR‘!d|ê}"Z`}lZ‘!l‘ap‘Ah?¿€a`ƒ½
    ¨8€EÓx8ԁ8ô}‰¦N€!8áԁ8€€al…ãx}‰¦8ÁÐN€!8áԁ…ãx€ap8€}‰¦8ÁØN€!!؁^”€Ðt,
    |JT<~K@¢‘A€’AÀHÀ,
    @‚|€ˆ>\ƒ9,€‰3Ëx|†#xA‚4€°,@¢>l~p€É‚kH>l~p€‰ƒ+€x~ê»x:Á€Ãóx8%Ëx8À~g›x>|9` @8‘!<~©«xD8 H’ÁLHÍ?Ÿ€$ ˆ=@õƒ¡ÄaJái!,i@¢@€Œ,@¢4€Á`8Ü9A ~ɳxÃóx8$Ëx~e›x~§«x~è»xH™A¤ ˆ€ ,@¢0€Œ,@‚$|
    Ø@€|
    è@€ƒ¡Ü8„H¸|è@€t?¿8ƒ½
     EÓx€`9„}‰¦€Á€á€ N€!€á4EÓx€9€`}‰¦€Á0 €a,N€!€(|½H@=?8)
     EÓx„9‰€aÌ€`}‰¦€ÁЀáÔN€!€È |@�  A¸~Œ,@‚P€°,@� |ªH|ª=?€`)
     |`ÂEÓx8À‰8à9}‰¦N€!~ŒH8`Ò,@‚Ti:| @Ô!„8€, “¡À@¢,¨ÀVª<©!ÂVë<|
    Pˆ}+HP€Ø‘!ŒH¼, @¢8©!€V«<¨‚Vê<¨á }+HP©¢|
    P‘!ˆŒá¸‘¼HÄ©! V¦<©AVà<¨á}&HP©"9w‘!˜}@PP!8Uk<€}@P|æ8P‘AŒáˆ‘œ¨‘!°Hp8aÀ„‘aŒ‘a€‘aˆ€°h! | ¨H@>\;€€xÃóx€‰9`€¹~©«x8|†#x8À|§+x~|~ê»x@:`‘a<8 9a“L‘aDHH•>`Ãóx€€~ê»x€‰9`€¶~©«x8|†#xƒ¡8à~„|§+x@‘a<9a@€$‘aD9a`‘aH}“LƒÄH 1?¿’a8ƒ½
    œFÓx€¡`€ì}‰¦€áЁԁ!ðAô€áaD€dƒ!ä~ËN€!||x€¡`FÓx}‰¦€L€á!PAT€ ’a8N€!At|~x€¡`FÓx€a,}‰¦€l€á04’a8!pN€!Þ|ð@€p|À@€h|Ø@€`|È@€X|°@ P’a8=k
    ´ €FÓx‹8€¡`€aÌ}‰¦€ì€áЁԐ„!ðAôN€!H|À@€¤|Ø@€œ|È@€”|°@ Œ;€?¿ƒ½
    ´ “8FÓx€8€¡`€L}‰¦€á!P„AT€ N€!AtFÓx€€¡`}‰¦€l €á0€a,4“8!pN€!HØ|Ø@€X|È@€P|°@ H=?8)
     EÓx€9‰8„€aÌ}‰¦€`€ÁЀáÔN€!€ÈHÌ|È@€||°@ t?¿8ƒ½
     9 €`EÓx9€}‰¦€Á€á‘!„€ N€!€á4EÓx€9€`}‰¦€Á0 €a,N€!€(HÀ|°@€L=?8)
     EÓx€9‰8„€aì}‰¦€`€Áð€áôN€!€è Hx?¿8ƒ½
     9 €`EÓx9€}‰¦‘!„€ÁP€áT€aLN€!€átEÓx€H9€`}‰¦€Áp €alN€!€h|½|@ @8’AÀ€Hð€„“¡À,@¢P¨ÀV§<©!ÂVè<|P©Aàˆ}(HP€Ø}GPP©a␨€ø}hXP‘!Œ‘A‘a”¬H”¨ÁV <¨¡ 97¨@|À0P¨a`| (P|€ P©a|`P©A"€U)<©BVý<¨}}XP€8}@P¨áb}IPP°€X|é8PÁˆ¬€x‘aŒ¡˜‘Aœ‘”a á¤´ƒ´D;Ô@ ƒ”@8À¤ëx£ëx…ãx¼èPHø-W½:€”D8 Hø…8¡€€>|}P|H~A‚(,A¢|¤+x8 DHo5>9)D‘>H€”DÃóxH ô€(8! ºAÿÈ|¦N€ |¦½¡ÿ´BŸ”!ÿè¦==ß‘a =¿ƒK€|ó;xƒ®¤}1Kxƒ-Ä|»+x€ý}p€}Wp9Tç<ƒÁ8|p‘!@;€Á$8 DfÛx ‚@~h›x‚AD~ɳx~*‹x’á8“<9á`ƒ<|ux‘áH|”#xH±~h›x€~*‹x€½fÛx9|pDT§<‘!@8€~„£xH~ɳx~ £«x“<’á8Hi€¡„8à€Ád8€ƒ½©A`|(¨b©!€©a‚‘P‘0‘ráx˜á|“¡œA<€`!halAptþÞ‘>‘ ‘^‘þH8€€!ˆaŒA”“¾¾‘>‘ ‘^‘ž! ;@ƒ®¤~£«xƒ‰€~„£xƒmÄ8 €ý~h›x€~*‹x;Tç<€Á$|p‘!@~ɳxD‘áH’á8“A<HU€~„£x€½~* ‹x;|p€Á$T§<‘!@~£«xD~ɳx8€’á8H~h›x“A<H
    €¡d8à€Á„8€ƒ½©A`|(¨b©!€©a‚‘P‘ ‘ áx˜á|“¡œA<€€!ˆaŒA”“¸Ø‘8‘ ‘X‘˜H8€`!halAptø¸‘8‘ ‘X‘ø€8!¹¡ÿ´|¦N€ |¦½Áÿ¸BŸ|@&覐A>ÿ”!þð|xx€wÿˆ}CxƒØŒ|‘#xc|°+x€ˆ,€ }|pƒ¨|„Z€}hp€¹½B“¡°|cB|¥â|B }4Kxa¬|Ï3x¤|î;x¡¨}SSx‚AH9 ‚¡LƒPƒaTƒAXƒ¡\A‚€°,@¢9 ,:ÀA‚€°,@¢:À. A’?À“ÁdHlwÿˆ=?)ÿd~ p€ë~#‹x=Ikþ¨Tç<}Jp~ƒx+8 8&Ëx8‘!@<~ˆ£x‘AD8`H~i›x~J“ x á-–ƒÁdAŽ< ¡„Hh7ÿˆ~ p}ã{x}Äsx€©&Ëx=?~ˆ£x)ÿdT§<i=?)þ¨}kpI~i›x88<8€‘A@~J“ x‘aDH e€°8À7ÿˆ8€,Áx€é˜Á|áœ€¡„@¢@€`!dahAlp€átÝ‘=‘}‘ ‘ýÝH8€€!ˆaŒA”ý‘=‘ ‘]‘½|(AHadAhl€áp€Át€¡x!|€`‘<‘|‘\� üÜ¼H@aˆAŒ€á”€Á˜!œ€€‘<¼‘|‘ ‘üÜA’?À“ÁdHlwÿˆ=?)ÿd~ p€ë~#‹x=Ikþ¨Tç<}Jp~ƒx+8 8&Ëx8‘!@<~ˆ£x‘AD8`H~i ›x~J“xH
    ŃÁdAŽ< ¡„Hh7ÿˆ~ p&Ëx}ã{x€©}Äsx=?~ˆ£x)ÿdT§<i=?)þ¨}kpI~i›x88<8€‘A@~J“x‘a DHH
    M€¡„8À7ÿˆ8€|(Áx€é˜Á|áœA@€`!dahAlp€átÛ‘;‘{‘ ‘ûÛH8€€!ˆaŒA”û»‘;‘ ‘[‘›A’?À“ÁdHl7ÿˆ~ p~#‹x~ƒx€é8 =?8Á )ÿdTç<~ˆ£xi=?)þ¨}kpI9388‘A@~J“x<8`‘a DHH 9ƒÁdAŽ< ¡„Hh7ÿˆ~ªp}ã{x}Äsx€©~ˆ£x=?8Á )ÿdT§<€ =?)þ¨|pi93‘A8~J“x‘a@9a€D8<‘aHHÁ€¡„8À7ÿˆ8€|(Áx€é˜Á|áœA@€`!dahAlp€ átÚ‘:‘z‘ ‘úÚH8€€!ˆaŒA”úº‘:‘ ‘Z‘š€8!¹Áÿ¸|¦} N€ |¦½¡ÿ´BŸ”!ÿ <ÿè¦=`UU‘!akUVp= ÿ‘A8aøa)ÿÿü=_¡TÑ<� Tï<P9 TX\`dhl‘!p‘at‘Ax:@U¶8 |
    A|X.}6P.QPHPA‚¤,@� ;œH;œÿÿ!øWZ<Wœ<i´|@¢¤,A€At8} P–|þp|HPHAt } P–|þp| P,|xA€At8} P–|þp|HPHAt } P–|þp| P|x !øi´,A‚x,O€@8|pHXp,O@9<})pH‰p:iÿÿ:@8 |pH} p<|x@™9)})p9)}4KxHl/š:@8 |pH} p,<|x@9)})p9)ÿÿ}3Kx@8|pHWp@9<})pH‰p:‰ZŠœzŠ~sz~÷Š~”zA€(=_Jøl*9)ÿðU)<|H A� ,A€=kù(+9)ÿð|HAìaü@p|WIþ}kWŠþ€p‘!ˆ‘AŒ: ÿÿ‘a€„; ÿÿÓª~ªxê7êA€Œ=_Jøl *9)ÿðU <|Ap,A€h=kù(+9)ÿð|HAP,A€H|A@,A€8|HA¡0=?aü)ùLÀpA€‰ip€ª9@Tƒ<‘A8|‹"|Ö|„ J€áˆ!„=kù8|fx|cIցŒ‹|„a€Wiþ}‰¦WÊþ|kN€!Œ=_=?JùL|nx)ù8$p€ªA‰T <j~ pAü} IÖ|x€áˆ|j*}‰¦A||«*a„|cRAü|YÖ|Š"9@‘A8|„J|cV
    þW)þN€!€p}Î|@€(“aX“!`‘Áp“AP“T“Á\’d“¡h’¡l;½,@þd:µ,@þL:R:Ö,@¡ü9,
    @ûô!T?ŸA\:àƒœùL};paP}IpA?¿€œ}xpaü€ªT†<AX|‹"aP}&IÖƒ½ù }@p’á8UyþAT|„aü|ÙցUZþAX|ka\}‰¦|„J'ËxUIþHÓxUjþ|cN€!HÓx€¼|nx!d'ËxAT¦ <a`fÙÖ} p*}dpAü}‰¦|Ö’á8|j*|©*Uiþad|cÂ|Š"|cÚ|„UjþN€!!AT}αIaP‘ɱi! €p !ha‘+!Al‘I€è8!๡ÿ´|¦N€ |¦|@&½¡ÿ´ABŸ”!ÿP: è¦|Í3xc°:@‘Aä,’!P@¢|•#x|¶+x |µ+x|–#xTç<U<|Ñ}(Ð@ , |p@8 |
    pH}*p,@� 9JÿÿH9J=?=‚éòl>€ÿ=?‚kòpÉó8F:=?*Béób”ÿÿ;`ÿÿ:™Ú; ÿÿ.˜pÚêA€„79)ÿðU)<|HA pAl39)ÿðU)<|HA¡X€ÏÄp’8|–"|ÁÖWÉþŽWŠþ~£«x}‰¦}¥kx|„8à9N€!| @€“aPÒóx|tx‘ãx;½,@ ÿp;{,@ÿT=?8)ó~+p~DpV*þ€É|–"8=?)ó }fYÖ~£«x‰}¥kxVIþ}‰¦|„Z8à9N€!!ä€Pi° !è’‰€¸8!°¹¡ÿ´|¦}€ N€ |¦½¡ÿ´BŸè¦<ÿý`ÿ}7Kx|!n=?)ñD|ò;x=a| pƒ©<á=?ƒK()ñ@~d*~Ú¸QƒÇ8i|Ñ3x=!‘‚ ,}cZƒi0|cꃉ4}£|©p~]p~‹J~p~Ip~p‘'„;{ÿð‘gˆàP@ :À}7Ò9éÿÿ|à@ãx<á€ç}Ê8Q@ 9À=a k}+R; ÿÿ|Ø@xÛx|‘Ö=?)ñ<á€ç~E“x‰~ƒx|s:€‘}‰¦<àÿ|c`çÿÿ?; ;|€N€!}ç{x€=?)ñ|zxTj>}Äsxi~ųx›;=!<Ãx’88a` ~é»x‘aH=“¡@?¡’¡D;½pkñ‹³\€}‰¦›;N€!}è{x=€kñ<ဧ}ªkx€k¤ëxg„~æ»x¡<€Ãx8‘a<= akˆaD8a`‘a@=k� ‹}‰¦N€!Ãx€±=?’8<á“a<~J“x)ñ£ëx€Ç~d›x‰~ç»x}é{x}‰¦N€!<áˆUÊ<€ç=`ÿ|t‰;|akÿÿT<} )t|P}7J‘~9U)<A9W<}ÈP|8ÀA€8ÀVÀ<| 8 A8 Uà<~ÅHP| 8A€8}àJ~Û³x|xA`=!=_‘IŒV÷<=<ÿ=_’阑ié”‘Iœ|À}ÝsxA=a`pk˜~ ‘Ö<á€çœ|ØP=AJ| þp§ñ}6xst~É°PUW< &sº p|€ªA‚,( A‚<ÿ€‘€çñH(<ÿ€‘€çðüH( A‚,<ÿ€‘€çðøƒãx‡~E“x~ƒx}‰¦N€!H$ƒãx€‘~E“x€þ}‰¦~ƒxN€!}7èP~}'þp|àJx|P|²T8|c|X @€~“� “^³¾³~’ž;½|À@ÿ,;{|x@þÔ=?€‘)ñ$~E“x€ ~ƒx‰€Þ€þ}‰¦N€!~€!€¹¡ÿ´|¦N€ |¦¿Áÿø|~x”!ÿ €Øcܐ@|x|X@@€$HQ!@~Ü9)| X@‘!@}#KxA€ÿä€h8!`»Áÿø|¦N€ |¦¾AÿÈBŸ|@&覐A=”!ÿp|sx‚KëP|µ+x=‚áÈ‚‹ì\|ý;xƒAÌ}CxƒÐ}9Kx‚ÁÔ}\Sx-†.;À,@¢<€,@¢ 9p~÷pp”,A‚{pœpZpZ”½pWÃ:|ƒ¨.A�  p|„|c˜.A�  p|c“8;Þ’Á<¥ëxfÛx'Ëx”ˆãx~é»xJÓx}‰¦N€!,@ÿh€˜8!ºAÿÈ|¦} N€ |¦¾aÿ̐BŸ”!ÿ`è¦=?|zxcLƒÃ)ë8q`‚ã‚©}i[x‚Ã>d‚~hƒtA¢€~°Ãx~å»x~ƳxHP½HðU`ïþ:€/€ @ž€”,@¢€~°,@¢ô€P,A‚@ž0€T#Ëx:X8€<Ãx‘!@8À’D~§«xH0,@¢„€XV½<:T~Üp€št|p‘!<#Ëx @Ãx§ëx~ê»x8À9 “89’DKÿýÍ€h~ê»x€š|#Ëx:d|p§ëx“8‘!<Ãx@8À’DH$,@¢,X8¡P€ž´8Ú„€úT}p8`V¼<HN~ Ýp€X#Ëx:TÃx|p‡ãx‘!<~ê»x@8€8À99 “¡8’D;`Kÿý!9€X~ê»x:T#Ëx|pÃx‘!<‡ãx@8€8À9 ’D“¡8Kÿüá€P~ê»x#ËxÃx<‡ãx€T8€8À“¡8@9“aD9 Kÿü¥“aD€X~ê»x“¡8#Ëx<‡ãx€\8€Ãx8À@99 H€”h{!{kÙ,@¢ €ˆ,A‚€t~|›x|@¢<Ëx€P,A� q+@‚@€Xƒãx:TfÛx€štÃx@V§<8‘!<D’Á899 H¼,@¢¼:TV½<€Xƒãx€štÃx‘!<fÛx@§ëx8’Á8D99 ~ê»xKÿû•€”,@¢$€ˆ,A‚€š|~|›x| @¢H€š|<Ëx€dƒãx:hfÛx<§ëx8‘!@8Ãx89D9 ~ê»xH¸,@‚¸€ˆ~|›x,@‚<Ëx€ž´8¡P€úT8Ú„XV½<HK‘9€T~ê»x:X#Ëx<dÛx‘!@8ÃxfÛx§ëx D9 ’Á8Kÿú©9€P9 ’Á8~ê»x<ƒãx€TfÛx‘!D§ëx@kdÃx9 KÿúiH<8c’|HgézL:€q`A‚¸€ž°,@¢À€P,@¢8:`~c›x€\Ãx’Á8~§«x<~ê»x‘!@8€’D8ÀHÈ€`V¼< :\~Ýp€šx|p‘!<~c›x@Ãx‡ãx~ê»x8À9 “¡89’DKÿùµ€p~ê»x€š€~c›x:l|pÃx“¡8‘!<‡ãx@8ÀHЀPh›!;iÙ,@¢@:`~c›x€\Ãx€šxfÛ x’Á8V§<<~ê»x‘!@’D99 Hˆ,@¢ˆ:`V½<€šx~c›x€\Ãx‘!@fÛx<§ëx~ê»x9 ’Á89’DKÿøåzp96€l~ê»x€š€~c›x‘!8Ãx<fÛx‘a@§ëx’D99 Kÿø¥H<8c’|Hf%€¨8! ºaÿÌ|¦N€ |„)Ö8À|"|@@€d|Pp T èþA‚9)})¦‰C‰ˆ‰#‰c|Rˆã})B‰C|J‰}k:|Z8c}JB|R|ÆBÿ¼|f#ÖN€ ¿aÿì|¦;À|(”!ÿ |½+x|{x|œ#x@€(cÛx|œò|¾èPHRy|cyA‚Þ|èA€ÿà€hÃóx8!`|¦»aÿìN€ |¦½¡ÿ´BŸ”!þÐè¦>ß=?==ß=_‚)âè‚âô:ÖÝÀ‘ÁÔ>Ÿ‘AÐ:@>:”ÝÈ~ϳx=¿3ä€ ,A¢<8cíØHQµ=_vJ� 8a@*|K–|IÖ`XPHs݃Nä8@€zHy¡|cyA¢0,A‚øcÛxHEeÛx<Ÿ|fx8„‹X8`HbýHÔƒ‘;Àƒ°|à@€X=? ƒ
    äƒ)ãôW{:>ÿ}5Kxx¥ëx€};X.|Ö€z€‰|„Kÿþu|è@‚|;Þ|àA€ÿÌHW{:>ÿ>¿ƒWä5ãôz€‰=?)ä}[X.€© €jKÿý4|{I.=?)â샑€ ,@¢Wœø~,ƒ°A‚W½ø~;À|à@€PAÔYÓx!Ѓ
    äƒIãüy¥ëx€};X.|Ö€x€‰|„Kÿý±|è@‚¸;Þ|àA€ÿÌ;À|à@€P!ԁAЃ äƒ-äƒJãüy¥ëx€};X.|Ö€x€‰|„KÿýY|è@‚`;Þ|àA€ÿ̃Óä€,A¢<8cíØHO€/,9)‘/A¢<8cݤHOE :R,@ý´Hl<8c‹„HaYƒÓä€,A¢<8cíØHO1€=?,9)ÝÀ=I€ =?)ã@9Jÿÿ‘KÝĐ A¢<8cݤHNÍ€88!0¹¡ÿ´|¦N€ |¦¿¡ÿôBŸ覔!ÿ°<8cê°HN¹Kÿüµ=??߃©à;ÞÚ˜<<Ÿ8cÚ`8„ê°HNI>€| @€ÿàKÿü}KÿÿØ|¦“áÿüBŸ”!ÿpè¦8a@HM8a@8pHMQ!p<`
    ?| @A¡<€8a@`„
    @HM <¿<€¥Ú<8cêt8@8ÀHLÉ,A¢ HL™€cHLm|dx<8c…<Ha€˜8!ƒáÿü|¦N€ |¦¿ÿðBŸ覔!ÿ°=?||x9Iِ€
    |P,AH=?j)߀ |@€0}^Sx}=KxKÿû}€|P,A€=|HA€ÿà€X8!P»ÿð|¦N€ |¦¿aÿìBŸ覔!ÿ |}x<8céHM!=??߃‰Þ„Ûóx;ÞÙ€|P,A €<|H@ <8cØÌHL½9;Ù€ |èA€ <|HA  €h<8!`8cé|¦»aÿìHLÈ<<Ÿ8„é8cØèHLIKÿÿ„|¦¿AÿèBŸ”!ÿ è¦=?|~x€ ØL,A€0|@(=?)ÝÈ€ |@ <8c†,H_HÄ?_€ØH,@¢d<8€8cè`HK©??¿;Þ”;½ØP€iTc:H
    y?Ÿ}<Þ˜€ ,A‚KÿýiÃóxKÿþ‘HÃóxKÿýù ??Ÿ<Þ˜€ ,A‚ÃóxKÿþa ÃóxKÿýɁ{Þ”:ØH€‹|"|H@ <8c†lH^YHFñ€h8!`»Aÿè|¦N€ |¦¿ÿðBŸ”!ÿ°è¦|œ#x|}xKÿþ±8`=?=_)Ý`JÝXi
    |[–|YÖ èPW½:}=@.€ *}}H.€*}}H.€€X8!P»ÿð|¦N€ |¦¿¡ÿôBŸ覔!ÿ°?¿|~x€ÖŒ,@|@|xÃóxKÿþ€ÖŒ,@|@|x==_kÜԁJ֐€}>–})Ö€X8!P|¦})ð P»¡ÿôU):|iP.N€ |¦¿ÿàBŸ”!þÐè¦|zx|œ#x;ÁP|»+xÃóx|Ù3x|ø;xHj‰=?Äóx)Ü8€iHoù,A¢$Hyá<Ÿ|ex8„„T8`H[ 8`HDIÃóx;¡Hk‰zÃóxHk¥Äóx|£ëxHkÁ€a€H]Y{ÃóxHkÄóxy£ëxHkÁ€Ú€8`!€ü|xD} $Kx‘!@H`ix€88!0»ÿà|¦N€ N€ |¦¾ÿÀBŸ覔!ÿ€=?||x)Û ;Àc€ ƒC+¸|Öƒc, ƒlƒ+t}@Ú@‚@€°,@¢4=?€x)ÛT€™|cR‰|„R}‰¦N€!,A‚;À“Ü>߁6ÚH;À€ |@€¼=?=‚)Û =?‚KÚð=‚‰Ú=?‚Û(=‚iÛP=?‚«ÛL‚éÛH,@WÉþ9 H9,@‚x€|
    x*°, @¢0€,A‚$€WÉÿþ}:JWË8} IÖ}{ZT<H €WÉ8}:JWË8} IÖ}{Z|x€
    °}+J,@¢¤€H˜€jÛx,A‚jp/€KÓx@¾Kp€ü€°,@¢4€,A‚(Až$€WÉÿþ}+JWË8} IÖ}jZT<H €WÉ8}+JWË8} IÖ}jZ|x€°}+J,@� €})U:•|˜.WÝ80|y.}‰¦€� |„J|cJ;Þ|ÆêN€!€ —|cê}‰¦N€!6ÚH€ |A€þ„€ˆ8!€ºÿÀ|¦N€ |¦¿Áÿø|~x”!ÿ €Øcܐ@|x|X@@€$Kÿý]!@~Ü9)| X@‘!@}#KxA€ÿä€h8!`»Áÿø|¦N€ |¦¾AÿÈBŸ覔!ÿ€>Ÿ;€4×p|yx€ ‚¨p|‚Èt‚ãƒ@€È>_>H,@W‰þ;IH;@,@‚„€°,@¢8€,A‚,=?W€ÿþ)ØH|WŠ8i}WR|ÖU{<H(=?W€8)Ø |WŠ8i}WR|Ö}{[xÊ€°,@¢Ä=?)ØHH°=?~ç»x)×@), A‚~çp/‰ Ãx@¾ p€°,@¢<€,A‚0Až,W€ÿþWŠ8| }GR=?)ØPi|ÖU{<H(W€8WŠ8| }GR=?)Øxi|Ö}{[xÊ€°,@¢=?)ØP€ ށ2ØlW80€y;œ‰|cê}‰¦N€!€Ù3ØhW@:|•.eÛx|v.|Æꁉ|„ò|cò}‰¦N€!4×p€ |A€þL€ˆ8!€ºAÿÈ|¦N€ |¦¿Áÿø|~x”!ÿ €Øcܐ@|x|X@@€$Kÿýµ!@~Ü9)| X@‘!@}#KxA€ÿä€h8!`»Áÿø|¦N€ |¦¿ÁÿøBŸ”!ÿ°è¦|~x€Lp A‚@#8ã €ž€É¬€©À€ H!m9`=?)Ôì€ }k09kÿÿ‘~$HD#8à €ž€©À=?)Õü€ ‰}‰¦N€!,~$A‚€L`L€X8!P»Áÿø|¦N€ |¦¿ÿðBŸ”!ÿ°è¦|}x€Lp A‚T=?;À)Ô4€ |@€€}<Kx€}WÀ80=;Þ€Ý |c€©¬|dxH$u€|A€ÿÔHH=?;À)Ô4€ |@€0}<Kx€}WÀ80€½ ;Þ|c|dxH%…€|A€ÿÜ€X8!P»ÿð|¦N€ |¦¿aÿìBŸ覔!ÿ =?; )Ól|{x€ |@€,}<Kx;À€{Ø;½|cò;ސKÿþå€|A€ÿä€h8!`»aÿì|¦N€ ,|¦BŸÛáÿø“áÿìÿàÛÁÿð覐”!ÿ€A¢¨HBÿß(=ü øÈÜÿàð(HBüØ@!D, 8 A� 9 8, o@� 9 p8p==_kÓL=JÔ0<àC0|®Éˆì}H®}*®áP‘!T|
    @®É¡PLáHý`(ÈHý¾rü`(ü?h:H,=?È Äü@€ü =?È ‘\ü@ü €ˆ8!€ƒáÿì|¦ËÁÿðËáÿøN€ ,|¦BŸ“áÿüü”!ÿ è¦A‚T=?È)8ü *HAüØ@€aD,A¡8`,p@8`p=?=)Ò8kÓ| ®|k®HD=?È)8ü *H@µüØ@€aD,A¡8`,>@8`>|`p|”T<€h8!`ƒáÿü|¦N€ ,|¦BŸ}H¦|¦A‚<=*9`p)Ñpˆ p| A‚9kÿÿ,@| X®| @‚ÿìmi€Hl‰€‘!ÿä<C0ÿà=*È ŽØÉ¡ÿàü-(N€ HH|¦9`BŸ9€|H¦8À=|¦ËT8à8<€@48 9= @9@‘c|‘ƒ€Ã̐ãАŒƒ£‘‘#‘CT‘cX‘ƒ\‘c`‘ƒd‘c„‘ƒˆÃ¬ã°ÃĐãȐƒ� N€ |¦¿AÿèBŸè¦9 ”!ÿ€9@‘#X‘C\?_‘#`‘Cd?ŸÑ4=?IÏÈ|~xȁ|Ðtý *Ù£H* } I9)‘#P€,A‚4É£=?È Žlý2Ù£€T8@+U)8‘#4Hl€
    ,A‚$=_*Ï¼È üh$ý Ù¡@€DH$=_Ɉ*Ï¼È ü`$ý Ù¡H€L@*Ï¼È ý Ù¡H€L4,@‚à8<Ðt$€ ,A‚ 9@= ?ð‘>”‘^˜=_žH„€@=ƒkÑ0= *ª a)ª«€|P} H–|þp} HP, ‘>@ <8cy0HP…;<C0P=_}=HPjϼm)€‘!T=?É©¼ÈPÉ‹üh(ýŒ$Ùž”<C0=?P)Ёjϼ=_€ ɪ¼l€<ÐtTÈPÉ‹üh(ýŒ$Ùž€ ,A‚ȁ:Ñ4ü*È)ü $H É«=_È
    ü:Ñ4ý2È)ü-$H=ü=?)Ð ØH€L0É©=?È ´ü
    @� ý€h =_ÉŠŽt~09 <C09@Pmk€‘aT=‘>D‘^HÉ«¼ÈP‘><‘^@=?üh(É©Žd� 2üh$ý€ÙH€L( $,€ˆ8!€»Aÿè|¦N€ |¦¿ÿàBŸÛÁÿðè¦Ûáÿø=?”!ÿ€|~x)ÌÀT„<€ ,A‚8„T«<žà‘~ä; €$),“¾h } I9)}iZ‘>Ü|‹"žD@‚=?)Íl€ ,A‚<<8cvpHMM8>@“¾$‘>x0 ,(‘>p‘>tH¨l‰€<C0‘!D=@=?É©Š´È@Éž”üh(É~HÉ«ŠÜ� 2ü$üh@� ý@hHýL2€T?€C0“@=l€ËËŠ´>D<D8cv€m)€“H‘!L=?Ɂ@

  • Load movie and go to the specific cue point?

    How can I load movie(1.swf) into the current file and make it go play the specific cue point (of the child's file)? Can someone please correct my code below?
    on (release) {
    loadMovieNum("1.swf",0);
    // Seek to Cue Name Behavior
    var c = vid.findCuePoint("second_start");
    this.seekSeconds(c.time);
    // End Seek to Cue Name Behavior

    1.  no code following loadMovieNum("1.swf",0) will execute.
    2.  it's not clear there's an flvplayback component named vid anywhere.  if there is such a component, where is it?  in 1.swf?

  • How do you add cue points to a MOV file that Director 12 can read?

    I have just downloaded the Trial of Director 12 - and unless I can add cue points to video that it can interpret - I am not going to be able to achieve what I need to.  I've spent the last day and a half looking over the scant documentation provided by Adobe, and anything else I could find online - but the only answers that came anywhere near were for old versions using discontinued xtras.
    Please can anyone help? - I am using Windows 7 64 bit - CS6.
    Thanks in advance. :-)

    Probably too late for your project but...
    You can do this by using 3 sprites in addition to the SWF. In this example, I've named them "videoPlay", "videoRewind, and "videoStop". The SWF in this case was named "video."
    Apply this script to each of the 3 sprites.
    property mySprite
    on beginSprite me
      mySprite = sprite(me.spriteNum)
    end
    on mouseUp me
      case mySprite.name of 
        "videoPlay":
          sprite("video").play()
        "videoStop":
          sprite("video").stop()
        "videoRewind":
          sprite("video").stop()
          sprite("video").rewind()
      end case
    end

  • Using audio cue points in a flash movie

    Hello all,
    I am trying to put together some simple videos for my kids to
    play on their ipods to study on the way to school.
    I put together a real simple slide show, and prepared an
    audio track. I polished it up in soundbooth, and included some
    markers in the audio track. I was hoping to find a way to pause the
    slideshow, until the marker is reached in the audio track. I have
    done this before in director, but just cannot seem to figure it out
    in flash cs3. Any help you can give would be appreciated.
    Thanks, BobR

    Hi,
    The following AS2 code may help you
    stop();
    var listenerObject:Object = new Object();
    listenerObject.ready = function(eventObject:Object):Void {
    <your flv playback instance name>.addEventListener("ready", listenerObject);
    var listenerObject:Object = new Object();
    listenerObject.cuePoint = function(eventObject:Object):Void {
    <your button instance name>.onRelease = function () {
    playback.seekToNavCuePoint("<your cue point name>");
    <your flv playback instance name>.addEventListener("cuePoint", listenerObject);
    \\replace all the placeholder things including the < >
    Also just take a look at the description at http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Liv eDocs_Parts&file=00003003.html for more details
    Thanks!
    ps: pls mark this post as answered if this is of help to you

  • Building a movie wish list or cue?

    I know I can build a music shopping list, or wish list if you will, for songs I want to buy in the future on iTunes. I can't find a way to do it for movies I'd like to rent. It would be nice when you come across a movie you'd like to rent in the future to add it to a list, so next time you don't have to surf through the library again. Am I missing it? If not, hey Apple...here's something to add next upgrade! To have it show on the TV end would be nice to. Love my ATV!

    That's really estrange, all the folder showing on the left hand side of the finder are shown in the left hand side of the import/export window in Aperture, at least in my case. There could be something wrong on your file system. Try a Mac OS X maintenance app as Cocktail or Onyx. The automate option fixes everything wrong in the system.

  • Cue Music Beat with Pictures or Movie Clips

    Hey everyone! I just wanted to know if anyone had any tips on an easy way to cue a picture slideshow or multiple video clips to the beat in a song so like at every couple of beats a picture will change or a new clip will start. Thanks!

    Hi Michelle.  I guess you could do what you are asking with Photoshop CC with its video timeline.
    Create a Slideshow in Photoshop | Understanding Adobe Photoshop CS6 | Adobe TV

  • I have one Mac, two users.  I wish to share a iBook with my wife, the other user.  I move a copy of the book folder to "public" folder, and in her account "added to library".  Does not show even though cue claims it is in her library.  No book.

    I find sharing books within my one computer near impossible - not easy as music is.  It used to be easier, but now with iBooks and some other changes this has become difficult.  Also - I can use the search feature to find the "books" folder, and use "Get Info" to find the supposed address, and then not find that folder location at all using a manual method stepping through Finder.  So a second question is:  where is this file hiding?  It is not under User/Library/Containers.... as claimed by "Get Info".  It seems that if I buy a book, the family can use it to put on their iPad.

    Part of me understands the need to have purchases protected.  I hope this does not get more and more complicated for "within family use".  It is nice to buy music and share it with my wife, as we used to do with books prior to the iBooks "upgrade" - which mostly consisted of making it impossible to share books.  Thanks though for your response;  I was hoping for some luck and that maybe I had missed some simple step.  To Apple:  lighten up.
    Best regards and thanks again for taking the time -

Maybe you are looking for

  • Shipment Costing comprising of 2 deliveries from 2 company codes

    We have a scenario whereby we combine 2 deliveries from 2 different company codes into 1 marine shipment. The issue we face is that when we generate the shipment costing document for the freight amount, 1 single item is generated and this is tied to

  • Assign Role to Users

    Hi, I am trying to give the user access to limited profit centers in a particular Business Area Suppose Bus Area ABCD and profit center AB0001 to AB0099 when there are profit center till AB0501.I Defined the same in the SU01 and assigned the role to

  • NullPointer Exception ,web start Static class loading in sun JRE with JNLP

    I have a netbenas based application and using with jre 1.6.0_22. i am getting NPE as java.lang.NullPointerException at com.sun.deploy.security.CPCallbackHandler.isAuthenticated(Unknown Source) at com.sun.deploy.security.CPCallbackHandler.access$1300(

  • How to show negative(-) as parentheses

    Hi, Does anybody know how to display negative sign as parentheses in ABAP report (simple list or ALV). For eg. Standard SAP shows -100.00 as 100.00-, but user wants to display it as (100.00). Thanks Anil

  • Messages will open nothing appears(with wait cursor)

    Since I upgraded to Mavericks, everytime i open Messages, it opens, and the top bar becomes Message settings but nothing appears and the wait cursor keeps turning forever so I have to force quit. I have tried opening it from the applications folder a