[comp.binaries.amiga] v02i023: QuickFlix binaries

Takeshi@s.cc.purdue.edu.UUCP (10/02/87)

    Note that in both this posting and part 2 of quickflix, there are
two files called QF.uu.1 and QF.uu.2.  You should join these two files
together before uudecoding.  (cat QF.uu.1 QF.uu.2 > QF.uu)  One really
nice feature of this compared to most IFF viewers is that it does handle
overscan!
    Later!
	Doc

#	This is a shell archive.
#	Remove everything above and including the cut line.
#	Then run the rest of the file through sh.
#----cut here-----cut here-----cut here-----cut here----#
#!/bin/sh
# shar:	Shell Archiver
#	Run the following text with /bin/sh to create:
#	README
#	QF.uu.1
# This archive created: Thu Oct  1 18:19:59 1987
# By:	Craig Norborg (Purdue University Computing Center)
cat << \SHAR_EOF > README

                           QuickFlix Rev 0.13

    Copyright (c) 1987  Jeff Kunzelman, Rodney Iwashina, Takeshi Suganuma

  If you like this program please feel free to send a donation ($10.00)
  payable to:
          Rodney Iwashina  11333 Yolanda Ave.  Northridge, Ca. 91326

  You can make as many copies of this program as you like and give it to
  all your friends, on the condition that you abide by these guidelines:

     The copy(s) (including documentation) must remain unmodified
     and intact.
     The copy(s) cannot be sold for money or profit, except by the
     original authors.
     At the time of transfer, the new recipient(s) agree(s) to the above
     guidelines.

  Suggestions and comments of any kind can be sent to the above address,
  through CIS (76224,102) or Bix (riwashina).  We hope you enjoy this!


Introduction:

        QuickFlix is an IFF slideshow and cel animation program.
        It takes full advantage of the Amiga's multi-tasking operating
        system by creating multiple tasks to manage each of its
        resources, communicating via executive messages and ports,
        and sharing data in a common memory pool.  QuickFlix supports
        the LO-RES, HI-RES, NON-INTERLACE, INTERLACE, HAM and OVERSCAN
        modes of the Amiga.  QuickFlix can be run with internal timing
        or can be triggered by an external source.  A stand-alone
        slideshow or animation sequence can be generated when
        QuickFlix is run with internal timing.  External triggering allows a
        user to interactively control the slideshow or animation.
        QuickFlix implements a caching system that pre-loads pictures
        into memory.  This feature allows QuickFlix to support the
        rapid frame rate necessary for cel animation.


CLI Usage:

        QuickFlix [-t<tick rate>] [-l<log file>] <script file> ...

        <script file> is the name of the script file containing the
                names of the pictures, the special effects information,
                and the timing information.  All timing information is
                expressed in number of ticks.  Multiple script files
                may be chained together by specifying them on the
                command line.

        -t<tick rate> indicates the timer tick rate, where <tick rate>
                is a decimal integer from 0 to 60, corresponding to tick
                rates of 0 to 60 ticks per second.  When the tick rate is
                set to 0, the external triggering is enabled.  This
                option defaults to 30 tick per second.

        -l<log file> designates the file to log informational and error
                messages.  If this option is not specified, no log file
                will be created.

        QuickFlix can be exited at any time by pressing the ESC key or
                <CTRL> C; holding the CTRL key down and pressing the C key.

        usage example:

                QuickFlix -t24 -lram:logfile script

                This example will read the script information from the
                file "script", the tick rate will be 24 ticks per
                second, and the log information will be written to the
                file "logfile" in ramdisk.


Workbench Usage:

        QuickFlix can also be invoked from the Workbench.  A single
        script can be invoked by double-clicking on the desired script
        file icon.  A single script file can also be invoked by
        shift-clicking (holding the SHIFT key down and clicking on the
        the icon) the desired script file icon, then double-clicking
        on the QuickFlix icon.  Multiple scripts can be invoked by
        shift-clicking all desired script file icons, then double-clicking
        on the QuickFlix icon.  When multiple scripts are selected, the
        'tool types' information from the first shift-selected script
        will be used for all subsequent scripts.

        Valid Tool Types:

             n=<anything> (no seperate fast memory cache)
             l=<log file name>
             t=<ticks per second> (t=0 = use joystick)

             All others will be ignored.


Script Format:

        Entries in the script file must conform to the following format:

        s <picture file> - any IFF picture file
                (s is the mnemonic for (s)lide)

        n <ticks> - Switch to next picture in script in <ticks> ticks
                where <ticks> is a positive decimal integer.  If
                the last picture in the script includes this entry,
                QuickFlix will exit when the switch occurs, otherwise
                the last picture will remain on the screen until QuickFlix
                is manually exited via an ESC or <CTRL> C.
                (n is the mnemonic for (n)ext)

        i <start ticks> <end ticks> <interval ticks> <red> <green> <blue> -
                Fade in the current picture starting at <start ticks> ticks
                after the picture is switched in, end fade at <end ticks>
                ticks after the picture is switched in, fade at intervals
                of <interval ticks> ticks, and fade in from color <red>,
                <green>, <blue> where all tick values are positive decimal
                integers and all colors are hexidecimal values from 0 to f.
                (i is the mnemonic for fade (i)n)

        o <start ticks> <end ticks> <interval ticks> <red> <green> <blue> -
                Fade out the current picture starting at <start ticks> ticks
                after the picture is switched in, end fade at <end ticks>
                ticks after the picture is switched in, fade at intervals
                of <interval ticks> ticks, and fade out to color <red>,
                <green>, <blue> where all tick values are positive decimal
                integers and all colors are hexidecimal values from 0 to f.
                (o is the mnemonic for fade (o)ut)

        c <start ticks> <end ticks> <delay factor> - Cycle color ranges
                starting at <start ticks> ticks after the picture is
                switched in, end cycling at <end ticks> ticks after the
                picture is swithced in, with a delay factor of
                <delay factor> applied to the color cycle rate where
                all values are positive decimal integers.  The color
                cycle ranges and rates are read from the IFF file.
                (c is the mnemonic for (c)ycle)

        script example:

                s picture1
                n 40
                i 0 0 1 0 0 0
                o 20 0 1 f f f
                s picture2
                n 60
                i 0 0 2 f f f
                o 30 0 2 0 0 0
                s picture3
                n 80
                i 0 0 1 0 0 f
                o 60 0 1 0 0 f
                c 0 0 1

                This example will show three pictures.  The first picture
                is "picture1".  It will be shown for 40 ticks, fade in from
                black when it is switched in, and fade out to white 20
                ticks from the time it is switched in.  The second picture
                is "picture2".  I will be shwon for 60 ticks, fade in from
                white when it is switched in, and fade out to black 30
                ticks from the time it is switched in.  The third picture
                is "picture3".  It will be shown for 80 ticks, fade in
                from blue when the picture is switched in, fade out to blue
                60 ticks from the time it is switched in, and will color
                cycle the cycle ranges with a delay factor of 1.  QuickFlix
                will exit after showing this picture since it is the last
                one in the script and it specifies a switch.


Cell Animation:

        Given the architecture of the system, cel animation becomes
        a simple exercise of script manipulation.  The pictures that
        make up the animation can be entered to be shown for a short
        nubmer of ticks, and the tick rate can be adjusted to a reasonable
        rate for animation.  The cache allows rapid switching of pictures
        as long as the pictures are in the cache, otherwise the pictures
        have to be read from the disk.  The cache will hold about 5
        320x200x5 (typical DeluxePaint) pictures on a 512K Amiga, about
        40 on a 2.5M Amiga.  These numbers will vary depending on the
        resolution, interlace, and number of bit planes, because the cache
        is memory dependent.  The more memory, the better, but if the
        display rate exceeds the cache fill rate, the cache will
        eventually get behind, causing a pause in the animation.  There
        are a number of things you can do to optimize animations.
        Additional memory will result in a larger cache and therefore
        a higher cache hit rate.  A hard disk will increase the transfer
        rate of pictures from disk to cache.  Pictures with fewer bit
        planes will decrease the amount of memory needed for each picture.
        Repeating short sequences of pictures in the script will allow
        a higher cache hit rate.  Color cycling can be used to simulate
        animation.


External Triggering:

        External triggering allows a user to interactively control the
        slideshow or animation.

        A joystick connected to port 2 of the Amiga can be used for
        interactive control.  The joystick can increase or decrease
        the tick rate by pushing the joystick up or pulling it back.
        Pressing the joystick button at any time will enable the
        single-step mode.  In this mode, each button press will cause
        a timer tick to occur.  Continuous timer tick mode is re-enabled
        by moving the joystick up or down.  Moving the joystick to the
        right will switch to the next picture in the script.


Known Problems:

        The picture switching rate does not keep up with the tick rate
        at tick rates exceeding about 24 frames per second.

        Fades and color cycling effects do not work on HAM pictures.


Future Enhancements:

        We are continuously trying to improve our product.  Suggestions
        and comments are more than welcome.  We would like to know what
        type of application you are using QuickFlix for and any
        enhancements that you would like to see incorporated into it.
        Our current list of enhancements follow.

                Repeat and reverse for script.
                External device synchronization.
                Additional special effects.
                IFF ANIM support.

                We are currently testing a version which works
                real-time with MIDI!!

Notes:

   What is the logfile for?

       The logfile output option is extremly handy to determine
       problems.  QuickFlix is very quiet about runtime problems.
       This allows QuickFlix to be used in 'live' situations where
       a silently skipped frame is preferable to the audience seeing
       requesters, flashes, and bells, because a file couldn't be found.

       The logfile option causes the creation of a logfile which
       will contain a trace of the general operation of the QuickFlix
       system.  Information will include cache statistics and errors.
       The errors will indicate various nasties such as bad IFF files,
       missing files, memory resource problems, etc.  A good place
       to put the logfile is in the ram disk (i.e. -l ram:logfile).
       The log file will not be created with an icon so it must be
       accessed from the CLI.

   More info on effects:

       In color cycle effects an end time of 0 indicates: cycle
       until next slide.  In fade effects an end time of 0 indicates:
       fade until you reach the target color.

       Color cycling can be used to slow sequences down while still
       giving the screen an 'animated' look.  This will allow the
       caches to refill allowing long uninterrupted sequences in
       a small amount of memory.  Also remember that QuickFlix
       implements real caches.  This means reusing pictures in sequences
       will improve the chances that the specified picture is already
       loaded in the cache and will not be reloaded off the disk.

       QuickFlix allows multiple effects to be active at once.
       You can fade and color cycle simultaneously!

   A note about Caches:

       Since QuickFlix does its own caching it is recommended that
       you do not use Facc, AddBuffers or a ramdisk.  QuickFlix
       will allocate as much memory possible to cache the specified
       pictures.  Since QuickFlix knows the order in which the
       pictures will be displayed it can more effectively cache the
       picture data than either Facc or AddBuffers.

   When run from the WorkBench:

       When QuickFlix is run from the WorkBench it will change its
       working directory into the directory which contains the
       currently being processed script.  This allows scripts
       to contain 'relative' picture filenames if the IFF files
       reside in the directory with the script.

   Bug fixes:

       Since Ver 0.12:
           Color cycling no longer goes into 'turbo' mode when
           color cycling is present on the last slide.

           The caches are correctly managed even if available FAST memory
           contigious space is less than available CHIP memory contigious
           space.  (This caused Ver 0.12 to NOT use FAST memory as
           cache space in many cases)

   Really!

       We are looking for comments about this program, so
       drop us a note and tell us what you think.
SHAR_EOF
cat << \SHAR_EOF > QF.uu.1

begin 666 QuickFlix
M```#\P````````"=`````````)P```!S````%P``!@T*```"JP```;H```*EE
M````2@```&L```'\````6````(X```*T````L````%\```#`````%`````4`V
M````````#````)````%;````$P```$````+>````%````4````)`````30``/
M`(<```'@````1P```$````"%````$0````(```!$````!0```!@```">````&
M:````(4``````````0``````````````00```````````````0`````````:*
M```````````````H`````0````````!$`````````````````````0``````N
M``"R``````````````!3`````````````````````0````````&"````!```-
M``````#\``````````````!;``````````,```"A``````````````!9````4
M```````````O``````````````!B``````````$````;```````````````B/
M```````````````0```````````````:```````````````)````````````S
M`````````0```!X````:`````````````````````````'@```(?````!0``7
M````````````!`````````&/```````````````-````$0````P````1````/
M!```````````````*@```#8````&````Y0```)L````4````(P`````````%F
M````.0`````````+`````````"$`````````,0````@`````````40```,(`Q
M```Z````$````$<`````````(````^D```!S(\````!`(\@```!$(`](YW[^\
M*D`L>0````0CS@```"PCSP```#Q"N0```#B3R4ZN_MHH0"/L`)@````D2JP`J
MK&<``)8@#9"M``0CP`````1A``%B('P`````0J=.N0```518CR!`(&@`K-'(W
MT<@B:``0T\G3R2`Y````0'(`$ADCR0```$S0@5*`0F=2@`)`__Z?P%6`0G<`C
M`"`Y````0"!Y````1"0`4X#4@1^P```@`%."4<C_]A^\`"`@`%."'[$@`"``4
M4<K_^")/+PE.N0````!P`&!F(^P`.@````1A``#280``O"/`````."\`)$`@C
M*@`D9Q`L>0```#`@0"(H``!.KO^"(BH`(&<<)#P```/M3J[_XB/`````2&<-\
M"N6(($`I:``(`*1(>0````!.N0````!P`&`$("\`!"\`3KD```"T2KD````XH
M9RPB.0```"AG!$ZN_]PB.0```$AG!$ZN_]PL>0````1.KO]\(GD````X3J[^J
MAB`?+GD````\3-]_?DYU2.<!!BX\``.`!RQX``1.KO^43-]@@'!D8)Q![`!<8
M3J[^@$'L`%Q.KOZ,3G5#^0```%!P`$ZN_=@CP````#!GP$YU``````/L````%
M`0````````!6````%P````$```'"```!M@```7X```%R```!7````5````%(2
M```!+````1H```#Z````Z@```-P```"B````G````((```!X````3````#@`$
M```H````(@```!P````(`````@````$```"7````7@````$```!-```!0@``W
M``(```"(````T````3(````````#\@```^H````7````````````````````&
M``````````0`````````````````````````````````````````````````$
M``````````````````````````!D;W,N;&EB<F%R>0````/R```#Z0``!@T*G
M3E;__$AY```%2$ZY`````%B/0J=.N0```518CR/`````'B!`(^@`#0H```5$3
M(7P```!B``T*<!0O`$ZY```!K%B/4H!G0'`6+P!.N0```:Q8CU*`9S!P%2\`*
M3KD```&L6(]2@&<@<!<O`$ZY```!K%B/4H!G$'`8+P!.N0```:Q8CU*`9@9P.
M`$Y>3G5P`"\`+P!.N0````!0CR/`````&DJ`9@9P`$Y>3G5P`"!Y````&A`H0
M``]R`>&A<``O`"\`(\$```$(3KD`````4(\CP````0!*@&8&<`!.7DYU<``@N
M>0```0`0*``/<@'AH4AY````.B/!```!#$ZY```"A%B/2D!F!G``3EY.=2\\6
M```G$$AY```&6G`!+P!(>0```&=.N0````!/[P`0(\`````B2H!F!G``3EY.:
M=2\\`%```$ZY```!@%B/+4#__`@``!9G#C/\``$```$4<`!.7DYU,_P``@``O
M`10O/```)Q!(>0``"$YP`B\`2'D```!L3KD`````3^\`$"/`````)DJ`9@9P@
M`$Y>3G4O/``P``!.N0```8!8CRU`__P(```59PXS_``!```!%G``3EY.=3/\(
M``(```$6+SP``"<02'D```DF<`,O`$AY````<4ZY`````$_O`!`CP````"I*K
M@&8&<`!.7DYU+SP`D```3KD```&`6(\M0/_\"```%V<.,_P``0```1AP`$Y>6
M3G4S_``"```!&'`#+P!P""\`3KD```!\4(\CP````CA*@&8&<`!.7DYU+SP`5
M`0``+SP```$$3KD```!\4(\CP````39*@&8&<`!.7DYU<`%.7DYU2KD```$`F
M9PXO.0```0!.N0```)Q8CTJY````&F<.+SD````:3KD```"<6(]*N0```CAGJ
M#B\Y```".$ZY````Y%B/2KD```$V9PXO.0```39.N0```.18CW`4+P!.N0``<
M`<!8CW`6+P!.N0```<!8CW`5+P!.N0```<!8CW`7+P!.N0```<!8CW`8+P!.9
MN0```<!8CR!Y````'B%Y```%1``-"DYU+SD````H+SD````:+SD````02'D`@
M``!V3KD```"(3^\`$$AY````BDZY````B%B/2'D```#53KD```"(6(](>0``A
M`1].N0```(A8CTAY```!+TZY````B%B/2'D```%W3KD```"(6(](>0```<).^
MN0```(A8CTAY```"#DZY````B%B/2'D```)23KD```"(6(](>0```F5.N0``I
M`(A8CTAY```"JDZY````B%B/2'D```+#3KD```"(6(](>0```PY.N0```(A8'
MCTAY```#(DZY````B%B/2'D```-M3KD```"(6(].=7`A+P!(>0```[5.N0``5
M`M10CR/`````+DJ`9@1P`$YU<"$O`$AY```#QTZY```"U%"/(\`````R2H!FY
M!'``3G5*>0``!4)G('`A+P!(>0```]A.N0```M10CR/`````-DJ`9@1P`$YU@
M+SP```#H2'D```6N3KD```!P4(\3^0``!:X```6L$_P`"```!:XO/````.A(R
M>0``!:Y.N0```0!0CS/\``$```6J$#D```9G"````&<(,_P!D````#A(>0``8
M`#).N0```+18CR/````%I$J`9@1P`$YU+SD```6D3KD`````6(\SP```!:A*P
M0&8$<`!.=2\\``$``7`B+P!.N0```$!0CR/````!!$J`9@1P`$YU('D```$$>
M$7P`!``(0B@`#G`?+P!.N0```:Q8CR!Y```!!!%```]R`!(H``]2@682<"(OO
M`"\(3KD```!84(]P`$YU<``@>0```000*``/<@'AH4*G(\$```$03KD```%4L
M6(\@>0```00A0``0T/P`%"\(3KD`````6(\@>0``!:0A>0```00`5B\\```$A
M0"\(3KD```"<4(]P`4YU2KD```$$9PXO.0```01.N0```)Q8CR!Y```%I$*H-
M`%9*>0``!:AG!DZY````:DJY```%I&<.+SD```6D3KD````46(]*>0``!:IGQ
M'A/Y```%K```!:XO/````.A(>0``!:Y.N0```0!0CTJY````-F<.+SD````V(
M3KD```)06(]*N0```#)G#B\Y````,DZY```"4%B/2KD````N9PXO.0```"Y..
MN0```E!8CTYU2KD````J9SH,>0`!```!&&<B+SP``0``+SD````J3KD```&4%
M4(\O/`"```!.N0```8!8CR\Y````*DZY````KEB/2KD````F9SH,>0`!```!X
M%F<B+SP``0``+SD````F3KD```&44(\O/``@``!.N0```8!8CR\Y````)DZYC
M````KEB/2KD````B9SH,>0`!```!%&<B+SP``0``+SD````B3KD```&44(\O?
M/`!```!.N0```8!8CR\Y````(DZY````KEB/3G5.5O_T0J[_]$AY```#Y2\N4
M``PO+@`(3KD`````3^\`#"U`__P,@/____]G``$-"G(H!($````(:P``UK"[$
M&`AF\$[[&`8````_8```O@```'1@``!&````<F```#(```!N8```(````&Q@2
M```"+SD````$2'D````Z3KD`````4(]@AD)Y````(&``_WXS_``!````,&``M
M_W)(;O_X2'D```/K+SD````$3KD`````3^\`#%.`9QI(>0```^Y(>0``!I9.[
MN0````!0CW``3EY.=4JN__AK#0H,K@```#S_^&\:2'D```002'D```:63KD`7
M````4(]P`$Y>3G4@+O_X,\`````J8`#_`G``3EY.=4AY```$,DAY`````$ZY?
M`````%"/2'D`````3KD```+>6(]P`$Y>3G4@.0````"PK@`(;1I(>0``!%!(P
M>0``!I9.N0````!0CW``3EY.=2`Y`````.6`(&X`#-'`("X`")"Y`````#/`5
M```!+#/````!*B/(```!)B/(```!(G`!3EY.=4IY```!*FX,2GD````P9@1P`
M`&`"<`%.=4Y6__R1R")N``@BB"U(__Q*>0```#!G,$IY```!*FXH2GD```5"8
M9PPC^0```3(```$N8`T*(_D```$F```!(C/Y```!+````2I*>0``!4)G6DIY@
M```!*F]P('D```$N+6@`!/_\(!`B;@`((H`O.0```38O`$ZY```!!%"/('D`B
M``$V4(@O"$ZY```#X%B/('D```$V4(A0N0```2Y3>0```2HCR`````)@'DIY<
M```!*F\6('D```$B+5#__%BY```!(E-Y```!*B`N__Q.7DYU3E;__B)N``@@@
M:0`4("@`%%.`(4``%%?`1`!(@$C`TOP`&"\)/4#__DZY```"+%B/+RX`"$ZYL
M````Y%B/,"[__DY>3G5.5O_\+SP``@``+SD````B3KD```&44(\O/``0``!.O
MN0```8!8CR\Y```!`$ZY```"%%B/+4#__$J`9PT*+P!A`/]\6(]@X'`!+P!.>
MN0````!8CTJ`9O!.N0``"-).7DYU3E;_`"\Y```%I$ZY`````%B/2KD````LA
M9Q0O.0``!:0O.0```"Q.N0```%A0CTIN`!)G1$JY````*F<.+SD````J3KD`.
M``"N6(]*N0```"9G#B\Y````)DZY````KEB/2KD````B9QXO.0```").N0``8
M`*Y8CV`.2FX`#F<$80#_(&$`^Y9*;@`69QI"IR\N``AP'B\`+SD```6D3KD`8
M``#N3^\`$$IN`!)G"$'Y```$\F`&0?D```3Y+RX`""\(2'D```3B2&[_`4ZY"
M`````$_O`!!(;O\!3KD```%F6(].N0```K!.N0```91.N0```A9*>0``!4)G^
M#B\Y```!&DZY```!(%B/2FX`$F<8<"HO`"\Y```$WD*G3KD````H3^\`#&`(&
M80#W!F$`^D!.7DYU+SD```6D3KD```)06(\O/``(```O.0```"I.N0```910J
MCR\\``@``"\Y````)DZY```!E%"/+SP`"```+SD````B3KD```&44(].=4Y6J
M_[!(>0``!I9(>0``!/I(;O^P3KD`````3^\`#$*G2'D```6I2'D```5M2'D`-
M``5*2'D```472'D```402'D```4/2&[_L'`>+P`O.0``!:1.N0```.Y/[P`HE
M3EY.=4Y6_SA(>0``!I9(>0``!>)(;O\X3KD`````3^\`#"\Y````$$AY```%+
M]TAN_\1.N0````!/[P`,+SD````02'D```8C2&[_B$ZY`````$_O``Q"ITAY;
M```'+$AY```'*TAY```&_$AY```&Y4AY```&LTAY```&H4AY```&H$AN_XA(C
M>0``!FA(>0``!F=(;O_$2'D```8Q2'D```8P2&[_.'`H+P`O.0``!:1.N0``)
M`.Y/[P!$3EY.=4Y6_^P@;@`(#*@````"`!QL&DAY```'34AY```&EDZY````5
M`%"/<`!.7DYU(&X`""`H`!Q3@"!H`"10B#/````!+#/````!*B/(```!,B/(6
M```!+DJ09PP@:``$$!`,```@9AI(>0``!V5(>0``!I9.N0````!0CW``3EY.N
M=2!Y```!+B\03KD```$@6(\@>0```2XO*``$+4#__$ZY`````%B/+R[__"U`)
M__A.N0```2!8CTJN__AF&DAY```'ADAY```&EDZY`````%"/<`!.7DYU(F[_T
M^"!I`#9(>0``![(O""U(__1.N0```"A0CRU`__!*@&<``()(;O_L2'D```>T*
M+P!.N0````!/[P`,4X!G)DAY```'MTAY```&EDZY`````%"/+R[_^$ZY````]
M%%B/<`!.7DYU2J[_[&L-"@RN````//_L;R9(>0``!]I(>0``!I9.N0````!0+
MCR\N__A.N0```!18CW``3EY.=2`N_^PSP````"I(>0``!_PO+O_T3KD````H=
M4(\M0/_P2H!G!D)Y````($AY```'_B\N__1.N0```"A0CRU`__!*@&<0+P!(%
M>0```#I.N0````!0CR\N__A.N0```!18CW`!3EY.=4Y6__Q*>0``!4)G#"\N(
M``Q.N0```2!8CT*Y```"/$AY```(`"\N``A.N0````!0CRU`__Q*@&8``(A*2
MN0```"QG&B\Y```%I"\Y````+$ZY````6%"/0KD````L2GD```5"9R`@;@`(7
M$!!*`&862'D```@"2'D```$Z3KD`````4(]@&B\N``A(>0``"#1(>0```3I.Y
MN0````!/[P`,<`$O`$*G+P!(>0```3IA`/KD3^\`$'`!+P!.N0````!8CR\NO
M``A(>0``"%=(>0```3I.N0````!/[P`,2'D```$Z3KD```%F6(\@+O_\3EY.)
M=4Y6_])(YR``</\M0/_V<`!(>0`````]0/_N/4#_\$ZY`````%B/2JX`"%?`6
M1`!(@$C`+SD````H+SD````:+SD````02'D```AI2'D```5>,\````5"3KD`U
M````3^\`%&$`\_I*0&9.2'D```BB2'D````P3KD`````4(]*>0``!4)G(DAYT
M```(P4AY````,$ZY`````%"/+SP``!``3KD```&`6(]A`/5F<`$O`$ZY````M
M`%B/80#RO$IY```%0F<V+SD````X80#\<%B/2D!F%&$`^ZQA`/4V<`$O`$ZYP
M`````%B/(GD````X(&D`)"/0```!&F`F+RX`#"\N``AA`/:"4(]*0&8480#[A
M%&$`]/YP`2\`3KD`````6(]A`.]"2D!F)'`!+P!P`"\`+P!(>0``"-AA`/EJN
M3^\`$'`!+P!.N0````!8CS`Y````($I`9A1P`R/````%/B/Y````#```!3I@)
M9B\\``(`!4ZY````<%B/L+D````0921P!2\`3KD```!P6(]R`R\!+T``"$ZY=
M````<%B/(B\`!+*`9!I">0```"!P`R/````%/B/Y````#```!3I@$G`%(\``!
M``4^(_D````<```%.B\Y````*"\Y````&DAY```)#4AY```!.DZY`````$_OD
M`!!(>0```3I.N0```698CR\\``(``TZY````<%B/<@T*XJAR`R\!+T``"$ZYE
M````<%B/<@T*XJ@O/``"``4O0``,3KD```!P6(]R#0KBJ'(%+P$O0``03KD`U
M``!P6(]R#0KBJ"\`+R\`$"\O`!`O+P`02'D```DR2'D```$Z3KD`````3^\`@
M&$AY```!.DZY```!9EB/<`T*(CD````,X*DD.0```!S@JB\"+P%(>0``"79(,
M>0```3I.N0````!/[P`02'D```$Z3KD```%F6(]*>0```"!G"$'Y```)RF`&?
M0?D```G-+PA(>0``"9](>0```3I.N0````!/[P`,2'D```$Z3KD```%F6(](6
M>0```#I(>0``"=%(>0```3I.N0````!/[P`,2'D```$Z3KD```%F6(\O/``$;
M```O.0```"I.N0```910CR\\``0``"\Y````)DZY```!E%"/+SP`!```+SD`<
M```B3KD```&44(](;O_B80#US%B/+R[_XB\`(\````$>80#[G%"/(\````4VA
M2GD````B9@1A`/A,+SD```6D3KD```"R6(\CP````"Q*@&8B<`$O`$*G+P!(&
M>0``">!A`/;P3^\`$'`!+P!.N0````!8CTIN__!F%'``+P`O`$ZY```!:%"/#
M+4#_^F`0+R[_]DZY```!@%B/+4#_^B`N__H"@`#@``!*@&<^+R[_^DAY```-Y
M"@-(>0```3I.N0````!/[P`,<``O`'`!+P!"ITAY```!.F$`]GI/[P`0<`(O^
M`$ZY`````%B/("[_^@*``0`0`$J`9@`#SB`N__K`N0```0Q*@&<H+SD```$`8
M3KD```(46(\M0/_J2H!G$B\`80#UC%B/2D!GWD)N_^Y@V"`N__K`N0```0A*,
M@&<&3KD```&4("[_^L"Y```!$$J`9P``\B\Y```!!$ZY```"%%B/+4#_YDJ`*
M9P``VB!`#*@```0``!1F-C(H`!@,00!%9Q0,00`S9@``K#`H`!H(```#9P``^
MH"\\```0`"\Y````'DZY```!E%"/8```B"!N_^8,J````$``%&9X2GD````B"
M9TPO.0``!:0O.0```"Q.N0```%A0CT*Y````+")N_^8@:0`<,"@`)DI`9A8O*
M/```$``O.0```!Y.N0```910CV`P80#V?D)Y````(F`D(F[_YB!I`!PP*``FK
M2D!F%"\\```0`"\Y````'DZY```!E%"/+R[_YDZY```"*%B/8`#_$DIN__!F8
M`/XJ2F[_[F8`_B)(;O_R+SD```4Z+SD```4^+SD```$`+SD```4V+SD````""
M3KD```,D3^\`&`*```#__P2``````6T``A(,@`````=L``((Y8!.^P@"8```K
M&F```%A@``%$8`#]QF``_<)@`/V^8`#]NDIY````(%?`1`!(@$C`(&[_\C%`I
M`"9*:``H9Q!A`/+L2D!G""!N__)":``H+R[_\B\Y````#DZY```!_%"/8`#]$
M>$AN_^)A`/+:6(\CP````1Y*@&8``+0]?``!__!*>0```")G`/U2+SD```6D>
M+SD````L3KD```!84(]"ITZY````1%B/+SD```6D3KD```(26(\CP````"Q*9
M@&8B<`$O`$*G+P!(>0``#0H?80#SZ$_O`!!P`2\`3KD`````6(\O.0```1!.6
MN0```8!8CR\Y```%I"\Y````+$ZY````6%"/0KD````L+SD```$0+SD````>J
M3KD```&44(]A`/3*0GD````B8`#\L"\Y```%-DZY```"6EB/+R[_XB\Y```!7
M'F$`]^!0CR/````%-F``_(@]?``!_^Y*>0```")G`/QX+SD```6D+SD````L#
M3KD```!84(]"ITZY````1%B/+SD```6D3KD```(26(\CP````"Q*@&8B<`$OM
M`$*G+P!(>0``#0I"80#S#D_O`!!P`2\`3KD`````6(\O.0```1!.N0```8!8)
MCR\Y```%I"\Y````+$ZY````6%"/0KD````L+SD```$0+SD````>3KD```&4T
M4(]A`//P0GD````B8`#[UDAY```-"FE(>0````!.N0````!0CTAY`````$ZYA
M```"WEB/8`#[L"\Y```%-DZY```"6EB/""X``/_Z9PA!^0``#0J)8`9!^0``7
M#0J9<``O`"\`<`$O`"\(80#R6D_O`!!(>0````!.N0```/A8CRU`_]Y*@&<2$
M($#0_``<+PA.N0```.18CV#80J=.N0````!8CTS?``1.7DYU``````/L````M
M=0````,``!?4```7S```%Y```!=H```76@``%RP``!<:```6]```%HX``!:`5
M```64@``%D```!8:```58```%,@``!2Z```3H```$TH``!,X```2G```$G(`:
M`!)J```28@``$C8``!'\```1>@``$70``!%N```0T```$"0``!`(```/Y```S
M#]X```_8```/T@``#W0```\X```/'@``#P8```[X```.Z@``#LX```YT```.K
M5```#B0```WN```-V```#;8```V4```-/@``#.P```RX```,L@``#*@```RBQ
M```,F```#)(```R,```,A@``#(````QZ```,=```#%X```Q8```,1```##X`F
M``PJ```+_@``"_@```OR```+[```"^8```O@```+R@``"U0```L"```-"O8`@
M``T*[@``#0IB```-"E0```EP```(W@``"+X```AF```(,@``"`0```?:```'J
MP```![(```<L```$N@``!+0```1(```$(```!`````/L```#W@```]````/"^
M```#M````Z8```.8```#B@```WP```-N```#8````U(```-$```#-@```R8`9
M``,@```#&@```Q0```'8```!>@```1P````N````HP````0``!>V```7I```E
M%Y8``!=N```75```%T8``!<,```6[@``%M0``!;(```6M@``%I0``!9Z```6%
M;```%C(``!84```5^```%5H``!54```53@``%4@``!2T```41```%#@``!0DG
M```3^```$^X``!/````3I@``$RH``!,8```3#```$K(``!*B```2B```$G@`[
M`!),```2/```$A(``!("```1D```$8```!%H```17@``$50``!%*```1````/
M$/8``!"0```06@``$!P```_P```/Z@``#XH```]Z```/5@``#SX```\D```/*
M#```#O(```ZT```.*@``#?0```V:```-:```#5@```U$```-*```#2(```T<F
M```-%@``#/(```S&```,)```#`P```O$```+=```"SP```LT```-"M@```T*5
M7```#0I&```-"@@```F0```)B@``"8````EX```):@``"60```E<```)2@``F
M"3H```DF```)'@``"18```D0```)#```"08```D"```(^@``"/8```CN```(^
MY@``"+8```BJ```(I```")X```B8```(;```"$8```@X```(#0H```?@```&6
MZ@``!J@```9F```&#0H```7^```%^@``!?(```7D```%W```!<X```7$```%%
MM@``!:X```62```%C```!70```5F```%5@``!2X```42```%!```!.0```36E
M```$R```!*8```2@```$D```!(0```1\```$>```!&H```0\```##0H```*ZV
M```"L@```G@```)P```"6@```B````(2```!P@```;0```%D```!5@```/0`:
M``#@````S@```,`````H````!@````,```",````#```!80```^^`````@``/
M`)<````6```%;````#@````3````'@```P0``!2,```4Y```%18``!::```78
M=````)H```"L```"A@```HX```#N```'E@``#I```!*6```!+```!N````;XT
M```'%```">P```T*H@``#0JJ```+L```$NX```&*```&G@``!K8```;2```-5
M"HP```T*E```"YP``!+:```!Z```!EP```9T```&D```#0IV```-"GX```N(D
M```2Q@```C8```*<```"I```!`X```9$```&3```!"X```8N```&-@``!%8`^
M``88```&(```#L@```^P```7[@``%=P````&````EP```#H```!*````6@``*
M`&H```!Z```%)@````4```"-````D@```,8```)^```"E```!;P````-````=
M#@```/H```A,```7J@``"QH```^0```1E@``$A@``!)2```2C@``$K@```LHS
M```4+@``"RX````!````"````1(````)````DP```2(```&````!W@``!I8`2
M``;8```'&@``#0J$```-"IH```T*L`````L```"7```!0@```:````'^```&=
MB```!LH```<,```-"@```!`^```3@@``%G(``!=,`````0````4```%P````'
M`0````L```'.````"````!0```(N```"4@```JH```+````)T@``&`P```E4%
M```)Q@````4```"7```"S````M@```+D```"\````OP````1````(P```RP`,
M``,\```#2@```U@```-F```#=````X(```.0```#G@```ZP```.Z```#R```W
M`]8```/D```#\@``!-P```76`````P```)<```0&```$)@``!$X````!````1
MF@``!'`````"````F@``!)8```80`````0```)H```3``````0```)<```3\1
M`````0```)<```5(`````0```)H```6B`````0```)H```7J`````P```)<`+
M``8F```&/```!E(````/````EP``!GH```:\```&_@``"?(```N.```+H@``S
M"[8``!+,```2X```$O0``!22```4Z@``%1P``!:@```7>@````$````@```';
M.@````(````B```'D```!\8````%````90``!YP```SX```-2@``#:````Z6[
M````%0```!(```>F```.;@``$.H``!%"```26@``%:P```@B```.3@``$/P`<
M`!%0```2(@``$18``!%D```2*@``$QX``!2L```4^```%@T*```6K```%N0`3
M`!>&`````@```%D```?,```-X````!8```!6```'Y@``"!````@^```(<@``I
M"PP```O4```,-```#$X```QH```-^@``#C````\J```/1```#X````_V```1Z
MA@``$@@``!)"```2?@``$J@``!.L```7G`````,````A```(6@``"(````B28
M`````0```)8```E"`````P```)<```T*#@``$_X``!1*````!````!H```T*%
M+```#0HX```+(@``%68````!````F@``#0I,````!P```)H```T*:```#OX`-
M`!3````6(```%H8``!;Z```78`````<````F```-"MX```P2```,S```"WH`*
M`!,P```6.```%Q(````$````E@``"T(```U@```-A@``#L`````!````F@``*
M"UP````!````F0``#78````#````F0``#<(```Y>```.?@````,```"9```.1
M!@``#CP```ZB`````P```#X```[8```6O```%[P````-"@```#(```]H```0<
M3@``$'X``!"V```0X@``$UP``!/2```69```%SX``!@8`````@```',``!`.Z
M```0*@````(```!!```0%```$#`````"`````0``$&(``!"&````!P```)<`*
M`!$.```1(@``$3(``!&D```1N```$<X``!'B`````0```)<``!-P`````0``!
M`)<``!4H`````0```)<``!7B`````@```)H``!8J```7!`````$```"7```7)
M]`````````/R```#Z@```JL```````!1=6EC:T9L:7@`````!C`N,3,`````;
M`!0P,2U397`M.#<`````'@`````````````"@`#(__\```````(00```````>
M```````%7@```````````````````````4)A<V4`0VAI<`!38W)N`%1I8VL`$
M)3,P<R`M(%)E=B`E<R`@("5S#0H`("`@("!#;W!Y<FEG:'0@J2`Q.3@W("!*!
M969F($MU;GIE;&UA;BP@4F]D;F5Y($EW87-H:6YA+"!486ME<VAI(%-U9V%N*
M=6UA#0H-"@`@("!)9B!Y;W4@;&EK92!T:&ES('!R;V=R86T@<&QE87-E(&9EW
M96P@9G)E92!T;R!S96YD(&$@9&]N871I;VX@*"0Q,"XP,"D-"@`@("!P87EA#
M8FQE('1O.@T*`"`@("`@("`@("`@4F]D;F5Y($EW87-H:6YA("`Q,3,S,R!9@
M;VQA;F1A($%V92X@($YO<G1H<FED9V4L($-A+B`Y,3,R-@T*#0H`("`@66]U]
M(&-A;B!M86ME(&%S(&UA;GD@8V]P:65S(&]F('1H:7,@<')O9W)A;2!A<R!YN
M;W4@;&EK92!A;F0@9VEV92!I="!T;PT*`"`@(&%L;"!Y;W5R(&9R:65N9',L=
M(&]N('1H92!C;VYD:71I;VX@=&AA="!Y;W4@86)I9&4@8GD@=&AE<V4@9W5I!
M9&5L:6YE<SH-"@T*`"`@("`@(%1H92!C;W!Y*',I("AI;F-L=61I;F<@9&]CG
M=6UE;G1A=&EO;BD@;75S="!R96UA:6X@=6YM;V1I9FEE9`T*`"`@("`@(&%N<
M9"!I;G1A8W0N#0H`("`@("`@5&AE(&-O<'DH<RD@8V%N;F]T(&)E('-O;&0@(
M9F]R(&UO;F5Y(&]R('!R;V9I="P@97AC97!T(&)Y('1H90T*`"`@("`@(&]RM
M:6=I;F%L(&%U=&AO<G,N#0H`("`@("`@070@=&AE('1I;64@;V8@=')A;G-FG
M97(L('1H92!N97<@<F5C:7!I96YT*',I(&%G<F5E*',I('1O('1H92!A8F]V)
M90T*`"`@("`@(&=U:61E;&EN97,N#0H-"@`@("!3=6=G97-T:6]N<R!A;F0@O
M8V]M;65N=',@;V8@86YY(&MI;F0@8V%N(&)E('-E;G0@=&\@=&AE(&%B;W9EM
M(&%D9')E<W,L#0H`("`@=&AR;W5G:"!#25,@*#<V,C(T+#$P,BD@;W(@0FEXB
M("AR:7=A<VAI;F$I+B`@5V4@:&]P92!Y;W4@96YJ;WD@=&AI<R$`:6YT=6ET%
M:6]N+FQI8G)A<GD`9W)A<&AI8W,N;&EB<F%R>0!I8V]N+FQI8G)A<GD`;#IT#
M.FX`)60`+70@<F5Q=6ER97,@9&5C:6UA;"!V86QU92`H,"XN-C`I`"UT('9A)
M;'5E(&UU<W0@8F4@:6X@<F%N9V4@*#`N+C8P*0!O<'1I;VX@<')O8V5S<VENL
M9R!S8W)E=V5D('5P#0H`375S="!S=7!P;'D@82!S8W)I<'0@9FEL92!N86UE]
M+@``6!`@3&EK92!/2"!-62!'3T0A("`@4W5B+71A<VL@<F5Q=65S=&5D(%!!@
M3DE#(0`!`%@:5&AE('-Y<W1E;2!)4R!615)9(%5.4U1!0DQ%('!R97-S(&UO]
M=7-E(&)U='1O;B!T;R!E>&ET+@``````!'!3:'5T9&]W;CH@)7,@)7,`4$%.M
M24,A``!"860@8V]M;6%N9"!L:6YE.B`E<P``57-A9V4Z`"`@("!1=6EC:T9L+
M:7@@6RUN72`H;F\@<V5P97)A=&4@9F%S="!M96UO<GD@8V%C:&4I`"`@("`@6
M("`@("`@("`@6RUL(#QL;V<@9FEL92!N86UE/ET`("`@("`@("`@("`@("!;I
M+70@/'1I8VMS('!E<B!S96-O;F0^72`H+70@,"`]('5S92!J;WES=&EC:RD`U
M("`@("`@("`@("`@("`\<V-R:7!T(&9I;&4@;F%M93X@6SQS8W)I<'0@9FELW
M92!N86UE/BXN+ET`5V]R:V)E;F-H($5R<F]R.B`E<RX`<V-R:7!T(&9I;&4@M
M<')O:F5C="!A;&]N9R!W:71H('1H92`E<R!T;V]L+@!T:&4@)7,@=&]O;"X`N
M`%=O<FMB96YC:"!O<&5R871I;VX@<F5Q=6ER97,@82`G<VAI9G0M<V5L96-TW
M:6]N)R!O9B!A``!3:&EF="US96QE8W0@;VYE(&]R(&UO<F4@<V-R:7!T<R!BN
M969O<F4@9&]U8FQE(&-L:6-K:6YG``!686QI9"!4;V]L(%1Y<&5S.@`@("`@M
M(&X]/&%N>71H:6YG/B`H;F\@<V5P97)A=&4@9F%S="!M96UO<GD@8V%C:&4I)
M`"`@("`@;#T\;&]G(&9I;&4@;F%M93X`("`@("!T/3QT:6-K<R!P97(@<V5CS
M;VYD/B`H=#TP(#T@=7-E(&IO>7-T:6-K*0``("`@("!!;&P@;W1H97)S('=I9
M;&P@8F4@:6=N;W)E9"X`3F\@<V-R:7!T(&9I;&4@<V5L96-T960`0V%N;F]TS
M('-E;&5C="!A(&1E=FEC92!O<B!D<F%W97(`0V%N;F]T(&]P96X@=&AE(&9I<
M<G-T('-E;&5C=&5D('!R;VIE8W0@24-/3@!T`"5D`'0](')E<75I<F5S(&1E)
M8VEM86P@=F%L=64@*#`N+C8P*2X`=#T@=F%L=64@;75S="!B92!I;B!R86YG1
M92`H,"XN-C`I`&X`;`!R`$$@<V5L96-T960@=V]R:V)E;F-H(&]B:F5C="!I!
M<R!N;W0@82!S8W)I<'0@9FEL92X`0V%N(&YO="!O<&5N('1H92!S8W)I<'0@3
M9FEL93H@)R5S)P!38W)I<'0@9FEL93H@)R5S)P`@("5S("T@4F5V("5S("5SW
M("`@(*D@,3DX-R!+=6YZ96QM86XL($EW87-H:6YA+"!3=6=A;G5M80!#86XG]
M="!O<&5N(')E<75I<F5D(&QI8G)A<FEE<PT*``T*4')E<W,@0W1R;"U#('1O'
M(&5X:70-"@!%<G)O<B!D=7)I;F<@:6YI=&EA;&EZ871I;VXL('!R;V)A8FQY3
M(&]U="!O9B!M96UO<GDN`$EN:71I86QI>F%T:6]N(&-O;7!L971E+B!2978@P
M)7,@*"5S*0!-96T@:6YF;SH@("!#:&EP(&-O;G1I9R]T;W1A;"`E;'5++R5L2
M=4L@1F%S="!C;VYT:6<O=&]T86P@)6QU2R\E;'5+`$-A8VAE(&EN9F\Z($-H[
M:7`@;6EN("5L=4LL($9A<W0@;6EN("5L=4L`("`@("`@("`@("`@4V5P87)AY
M=&4@9F%S="!M96UO<GD@8V%C:&4Z("5S`$]N`$]F9@!,;V<@9FEL93H@(B5ST
M(@!#;W5L9&XG="!S970@=7`@;&]A9&EN9R!R97%U97-T97(N`%-U8BU487-KI
M('-I9VYA;&5D($1%051(("5L>`!#;W5L9&XG="!S970@=7`@=V%I=&EN9R!RL
M97%U97-T97(N`$-O=6QD;B=T('-E="!U<"`R;F0@=V%I=&EN9R!R97%U97-TM
M97(N`&)A9"!R971U<FX@9G)O;2!G97138W)I<'1";&%T*"D`5&%S:R!R97%U9
M97-T960N`%5S97(@<F5Q=65S=&5D+@````````/L````!0````,```3>````;
M*````!H````0`````@````$````$````3`````````/R```#ZP```;H```/RX
M```#Z0```J5.5O_\2'D```%23KD```#X6(\M0/_\2H!F3G`H+P`O.0```49.6
MN0```4)0CRU`__Q*@&8D2'D`````2'D`````3KD`````4(](>0````!.N0``'
M`MY8CV`0(&[__#%\``$`&%*Y```!:B`N__Q.7DYU3E8``"!N``A*:``89Q(O@
M"$ZY````Y%B/4KD```%N8!(O+@`(2'D```%23KD```#,4(].7DYU3E;_^'`2]
M+P!.N0```:Q8CU*`9T!P$R\`3KD```&L6(]2@&<P<!$O`$ZY```!K%B/4H!G]
M('`0+P!.N0```:Q8CU*`9Q!P%"\`3KD```&L6(]2@&8&<`!.7DYU<``O`"\`L
M3KD`````4(\CP````!)*@&8&<`!.7DYU<``@>0```!(0*``/<@'AH7``+P`O5
M`"/!```!2DZY`````%"/(\````%&2H!F!G``3EY.=7``('D```%&$"@`#W(!>
MX:$@>0```#(CZ``B```!<DAY```!`"/!```!3DZY````9%B/0?D```$2(\@`L
M``$`+PA.N0````!8CR/\```!=@```39P("\`3KD```#`6(\CP````3I*@&8&T
M<`!.7DYU<"`O`$ZY````P%B/(\````$^2H!F!G``3EY.=7`@+P!.N0```,!8A
MCR/````!%DJ`9@9P`$Y>3G4C_````8(```%Z2'D```%23KD`````6(]"KO_\H
M#*X````#__QL4G`H+P`O.0```49.N0```4)0CRU`__A*@&8H2'D````@2'D`S
M````3KD`````4(](>0````!.N0```MY8CW``3EY.=2\N__AA`/X-"EB/4J[_$
M_&"D<`%.7DYU2'D```!"3KD```%F6(](>0```5).N0```BQ8CTJY```!%F<.W
M+SD```$63KD```#46(]*N0```3YG#B\Y```!/DZY````U%B/2KD```$Z9PXO#
M.0```3I.N0```-18CTJY```!1F<.+SD```%&3KD```"<6(]*N0```!)G#B\Y@
M````$DZY````G%B/+SP`(```+SD````>3KD```&44(]"ITZY```!@%B/3G5.1
M5O_X+SP``@``+SD````J3KD```&44(\O/``0``!.N0```8!8CR\Y```!1DZYG
M```"%%B/+4#_^$J`9PPO`$ZY````Y%B/8-XO.0```!).N0```A18CRU`__Q*-
M@&<,+P!.N0```BA8CV#>+SD```%R3KD```!`6(].N0```%1*N0```01G#B\Y!
M```!!$ZY````K%B/2KD```$(9PXO.0```0A.N0```*Q8CTJY```!8&<.+SD`L
M``%@3KD```(H6(\O/``0```O.0```").N0```910CTY>3G5.5O_X+7D```$$N
M__PM>0```0C_^)'((\@```$((\@```$$2'D```$22'D```$`3KD````H4(](*
M>0```0!.N0```!18CTAY```!$DZY````F%B/2'D```$`3KD```!`6(].N0``-
M`%1*KO_\9PPO+O_\3KD```"L6(]*KO_X9PPO+O_X3KD```"L6(].7DYU+SD`3
M``%R3KD```!`6(].=4AY```!`$ZY````0%B/3G5.5O_R2.<@`"UY```!8/_Z[
M(^X`"````6`B;@`((&D`%#`H`!(SP````3(SP````1`SZ``,```!*C/H``X`^
M``$L,^@`"````2XSZ``-"@```3!P0"\`(GD```$Z+RD`!"\H``1.N0```NQ/2
M[P`,(FX`""!I`!0B>0```19P0"\`+RD`!"\H``1.N0```NQ/[P`,(FX`""!I8
M`!1P`#`H`!!R`#(H``QT`#0H``XO`B\!+P!(>0```8).N0```'A/[P`00F[_R
M_B)N``@@:0`4,"@`$#(N__ZR0&1,2,'E@2)!T_P```&*<``P*``,<@`R*``.T
M+P$O`"](`!`O20`,3KD```'T4(\R+O_^2,%.N0`````B;P`((%'1P")O``0B$
MB%)N__Y@H"\N``A.N0``!=Q8CV$`_B!*KO_Z9PPO+O_Z3KD```(H6(],WP`$Y
M3EY.=4Y6__1A`/H&+4#__$J`9R@@0#%\``$`%#%\``(`%B%Y```!0@`>+P`OH
M.0```!9.N0```?Q0CV`B2'D```!+2'D`````3KD`````4(](>0````!.N0``O
M`MY8CU)Y```!9%*Y```!0DIY```!JF<8+SP``!``+SD````>3KD```&44(].\
M7DYU#'D``````61C``"R+SD````23KD```(46(\M0/_X2J[_^&9,(#D```%*'
M`(```@``+P!.N0```8!8CRU`__0(```19Q@O/``"```O.0```"9.N0```910_
MCTY>3G4O.0```!).N0```A18CRU`__A@KB!N__A*:``H9Q`S_``!```!JB!HG
M`!1*J``<2J[_^&<B4WD```%D#'D``````61C`/]@+R[_^$ZY```"*%B/8`#_"
M4%*Y```!9DY>3G4O+O_X80#]:EB/3EY.=4Y6``!P`"!N``@P*``6#(`````#*
M9QP,@`````)G#@R``````68280#^B&`N80#]%&`H80#]'F`B2'D```!M2'D`G
M````3KD`````4(](>0````!.N0```MY8CTY>3G5.5@``(&X`""`H`!ZPN0``M
M`4)G"$)H`"9.7DYU(&X`""\H`").N0``!7)8CR)N``@@:0`B<``P*``0#(``,
M```#9SH,@`````)F/"!N``@P*``F2D!F#"!H`"(Q?``#`!!@1B)N``@@:0`BW
M2J@`%F8X0FD`)C%\``,`$&`L(&X`"$)H`"9@(DAY````@DAY`````$ZY````V
M`%"/2'D`````3KD```+>6(].7DYU3E;_\&$`^%)*0&822'D```"73KD```%FC
M6(]A`/H,2'D```"M3KD```%F6(\O/``0```O.0```!Y.N0```910CR\\``4`]
M`$ZY```!@%B/+4#__`@``!!G!&$`^<YA`/=4+4#_\$J`9R`@0#%\``(`%#%\K
M``$`%B\`+SD````63KD```'\4(]@.DAY````Q4AY`````$ZY`````%"/2'D`O
M````3KD```+>6(\O/``@```O.0```!Y.N0```910CV$`^6@M?``+``#_^"\ND
M__A.N0```8!8CRU`__P(```19PT*<`$O`&$`^>Q8CP@N``#__68``4H(+@`#.
M__UG$"`Y```!2@"```,``"U`__@@+O_\P+D```%*2H!G4B\Y````$DZY```"1
M%%B/+4#_]$J`9QHO`&$`^R18CR`Y```!3@"```,``"U`__A@(DAY````[TAY^
M`````$ZY`````%"/2'D`````3KD```+>6(\@+O_\P+D```%.2H!G`/]0+SD`N
M``%&3KD```(46(\M0/_P2H!G`/\X<``@;O_P,"@`%`R``````6<F#(`````"0
M9EPO+O_P80#]0EB/+R[_\"\Y````%DZY```!_%"/8+`O+O_P80#]@EB/(&[_R
M\$IH`"9G'")H`"(A:0`6`!HO""\Y````%DZY```!_%"/8(`O+O_P80#V(%B/3
M8`#_=$AY```!#DAY`````$ZY`````%"/2'D`````3KD```+>6(\O+O_P3KD`L
M``#D6(]@`/]"80#WZDY>3G4``````^P````+````!@``#0I:```)F@``"-@`1
M``AN```(7```""H```=^```&+@```G@```(Z````-@```%X````'```-"FX`;
M``T*8```"<P```G````)K@``":````F(```)8```"4P```CL```(W@``"#X`D
M``@P```'L```!Y(```>$```'+@``!Q0```<,```&^```!J````9^```&7````
M!E8```90```&0@``!C0```84```%A@``!5@```4<```$_```!/(```3J```$_
MX@``!-H```32```$S```!+H```2P```$F```!(@```1,```$/@``!#````0BL
M```$'```!!8```00```$!@```_X```/4```#S````[X```.V```#J````Z``'
M``.,```#2````MX```+6```"R````L````*R```"J@```IP```*4```"A@``Z
M`DX```)````")````@0```'^```!^@```>H```'.```!L@```:````&<```!D
MC````88```%X```!<@```6P```%6```!1````38```"6````B@```&0```!*-
M````/````"`````&`````0```)<````,````!P```!0````F```"*@```((`U
M``-@```-"H````*,```%I`````@```!6````0@```D8```8Z```'B@``"#8`H
M``CD```)I@``#0IF````"P````X```!0```"5```!D@```>8```(1```"/(`*
M``FT```-"G0```)^```(8@``"'0````!````EP```)P````%````EP```+``N
M``#`````T````.````#P````!````(T```$(```!/````N0```+Z````%```M
M`!,```$0```!(@```NP```+T```#:@``!H@```;8```):@```60```,(```&M
M:@``"((```D````#+````^@```8>```(R```#0H,```-"CP```;&`````0``.
M`)@```%^`````0```)@```&4`````P```)@```&J```!Q@```>(````!````V
MC````@T*`````P```)@```*B```"N````LX````'````EP```PX```,R```#5
M[@``!G````;,```(B```"08````%````EP```Q@```-````&K@``")8```D>(
M````!@```)<```-.```#<```!HX```;>```)<```"=(````$````EP```X(`-
M``/:```%Y@``!R(````$````F````Y(```12```$C@``!)X````"````F```&
M`YH```1:````!````)@```.N```#Q```!&H```1\`````0```)@```0H````"
M`0```)@```0V`````0```)@```1$`````@```)<```4-"@``!2X````!````=
MF```!5X````!````@```!;(````"````'0``!=````?(````!````)<```8D[
M```(S@``#0H2```-"D(````````#\@```^H```!*9F%I;&5D('1O(&%L;&]C7
M871E(&UI9&D@;65S<V%G90`@(&9A:6QE9"!T;R!A;&QO8V%T92!M:61I(&UE$
M<W-A9V4`<VAU=$1O=VX`("!F86EL960@=&\@86QL;V-A=&4@;6ED:2!M97-S7
M86=E`"`@=6YK;F]W;B!M:61I(&5V96YT`&EN=F%L:60@969F96-T('-T871EW
M`$EN:71I86QI>F%T:6]N(&9A:6QE9`!);FET:6%L:7IA=&EO;B!C;VUP;&5TI
M90!F86EL960@=&\@9V5T(&UI9&D@;65S<V%G92!F<F]M(&9R964@;&ES=`!R9
M96-E:79E9"!S:6=N86P@8G5T(&YO(&UE<W-A9V4`=6YK;F]W;B!M:61I(&UEE
M<W-A9V4@='EP90````/R```#ZP```&L```/R```#Z0```?Q(>0```0Q.N0``V
M``!8CW`0+P!.N0```:Q8CU*`9Q!P$2\`3KD```&L6(]2@&8F2'D````82'D`]
M````3KD`````4(](>0````!.N0```MY8CW``3G5P`"\`+P!.N0````!0CR/`_
M````#DJ`9B9(>0```#%(>0````!.N0````!0CTAY`````$ZY```"WEB/<`!.*
M=7``('D````.$"@`#W(!X:%P`"\`+P`CP0```0!.N0````!0CR/````!"$J`7
M9B9(>0```%M(>0````!.N0````!0CTAY`````$ZY```"WEB/<`!.=7``('D`:
M``$($"@`#W(!X:$CP0```01P`4YU3E;__"\Y```!+B\Y```!&DAY````ATAYD
M```!-DZY`````$_O`!!(>0```39.N0```698CR`Y```!)G)D3KD`````(CD`1
M``$:3KD`````+T```$JY```!'F<4(#D```$B(CD```$>3KD`````8`)P`"\YE
M```!*B\`+R\`"$AY````NTAY```!-DZY`````$_O`!1(>0```39.N0```698+
MCTJY````#F<.+SD````.3KD```"<6(]*N0```0AG#B\Y```!"$ZY````G%B/1
M+SP`0```+SD````>3KD```&44(]"ITZY```!@%B/3EY.=4Y6__A(YR``+7D`#
M``$4__A"KO_\(&[_^$JH``1G``"62FX`#0IF#0HB:``.2JD`%&9V(F[_^"!I&
M``YP`#`H``QR`#(H``YT`#0H`!`O`B\!+P!.N0```@Y/[P`,(&[_^"\H``XMD
M0/_\3KD```,46(\O+O_X3KD```#D6(]*;@`-"F82(#D```$RT;D```$B4KD`Q
M``$>4[D```$R+R[_^$ZY````Y%B/8`X@;O_X+6@`!/_X8`#_8B`N__Q,WP`$`
M3EY.=4Y6```@;@`(T/P`&"\(3KD```(L6(\B;@`((&D`%%.H`!0O"4ZY````C
MY%B/3EY.=4Y6__PO/``"```O.0```"9.N0```910CR\\`!```$ZY```!@%B/Y
M+SD```$(3KD```(46(\M0/_\2H!G""\`89!8CV#B+SD````.3KD```(46(\M&
M0/_\2H!G#"\`3KD```(H6(]@WG`!+P!A`/ZD6(]*@&;R2FX`#0IG%"\\`!``N
M`"\Y````'DZY```!E%"/3EY.=4Y6__PM>0```0S__"!N__Q*D&=&(F@`#B`IN
M`!BPK@`(9BXO"$ZY````Y%B/+R[__$AY```!#$ZY````M%"/4KD```$F(&[_:
M_"`H``Y.7DYU(&[__"U0__Q@LG``3EY.=4Y6__A(YSX`+SP``0``<!(O`$ZY?
M````?%"/+4#__$J`9A!2N0```2YP`$S?`'Q.7DYU<``@;@`(,"@`#G(`,B@`[
M#'0`-"@`$'8`-B@`$C@H``A(Q#HH``T*2,4O.0````Q\`R\&+R@`'"\%+P0O]
M`R\"+P$O`$ZY```$#0I/[P`D+4#_^$J`9S0@0-#\`"`B;@`(TOP`('`:+P`O:
M"2\(3KD```)23^\`#$I`9A`O+O_X3KD```,46(]"KO_X2J[_^&900J=A`/U:K
M6(]*@&9$#+D````!```!,F(B2'D```#U3KD```%F6(\O/`$````O.0```!Y.C
MN0```910CR\N__Q.N0```.18CW``3-\`?$Y>3G5*KO_X9P#_''``(&X`"#`HL
M`!`O`$ZY```!VEB/+P`@;O_X+R@`!")N``@O*0`$3KD```+L3^\`#'``(&X`(
M"#`H``YR`#(H``QT`#0H`!`O`B\!+P!.N0```@Y/[P`,+P`@;O_X+Q`B;@`(B
M+Q%.N0```NQ/[P`,(&[_^$*H`!0B;@`((6D`&``8(F[__"-(``XO"4AY```!2
M#$ZY````M%"/(#D```$R4H`CP````3*PN0```2IC!B/````!*B`N__A,WP!\1
M3EY.=4Y6__@B;@`((&D`%"\H`!AA`/VV6(\M0/_X2H!F'"!N``@O*``480#^Y
M`%B/+4#_^$J`9@9P`$Y>3G5P*B\`+SD```$(3KD```%"4(\M0/_\2H!F#%*YR
M```!+G``3EY.=2!N__S0_``8(FX`"-+\`!@O"2\(3KD```+`4(\@;O_\(6[_G
M^``4(&X`"")N__PS:``H`"C0_``8+PA.N0````!8CR!N__A2J``4("[__$Y>I
M3G5.5O_L80#YH$I`9B9(>0```2-(>0````!.N0````!0CTAY`````$ZY```"X
MWEB/80#Z=B\Y````%"\Y````!DAY```!.4AY```!-DZY`````$_O`!!(>0``)
M`39.N0```698CR\\`!```"\Y````'DZY```!E%"/(#D```$``(```P``@+D`>
M``$$+4#_^"\N__A.N0```8!8CRU`__P(```19PT*<`$O`&$`^]Q8CP@N``#_?
M_68``-@@+O_\P+D```$$2H!G*B\Y```!"$ZY```"%%B/+4#_]$J`9Q0O`&$`'
M^W98CR`Y```!`(&N__A@UB`N__S`N0```0!*@&>0+SD````.3KD```(46(\MY
M0/_P2H!G`/]Z($!*:``F9Q(O`"\Y````$DZY```!_%"/8%0O+O_P80#^&EB/V
M+4#_[$J`9R`O+O_P3KD```(H6(\O+O_L+SD````23KD```'\4(]@(B\N__`OO
M.0````Y.N0```8A0CR`Y```!`$:`P:[_^&``_PQ2N0```1I@`/]R80#Y&$Y>\
M3G4``````^P````-"@````D```::```&E```!HX```9H```$J@```7X```$2.
M````P@```&X````P````-P````T*```'W@``!\X```=.```'/@``!R````<6&
M```&W@``!M(```:P```&H```!GP```9N```%_@``!>@```68```%D```!8H`_
M``6"```%=```!*(```/T```#L````Z(```-V```#!@```H(```)\```"=@``Q
M`G````'X```!P````;@```&4```!A````7(```%B```!7````50```%$```!-
M-@```2@```$8```!#````08```#X````Z@```-8```#(````N````*H```""P
M````=````$0````V`````@````(```",````"```!D0````"````EP```!0`]
M```D````!P```%8````\````>@```,X```$>```!B@``!G0```:F````"```=
M``X```!*````B````-P```:"```!+@```9H```2P```&M@````0```"-````/
M7````+````&P```!Q@````X````3````9````)8```&B```!J@```R0```=8S
M```'P````=0```-@```$O@``!L0```+J```'>@``!ZP````!````?P```3X`J
M```"````?0```4H```%H````!0```)<```':```"\````V8```3$```&R@``=
M``,```"7```!Y````OX```;L````#P```!0```)````%-@```E8```2````"O
MC````M0```30```"O@```^0```1&```$;@``!/8```7N```&'@``!\8````"Y
M````EP```F(```.6````!````)<```,,```#*@``!R8```=>`````@```)<`6
M``,\```'H`````(```"7```#J```!7H````!````$@``!"P````"````EP``%
M!1````5.`````@```)<```>````'L@````````/R```#Z@```%@P+C`S````\
M````,3$M2G5L+3@W``````T*<VEG;F%L(&%L;&]C871I;VX@9F%I;&5D`&UE(
M<W-A9V4@<&]R="`H8VAI<%!O<G0I(&%L;&]C871I;VX@9F%I;&5D`&UE<W-A6
M9V4@<&]R="`H<F5T=7)N4&]R="D@86QL;V-A=&EO;B!F86EL960`26YC;VUI1
M;F<@<VQI9&4@;65S<V%G97,Z("5L=2`@3F\@<W1R=6-T(&UE;6]R>3H@)6QUY
M`$-A8VAE($AI="]!8V-E<W,Z("5L=24E($-A8VAE(&1E<'1H("AA=F<I.B`E;
M;'4@*&UA>"DZ("5L=0!,3T-+55`A(&YO(&-A8VAE(&UE;6]R>2!A;F0@;F]TU
M:&EN9R!I;B!C86-H92$`26YI=&EA;&EZ871I;VX@9F%I;&5D`$EN:71I86QI2
M>F%T:6]N(&-O;7!L971E+B!2978@)7,@*"5S*0```````^P````"````"0``$
M`!0````&`````````_(```/K````C@```_(```/I```"M"!Y```!#$J09@).8
M=2!Y```!#"`H`!I3@"%``!I*@&\"3G4@>0```0Q*D&<@2J@`&FX:2'D```$,R
M3KD```#X6(\O`$ZY```"*%B/8-9.=2!Y```!&DJ09@Y2N0```2A2N0```71@\
M*B!Y```!&C%\``$`%DAY```!&DZY````^%B/+P!.N0```BA8CU*Y```!<$YUJ
M3E;_[BUY```!#/_\(&[__$J09U`@*``>(FX`"+"I`!YF.#%\``(`%D/N_^YP_
M#1+84<C__"\N__Q.N0```.18CR\N__Q.N0```BA8CU*Y```!:$'N_^XM2/_\E
M(&[__"U0__Q@J"\N``A.N0```BA8CU*Y```!:$Y>3G5.5O_\<``@;@`(,"@`F
M%`R``````6=,#(`````"9@``Q$JY```!*&<>(&X`""\(3KD```(H6(]3N0``N
M`2A2N0```7!@``#2+RX`"$AY```!&DZY````S%"/4KD```%L8```MBUY```!_
M#/_\(&[__$J09S`@;@`(("@`&B)N__R0J0`:2H!J`F`:(&[__"`H`!HB;@`(*
MD:D`&B!N__PM4/_\8,@@;@`((F[__"\I``0O"$AY```!#$ZY````F$_O``Q2Z
MN0```61!^0```1`B;@`((!&QP&=`(BD`&B!`DZ@`&F`T+RX`"$ZY```"*%B/U
M4KD```%X2'D````B2'D`````3KD`````4(](>0````!.N0```MY8CTY>3G5.:
M5O_\2'D```$,3KD```#X6(\M0/_\2H!G$B\`3KD```(H6(]2N0```6A@V$AYD
M```!&DZY````^%B/+4#__$J`9Q(O`$ZY```"*%B/4KD```%P8-A.7DYU3E8`Z
M`$Y>3G5.5O_\('D```%*(FX`"+/(9F(P.0```"I*0&88,#D```%:2,#E@")`[
MT_P````"(5$`)&`.('D```%*(7D```$L`"0O.0```4I.N0```JQ8CPQY``$`Y
M``%69PPP.0```"I*0&<``312N0```5QA`/T,8``!)B!Y```!,")N``BSR&8`?
M`-8P.0```3H,0`!H9A!">0```592N0```5QA`/S<,#D```%`2D!F##`Y```!G
M/DI`9P``E#`Y```!0%-`9AAP`3/````!5DIY```!6F]X4WD```%:8'`P.0``>
M`4!20&8T<`$M?`"\84[__#(Y```!6E)!Y8$@0='\`````B(0,\````%6+4'_%
M_$J!:SI2>0```5I@,C`Y```!/E-`9@9A`/RF8")(>0```$E(>0````!.N0``B
M``!0CTAY`````$ZY```"WEB/+SD```$P3KD```*L6(]@0$AY````8DAY````G
M`$ZY`````%"/2'D`````3KD```+>6(\O/`"````O.0```!Y.N0```910CT*G*
M3KD```&`6(].7DYU3E8``$Y>3G5.=4Y6__9P`"\`+P!.N0````!0CR/````!E
M`$J`9A1(>0```'A.N0```698CW``3EY.=7``('D```$`$"@`#W(!X:$O""/!2
M```!!$ZY`````%B/(\````$P2H!F%$AY````GTZY```!9EB/<`!.7DYU0J<OW
M.0```3!P`2\`2'D```#-3KD```)D3^\`$$I`9Q1(>0```-U.N0```698CW``[
M3EY.=1U\``/__R!Y```!,#%\``L`''`!(4``)$/N__\A20`H+PA.N0```IA8.
MCTI`9Q1(>0```/A.N0```698CW``3EY.=7`!/4#_]D)N__@]0/_Z/4#__"!Y2
M```!,#%\``T`''`((4``)$/N__8A20`H+PA.N0```IA8CTI`9Q1(>0```2-.S
MN0```698CW``3EY.=2!Y```!,#%\``D`'"%\```!-``H<!8A0``D0B@`'G`HG
M+P`O.0```0!.N0````!0CR/````!2DJ`9A1(>0```3].N0```698CW``3EY.P
M=4*G+SD```%*<`$O`$AY```!:4ZY```"9$_O`!!*0&<42'D```%V3KD```%F"
M6(]P`$Y>3G4@>0```4HQ?``)`!Q"J``@<`%.7DYU3G5.5O_\,#D````D#$``A
M`6="54!G/C`Y````)$I`9S1R`#(Y````)"\!2'D```&.2'D`````3KD`````?
M3^\`#$AY`````$ZY```"WEB/<`!.7DYU<``P.0```"HO0```2H!G%B`\``]">
M0"(O``!.N0`````CP````2QP$"\`3KD```&L6(]2@&<P<!(O`$ZY```!K%B/G
M4H!G('`3+P!.N0```:Q8CU*`9Q!P$2\`3KD```&L6(]2@&8H2'D```&D2'D`!
M````3KD`````4(](>0````!.N0```MY8CW``3EY.=7``+P`O`$ZY`````%"/(
M(\`````62H!F%$AY```!UDZY```!9EB/<`!.7DYU<``@>0```!80*``/<@'A#
MH4AY```!#"/!```!"$ZY`````%B/2'D```$:3KD`````6(]P`4Y>3G5.=3`Y@
M````*DI`9@XO.0```3!.N0```JQ8CS`Y````*DI`9AXP.0```5I(P.6`($#1@
M_`````(B>0```4HC4``D8`X@>0```4HA>0```2P`)"\Y```!2DZY```"K%B/'
M3G5.=4YU3E;__DJY```!,&=P('D```$P2J@`%&=.+PA.N0```L!8CR\Y```!*
M,$ZY````Y%B/0B[__R!Y```!,#%\``L`''`!(4``)$/N__\A20`H+PA.N0``#
M`IA8CR\Y```!,$ZY```"A%B/2KD```$P9PXO.0```3!.N0```!A8CTJY```!:
M2F=4('D```%*2J@`%&<N2GD`````9Q@O"$ZY```"P%B/+SD```%*3KD```#D+
M6(\O.0```4I.N0```H18CTJY```!2F<2<"@O`"\Y```!2DZY````2%"/3EY.W
M=4YU3E;_`$JN``AG&"\N``A(>0```@!(;O\`3KD`````3^\`#$AN_P!.N0``$
M`698CTJY```!`&<.+SD```$`3KD```"<6(]*N0```!9G#B\Y````%DZY````-
MG%B/2FX`#F<F+SD```%<2'D```(-2&[_`$ZY`````$_O``Q(;O\`3KD```%F4
M6(\O/`"````O.0```!Y.N0```910CT*G3KD```&`6(].7DYU3E;_\&$`_,Q*@
M0&8.0J=(>0```EQA`/]"4(\P.0```"1(P.6`($#1_````BPB4$Z12D!F)#`Y@
M````)$C`Y8`@0-'\```"4")03I%"ITAY```">F$`_P10CR`Y```!!`"```L`S
M`("Y```!"$AY```"GBU`__Q.N0```698CR\\`!```"\Y````'DZY```!E%"/<
M+R[__$ZY```!@%B/+4#_^`@``!%G&&$`^%@O/``0```O.0```"9.N0```910I
MCP@N``#_^68``+@(+@`#__EG'C/\``$`````,#D````D2,#E@"!`T?P```(XB
M(E!.D2`N__C`N0```0A*@&<^+SD````63KD```(46(\M0/_P2H!G*"!`,B@`X
M%%-!9A(P*``654!F#0HO"&$`]D18CV#.+R[_\&$`]K)8CV#"("[_^,"Y```!D
M!$J`9P#_2"\Y```!`$ZY```"%%B/+4#_]$J`9P#_,#(Y````)$C!Y8$@0='\5
M```"1")0+P!.D5B/8,PP.0```"1(P.6`($#1_````E`B4$Z1<`$O`$AY```"&
MMF$`_;A0CTY>3G4``````^P````?````#```#0K````-"K(```T*E@``#0H,D
M```)^@``"9(```ET```):```"4X```DV```(Y@``"(X```@R```';@``!O(`-
M``:R```&(@``!<X```6Z```%F@``!4P```3^```$O```!*@```2(```$2@``J
M`^````.N```#@````K````("````:`````T```T*<@``#0IF```-"AH```F,.
M```)@```".````BV```(K@``"&P```A@```(4@``"$0```@F```('@``"!``3
M``@(```'^@``!]8```?$```'K@``!Z8```>.```'A@``!X````=T```'8@``H
M!TH```<J```''```!Q8```;&```&N```!FP```8X```&*```!>(```6P```%+
MD```!8(```5L```%8```!20```36```$G@``!'X```1P```$8```!$````/TG
M```#Y@```]````/"```#M````YX```.6```#B````W0```-@```#6````U``%
M``-*```#/@```S(```,H```#'@```Q@```,,```"_````NX```+:```"R@``/
M`L(```*\```"I````HP```)T```"5````DP```(L```"%@```@@```'\```!>
MU````<X```&^```!<````68```%8```!2@```40```$N```!!````.````"8/
M````C````'0```!H````8````%H```!0````-````"0````.`````@````0`>
M``"7````.@```'H```(R```"6@````@```"7````1````(0```#8````_```6
M`3P```'T```"1````FP````#````EP```,P```?*```(2@````$```"7```!(
M7@````$```"7```!Q`````<```!6```"#@```[H```/L```&+@``!KX```B8L
M```(\````!`````.```"'````\@```/Z```&/@``!LP```10```$C@``!,(`^
M``4$```%4@``!:````74```&^```"*8```C^```)G`````T````2```"F@``P
M`N(```9.```'0```!U@```7^```&#@``!AH```E"```)7```#0H````-"HH`]
M``T*I@````0```"7```"T````]8```=0```'E`````D````3```$"```"0P`R
M``FJ```&Z```!P@```C$```(S```#0HD```)V`````0```"7```$#@``"1(`T
M``FP```)W@````,```"7```$&```"1P```F\````!````(T```0X```&X```S
M"+P```C2`````@```(\```1V```(%@````(```"7```$K@``!<`````#````:
MEP``!/(```5````'\@````(```"1```%B```"'(````!````?0``!F8````$3
M````EP``!G8```:&```&E@``!J8````"````C```!R(```<P`````@```)<`N
M``>\```(/`````(```"7```(````"%@````"````EP``#0HJ```-"G@`````Q
M```#\@```^H```"P````#T)```>A(``#T)```>A(``$$:@``@C4``&&H____K
M_U5N:VYO=VX@<V5R=FEC92!R97%U97-T('1Y<&4@<F5Q=65S=&5D`%5N:V]W1
M;B!J;WES=&EC:R!M;W9E;65N=`!-=6YC:&5D(&IO>7-T:6-K(&1A=&$`0V%NI
M)W0@8W)E871E(&UE<W-A9V4@<&]R="!F;W(@9V%M97!O<G0`0V%N)W0@86QL%
M;V-A=&4@22]/(')E<75E<W0@8FQO8VL@9F]R(&=A;65P;W)T`&=A;65P;W)T,
M+F1E=FEC90!#86XG="!O<&5N(&=A;65P;W)T(&1E=FEC90!#86XG="!S970@E
M9V%M97!O<G0@9&5V:6-E('1Y<&4@=&\@:F]Y<W1I8VL`0V%N)W0@<V5T(&=AE
M;65P;W)T('1R:6=G97)S`$-A;B=T(&%L;&]C871E($DO3R!R97%U97-T('!O_
M<G0@9F]R('1I;65R`'1I;65R+F1E=FEC90!#86XG="!O<&5N('1I;65R(&1EV
M=FEC90!"860@;W!E<F%T:6]N(&UO9&4@)74`0V%N)W0@86QL;V-A=&4@:6YT;
M97(M=&%S:R!S>6YC:')O;FEZ871I;VX@<VEG;F%L<P!#86XG="!C<F5A=&4@[
M<V5R=FEC92!R97%U97-T(&UE<W-A9V4@<&]R=`!3:'5T9&]W;CH@)7,`4W1AZ
M=#H@5&]T86P@8VQO8VL@=&EC:W,Z("4Q,&QU````!?8```0L```$*@``!YP`Y
M``<^```'/```!"(```*&```"?@``"'P```>@```'GD=E;F5R:6,@:6YI=&EAA
M;&EZ871I;VX@9F%I;&5D`$UO9&4@<W!E8VEF:6,@:6YI=&EA;&EZ871I;VX@"
M9F%I;&5D`$EN:71I86QI>F%T:6]N(&-O;7!L971E`%-H=71D;W=N``````/LQ
M````#`````L```)8```"5````E````),```"2````D0```)````"/````C@`Q
M``(T```",````BP````````#\@```^L```!?```#\@```^D```#`3E;_]`@N&
M``0`"&=>3KD````@0J=.N0```518CR!`+R@`#0I.N0```!18CTAY`````$ZY\
M````%%B/+RX`#$ZY````%%B/2'D````#3KD````46(]";O_X#&X?0/_X9`92?
M;O_X8/).N0```#`(+@`%``AG``#P4KD````&2GD````$9P1.7DYU<`$O`'!@J
M+P!.N0```'Q0CRU`__Q*@&8-"E*Y````#0I.7DYU(&[__-#\`!1"IR](``1.L
MN0```518CR!`+R@`#0HO+P`$3KD`````4(\@;O_\T/P`%$AY````!B\(3KD`Y
M````4(\@;O_\T/P`%"\(3KD`````6(\@;O_\T/P`%#U`__I(P%*`<DN2@"\!E
M+RX`#"\(3KD````Z3^\`#"!N__S0_``42'D````)+PA.N0````!0CR!N__S04
M_``4+PA.N0````!8CR!N__PQ0``2+P@O.0```!I.N0```?Q0CTY>3G5.5@``P
M"#D`!@```"QG""`\$````&`"<```@"`````O+@`(+P!A`/YT4(].7DYU3E;_8
M^"\Y````&DZY```"%%B/+4#__$J`9V1*>0````1F2$JY`````&=`($#0_``4:
M<``B;O_\,"D`$B\`+P@O.0````!.N0```$Q/[P`,<@`@;O_\,B@`$BU`__BP,
M@6<0,_P``0````1@!E*Y````#B\N__Q.N0```.18CV"&3EY.=4Y6_P!*N0``0
M``!G7DIY````!&9(+SD````-"B\Y````#B\Y````!DAY````"TAN_P%.N0``F
M``!/[P`42&[_`4ZY`````%B/+P!(;O\!+SD`````3KD```!,3^\`#"\Y````(
M`$ZY````'%B/3EY.=4Y6```@;@`($!!*`&842'D```!(2'D````Z3KD`````B
M4(\O/````^Y(>0```#I.N0````!0CR/``````$J`5\%$`4B!2,$SP0````1*Z
M05?`1`!(@$C`3EY.=4Y6```@.0```"P`@"`````O+@`(+P!A`/T-"E"/3EY.&
M=0`````#[`````8````/```"E````CX```$J````V@```$8````L````$0``7
M`!````+,```"O````G0```)D```".````C(```(L```")````AP```(````!;
M^````=0```&X```!L````*````!\````=@````$```"7````#@````(```"7(
M````%@```+@````$````G````"0````R````/@```$P````!````EP```&8`,
M```"````%````)````(-"@````(```!E````R@```J`````#````7P```.(`6
M``$R```!&`````,```!H````]````40```)6````!````!,```%6```!F@``1
M`IH```*N`````0```)<```%<`````@```!(```%N```"Y`````$```"7```!#
MH`````(```"6```!V@```FH````!````5@```D@````!````E@```GH````!T
M````E@```K0````````#\@```^H````4.B``#0H-`#H@``T*`$QO9R`Z($UE_
M<W-A9V5S.B`E;'4@("`@1F%I;&5D.B`E;'4@("`@3F\@4U1254-4(&UE;6]R-
M>3H@)6QU#0H`3DE,.@````````/R```#ZP````4```/R```#Z0````````/R+
M```#Z@````P``$X@``!U,```3B```'4P``!.(```G$```$X@``"<0``!``$`U
M`0``````&`````````/R```#ZP```)````/R```#Z0```5M.5O_T("X`"`:`\
M````'"\N``PO`"U`__A.N0```$!0CRU`__Q*@&8&<`!.7DYU(&[__"%N__@`*
M&-#\``Y"IR](``1.N0```518CR!`+R@`#0HO+P`$3KD`````4(\O+O_\2'D`(
M````3KD```#,4(\@;O_\T/P`'"`(3EY.=4Y6```@+@`,`H`````$68!F(B`NM
M``P`@``"```O`$ZY````<%B/L+D````<9"AP`$Y>3G4@+@`,`(```@``+P!.D
MN0```'!8C["Y````#&0&<`!.7DYU+RX`#"\N``AA`/\D4(].7DYU3E;__$JN%
M``AF)DAY`````$AY`````$ZY`````%"/2'D`````3KD```+>6(].7DYU(&X`(
M")#\`!P@""\`+4#__$ZY````Y%B/(&[__"\H`!@O"$ZY````6%"/3EY.=4Y6!
M__PO/``!``$O+@`,80#^KE"/+4#__$J`9@9P`$Y>3G4@+@`,!(`````4(&[_Y
M_#%``!(A;@`(``X1?``%``@@"$Y>3G5.5@``3KD`````(&X`"-#\`!0O+@`,?
M+PA.N0```+10CR!N``@0*``.`@```TH`9AAP`!`H``]R`>&A+P$O*``03KD`$
M``&44(].N0```!!.7DYU3E8``'!`3EY.=4Y6```@+@`(7H#FB$Y>3G5.5@``6
M+RX`"&'F6(\B+@`,3KD`````3EY.=4Y6```O+@`,+RX`"&'84(\B+@`03KD`6
M````3EY.=4Y6__PO+@`(3KD```#X6(\M0/_\2H!G#0HO`&$`_IQ8CV#B3EY.6
M=4Y6__@@;@`,+5#__"!N__Q*D&=4<`$O`"\N`!!A`/X,4(\M0/_X2H!F#B\N6
M``AAJEB/<`!.7DYU+RX`$"\N__@O+O_\3KD```+L3^\`#"\N__@O+@`(3KD`Q
M``#,4(\@;O_\+5#__&"D<`%.7DYU3E8``$CG`#`B;@`,(&D`"+'N``QF"$S?$
M#`!.7DYU(FX`#"!1)&X`""2()FD`""5+``@@4B%*``0@:@`(6(H@#0H@@"\)!
M3KD`````6(],WPP`3EY.=4Y6``!*K@`(9B9(>0```"-(>0````!.N0````!0`
MCTAY`````$ZY```"WEB/3EY.=2!N``A*D&<(+Q!A`/V46(\@;@`(2J@`!&<-$
M"B\H``1A`/V`6(\@;@`(2J@`'&<-"B\H`!QA`/UL6(\@;@`(T/P`("\(80#^(
MI%B/+RX`"&$`_5)8CTY>3G5.5O_X+RX`"$ZY`````%B/4H!R`2\!+P`M0/_\P
M80#\Q%"/+4#_^$J`9Q0O+O_\+P`O+@`(3KD```+L3^\`#"`N__A.7DYU3E8`L
M`"!N``@0$$H`9Q@,``!!;0P,``!:;@8&```@$(!2K@`(8-Y.7DYU3E;_]$CG0
M(``O/``!``%P+B\`80#\7E"/+4#__$J`9@T*<`!,WP`$3EY.=7``,"X`#G(`_
M,BX`#0IT`#0N`!(O`B\!+P!A`/W`3^\`#"U`__1.N0```"`O+@`D3KD```!P6
M6(\B+O_T)"X`*-2!+4#_^+2`8A(O+@`D+P%A`/OX4(\@;O_\((!.N0```#`@I
M;O_\2I!G``"8<``P+@`2+P!A`/TR6(\"@```__]R`2\!+P!A`/O"4(\@;O_\@
M(4``!$J`9VI*K@`@9Q(O+@`@80#^Q%B/(&[__"%``!Q*K@`@9PT*(&[__$JHO
M`!QG0B!N__PQ;@`-"@`.,6X`#@`,,6X`$@`0,6X`%@`2,6X`&@`(,6X`'@`->
M"M#\`"`O"$ZY`````%B/("[__$S?``1.7DYU(&[__$J09P@O$&$`^Z18CR!N(
M__Q*J``$9PT*+R@`!&$`^Y!8CR\N__QA`/N&6(]P`$S?``1.7DYU```#[```[
M``(````5```#(````/`````$````%@```S0```,F```!!````/8````!````@
MEP```!H````!````EP```$0````!````90```%8````!````$P```&(````"!
M````EP```&@```*J`````P```)<```"<````O@``!&0````"````$@```*0`_
M``#&`````@```%8```#\```#+`````(````.```!#0H```,Z`````0```)<`&
M``$F`````0```)<```$X`````0```)<```&.`````0```)<```&B`````0``;
M`)<```'*`````0```)<```'2`````@```'\```(&```")`````$```"7```"6
M-@````(```"7```"F````]`````"````C````P8```4B`````0```&@```.D*
M`````0```)<```1:`````0```)<```20`````````_(```/J````$W-M87)T^
M1G)E94UE;3H@('1R>6EN9R!T;R!F<F5E($Y53$P`9G)E949U;&Q-87`Z("!T9
M<GEI;F<@=&\@9G)E92!.54Q,(&UA<`````````/R```#ZP```$````/R```#"
MZ0```MY.5O[H2.<_#'``>`!"KO_22&[^]#U`__8]0/_X/4#_^CU`__P]0/_^L
M3KD`````6(]![O_*<`@O`"\(+RX`"$ZY````,$_O``PJ``R%````"&<>2&[^F
M]$ZY```"+%B/(&X`&#"\``=P`$S?,/Q.7DYU("[_RG(H!($````(:P`(?K"[Y
M&`AF\$[[&`9"3T198``"7D-23D=@``&.0TU!4&```*9#04U'8```5$)-2$1@2
M```"0>[_MG`4+P`O""\N``A.N0```#!/[P`,*@`,A0```!1G'DAN_O1.N0``Y
M`BQ8CR!N`!@PO``(<`!,WS#\3EY.=3U\``'__F``_S9![O^R<`0O`"\(+RX`(
M"$ZY````,$_O``PJ``R%````!&<>2&[^]$ZY```"+%B/(&X`&#"\``EP`$S?'
M,/Q.7DYU/7P``?_\8`#^[`RN````8/_.8QY(;O[T3KD```(L6(\@;@`8,+P`8
M#0IP`$S?,/Q.7DYU0>[_4B\N_\XO""\N``A.N0```#!/[P`,*@"ZKO_.9QY(`
M;O[T3KD```(L6(\@;@`8,+P`#0IP`$S?,/Q.7DYU("[_SG(#3KD`````0F[_A
M[$'N_PY#[O]2/4#_Z"U(_PT*+4G_3C`N_^RP;O_H9$(@;O].$!`"0`#_`D``.
M\.E`$B@``0)!`/\"00#P@$$2*``"`D$`_P)!`/#H28!!(&[_#0HP@%)N_^Q4`
MKO\-"E:N_TY@M#U\``'_^F``_@Q![O\"<`@O`"\(+RX`"$ZY````,$_O``PJD
M``R%````"&<>2&[^]$ZY```"+%B/(&X`&#"\``MP`$S?,/Q.7DYU,"[_!DI`B
M9P#]PC`N_P0,0```8P#]MA`N_P@2+O\)L`%G`/VH<`$O`'`:+P!.N0```'Q0?
MCRU`_O!*@&8>2&[^]$ZY```"+%B/(&X`&#"\``QP`$S?,/Q.7DYU(&[^\#%NK
M_P0`#A%N_P@`$!%N_PD`$2\(2&[^]$ZY````S%"//7P``?_X8`#]1$IN__YF]
M'DAN_O1.N0```BQ8CR!N`!@PO``-<`!,WS#\3EY.=4IN__QG#0H@+O^R/4#_C
MWF`T,"[_Q@Q``4!C""`\``"``&`"<``R+O_(/4#_W@Q!`,AC!'`$8`)P`'(`P
M,B[_WH*`/4'_WG``,"[_N'(`,B[_MG0`%"[_OG8`-B[_WB\N`!0O+@`0+RX`+
M#"]``"QP`"\`+P`O`R\"+P$O+P!`3KD```0-"D_O`"0M0/[L2H!F'DAN_O1.%
MN0```BQ8CR!N`!@PO``.<`!,WS#\3EY.=3`N_]X"0(``2D!G``"`""X``O_?H
M9SPP+O^V#$`"H&8>,"[_N`Q``;QF%"!N_NPQ?/_P``@Q?/_J``T*8```QB!N]
M_NPQ;O^Z``@Q;O^\``T*8```LC`N_[8,0`*@9AXP+O^X#$``WF84(&[^[#%\P
M__``"#%\__4`#0I@``"*(&[^[#%N_[H`"#%N_[P`#0I@=@@N``+_WV<X,"[_*
MM@Q``6!F'#`N_[@,0`'@9A(@;O[L,7S_\``(,7S_[``-"F!((&[^[#%N_[H`B
M"#%N_[P`#0I@-C`N_[8,0`%@9APP+O^X#$``\&82(&[^[#%\__``"#%\_^P`.
M#0I@$"!N_NPQ;O^Z``@Q;O^\``T*(&[^[-#\`"!(;O[T+PA.N0```L!0CQ`NY
M_[]3`&8-"G``$"[_OE*`8`9P`!`N_[Y\`$)N_^8]0/_B,"[_N#(N_^:R0&0`[
M`OI";O_D,"[_Y+!N_^)D``+B<``P+O^V+P!.N0```>18C[Q`8@``F$IN__9FE
M``"0(`8"@```__\B/```!`"2@"!!T?P```$`+P!(>0```0`O"$ZY```"[$_OT
M``P@!@*```#__R!`T?P```$`(`8"@```__\B/```!`"2@"\!+P@O+@`(3KD`-
M```P3^\`#"H`(`8"@```__\B/```!`"2@+J!9P8]?``!__8@!@*```#__]"%0
M+`!+^0```0#8A7``,"[_MG(`,B[_N"\!+P!.N0```?10CW(`,B[_Y$ZY````0
M`")N_NP@4='`<``P+O^V+P`O2``D3KD```'D6(\R+O_FPL`@;P`@T<$H2'``$
M$"[_P`R``````6=J2H!F``&4<``P+O_D<@`2+O^^L(%D)G``,"[_MB\`3KD`T
M``'D6(\"@```__\O`"\,+PU.N0```NQ/[P`,<``P+O^V+P!.N0```>18CYQ`2
M<``P+O^V+P!.N0```>18CP*```#__]O`8``!3G``,"[_MB\`3KD```'D6(\N"
M`$I';P`!-A`52(!(P$J`:P``B"('2,&P@6\>+R[^[$ZY```#%%B/(&X`&#"\W
M``]P`$S?,/Q.7DYU<``P+O_D<@`2+O^^L(%D'"!-4H@0%4B`2,!2@"\`+PPO]
M"$ZY```"[$_O``P0%4B`2,`O0``@4H`B!TC!DH`N`2`O`"!4@"(&`H$``/__\
MDH`L`2(O`"!2@=G!V\!@`/]J$!5(@$C`#(#___^`9VY$@"('2,&P@6\>+R[^C
M[$ZY```#%%B/(&X`&#"\``]P`$S?,/Q.7DYU<``P+O_D<@`2+O^^L(%D'A`5`
M2(!(P%.`/4#_[$IN_^QJ#!BM``%2C%)N_^Q@[A`52(!(P%.`(@=(P=*`+@%51
M1E2-8`#^[E-&4HU@`/[F+R[^[$ZY```#%%B/(&X`&#"\`!!P`$S?,/Q.7DYU3
M<``P+O^V+P!.N0```>18CP*```#__]&N_])2;O_D8`#]%E)N_^9@`/S\N*[_-
MSF1`+R[^[$ZY```#%%B/(&X`&#"\``\O!$AY`````$ZY`````%"/+R[_SDAYD
M````$DZY`````%"/<`!,WS#\3EY.=7``,"[_MG(`,B[_N'0`-"[_XB\"+P$O!
M`$ZY```"#D_O``PB+O_2LH!G8B\N_NQ.N0```Q18CR!N`!@PO``/+R[_TDAY9
M````*4ZY`````%"/<``P+O^V<@`R+O^X=``T+O_B+P(O`2\`3KD```(.3^\`W
M#"\`2'D````]3KD`````4(]P`$S?,/Q.7DYU<$`O`"!N_NPO*``$2&[_#DZY1
M```"[$_O``P@;@`80E`@+O[L3-\P_$Y>3G4@+O_.#(``````8P#W*`R````$G
M`&-,+SP```0`2'D```$`+RX`"$ZY````,$_O``PJ``R%```$`&<>2&[^]$ZYY
M```"+%B/(&X`&#"\`!%P`$S?,/Q.7DYU!*X```0`_\Y@GB\N_\Y(>0```0`O*
M+@`(3KD````P3^\`#"H`NJ[_SF<>2&[^]$ZY```"+%B/(&X`&#"\`!%P`$S?=
M,/Q.7DYU0J[_SF``_UI.5O_D2.<!`'#^+P`O+@`(3KD```#44(\M0/_L2H!F,
M$B!N`!0PO``!<`!,WP"`3EY.=2\\```#[2\N``A.N0````!0CRU`_^A*@&82G
M(&X`%#"\``)P`$S?`(!.7DYU0>[_]'`(+P`O""\N_^A.N0```#!/[P`,+@`,9
MAP````AG*B\N_^A.N0```!Q8CR\N_^Q.N0```/!8CR!N`!0PO``#<`!,WP"``
M3EY.=2`N__0,@$9/4DUF``#*0>[_\'`$+P`O""\N_^A.N0```#!/[P`,+@`,7
MAP````1G*B\N_^A.N0```!Q8CR\N_^Q.N0```/!8CR!N`!0PO``$<`!,WP"`]
M3EY.=2`N__`,@$E,0DUF1B\N`!0O+@`0+RX`#"\N``@O+O_H80#U-D_O`!0M#
M0/_D2H!F=B\N_^A.N0```!Q8CR\N_^Q.N0```/!8CW``3-\`@$Y>3G4O+O_H+
M3KD````<6(\O+O_L3KD```#P6(\@;@`4,+P`!7``3-\`@$Y>3G4O+O_H3KD`8
M```<6(\O+O_L3KD```#P6(\@;@`4,+P`!G``3-\`@$Y>3G4O+O_H3KD````<N
M6(\O+O_L3KD```#P6(\@;@`40E`@+O_D3-\`@$Y>3G4```/L````!````!@`7
M``BZ```(B```""X```@<````!@```!D```ED```)&@``!;P```5L```%4```B
M!4@````!````C````"H````-"@```)8```!`````P@```0P```%^```"-@``W
M!8H```DD```);@``#0H2```-"FP````=````%````%@```#:```!)````58`^
M``&4```"3@```J@```+Z```#I@``"3P```F$```"E````Y````30```%(```H
M!?P```8^```&9```!G8```:2```'W@``!=0```:Z```'4```![P```@-"@``Z
M"'0```A>```(K@````$```!]```!M`````$```"7```"W@````0```"7```%C
M6```!E(```;V```(X@````$```!_```%X@````0```!3```((@``"#0```B.0
M```(P`````$```"6```)M@````$```"6```)X@````8```"6```-"BH```T*4
MA```#0K>```+````"RH```M4````!@```)8```T*-@``#0J0```-"NH```L,`
SHAR_EOF
#	End of shell archive
exit 0