strike rapier // User Search

strike rapier // User Search

1  2  3  4  5  6  ...  141  |  

If a greeterbot is alone does it still greet?

Feb 21, 2002, 4:23pm
Actually, a greeterbot uses the aw_avatar_add stuff dont it :P so it only
greets on that server command. To recieve that server command someone must
be there, so it must be heard to be greeting.

- SR
*Sayer of many interesting things*

[View Quote]

If a greeterbot is alone does it still greet?

Feb 22, 2002, 4:20pm
*LOL*

I know, I just felt like replying to it to see if anyone would still reply
after all this time. :P
And you did!

Question:
If a VB greeterbot is missing both sdk.awsay and sdk.awwhisper commands will
it still greet?

Answer:
Erm... No... *sigh* always check you have included the correct speach
commands in your functions....

- SR
*He who replies to rearllly old posts*

If a greeterbot is alone does it still greet?

Feb 22, 2002, 7:25pm
yeah, but actually it proves that you cant have real world situational
questions in Active Worlds all the time :P

[View Quote]

If a greeterbot is alone does it still greet?

Feb 22, 2002, 7:34pm
lol,

It just means that in the world, things are allot more upto the mind, the
origional question was 1 meant to confuse the mind, yet in AW where
everything runs on code, there is no middle answer, everything is always a
full answer.. do does it greet if no-one can hear it? Of course it dont, it
only greets IF somone is there presuming they used AW_Avatar_Add

:P
*SR - Bringing conversations back to life*

[View Quote]

If a greeterbot is alone does it still greet?

Feb 22, 2002, 7:58pm
lol, yeah, maybe someone should make a philosophy bot that can tell you the
purpose of ur life.

E N Z O: What is the meaning of my life?
[Philosophy]: To obey Strike Rapier
E N Z O: It shall be so!
[Philosophy]: I was hoping you would say that! :P

[View Quote]

If a greeterbot is alone does it still greet?

Feb 22, 2002, 8:04pm
lol, anyway, to be quite honest, i actually messed up Outlook express.

I took off the posting data display, and accidently fliiped the date , so
what i thought was recent was old *sigh* shouldent have done em offline
[View Quote]

If a greeterbot is alone does it still greet?

Feb 22, 2002, 8:15pm
Returning to the SDK topic, here is just a little VB code that does just
that :)

Private Sub cmdLogin1_Click()
'Create Bot instance
rc = sdk.AwCreate(0, 0)
If rc Then
MsgBox "Unable to create a bot (reason " & rc & ")"
Exit Sub
Else
txtcol = vbRed
PrimaryColor (RTBPrimaryConsole.text & "<SYSTEM> " & Chr(9) &
"Sucessfully created instance")
End If
'Gain Values From TXT Boxes
sdk.AwLoginOwner = txtCitnum1.text
sdk.AwLoginPrivilegePassword = txtPPW1.text
sdk.AwLoginName = txtBotName1.text
sdk.AwLoginApplication = "FireStorm Systems"
'Attempt to log into universe
rc = sdk.AwLogin
If rc Then
MsgBox "Unable to initiate API (Reason " & rc & ")"
Exit Sub
Else
txtcol = vbRed
PrimaryColor (RTBPrimaryConsole.text & "<SYSTEM> " & Chr(9) &
"Sucessfully logged into Active Worlds Universe")
End If
'Bot Enters the world
rc = sdk.AwEnter(txtWorld1.text)
If rc Then
MsgBox "Unable to enter world (Reason " & rc & ")"
Exit Sub
Else
txtcol = vbRed
PrimaryColor (RTBPrimaryConsole.text & "<SYSTEM> " & Chr(9) &
"Sucessfully enteres world " & txtWorld1.text & " targeted at " &
txtCoords1.text)
End If
'Location
coordinates (txtCoords1.text)
sdk.AwMyX = Xcoord 'East / West Axis (-East / +West)
sdk.AwMyZ = Zcoord 'North / South Axis (-South / +North)
sdk.AwMyY = Ycoord 'Elevation Data
sdk.AwMyYaw = YAWcoord 'YAW Data (0 = North, 900 = West 1800 = South,
2700 = East)
sdk.AwMyType = txtBotAvatar1.text 'AvatarData
'Change State to Enter Coordinates
rc = sdk.AwStateChange
If rc Then
MsgBox "Unable to change state (Reason " & rc & ")"
Exit Sub
Else
txtcol = vbRed
PrimaryColor (RTBPrimaryConsole.text & "<SYSTEM> " & Chr(9) &
txtBotName1.text & " has sucessfully entered the world " & txtWorld1.text &
" at the location " & txtCoords1.text)
PrimaryColor (RTBPrimaryConsole.text & "<SYSTEM> " & Chr(9) &
"Ready")
End If
End Sub

Private Sub sdk_EventChat()
If sdk.awchatmessage = "What is the meaning of my life?" then
sdk.awsay sdk.awavatarname ", The purpose of your life is to obey Strike
Rapier
End if

Private Sub cmdCancel1_Click()
sdk.AwDestroy
End Sub

If a greeterbot is alone does it still greet?

Feb 22, 2002, 8:26pm
Allthough VB does have a few weaknesses, it is a very good system for making
single bots in, ive been informed it cant handle large 100 player RPG's, but
you can do a fair bit in it. Its also a easy language to learn, allthough
learning C is reccomended.


[View Quote]

Bot Teleport

Feb 22, 2002, 4:21pm
*Replies to another rearlly old post*

I think its something like....

Avatar_Clicked....

Determin Avatar Clicked X Y Z axis,
Define the X Y Z values as strings / integers.
I can only think of you making an equivilent to brants VB classes for this.

then

AW_My_X = X
AW_My_Z = Z
AW_My_Y = Y

AW_State_Change( )

----------------------------------------------------------------------------
---
This was a post from Strike that would maybe have done more good about 2
years ago, before I was even in AW or had the slightest hint about
programming for that matter. But I felt like replying just for the fun of it
:)
----------------------------------------------------------------------------
---

NB: If I did get anothing right in there its not bad, cause im a newbie to
programming, but been helped by the best. :)

----------------------------------------------------------------------------
---
*Goes to bed*

Bot Teleport

Feb 22, 2002, 7:25pm
lol, opps,
[View Quote]

Bot Teleport

Feb 22, 2002, 8:04pm
Ive managed to get my sent date display back :)

*deletes all posts longer than 5 months old*
[View Quote]

Bot Teleport

Feb 22, 2002, 8:05pm
Sorry for all the non-SDK posts :)

[View Quote]

Bot Teleport

Feb 22, 2002, 8:09pm
:(

Nah, just getting started with using the newsgroups, only used the aw
newsgroup for the last week.

[View Quote]

About My Capitals

Feb 26, 2002, 5:00pm
:P at Dion
[View Quote]

Strike Rapier was Banned(?)

Feb 15, 2002, 6:33pm
Ahhh ha!

Thankyou very much for your help Robbie and AWC, it was a posting error on
my connection :p

- SR
------------------------------------------------------------
Be Afraid - Be VERY afraid - Cause now im making bots 2

[View Quote]

String

Feb 15, 2002, 6:29pm
Hey folks, im just wondering if anyone knows how to change the color of a
line of text in a RTB, ive tried various methods, none of which have worked,
tx.

- sr

[VB] Hearing Impared?! Gah..

Feb 16, 2002, 5:06pm
Hmm, with the OCX4, calling the events made no differneces... stange... :p

probably just my programming skills doing random things again :O

[View Quote]

Avatar Click Events

Feb 18, 2002, 5:58pm
Hello All,
Im currently designing my FireStorm Systems bot, which is gonna have
practicly everything eventually so I can try and learn about all the
differnt areas and functions in time. Im currently working on a crude
paintball bot for it, I wonder if anyone could help me with a little puzzle,
how can I tell which AV is doing the clicking.. and which AV has been
clicked on using the standard SDK?

Any help is apreciated

- Strike

Avatar Click Events

Feb 18, 2002, 7:00pm
im not sure if i mensioned it, but its VB that im working in :)
[View Quote]

Avatar Click Events

Feb 19, 2002, 6:51pm
Me, scared? You know me better than that... I wont be scared.. i just make a
complete mess up of the code :P

- SR

[View Quote]

Wishlist Bot Commands

Feb 26, 2002, 4:33pm
Nooooo!

Someone is bound to abuse it and tart changing peoples av to the oposite sex
etc... abdd idae... *reads on*

[View Quote]

Wishlist Bot Commands

Feb 27, 2002, 4:33pm
A persons avatar and choice of gestures are, and should always be at the
sole command of the person using that avatar / gesture. allowing others to
change a av of someone is like having someone take over ur body
[View Quote]

Wishlist Bot Commands

Feb 27, 2002, 4:34pm
who needs clicks to do that? just do the grenade capability say something
like "arm" to select a differnt weapon, effective on next click
[View Quote]

Multiple Login

Mar 4, 2002, 6:35pm
Hello folks,
Ive been having problems login in bots and using text to display the
events. It appears that the bot executes teh login command infinate times (I
get the error on brants functions for same item data).

Has anyone else had this problem?

- Mark

Multiple Login

Mar 5, 2002, 4:22pm
Thankya :) Ill try all that youve sugested :)

[View Quote]

he-alllppppppp! (help) please :)

Mar 6, 2002, 4:22pm
yeah, just use multiple controls, i have a old FireStorm systems bot u can
have a look though, its got easy 3 way telephone bot. Its 1 of the first I
made and has a few bugs, but it still can provide you with a idea.

Ill post it later, but im writing this post offline and it will take me a
day to find the old file and bute force though the password on the ZIP.

- Mark

[View Quote]

astart/astop/adone

Mar 7, 2002, 8:31pm
Hey everyone :) I kinda had nothing 2 do 1 night so I created a small
program to create astart/astop/adone commands automatically with more of a
object orientated approach. Ive attached my FireStorm Systems - Adone
Controller. For those of you who don't know how to use the commands (I
didn't upto a few days ago, then I wrote this to help me). This is easy to
understand and work with :) Its a very small EXE, scanned with every virus
scanner ive got, so its fine :D

- SR
*Making interesting little gadgets*

astart/astop/adone

Mar 7, 2002, 8:33pm
lol, sorry, forgot this...
adone.exe (24.0KB)

[View Quote]
begin 666 adone.exe
M35J0``,````$````__\``+ at `````````0 ``````````````````````````
M````````````````````N ````X?N at X`M G-(; at !3,TA5&AI<R!P<F]G<F%M
M(&-A;FYO="!B92!R=6X at :6X at 1$]3(&UO9&4N#0T*) ````````"/BOG;R^N7
MB,OKEXC+ZY>(2/>9B,KKEXBB])Z(RNN7B"+TFHC*ZY>(4FEC:,OKEX at `````
M`````%!%``!,`0,` at -N'/ ``````````X `/`0L!! at ``, ```" ```````#T
M$0```! ```! `````$ ``! ````0```$`````0````0``````````& ````0
M``"EH0``` at ``````$ ``$ `````0```0````````$ ``````````````A#D`
M`" at `````4 ``* H`````````````````````````````````````````````
M```````````````````````````````````````````H` at ``( `````0``"\
M````````````````````````````````````+G1E>'0````H+0```! ````P
M````$ ``````````````````( ``8"YD871A````^ D```! ````$ ```$ `
M`````````````````$ ``, N<G-R8P```" at *````4 ```! ```!0````````
M``````````! ``! )_Y].Q ``````````````$U35D)6338P+D1,3 ``````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``RD47. at 6U%SG at !2<]%01'-S`%)S8511<XUC1'/H6E%SZU!$<Z5(1',55%%S
MEB!0<Z<_1'.M5%%SK551<W2E47-S041S_\]#<]=$1'.=6U%S):%2<^GF1',9
MIE%S;5E/<Q]+1',P6%%S8551<_-44'-_C5)SO:)0<[&D47/A5%%SX551<W1%
M1',555%S4$]1<Q+>0G/*!E)S1J-1<R)$1',&$U%S1*%2<\JF47-1`5%SPD1$
M<YM-1',```````````4`" #K+T ``````/(O0 `%`` at `R#A ``````#2.$ `
M_R5 $$ `_R5 at $$ `_R5P$$ `_R4T$$ `_R4H$$ `_R5\$$ `_R44$$ `_R6,
M$$ `_R4X$$ `_R6($$ `_R6 $$ `_R5H$$ `_R5,$$ `_R5D$$ `_R4<$$ `
M_R4$$$ `_R68$$ `_R4`$$ `_R6L$$ `_R5X$$ `_R4\$$ `_R58$$ `_R6H
M$$ `_R6 at $$ `_R50$$ `_R4,$$ `_R6<$$ `_R4 at $$ `_R64$$ `_R6$$$ `
M_R4($$ `_R48$$ `_R6D$$ `_R6T$$ `_R6P$$ `_R4D$$ `_R4P$$ `_R5(
M$$ `_R40$$ `_R5L$$ `_R5T$$ `_R4L$$ `_R5<$$ `_R5$$$ `_R54$$ `
M_R60$$ `:/ at 60 #H\/___P```````# ```! `````````'DRD<Q994M AM%V
MH2 94 H````````!````````````4')O:F5C=#$```````````````#_S#$`
M$Z+#^ '.(C-/LNXU>LHMVI<Q,OR(<&.00X$1M#F;F(P`.D^M,YEFSQ&W# "J
M`&#3DP```````````````````````````````````````````````` at $``!8
M``````<`1G)M36%I; at `-`1T`05< at 06YI;6%T:6]N($]B:F5C="!!<W-E;6)L
M97(`&0$`0 at `C_____R0%`$9O<FTQ`#4\````60$``.\0``"$$ at ``1 at /_`2L`
M```!" at !&<F%297-U;'1S``,!!P!297-U;'1S``4``% *[Q"O!1(0`/\!C at ``
M`!()`'1X=%)E<W5L= #_%P!2:6-H5&5X=$QI8BY2:6-H5&5X=$)O> `#> #P
M`/\/1P0/$0`M3$()`$P````A0S02" ```#<<``"+!P``(4,T$ at $`! at `P````
M``#_______\!````````````````````!0`` at `````````````!``$`` at ``
M````_P(#,0````(-`$9R84]P97)A=&EO;G,``P$*`$]P97)A=&EO;G,`!0``
M\ _O$&<"$ at X`_P$G````$P at `8VUD06)O=70`! $%`$%B;W5T``1P"/ `!PC_
M`!$2`/\#. ````,0`$-M9$-R96%T94-O;6UA;F0`! $.`$-R96%T92!#;VUM
M86YD``1X`/ `CP?_`!$/`/\"`RX````$"0!&<F%!<W1A<G0``P$+`$%S=&%R
M="!4>7!E``4``/ at '?PAG`A(+`/\!(P````4-`'1X=$%S=&%R=%1Y<&4`` at 1X
M`/ `CP<=`1(,`/\"`RX````&"0!&<F%,:6YK5&\``P$+`$-O;G1I;G5E(%1O
M``5P"/ at '?PAG`A(*`/\!(P````<-`'1X=$-O;G1I;G5E5&\`` at 1X`/ `CP<=
M`1(-`/\"`S(````(#0!&<F%%=F5N=$%F=&5R``,!"P!%=F5N="!!9G1E< at `%
M``"P!.\05P,2" #_`2,````)#0!T>'1%=F5N=$%F=&5R``($> #P`/\/[P$2
M"0#_` at ,P````" at P`1G)A5&EM959A;'5E``,!" at !4:6UE(%9A;'5E``5P"% at "
M?PAG`A(&`/\!( at ````L,`'1X=%1I;65686QU90`"!' at `\ "/!QT!$ at <`_P(#
M+P````P,`$9R84%N:6UA=&EO; at `#`0D`06YI;6%T:6]N``4``% at "?PAG`A($
M`/\!( at ````T,`'1X=$%N:6UA=&EO; at `"!' at `\ "/!QT!$ at 4`_P(#, at ````X-
M`$9R84]B:F5C=$YA;64``P$+`$]B:F5C="!.86UE``5P" ``?PAG`A("`/\!
M(P````\-`'1X=$]B:F5C=$YA;64`` at 1X`/ `CP<=`1(#`/\"`S,````0#0!&
M<F%/8FIE8W14>7!E``,!# !/8FIE8W0 at 36]D96P`!0````!_"&<"$ at ``_P$C
M````$0T`='AT3V)J96-T5'EP90`"!' at `\ "/!QT!$ at $`_P("! ```% ```"B
MP_ at !SB(S3[+N-7K*+=J7``````````````````````````"0"0``````````
M``````````````````!A! ```````$020 !,````5D(U(? ?* at ``````````
M``````!^``````````````````H`"00`````````````M!E `!SP, ``____
M" ````$````!``$`Z0```* at 60 ",%T ``!) `' at ```!^````AP```( at `````
M````````````````````861O;F4`4')O:F5C=#$``%!R;VIE8W0Q`````" at "
M```X````T ```/ at ````8`0``( $``& !``#"`0``+ at ````````#P`0``_0$`
M`!4"````````8(A\.X_7&Q"YM00"' "4`F*(?#N/UQL0N;4$`AP`E (\6:7I
ML,K1$8P+``#X=4VA_>8+GKNE+4^-=^TQ6%X6<HWY&R74Z&%%OD3_%?>=2\(\
M```````````` at /\!````Q7-%9 at ;E6$* V=:[_;YK:UWF^2/4"M1&E" at 3Q.BQ
M. at 8`````=A=7, ```````! ````#````````````` at ``! at ,```<`````` at ``
M! at ,```<`````` at ``! at ,```<``````````````````````0`$``<`````````
M```````````````;`0``&P$```"H_?__I_W__Z;]__^D_?__I?W__Z/]__^B
M_?__H?W__P(````.! at ``#P8``! &```1! at ``$ at 8``!,&```+_O__````````
M```=````\&4D`0H```#^_?__```````````+````B-XD`0 at ````*````! at ``
M```````(````F(TC`0 at ```!"86-K0V]L;W(`16YA8FQE9 !497AT4E1&`" `
M<0!H`&H`( !:`'0`=0!1`& at `80`[`&H`9 !F`&X`6P!I`&$`90!T`'(`( !2
M24-(5% at S,BY/0U at `4FEC:%1E>'1,:6(N4FEC:%1E>'1";W at `4FEC:%1E>'1"
M;W at `(0(``"$"`/0!``#P&T ``````- N0 " .4 `\ D```A 0 #F$$ ``$!
M`"H`7 !!`$,`. at !<`% `< at !O`&<`< at !A`&T`( !&`&D`; !E`',`7 !-`&D`
M8P!R`&\`<P!O`&8`= ` at `%8`:0!S`'4`80!L`" `4P!T`'4`9 !I`&\`7 !6
M`$(`.0`X`%P`4 !R`&\`: at !E`&,`= `Q`"X`= at !B`' `````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M`````````````````````````````````````````````* at 60 ``````````
M`"Q 0 !L+D `_____P`````<0$ ``S_99^?$84J_:M,MN,1$>0H``0`!``$`
M1!Q `````````````````(0<0 `)! ``"0 at ````````"````H") `/____\D
M'T `````````````````?!Q ``(```!T'$ `__\``(. `0``````MV9/P;=F
M3\%&<FU-86EN`%!R;VIE8W0Q`````#$R_(AP8Y!# at 1&T.9N8C `B,S3 ;6L-
M3[$GGU at I*X!,HL/X`<XB,T^R[C5ZRBW:EUJ%_T+K%#1.GK_4.I\M4LSJ3JTS
MF6;/$;<,`*H`8-.31G)A07-T87)T````+CW[_/J at :!"G. at `*S-QM4,Z7%!R
M;V=R86T at 1FEL97-<36EC<F]S;V9T(%9I<W5A;"!3='5D:6]<5D(Y.%Q60C8N
M3TQ"````5D(``.P<0 ``````! at ````D```#\'$ `-!U `-!"0 ``````````
M`$!\&0!&<F%297-U;'1S``!&<F%/<&5R871I;VYS````1G)A3V)J96-T5'EP
M90```$9R84QI;FM4;P```$9R845V96YT069T97(```!&<F%4:6UE5F%L=64`
M````\DZM,YEFSQ&W# "J`&#3DT-M9$-R96%T94-O;6UA;F0`````1G)A06YI
M;6%T:6]N`````$9R84]B:F5C=$YA;64```!C;61!8F]U= ````#B3JTSF6;/
M$;<,`*H`8-.3='AT3V)J96-T5'EP90```,5S168&Y5A" at -G6N_V^:VMT>'12
M97-U;'0````298=F-ZXC38,=0KK-TW6K0SI<5TE.1$]74UQ3>7-T96TS,EQ2
M24-(5% at S,BYO8V$`````4FEC:%1E>'1,:6(`1!Y ```````!``(``````%0>
M0 !X'D `U$) ````````````0'P9`'1X=$]B:F5C=$YA;64```!T>'1!;FEM
M871I;VX`````='AT5&EM959A;'5E`````'1X=$%S=&%R=%1Y<&4```!T>'1%
M=F5N=$%F=&5R````='AT0V]N=&EN=654;P```#I/K3.99L\1MPP`J at ! at TY-&
M;W)M``````P`C ```````````!8```!A`&X`:0!M`&$`= !E`" `;0!E`" `
M```*````( `Q`" `,0` at ````C ```$$`8P!T`&D`= at !E`" `5P!O`'(`; !D
M`',`( !!`&X`:0!M`&$`= !I`&\`; at ` at `&$`<P!T`&$`< at !T`"\`80!S`'0`
M;P!P`"\`80!D`&\`; at !E`" `8P!O`&T`< !I`&P`90!R`" `+0` at `$T`>0` at
M`%,`= !R`&D`:P!E`" `+P` at `$T`80!R`&L``````&H```!*`'4`<P!T`" `
M<P!O`&T`90!T`& at `:0!N`&<`( !)`" `9 !I`&0`( !W`& at `90!N`" `20` at
M`& at `80!D`" `; at !O`'0`: !I`&X`9P` at `&(`90!T`'0`90!R`" `= !O`" `
M9 !O`"$``````````````.%.K3.99L\1MPP`J at ! at TY-$````60!O`'4`( !A
M`'(`90` at `&T`:0!S`',`:0!N`&<`( !A`" `< at !E`'$`=0!I`'(`90!D`" `
M;P!P`'0`:0!O`&X`(0``````. ```$\`8 at !J`&4`8P!T`" `0P!O`&T`;0!A
M`&X`9 ` at `$,`;P!M`' `:0!L`&4`( !%`'(`< at !O`'(``````! at ```!#`'(`
M90!A`'0`90` at `&X`80!M`&4`( ``````! ```"P`( ``````% ```" `+ ` at
M`$$`4P!T`&\`< `[`" ``````!(```` at `$$`<P!T`&$`< at !T`#L`( ````P`
M``!!`&0`;P!N`&4`( ``````$ at ```"P`( !!`%,`= !A`'(`= ` at ````5D)!
M-BY$3$P`````7U]V8F%,871E261#86QL3&0```!?7W9B85-T<E9A<DUO=F4`
M7U]V8F%3=')-;W9E`````%]?=F)A4W1R0V%T`%]?=F)A5F%R1'5P`%]?=F)A
M1G)E95-T<DQI<W0`````7U]V8F%&<F5E5F%R`````%]?=F)A1G)E94]B:DQI
M<W0`````7U]V8F%,871E2613= ```%]?=F)A1G)E94]B: at ````!?7W9B849R
M9653='(`````7U]V8F%(<F5S=6QT0VAE8VM/8FH`````7U]V8F%/8FI3970`
M7U]V8F%3=')#;7 `7U]V8F%&<F5E5F%R3&ES= ````!?7W9B859A<D-A= `!
M````\!M ```````L+D `_____P````!$'$ `"$! ``````#X'Q\`````````
M````````&"- ``$```" at '$ ``````! at C0 `!````("- ```````<(T `% ``
M`" C0 `"`+<!: !L`$ F0 #L0D ``````" at ?' "P'$ `P!Q `$ `#0`T````
MT!Q ``0``P```````````$ at F0 ` at (QP`X!Q ``0``P! ``T`. ```- <0 `!
M``,```````````"4)D `(",<`& =0 `!``,`0 `-`#P```#0'$ `` at `#````
M````````X"9 `" C' !L'4 `` at `#`$ `#0! ````T!Q `! ``P``````````
M`"PG0 ` at (QP`?!U `! ``P! ``T`1 ```- <0 `&``,```````````!X)T `
M(",<`(P=0 `&``,`0 `-`$ at ```#0'$ `" `#````````````Q"= `" C' "8
M'4 `" `#`$ `#0!,````T!Q ``H``P```````````! H0 ` at (QP`J!U ``H`
M`P! `!$`4 ```+ at =0 `#``,```````````!<*$ `,",<`, at =0 `#``,`0 `-
M`%0```#0'$ `# `#````````````N"A `" C' #<'4 `# `#`$ `#0!8````
MT!Q ``X``P````````````0I0 ` at (QP`[!U ``X``P! `!$`7 ```+ at =0 `3
M``,```````````!0*4 `,",<`/P=0 `3``,`0 `8`& ````('D `$0`#````
M````````K"E `$ C' `8'D `$0`#`$ `&0!D````*!Y `!(``P``````````
M`"0J0 !0(QP`.!Y `!(``P! `! at `: ```` at >0 `/``,```````````" at *D `
M0",<`*P>0 `/``,`0 `8`&P````('D `#0`#````````````&"M `$ C' "\
M'D `#0`#`$ `& !P````"!Y ``L``P```````````) K0 ! (QP`S!Y ``L`
M`P! `! at `= ```` at >0 `%``,````````````(+$ `0",<`-P>0 `%``,`0 `8
M`' at ````('D `"0`#```````````` at "Q `$ C' #L'D `"0`#`$ `& !\````
M"!Y ``<``P```````````/ at L0 ! (QP`_!Y ``<``P! `!\` at ````P?0 #_
M____``````````!P+4 `8",<`!P?0 #_____#"Y `!DN0 ``````("- `* B
M0 #<$4 `XA% `. at 10 ``````````````````````````````````````````
M`````````````````````````````````$ at C0 " at (D `W!% `.(10 #H$4 `
M````````````````````````````````````````````````````````````
M``````````````!P(T `H") `-P10 #B$4 `Z!% ````````````````````
M````````````````````````````````````````````````````````F"-
M`* B0 #<$4 `XA% `. at 10 ``````````````````````````````````````
M`````````````````````````````````````, C0 " at (D `W!% `.(10 #H
M$4 `````````````````````````````````````````````````````````
M``````````````````#H(T `H") `-P10 #B$4 `Z!% ````````````````
M````````````````````````````````````````````````````````````
M$"1 `* B0 #<$4 `XA% `. at 10 ``````````````````````````````````
M`````````````````````````````````````````# at D0 " at (D `W!% `.(1
M0 #H$4 `$2Y ````````````````````````````````````````````````
M````````````````````````````````````````````8"1 `* B0 #<$4 `
MXA% `. at 10 ``````````````````````````````````````````````````
M`````````````````````````( at D0 " at (D `W!% `.(10 #H$4 `````````
M````````````````````````````````````````````````````````````
M``````"P)$ `H") `-P10 #B$4 `Z!% ``0N0 ``````````````````````
M````````````````````````````````````````````````````````````
M`````````- at D0 " at (D `W!% `.(10 #H$4 `````````````````````````
M````````````````````````````````````````````````````````````
M```````````````````````````````````````````````````E0 " at (D `
MW!% `.(10 #H$4 `````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M```````````````````````````````````H)4 `H") `-P10 #B$4 `Z!%
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````!0)4 `H") `-P10 #B$4 `Z!% ````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````````````!X)4 `
MH") `-P10 #B$4 `Z!% ````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````" at )4 `H") `-P10 #B$4 `Z!%
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````#()4 `H") `-P10 #B$4 `Z!% ````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````````````#P)4 `
MH") `-P10 #B$4 `Z!% ````````````````````````````````````````
M````````````````````````````````````````````````````````````
M```````````````````````````````````8)D `H") `-P10 #B$4 `Z!%
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````"!;"0$6P```.G/
M```` at 6PD!$\```#I( at (`````+"Y `````````````````* B0 #_____````
M````````````)"Y ``````` at +D `("Y `" N0 ````````````````",````
M! ````````#P&T `_____P````` at +D `````````````````_____P`````X
M'4 `T!Q `-A"0 `X'4 `N!U `-Q"0 `X'4 `"!Y `.!"0 "$'D `*!Y `.1"
M0 `X'4 `#!] `.A"0 #IZ>GIS,S,S,S,S,S,S,S,58OL at ^P,:.800 !DH0``
M``!09(DE`````('LN ```%-65XEE],=%^, 00 "+10B+R(/A`8E-_"3^4(E%
M"(L0_U($,_:X" at ```(EUK(EUG(EUC(E%C(E%G(E%K(U%W+D$``* OP at ```!J
M"8FU?/___U")==R)=<R)=;R)M6S___^)392)3:2)3;3'181 at 'T `B;U\____
M_Q5L$$ `C4V,C56<48U%K%)0C8U\____5HU5W%&-1<R)O6S___^+/7000 !2
M4,>%=/____0?0 #_UXV-;/___U"-5;Q14O_74/\5+!! `(U%C(U-G%"-5:Q1
MC46\4HU-S%"-5=Q14FH&_Q40$$ ` at \0<B77\:!<P0 #K)(U%C(U-G%"-5:Q1
MC46\4HU-S%"-5=Q14FH&_Q40$$ ` at \0<P\.+10A0BPC_40B+1?R+3>Q?7F2)
M#0````!;B^5=P at 0`D)"0D)"0D)"0D%6+[(/L#&CF$$ `9*$`````4&2))0``
M``"![ P!``!35E>)9?3'1?C0$$ `BW4(B\:#X &)1?R#YOY6B74(BP[_402+
M%C/;5HE=Z(E=Y(E=X(E=W(E=V(E=U(E=T(E=S(E=R(E=Q(E=P(E=O(E=N(E=
MM(E=L(E=K(E=J(E=I(E=H(E=G(E=F(E=B(F=>/___XF=:/___XF=6/___XF=
M2/___XF=./____^2/ ,``%"-1:Q0_Q4P$$ `B_B-5>A25XL/_Y& at ````.\/;
MXGT2:* ```!H:"! `%=0_Q4D$$ `BT7H4&AD($ `_Q5($$ `B_B-3>CWWQO_
M]]_WW_\5L!! `(U-K/\5M!! `&8[^P^$J ```(L.5O^1/ ,``(L],!! `(U5
MK%!2_]>+"(U5Z%)0B844_____Y& at ````.\/;XGT8BXT4____:* ```!H:"!
M`%%0_Q4D$$ ` at ^P0BT7HB]2Y" ```(E-B(E%D(D*BTV,:/O]__]6B4H$BPZ)
M7>B)0 at B+192)0 at S_D4 #``"-5:A04O_74/\5I!! `(U%J(U-K%!1: at +_%1 at 0
M0 "#Q R-38C_%0 at 00 #K!HL],!! `(L65O^2- ,``%"-1:Q0_]>+"(U5Z%)0
MB844_____Y& at ````.\/;XGT8BXT4____:* ```!H:"! `%%0_Q4D$$ `BQ96
M_Y(L`P``4(U%J%#_UXL(C57D4E")A0S_____D: ````[P]OB?1B+C0S___]H
MH ```&AH($ `45#_%2000 "+%E;_DB0#``!0C46D4/_7BPB-5>!24(F%!/__
M__^1H ```#O#V^)]&(N-!/___VB at ````:& at at 0 !14/\5)!! `(L65O^2# ,`
M`%"-1:!0_]>+"(U5W%)0B87\_O___Y& at ````.\/;XGT8BXW\_O__:* ```!H
M:"! `%%0_Q4D$$ `BQ96_Y(<`P``4(U%G%#_UXOXC5784E>+#_^1H ```#O#
MV^)]$FB at ````:& at at 0 !74/\5)!! `(M%V%!H9"! `/\52!! `(M-W(OX]]\;
M_U%':&0 at 0 #WW_\52!! `(M5X/?8&\!20&AD($ `]] at +^/\52!! `/?8&\!
M]] at +^(M%Y%!H9"! `/\52!! `(M-Z/?8&\!10&AD($ `]] at +^/\52!! `/?8
M&\"-5=A 4O?8"_B-1=R-3>!0C57D48U%Z%)0: at 7_%8000 "-39R-5:!1C46D
M4HU-J%"-5:Q14FH%_Q48$$ ` at \0P9CO[#X2P````BS64$$ `N00``H")C6#_
M__^X" at ```(F-</___[\(````C94X____C8UX____B858____B85H____QX5
M____R"! `(F]./_____6C95(____C4V(QX50____?"! `(F]2/_____6C858
M____C8UH____4(V5>/___U%2C46(:C!0_Q4L$$ `C8U8____C95H____48V%
M>/___U*-38A046H$_Q40$$ ` at \04Z1P$``"+%E;_DC0#``!0C46L4/\5,!!
M`(OXC57H4E>+#_^1H ```#O#V^)]$FB at ````:& at at 0 !74/\5)!! `(L&5O^0
M+ ,``(U-J%!1_Q4P$$ `B_B-1=Q05XL7_Y* at ````.\/;XGT2:* ```!H:"!
M`%=0_Q4D$$ `BPY6_Y$D`P``C56D4%+_%3 00 "+^(U-T%%7BP?_D* ````[
MP]OB?1)HH ```&AH($ `5U#_%2000 "+%E;_D at P#``!0C46 at 4/\5,!! `(OX
MC57$4E>+#_^1H ```#O#V^)]$FB at ````:& at at 0 !74/\5)!! `(L&5O^0' ,`
M`(U-G%!1_Q4P$$ `B_B-1;105XL7_Y* at ````.\/;XGT2:* ```!H:"! `%=0
M_Q4D$$ `BTWHBST at $$ `: at A0 !1_]>+'9P00 "+T(U-Y/_34& at H(4 `_]>+
MT(U-X/_34& at T'T `_]>+T(U-V/_3BU7<4%+_UXO0C4W4_]-0:% ?0 #_UXO0
MC4W,_]-0BT704/_7B]"-3<C_TU!H-"% `/_7B]"-3<#_TXM-Q%!1_]>+T(U-
MO/_34&A0(4 `_]>+T(U-N/_34&AH(4 `_]>+T(U-L/_3BU6T4%+_UX/L$+D(
M````B]2)38B)19")"HM-C(E*!(E""(M%E(E"#(L.:/O]__]6_Y% `P``C568
M4%+_%3 00 !0_Q6D$$ `C46TC4VP4(U5N%&-1;Q2C4W$4(U5P%&-1<A2C4W0
M4(U5S%&-1=12C4W<4(U5V%&-1>!2C4WD4(U5Z%%2: at __%8000 "-19B-39Q0
MC56 at 48U%I%*-3:A0C56L45)J!O\5&!! `(/$7(U-B/\5"!! `(L&5O^0% ,`
M`(U-K%!1_Q4P$$ `BQ"-3>A14(F%%/____^2H ```(7 V^)]&(N5%/___VB at
M````:& at at 0 !24/\5)!! `(M%Z%!H9"! `/\52!! `/?8&\"-3>CWV/?8B84,
M_____Q6P$$ `C4VL_Q6T$$ `9H.]#/___P`/A!<!``"+#E;_D10#``"-5:A0
M4O\5,!! `(L(C57D4E")A13_____D: ```"%P-OB?1B+C13___]HH ```&AH
M($ `45#_%2000 "+%FH`:/O]__]6_Y) `P``4(U%K%#_%3 00 "-38A04?\5
M4!! `(/$$%#_%0P00 "+T(U-Z/_34&A\(4 `_]>+T(U-X/_3BU7D4%+_UX/L
M$+D(````B]2)C7C___^)18!H^_W__XD*BXU\____5HE*!(L.B4((BT6$B4(,
M_Y% `P``C56D4%+_%3 00 !0_Q6D$$ `C47DC4W at 4(U5Z%%2: at /_%8000 "-
M1:2-3:A0C56L45)J`_\5&!! `(V%>/___XU-B%!1: at +_%1 00 "#Q"PSVXE=
M_&A?.4 `Z8P```"-5;"-1;12C4VX4(U5O%&-1<!2C4W$4(U5R%&-1<Q2C4W0
M4(U5U%&-1=A2C4W<4(U5X%&-1>12C4WH4%%J#_\5A!! `(U5F(U%G%*-3:!0
MC56D48U%J%*-3:Q046H&_Q48$$ ` at \1<C958____C85H____C8UX____4E"-
M58A14FH$_Q40$$ ` at \04P\.+10A0BPC_40B+1?R+3>Q?7F2)#0````!;B^5=
MP at 0`D)">GIZ>K#D``/__________:#H````0````````````````````````
M`````'8Z``" . at ``CCH``)XZ``"P. at ``Q#H``-0Z``#H. at ``]CH```0[```<
M.P``4P(` at "P[```Z.P``3#L``%X[``!H.P``=CL``(H[``"8.P``ICL``+H[
M``#0.P``VCL``/8[```,/ ``&CP``& "`( L/ ``0#P``$X\``!8/ ``:CP`
M`'P\``"0/ ``HCP``&0``("P/ ``OCP``, at \``#8/ ``XCP``/(\``#\/ ``
M!CT``!8]````````35-60E9--C N1$Q,`````%]#26-O<P````!?861J7V9P
M=&%N`````%]?=F)A1G)E959A< at ````!?7W9B85-T<E9A<DUO=F4```!?7W9B
M849R965687),:7-T`````%]A9&I?9F1I=E]M-C0```!?7W9B849R965/8FI,
M:7-T`````%]A9&I?9G!R96TQ````7U]V8F%3=')#870```!?7W9B84AR97-U
M;'1#:&5C:T]B: at ````!?861J7V9D:79?;3,R````7U]V8F%/8FI3970```!?
M861J7V9D:79?;3$V:0````!?861J7V9D:79R7VTQ-FD```!?0TES:6X`````
M7U]V8F%#:&MS=&L```!%5D5.5%]324Y+7T%D9%)E9 at ```%]?=F)A4W1R0VUP
M````7V%D:E]F<&%T86X```!?7W9B84QA=&5)9$-A;&Q,9 ```$5614Y47U-)
M3DM?4F5L96%S90````!?0TES<7)T````159%3E1?4TE.2U]1=65R>4EN=&5R
M9F%C90```%]?=F)A17AC97!T2&%N9&QE< at ````!?861J7V9P<F5M`````%]A
M9&I?9F1I=G)?;38T`````%]?=F)A1E!%>&-E<'1I;VX`````7U]V8F%687)#
M870```!?0TEL;V<`````7V%D:E]F9&EV7VTS,FD`````7V%D:E]F9&EV<E]M
M,S)I````7U]V8F%&<F5E4W1R3&ES= ````!?861J7V9D:79R7VTS, at ````!?
M861J7V9D:79?< at ```%]?=F)A5F%R1'5P````7T-)871A; at ```%]?=F)A4W1R
M36]V90````!?86QL;75L````7U]V8F%,871E2613= ```%]#271A; at ````!?
M0TEE>' `````7U]V8F%&<F5E4W1R`````%]?=F)A1G)E94]B: at ``````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M```````````` at -N'/ 8```````,``P```% at ``( .````0 `` at ! ````H``"
M`````(#;ASP&```````!``$```" ``" `````(#;ASP&```````!``$```"8
M``" `````(#;ASP&```````#`#%U``# at ``" ,G4``, at ``( S=0``L `` at ``
M``" VX<\! at ```````0`)! ``^ ````````" VX<\! at ```````0``````" $`
M``````" VX<\! at ```````0``````& $```````" VX<\! at ```````0``````
M* $```````" VX<\! at ```````0``````. $``%!1``!H`P``L 0```````"X
M5 ``, ```+ $````````Z%0``" at !``"P! ```````!!6``#H` at ``L 0`````
M``#X6 ``, $``+ $``````````````````!H`S0```!6`%,`7P!6`$4`4 at !3
M`$D`3P!.`%\`20!.`$8`3P``````O03O_ at ```0````$``````````0``````
M```````````$`````0```````````````````$0``````%8`80!R`$8`:0!L
M`&4`20!N`&8`;P``````) `$````5 !R`&$`; at !S`&P`80!T`&D`;P!N````
M```)!+ $R (```$`4P!T`'(`:0!N`&<`1 at !I`&P`90!)`&X`9 at !O````I (`
M``$`, `T`# `.0`P`#0`0 at `P````5 `Z``$`0P!O`&T`;0!E`&X`= !S````
M00!7`" `00!N`&D`;0!A`'0`:0!O`&X`( !4`'(`:0!G`&<`90!R`" `0P!R
M`&4`80!T`&\`< at ``````- `4``$`0P!O`&T`< !A`&X`>0!.`&$`;0!E````
M``!&`&D`< at !E`%,`= !O`'(`;0```( at `8 `!`$8`:0!L`&4`1 !E`',`8P!R
M`&D`< !T`&D`;P!N``````!!`" `= at !E`'(`>0` at `',`:0!M`' `; !E`" `
M80!S`'0`80!R`'0`( `O`" `80!D`&\`; at !E`" `80!N`&D`;0!A`'0`:0!O
M`&X`( !C`'(`90!A`'0`;P!R`"X```! `!H``0!,`&4`9P!A`&P`0P!O`' `
M>0!R`&D`9P!H`'0```!-`&$`< at !K`" `4 at !A`&X`9 !A`&P`; ``````> !6
M``$`4 !R`&\`9 !U`&,`= !.`&$`;0!E``````!&`&D`< at !E`%,`= !O`'(`
M;0` at `%,`>0!S`'0`90!M`',`( `M`" `00!7`" `00!N`&D`;0!A`'0`:0!O
M`&X`( !#`&\`;0!M`&$`; at !D`&4`< at ``````+ `*``$`1 at !I`&P`90!6`&4`
M< at !S`&D`;P!N```````Q`"X`, `P```````P``H``0!0`'(`;P!D`'4`8P!T
M`%8`90!R`',`:0!O`&X````Q`"X`, `P```````L``P``0!)`&X`= !E`'(`
M; at !A`&P`3 at !A`&T`90```&$`9 !O`&X`90```#P`% `!`$\`< at !I`&<`:0!N
M`&$`; !&`&D`; !E`&X`80!M`&4```!A`&0`;P!N`&4`+ at !E`' at `90``````
M`0`#`" at ` at `!``$`, $``#%U(" 0``$`! #H` at ``,G40$! ``0`$`" at !```S
M=2 at ````0````( ````$`! ``````P ``````````````````````````````
M``" ``" ```` at ( ` at ```( ` at " at `` at (" `,# P ```/\``/\```#__P#_
M````_P#_`/__``#___\```````````````````````````````````````CP
M=P````C___!W< `/____\' ```_____P````#_____ ````/__^ ``````^
M``[ at ``````[NX `````.X ``````````````````````````````````````
M``````````#__P``__\``/^/``#X`P``P $``, '``# #P``P \``, /``#
M#P``P \``,!_``#'_P``__\``/__``#__P``* ```" ```! `````0`$````
M``" ` at ```````````````````````````````( ``( ```" at " ```` at "
M`(" ``" at ( `P,# ````_P``_P```/__`/\```#_`/\`__\``/___P``````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````"/_P=P`````````````(____\'=W ````````(________
M!W=W< ````#__________P=W< ``````__________\'< ```````/______
M____``````````#__________P``````````__________\``````````/__
M________``````````#__________P``````````__________\`````````
M`/__________``````````#_______^(B ``````````_____XB(````````
M`````/__B( at ``.[N``````````"(B ``[NX```````````````#N[ at ``````
M`````````.[N````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M`````````````````/_____________________________!___\`'__ at `?
M^ ``!_ at ``!_X``!_^ `!__ at ``?_X``'_^ `!__ at ``?_X``'_^ `!__ at ``?_X
M``'_^ `!__ at ``?_X`#__^ /___ at ____[____________________________
M________* ```" ```! `````0`!`````````0``````````````````````
M``````#___\`_____________________________\'___P\?__#_!_X/_P'
M^__\'_O__'_[__W_^__]__O__?_[__W_^__]__O__?_[__W_^__]__O_P?_[
M_#W_^\/!__ at \/__[P___^#____O_________________________________
M________________________________P?___ !__\ `'_ at ```?X```?^ ``
M?_ at ``?_X``'_^ `!__ at ``?_X``'_^ `!__ at ``?_X``'_^ `!__ at ``?_X``'_
M^ `___ at #___X/___^____________________________________P``````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
&````````
`
end

astart/astop/adone

Mar 8, 2002, 4:19pm
Hmmm, which OCX would that be? Its only a bunch of string controls, only the
core control RTP textbox and textbox is needed.

- SR

[View Quote]

astart/astop/adone

Mar 8, 2002, 9:47pm
nope, its part of the common controls, hundreds and hundreds of applications
use that OCX, anything VB with color formatted text I think.. anyway, the
OCX should be available on Downloads.com :) or in the XP service pack, but
chances are yours has been deleted, as all mine were on at installation.

- Mark

[View Quote]

1  2  3  4  5  6  ...  141  |  
Awportals.com is a privately held community resource website dedicated to Active Worlds.
Copyright (c) Mark Randall 2006 - 2024. All Rights Reserved.
Awportals.com   ·   ProLibraries Live   ·   Twitter   ·   LinkedIn