Thursday, March 29, 2012

Access Denied error in SQL Server 2000 db

Hi!
I have stored procedure that executes BULK INSERT command inside.
Recently I migrated my sql 7 database to sql 2000 SP2.
Now when running this stored procedure from both application and Query
Analyzer I'm getting this message:
Server: Msg 4861, Level 16, State 1, Line 1 Could not bulk insert
because file '\\HSCDRMAN01\CDR\BCPFiles\BCP_cdr_05301
999.close' could
not be opened. Operating system error code 5(Access is denied.).
I found article on Microsoft web site that this is a known bug and it
only applies to SQL Server 7 (BUG #: 56167 (SQLBUG_70) )
Why am I getting this error in SQL Server 2000?
Should I apply the latest SP to SQL 2000 to fix this security issue?
Thank you,
YelenaI checked all permissions.
SQL Server service is running under domain account and this user has
access to the share where the file is located.
Also when executing BULK INSERT with master..xp_cmdshell I'm logged in
as sa.
I can't figure out why I'm getting Access Denied error.
Please help.
enaglozman@.yahoo.com (Lena) wrote in message news:<fc1e8071.0403160709.2dfad366@.posting.goo
gle.com>...
> Hi!
> I have stored procedure that executes BULK INSERT command inside.
> Recently I migrated my sql 7 database to sql 2000 SP2.
> Now when running this stored procedure from both application and Query
> Analyzer I'm getting this message:
> Server: Msg 4861, Level 16, State 1, Line 1 Could not bulk insert
> because file '\\HSCDRMAN01\CDR\BCPFiles\BCP_cdr_05301
999.close' could
> not be opened. Operating system error code 5(Access is denied.).
> I found article on Microsoft web site that this is a known bug and it
> only applies to SQL Server 7 (BUG #: 56167 (SQLBUG_70) )
> Why am I getting this error in SQL Server 2000?
> Should I apply the latest SP to SQL 2000 to fix this security issue?
> Thank you,
> Yelena|||Does it fail if you are logged on as the account running MSSQLServer
service? Also, that account will need read permissions to the share/file
that you reference:
'\\HSCDRMAN01\CDR\BCPFiles\BCP_cdr_05301
999.close'
Steve
"Lena" <lenaglozman@.yahoo.com> wrote in message
news:fc1e8071.0403230855.57f26b9a@.posting.google.com...
> I checked all permissions.
> SQL Server service is running under domain account and this user has
> access to the share where the file is located.
> Also when executing BULK INSERT with master..xp_cmdshell I'm logged in
> as sa.
> I can't figure out why I'm getting Access Denied error.
> Please help.
> enaglozman@.yahoo.com (Lena) wrote in message
news:<fc1e8071.0403160709.2dfad366@.posting.google.com>...sql

Access Denied Error attaching an existing MDF

I guess I messed up somehow, but I am not sure how to fix this.

On Vista, with SQL Server 2005 Developer Edition, I created a 6GB database and loaded it up with data. I then decided that I wanted to burn a copy of the files, so I detached (no problem.) But when I wanted to copy the physical MDF and LOG file to another folder. Vista said I did not have access to the folder, but if I hit continue, no problem--it would correct the situation. I did. I copied the files (no problem), but now when I go to reattach to the MDF (that is still in the Data folder), I get a "CREATE FILE encountered operating system 5 (Access is denied)" error. I checked permissions and SQL Server has full rights. I am the only user on the system (Admin), and the files do not appear to have anything weird set (read only, advanced permissions, etc.)

What did I do wrong? And how do I fix this? Oh the joys of advanced Vista security features Smile Even the admin is locked out now.

Thank you for your help!

Michael

Usually the difference for Vista is that you do not get access simply by being a member of the Administrators group. You would need to grant explicit access to the account for the SQL service as well as your own account.|||

I want to understand what you are saying. Are you saying the error is occuring because my login was added to the permissions on the Data folder? MSSQLSERVER has full permissions to the folder and file. That doesn't appear to have changed. Or are you saying that I need to add permissions back for another service like the Agent?

I am trying to understand what Vista did that makes this operation fail.

Thanks!

|||

Attach will attempt to verify that your account has access to the file before attaching it to the server. This keeps random users from attaching random files that they would not normally have access to.

Check the file permissions for both the service account and your account.

|||

Check the NTFS permissions on the actual files. I have see time where after detaching a database from the SQL Server the only user account which has access to the files is the user who detached the database. All other accounts are removed including the SQL Server.

It can be a deceving problem becuase the NTFS permissions on the folder look fine (because they are), but the NTFS permissions of the data files are screwed up.

|||

I will check that out when I get in front of that PC -- thanks! I am still baffled by it. I was able to copy the file to another folder and attach, so I was able to move on. However, the copy that was in the original location still has the issue.

Thank you for replying -- that actually makes sense.

Michael

|||Permission on detach works differently in sql2k5 than sql2k (i.e. it does not preserve all acls like sql2k). This has caught many sql2k users off guard.
http://msdn2.microsoft.com/en-us/library/ms189128.aspx

Access Denied Error

I'm running SQL Server 2000 on a Windows Server 2003 machine. We have sp3 o
n
SQL. I am getting an error when I query against my views. The views use a
linked server that grabs data from FoxPro dbf files located on the same
machine.
In resolving a memory issue, we disabled the 'Allow InProcess' setting on
the OLE DB for ODBC Drivers provider. I don't think this has anything to do
w/ the access denied error because I enabled 'Allow InProcess' to test it an
d
then disabled again when I got the error.
The error message is:
Server: Msg 7399, Level 16, State 1, Line 1
OLE DB provider 'MSDASQL' reported an error. Access denied.
OLE DB error trace [OLE/DB Provider 'MSDASQL' IUnknown::QueryInterface
returned 0x80070005: Access denied.].
The account is a domain account that is part of the administrators group on
the server. It is also a System Administrator role in SQL.
Any help is appreciated. Thanks, PhilPhil,
The obvious things to check are that the account running SQL Server
(which is likely not your Windows account) has the proper permissions
on the files in question, and that you are referring to them in a way that
is correct for that account (not using a drive letter defined at logon for
your own Windows account, for example)
Next, you could try a different way of accessing the linked server data.
Try an alternative among the 4-part name lnksrv.database.owner.table,
OpenQuery, OpenRowSet, or OpenDataSource. If there is another
provider besides MSDASQL, try it.
Beyond that, unfortunately, most newsgroup threads with this question
end with
no resolution. :( My best guess is to try adding this registry key,
though I'm not
certain this works for an arbitrary provider.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MS
SQLServer\Providers\MSDASQL\Disallow
AdhocAccess
Make this a REG_DWORD with value 0.
Here is a link to a few dozen newsgroup threads on this issue - maybe
you'll find something.
http://groups-beta.google.com/group...rface+sqlserver
If you resolve this problem, please let us know!
Steve Kass
Drew University
phil wrote:

>I'm running SQL Server 2000 on a Windows Server 2003 machine. We have sp3
on
>SQL. I am getting an error when I query against my views. The views use a
>linked server that grabs data from FoxPro dbf files located on the same
>machine.
>In resolving a memory issue, we disabled the 'Allow InProcess' setting on
>the OLE DB for ODBC Drivers provider. I don't think this has anything to d
o
>w/ the access denied error because I enabled 'Allow InProcess' to test it a
nd
>then disabled again when I got the error.
>The error message is:
>Server: Msg 7399, Level 16, State 1, Line 1
>OLE DB provider 'MSDASQL' reported an error. Access denied.
>OLE DB error trace [OLE/DB Provider 'MSDASQL' IUnknown::QueryInterface
>returned 0x80070005: Access denied.].
>The account is a domain account that is part of the administrators group on
>the server. It is also a System Administrator role in SQL.
>Any help is appreciated. Thanks, Phil
>
>|||Well, I resolved this issue by selecting 'Allow InProcess' for the OLE DB
Provider for ODBC Drivers. However, I had deselected this setting to correc
t
a memory issue I am having. Now, I'm looking to resolve that a different
way. (argh.)
- Phil
"Steve Kass" wrote:

> Phil,
> The obvious things to check are that the account running SQL Server
> (which is likely not your Windows account) has the proper permissions
> on the files in question, and that you are referring to them in a way that
> is correct for that account (not using a drive letter defined at logon for
> your own Windows account, for example)
> Next, you could try a different way of accessing the linked server data.
> Try an alternative among the 4-part name lnksrv.database.owner.table,
> OpenQuery, OpenRowSet, or OpenDataSource. If there is another
> provider besides MSDASQL, try it.
> Beyond that, unfortunately, most newsgroup threads with this question
> end with
> no resolution. :( My best guess is to try adding this registry key,
> though I'm not
> certain this works for an arbitrary provider.
> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MS
SQLServer\Providers\MSDASQL\Disall
owAdhocAccess
> Make this a REG_DWORD with value 0.
> Here is a link to a few dozen newsgroup threads on this issue - maybe
> you'll find something.
> http://groups-beta.google.com/group...rface+sqlserver
> If you resolve this problem, please let us know!
> Steve Kass
> Drew University
> phil wrote:
>
>|||An alternative solution is to use the -g switch, which we may pursue. This
is explained in BOL. - Phil
"phil" wrote:

> Well, I resolved this issue by selecting 'Allow InProcess' for the OLE DB
> Provider for ODBC Drivers. However, I had deselected this setting to corr
ect
> a memory issue I am having. Now, I'm looking to resolve that a different
> way. (argh.)
> - Phil
>

Access denied and no files...

I performed an install of SSRS and SharePoint as noted in this document...
http://blogs.msdn.com/sharepoint/archive/2007/08/02/microsoft-sql-server-reporting-services-installation-and-configuration-guide-for-sharepoint-integration-mode.aspx
...with one exception I installed everything (SQL Server, Reporting
Services, and SharePoint) on the same server (single server install, don't
worry it is purely a dev box on an isolate test network, I would never do
this in production). I have rebuilt the server twice and worked though this
document each time.
Every time I get to Step 12 (on page 38-39 of the document), I try opening
the reporting services web site using the server name (e.g.
http://servername:8080/Reportserver). I get a login prompt and access denied
after three attempts. When I try to access it through localhost (e.g.
http://localhost:8080/ReportServer), I do not get the login prompt, but I do
get the typical directory browsing page with no files are listed.
All the ACLs (NTFS permissions) are set to allow Full Control for the local
admins and the three accounts being used per the document are in local admins
group. The Local admins group and the three accounts have SysAdmin rights on
SQL server.
I have done many SSRS installs but have yet to experience and issue like
this. I would greatly appreciate any of you pointing me in the right direct
to check settings. Any helpIt sounds like you are running into the Loopback Checking that was put into
place by Windows Server 2003 SP1. Follow the instructions in the KB article
listed below and that should solve your issue.
http://support.microsoft.com/kb/896861
Follow the steps under "Method 1" and see if that works.
Don't forget to reboot for it to kick in.
--
Chris Alton, Microsoft Corp.
SQL Server Developer Support Engineer
This posting is provided "AS IS" with no warranties, and confers no rights.

Access denied after OS Disk upgrade!?

I recently had to upgrade my WIN-XP SP2 OS harddrive. I am now getting the
following error message when I attemp to start MSSQL 2000 Developer edition
through Enterprise Manager or Query Analyzer: "A connection could not be
established to (LOCAL) Reason:SQL Server does not exist or access denied.
ConnectionOpen (Connect()).. Please verify SQL Server is running and check
your SQL Server registration properties ( by righ-clicking on the (LOCAL)
node) and try again." When I take the suggested approach of right-clicking,
I get the same message because he cannot connect!!?
When I go to Admin Tools>Computer Management>Services and
Applications>Services>MSSQLSERVER>Start, the service starts but then issues
the mess:THE MSSQLSERVER SERVICE ON LOCAL COMPUTER STARTED AND STOPPED. sOME
SERVICES STOP AUTOMATICALLY IF THEY HAVE NO WORK TO DO, FOR EXAMPLE, THE
PERFORMANCE LOGS AND ALERTS SERVICE. And its back to square #1.
Can someone help? Thanks in advance
Tom Johnson A+, MCP, MCSD .NETTake a look at the ERRORLOG for more details. Normally the log is located in
C:\Program Files\Microsoft SQL Server\MSSQL\LOG
You can also try starting sql server in the console mode from the command
prompt.
If you have a default instance of sql installed in the default location, you
should change directory to
C:\Program Files\Microsoft SQL Server\MSSQL\Binn
and execute
sqlservr -c
the output messages to the console will give you a clue to what is going
wrong.
hth
--
Vikram Vamshi
Database Engineer
Eclipsys Corporation
"TomJ" <tjdarth@.verizon.net> wrote in message
news:%23V7UTUbjFHA.3972@.TK2MSFTNGP10.phx.gbl...
>I recently had to upgrade my WIN-XP SP2 OS harddrive. I am now getting the
>following error message when I attemp to start MSSQL 2000 Developer edition
>through Enterprise Manager or Query Analyzer: "A connection could not be
>established to (LOCAL) Reason:SQL Server does not exist or access denied.
>ConnectionOpen (Connect()).. Please verify SQL Server is running and check
>your SQL Server registration properties ( by righ-clicking on the (LOCAL)
>node) and try again." When I take the suggested approach of right-clicking,
>I get the same message because he cannot connect!!?
> When I go to Admin Tools>Computer Management>Services and
> Applications>Services>MSSQLSERVER>Start, the service starts but then
> issues the mess:THE MSSQLSERVER SERVICE ON LOCAL COMPUTER STARTED AND
> STOPPED. sOME SERVICES STOP AUTOMATICALLY IF THEY HAVE NO WORK TO DO, FOR
> EXAMPLE, THE PERFORMANCE LOGS AND ALERTS SERVICE. And its back to square
> #1.
> Can someone help? Thanks in advance
> Tom Johnson A+, MCP, MCSD .NET
>
>|||Thank you Vikram Vamshi, for your quick response. I followed your
suggestion by looking at the Log file which contains the following:
2005-07-21 21:51:27.42 server Microsoft SQL Server 2000 - 8.00.760
(Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)
2005-07-21 21:51:27.42 server Copyright (C) 1988-2002 Microsoft
Corporation.
2005-07-21 21:51:27.42 server All rights reserved.
2005-07-21 21:51:27.42 server Server Process ID is 5236.
2005-07-21 21:51:27.42 server Logging SQL Server messages in file
'D:\Program Files\Microsoft SQL Server\MSSQL\log\ERRORLOG'.
2005-07-21 21:51:27.51 server The system is older than SQL Server 7.0
RTM version and is not supported by this server.
I am suspcious of the last message about the system being older than SQL
Server 70. RTM version and is not supported? Is this talking about my OS
or is has something been corrupted for my MSSQL application?
When I attempted your suggestion of trying to start from the command
line, I get the identical same message.
*** Sent via Developersdex http://www.codecomments.com ***|||Thank you Vikram Vamshi, for your quick response. I followed your suggestion
by looking at the Log file which contains the following:
2005-07-21 21:51:27.42 server Microsoft SQL Server 2000 - 8.00.760
(Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)
2005-07-21 21:51:27.42 server Copyright (C) 1988-2002 Microsoft
Corporation.
2005-07-21 21:51:27.42 server All rights reserved.
2005-07-21 21:51:27.42 server Server Process ID is 5236.
2005-07-21 21:51:27.42 server Logging SQL Server messages in file
'D:\Program Files\Microsoft SQL Server\MSSQL\log\ERRORLOG'.
2005-07-21 21:51:27.51 server The system is older than SQL Server 7.0 RTM
version and is not supported by this server.
I am suspicious of the last message about the system being older than SQL
Server 70. RTM version and is not supported? Is this talking about my OS or
is has something been corrupted for my MSSQL application?
When I attempted your suggestion of trying to start from the command line, I
get the identical same message.
"Vikram Vamshi" <vikram.vamshi@.online.eclipsys.com> wrote in message
news:OP$s$GkjFHA.1464@.TK2MSFTNGP14.phx.gbl...
> Take a look at the ERRORLOG for more details. Normally the log is located
> in
> C:\Program Files\Microsoft SQL Server\MSSQL\LOG
> You can also try starting sql server in the console mode from the command
> prompt.
> If you have a default instance of sql installed in the default location,
> you should change directory to
> C:\Program Files\Microsoft SQL Server\MSSQL\Binn
> and execute
> sqlservr -c
> the output messages to the console will give you a clue to what is going
> wrong.
> hth
> --
> Vikram Vamshi
> Database Engineer
> Eclipsys Corporation
> "TomJ" <tjdarth@.verizon.net> wrote in message
> news:%23V7UTUbjFHA.3972@.TK2MSFTNGP10.phx.gbl...
>|||http://sqljunkies.com/Forums/ShowPo...?PostID=701#701
http://www.microsoft.com/resources/...r />
gc20.mspx
Excerpt:
Hardware problems can also cause recovery failures. If files related to the
master database are damaged, you may see error messages similar to the
following:
. 2001-04-10 20:33:57.14 server. The system is older than SQL Server
7.0 RTM version and is not supported by this server. This error indicates
that SQL Server was unable to recognize this file as a valid master database
(.mdf) file. In this case the safest option is to replace the problematic
hardware and restore the master database.
Looks like you may need to restore or rebuils master db...
Kevin Hill
President
3NF Consulting
www.3nf-inc.com/NewsGroups.htm
www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
www.experts-exchange.com - experts compete for points to answer your
questions
"Thomas Johnson" <tjdarth@.verizon.net> wrote in message
news:O48P$mmjFHA.1444@.TK2MSFTNGP10.phx.gbl...
> Thank you Vikram Vamshi, for your quick response. I followed your
> suggestion by looking at the Log file which contains the following:
> 2005-07-21 21:51:27.42 server Microsoft SQL Server 2000 - 8.00.760
> (Intel X86)
> Dec 17 2002 14:22:05
> Copyright (c) 1988-2003 Microsoft Corporation
> Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)
> 2005-07-21 21:51:27.42 server Copyright (C) 1988-2002 Microsoft
> Corporation.
> 2005-07-21 21:51:27.42 server All rights reserved.
> 2005-07-21 21:51:27.42 server Server Process ID is 5236.
> 2005-07-21 21:51:27.42 server Logging SQL Server messages in file
> 'D:\Program Files\Microsoft SQL Server\MSSQL\log\ERRORLOG'.
> 2005-07-21 21:51:27.51 server The system is older than SQL Server 7.0
> RTM version and is not supported by this server.
> I am suspcious of the last message about the system being older than SQL
> Server 70. RTM version and is not supported? Is this talking about my OS
> or is has something been corrupted for my MSSQL application?
> When I attempted your suggestion of trying to start from the command
> line, I get the identical same message.
>
> *** Sent via Developersdex http://www.codecomments.com ***|||I don't do attached files in newsgroups :-)
Look up the rebuild master utility in Books Online...it will trash anything
in the surrent master (assuming it is even readable).
Not sure if this is what you need, but since SQL Server isn't working at
all, do you have anything to lose? Copy out the the files for any other
databases you may have before running this...
Kevin Hill
President
3NF Consulting
www.3nf-inc.com/NewsGroups.htm
www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
www.experts-exchange.com - experts compete for points to answer your
questions
"tjdarth" <tjohn1@.airmail.net> wrote in message
news:eh%23q1oujFHA.1412@.TK2MSFTNGP09.phx.gbl...
> Thanks Ken for your quick response. I presume that you mean rename the old
> Master.mdf file and copy a new master.mdf. Since I can't gain access to
> any feature of MSSQL. I am currently in the process of using the sqldiag
> command to see if anymore information may be obtained. It's feedback is
> also saying that it cannot connect, but it did write out a file
> SQLDIAG.txt summarizing the setup of my system. If you have ad to deal
> with this in the past maybe you could take some time with me to help
> understand and unravel this problem. I an sending a zip file of this text.
> Thanks for all your help , , ,Tom Johnson
> "Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
> news:u6l%23mmrjFHA.2156@.TK2MSFTNGP14.phx.gbl...
>
>|||Thanks Kevin for the insight. I took your suggestion and read the Rebuild
master utility information and ran the rebuild program. It returned a Failed
to rebuild (-1) type of error. I snooped a little further and found out that
there was a "Rebuild MSSQL Registry" application contained on the CD, so I
attempted to run this feature. This appeared to restore my registry, But I
had forgotten how I configured this application, so after the successful
completion of the registry restore, I got an Unable to signin
"Domain\userid".
Out of frustration, I completly removed MSSQL2000, and tried to reinstall
the application. This ran fine until the install process attempted to
'UpdateSystemPath' and gave the error msg: "ERROR - UNABLE TO UPDATE PATH
VARIABLE - RegDBGetKeyValueEX'. The errorLog file :"Attempting to initialize
Distributed Transaction Coordinator. server Failed to obtain
TransactionDispenserInterface: Result Code = 0x8004d01b" So this is where I
am at this point.
Thanks again for all of your help. If you have any additional ideas, I would
welcome the help.
Thanks in advance . . . .Tom J.
"Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
news:Op14mwujFHA.1948@.TK2MSFTNGP12.phx.gbl...
>I don't do attached files in newsgroups :-)
> Look up the rebuild master utility in Books Online...it will trash
> anything in the surrent master (assuming it is even readable).
> Not sure if this is what you need, but since SQL Server isn't working at
> all, do you have anything to lose? Copy out the the files for any other
> databases you may have before running this...
> --
> Kevin Hill
> President
> 3NF Consulting
> www.3nf-inc.com/NewsGroups.htm
> www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
> www.experts-exchange.com - experts compete for points to answer your
> questions
>
> "tjdarth" <tjohn1@.airmail.net> wrote in message
> news:eh%23q1oujFHA.1412@.TK2MSFTNGP09.phx.gbl...
>|||A DTC error should not prevent SQL from starting...does it, or are you
running?
Kevin Hill
President
3NF Consulting
www.3nf-inc.com/NewsGroups.htm
www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
www.experts-exchange.com - experts compete for points to answer your
questions
"TomJ" <tjdarth@.verizon.net> wrote in message
news:O73hAa8jFHA.2852@.TK2MSFTNGP15.phx.gbl...
> Thanks Kevin for the insight. I took your suggestion and read the Rebuild
> master utility information and ran the rebuild program. It returned a
> Failed to rebuild (-1) type of error. I snooped a little further and found
> out that there was a "Rebuild MSSQL Registry" application contained on the
> CD, so I attempted to run this feature. This appeared to restore my
> registry, But I had forgotten how I configured this application, so after
> the successful completion of the registry restore, I got an Unable to
> signin "Domain\userid".
> Out of frustration, I completly removed MSSQL2000, and tried to reinstall
> the application. This ran fine until the install process attempted to
> 'UpdateSystemPath' and gave the error msg: "ERROR - UNABLE TO UPDATE PATH
> VARIABLE - RegDBGetKeyValueEX'. The errorLog file :"Attempting to
> initialize Distributed Transaction Coordinator. server Failed to obtain
> TransactionDispenserInterface: Result Code = 0x8004d01b" So this is where
> I am at this point.
> Thanks again for all of your help. If you have any additional ideas, I
> would welcome the help.
> Thanks in advance . . . .Tom J.
> "Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
> news:Op14mwujFHA.1948@.TK2MSFTNGP12.phx.gbl...
>|||Thanks Kevin. I am in agreement that DTC should not prevent SQL from
starting. It appears from the ErrorLog that SQL had success in starting a
'single user mode session.' SQL then successfully started the masterDB,
model,msdb, pubs and Northwind' He successfully cleared the tempdb and
started it, and next stated that Recovery was complete. Next he started his
listening on the default urls and stated the he was ready for client
connections. This is the last statement in the ErrorLog: "SQL Server is
terminating due to 'stop' request from Service Control Manager."
The Setup log SQLSPT.log tells the story of Begin Action: UpdateSystemPath
"ERROR - UNABLE TO UPDATE PATH >> VARIABLE - RegDBGetKeyValueEX'- End
Action:UpdateSystemPath. It also indicates the following: "[Microsoft]&#
91;ODBC
Driver Manager] Data source name not found and no default driver specified"
for the MasterDB. This is the area that is giving me concern. I am not real
sure where to look next for resolution?
"Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
news:%23%23Sc4uRkFHA.3756@.TK2MSFTNGP15.phx.gbl...
>A DTC error should not prevent SQL from starting...does it, or are you
>running?
> --
> Kevin Hill
> President
> 3NF Consulting
> www.3nf-inc.com/NewsGroups.htm
> www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
> www.experts-exchange.com - experts compete for points to answer your
> questions
>
> "TomJ" <tjdarth@.verizon.net> wrote in message
> news:O73hAa8jFHA.2852@.TK2MSFTNGP15.phx.gbl...
>sql

Access denied after OS Disk upgrade!?

I recently had to upgrade my WIN-XP SP2 OS harddrive. I am now getting the
following error message when I attemp to start MSSQL 2000 Developer edition
through Enterprise Manager or Query Analyzer: "A connection could not be
established to (LOCAL) Reason:SQL Server does not exist or access denied.
ConnectionOpen (Connect()).. Please verify SQL Server is running and check
your SQL Server registration properties ( by righ-clicking on the (LOCAL)
node) and try again." When I take the suggested approach of right-clicking,
I get the same message because he cannot connect!!?
When I go to Admin Tools>Computer Management>Services and
Applications>Services>MSSQLSERVER>Start, the service starts but then issues
the mess:THE MSSQLSERVER SERVICE ON LOCAL COMPUTER STARTED AND STOPPED. sOME
SERVICES STOP AUTOMATICALLY IF THEY HAVE NO WORK TO DO, FOR EXAMPLE, THE
PERFORMANCE LOGS AND ALERTS SERVICE. And its back to square #1.
Can someone help? Thanks in advance
Tom Johnson A+, MCP, MCSD .NET
Take a look at the ERRORLOG for more details. Normally the log is located in
C:\Program Files\Microsoft SQL Server\MSSQL\LOG
You can also try starting sql server in the console mode from the command
prompt.
If you have a default instance of sql installed in the default location, you
should change directory to
C:\Program Files\Microsoft SQL Server\MSSQL\Binn
and execute
sqlservr -c
the output messages to the console will give you a clue to what is going
wrong.
hth
Vikram Vamshi
Database Engineer
Eclipsys Corporation
"TomJ" <tjdarth@.verizon.net> wrote in message
news:%23V7UTUbjFHA.3972@.TK2MSFTNGP10.phx.gbl...
>I recently had to upgrade my WIN-XP SP2 OS harddrive. I am now getting the
>following error message when I attemp to start MSSQL 2000 Developer edition
>through Enterprise Manager or Query Analyzer: "A connection could not be
>established to (LOCAL) Reason:SQL Server does not exist or access denied.
>ConnectionOpen (Connect()).. Please verify SQL Server is running and check
>your SQL Server registration properties ( by righ-clicking on the (LOCAL)
>node) and try again." When I take the suggested approach of right-clicking,
>I get the same message because he cannot connect!!?
> When I go to Admin Tools>Computer Management>Services and
> Applications>Services>MSSQLSERVER>Start, the service starts but then
> issues the mess:THE MSSQLSERVER SERVICE ON LOCAL COMPUTER STARTED AND
> STOPPED. sOME SERVICES STOP AUTOMATICALLY IF THEY HAVE NO WORK TO DO, FOR
> EXAMPLE, THE PERFORMANCE LOGS AND ALERTS SERVICE. And its back to square
> #1.
> Can someone help? Thanks in advance
> Tom Johnson A+, MCP, MCSD .NET
>
>
|||Thank you Vikram Vamshi, for your quick response. I followed your
suggestion by looking at the Log file which contains the following:
2005-07-21 21:51:27.42 server Microsoft SQL Server 2000 - 8.00.760
(Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)
2005-07-21 21:51:27.42 server Copyright (C) 1988-2002 Microsoft
Corporation.
2005-07-21 21:51:27.42 server All rights reserved.
2005-07-21 21:51:27.42 server Server Process ID is 5236.
2005-07-21 21:51:27.42 server Logging SQL Server messages in file
'D:\Program Files\Microsoft SQL Server\MSSQL\log\ERRORLOG'.
2005-07-21 21:51:27.51 server The system is older than SQL Server 7.0
RTM version and is not supported by this server.
I am suspcious of the last message about the system being older than SQL
Server 70. RTM version and is not supported? Is this talking about my OS
or is has something been corrupted for my MSSQL application?
When I attempted your suggestion of trying to start from the command
line, I get the identical same message.
*** Sent via Developersdex http://www.codecomments.com ***
|||Thank you Vikram Vamshi, for your quick response. I followed your suggestion
by looking at the Log file which contains the following:
2005-07-21 21:51:27.42 server Microsoft SQL Server 2000 - 8.00.760
(Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)
2005-07-21 21:51:27.42 server Copyright (C) 1988-2002 Microsoft
Corporation.
2005-07-21 21:51:27.42 server All rights reserved.
2005-07-21 21:51:27.42 server Server Process ID is 5236.
2005-07-21 21:51:27.42 server Logging SQL Server messages in file
'D:\Program Files\Microsoft SQL Server\MSSQL\log\ERRORLOG'.
2005-07-21 21:51:27.51 server The system is older than SQL Server 7.0 RTM
version and is not supported by this server.
I am suspicious of the last message about the system being older than SQL
Server 70. RTM version and is not supported? Is this talking about my OS or
is has something been corrupted for my MSSQL application?
When I attempted your suggestion of trying to start from the command line, I
get the identical same message.
"Vikram Vamshi" <vikram.vamshi@.online.eclipsys.com> wrote in message
news:OP$s$GkjFHA.1464@.TK2MSFTNGP14.phx.gbl...
> Take a look at the ERRORLOG for more details. Normally the log is located
> in
> C:\Program Files\Microsoft SQL Server\MSSQL\LOG
> You can also try starting sql server in the console mode from the command
> prompt.
> If you have a default instance of sql installed in the default location,
> you should change directory to
> C:\Program Files\Microsoft SQL Server\MSSQL\Binn
> and execute
> sqlservr -c
> the output messages to the console will give you a clue to what is going
> wrong.
> hth
> --
> Vikram Vamshi
> Database Engineer
> Eclipsys Corporation
> "TomJ" <tjdarth@.verizon.net> wrote in message
> news:%23V7UTUbjFHA.3972@.TK2MSFTNGP10.phx.gbl...
>
|||http://sqljunkies.com/Forums/ShowPos...PostID=701#701
http://www.microsoft.com/resources/d...ag/oagc20.mspx
Excerpt:
Hardware problems can also cause recovery failures. If files related to the
master database are damaged, you may see error messages similar to the
following:
. 2001-04-10 20:33:57.14 server. The system is older than SQL Server
7.0 RTM version and is not supported by this server. This error indicates
that SQL Server was unable to recognize this file as a valid master database
(.mdf) file. In this case the safest option is to replace the problematic
hardware and restore the master database.
Looks like you may need to restore or rebuils master db...
Kevin Hill
President
3NF Consulting
www.3nf-inc.com/NewsGroups.htm
www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
www.experts-exchange.com - experts compete for points to answer your
questions
"Thomas Johnson" <tjdarth@.verizon.net> wrote in message
news:O48P$mmjFHA.1444@.TK2MSFTNGP10.phx.gbl...
> Thank you Vikram Vamshi, for your quick response. I followed your
> suggestion by looking at the Log file which contains the following:
> 2005-07-21 21:51:27.42 server Microsoft SQL Server 2000 - 8.00.760
> (Intel X86)
> Dec 17 2002 14:22:05
> Copyright (c) 1988-2003 Microsoft Corporation
> Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)
> 2005-07-21 21:51:27.42 server Copyright (C) 1988-2002 Microsoft
> Corporation.
> 2005-07-21 21:51:27.42 server All rights reserved.
> 2005-07-21 21:51:27.42 server Server Process ID is 5236.
> 2005-07-21 21:51:27.42 server Logging SQL Server messages in file
> 'D:\Program Files\Microsoft SQL Server\MSSQL\log\ERRORLOG'.
> 2005-07-21 21:51:27.51 server The system is older than SQL Server 7.0
> RTM version and is not supported by this server.
> I am suspcious of the last message about the system being older than SQL
> Server 70. RTM version and is not supported? Is this talking about my OS
> or is has something been corrupted for my MSSQL application?
> When I attempted your suggestion of trying to start from the command
> line, I get the identical same message.
>
> *** Sent via Developersdex http://www.codecomments.com ***
|||Thanks Ken for your quick response. I presume that you mean rename the old
Master.mdf file and copy a new master.mdf. Since I can't gain access to any
feature of MSSQL. I am currently in the process of using the sqldiag command
to see if anymore information may be obtained. It's feedback is also saying
that it cannot connect, but it did write out a file SQLDIAG.txt summarizing
the setup of my system. If you have ad to deal with this in the past maybe
you could take some time with me to help understand and unravel this
problem. I an sending a zip file of this text.
Thanks for all your help , , ,Tom Johnson
"Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
news:u6l%23mmrjFHA.2156@.TK2MSFTNGP14.phx.gbl...
> http://sqljunkies.com/Forums/ShowPos...PostID=701#701
> http://www.microsoft.com/resources/d...ag/oagc20.mspx
> Excerpt:
> Hardware problems can also cause recovery failures. If files related to
> the
> master database are damaged, you may see error messages similar to the
> following:
> . 2001-04-10 20:33:57.14 server. The system is older than SQL Server
> 7.0 RTM version and is not supported by this server. This error indicates
> that SQL Server was unable to recognize this file as a valid master
> database
> (.mdf) file. In this case the safest option is to replace the problematic
> hardware and restore the master database.
>
>
> Looks like you may need to restore or rebuils master db...
> --
> Kevin Hill
> President
> 3NF Consulting
> www.3nf-inc.com/NewsGroups.htm
> www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
> www.experts-exchange.com - experts compete for points to answer your
> questions
>
> "Thomas Johnson" <tjdarth@.verizon.net> wrote in message
> news:O48P$mmjFHA.1444@.TK2MSFTNGP10.phx.gbl...
>
begin 666 SQLdiag.zip
M4$L#!!0````(`-%I]C(ZV\-87+,``(WU`P`+````4U%,9&EA9RYT>'3L/&MS
MXDB2G^4(_X>*W8B.[FB,57H@.P>WLA9# S8P!-:+M[ATZ'#+(MK:%I)6$'WMQ
M]Y/N-UY6Z5$"! AF=^-B[AR>::C*S,K*=[W\Q;?O/0<E`9H'ON_,$_(Q=J)G
M)SH_ZT51$'G!8WQ^=I'_G)^=GTV<1S=.HC<T\!^":&DG;N"70 $H_YV?6N#^]
MU2:]V="=1T$</"2SH65]OK;H&#/=<QT_F>GIX-.@.4TUGS\_YF6%]_M*;?.MP
MG-$=]:;7@.^[YV? ;C$%;8+2Q/FK0AJQ]^G-%S^V YWE<[DA;SL_^:C_;_U[N
M( WQWSPBBGK3,[H7U^[]D7,[/]-62:#YL3L-QLX2&!B/SL^^Q,[ 3SS+21+7
M?XRSUFI&\D\(&$(91^FD9H"_"H\7-OTAP]TX40Q:/V@.!YV=^\K*X]]S[YL+S
M@.%NUR...-W);.S^)X&=N+%I]UC"ZUM&WA;+=%X79;'%2T5< ]NYMM_C+TU]L6
M]X27V,_:>,JEHF Q[5HX<W\3/ JWV^*@.HBU\W6I[=OWJH0AGR<L:MW_SXNA9
M%,IM(.D_(Z,S,Z/@.,;*7J.]Z3@.P^M%R"1M(O)=T_V9&S`*LDJLK^`7+.JX,N
M(R<,H@.1==V939QG.IL'RCGXP7%L0FLDR1)=S.W$>@.\AU8O31> HL39VFMEDL[
M>OLX<>)@.%<V=&)SWP7/G2<R:!I//UD=@.* Q\L/]XY"0O0?2CU&(E060_.J46
MF Q$HJ7A/+M X*-UV_.?X?&CK(O0(2$B?0+L68&EPGB*@.I68=:?V!%8>-8!
M`2SEO6RO*)O]2^0FB>,C.^D@.7KD4A$M>1ECL8*DCB@.7BR%XZ'92'A%^SUDP6
MWXE.!M# W=C>RN'.S\86Q>"8'FY=?Q&\Q.BKB8"K!R<F_F-[7.%+G-S$3:'%
M\RB;'#+M^0\DH.[*]1]*2$A[:_>K#GR2IRHM(`>A#!?.C4N#6VN91KUKA&
M8'0S, 9:J3-8.!ZGW4X,33<'K'WZ%CK<5[5U<6_'S@.*9.G3!1$ '<1!QKVH+
M]>VEZ[VA5DH"89A(XH0AA"G$(XAE3Z!F=ZX-#?1?6)!$-'SZ.]#H#F!*F0@.N
M#; VSGP*'-]]15-G_N0'D'_ ^!KH>FJ@.%O@.*,J\:2+T4+@.6>EPA[PS(%3FB*
MT)@.+VW C2"M!],:!N]P.1L;XUF)3JNJ=Q;1/% AK09"@.U""Y6?KO[),=+19N
M_.,F\%9+APCU.IC;GL-]\=T$Y *&ES@.Q-!/ %W ]I-U#K@.1I$Y.[MM] Y'GP
M_ G](==Y4\ JC]Z_AG%X%X?"790LF[S$J[QX(6!9_? 'CH;^J*S0V?0I6-HQ
M^CEX\F.J]*F[=-!?P)\X'60=V1XR[#?/?7Q*$.DB$$$"K>;36^P"UVCH+,GT
M<8,7)"+;81=@.M&?;]6A9L DG`Y2LI% II1L7W(P!"(3(U3J1#1#<;+=2$!,"
M``U7R IM$+'0E/!&#_=+9Q;"EP?XW 3-<,31?BU$6\0;ZH"TKPA&ER3P@.>U]
M3RN6%)#+M G>>CE&)G%__I7/?BZRCWI?X4Q]@..Y7\6' U(;0DDX.V7/B#Z26
M2J+ \T#7YV=<!1%1+XB(1C_S0>3W`^!10-J5B3X%,:W%""/=R%T\5C%=3>;*
MH70D-/R*) FLJC)&?,A9FWQ&`N; ;OT%R!6-0\?_I!OHB]5-F=#+D\F@.UQA&
M0]U$68@.GSLX0T!^%;)14^4A;+"(B(/[54 M9]I0^_:DMAF.('2>,+<J]$N7V
M;V5S#[$3="8<I3,A&^G]Y$/&^?OI\ .$Y84;`#A4.) ;$R=ZL*E[Y*/@.-O<)
M8E:,;IIM@.4[O)B"IJ6^_+@.%IR<#^,?+6,OETJ7"8%QX`/%DEE62.5,:F4W:9
M4W:[I_MV)9G?Q)K.%[%+S\4;YS8$7RZ2X(**? =/F_B'+*/:HS3F!%KF! <9
MJ46E#CN0(8RA5ID32.:FMJ8_V; :]9!T,+B/?RF!E_SQP0O"\ V1.F$+'#B@.
M*ER@./(U1;C(FS)&951QH8*30H(3]_*8:D9AR)%[I<\,`"J[H/B#\1'F>3%G(
MH52&T*^#(+$1I%HC2&P$J=8(`AM!J#6"P$80ZHP@.,RG)O%@.+0 6((=5CBV0AK
ME<0>D%IFEL$;!>I:A"R#"$K[@.GWD!I9&K&KBV LH!Q.;>O0&@.L00E,,(/68(
M/0EO1%_J>VRA`<7;$FK1,KK!I@.\?E6.*B3(5QH0A%;&[5GHK4U$ 9%54YE<J1
M@.74/YOX85D+L,T3X6.A@.5 A1@. #2*Q<"98WC?F& F-AHY))E;(J1AK,U<+'?
MNF ?#X)CA5$'>[(<L.7%7OH*HZ^TZB"<DF,/$ZB;7=<HG5+*'R9P"BL\+BB!
M6NN$*D$H$.H$0Q+'"P2Y%D*+C= 2:R'(#*'6""QXU8S/;5P@.M&NQI+$Y=&N-
MT&-ZZ-5!Z"KJ1?&Q6P.ASQ#ZM1 TAJ#50N@.QA%XMA&Y7+^902TI]AM"OA2 9
MA5@.E`]= $-HLK[656O[ % >KW&SW<$FW,5P2^*-5F.S*S+S&D+6CD56&W.:/
MJ@.AX-DN^W3\.E84>WC@.256*HDLAE"3]QEYMP+!?P2@.&G#\?69>38'L5 <R^8
M_]@.(`\Q)6SA'BT/'_K$Y`$MEI(H=K8 #=XX6I' )B_W)M8#+,,2^7*]J+^ 5
MAJH<B:HRU#Y'=NM7OCNG83Q.5UGO]?$0KX=T@.6$)>["$C9S$G%>$F CYFMA?
M!GYM3C<&41BX`KY^")QO,8FW>"8$S.-+S L7OSAO*(@.02U@.C6*B0S4C3NA00
M]%(7W"#);+@.E_3:29,DT^1SO7S.138MV:?.<['5?D,,(S[7])*M?4WIT?V-S
MRVM/D7O,AEH9X=@.R^)A-H#+"L24N12NIN>=#03:G1P`#4M;L'>_@._E$9\I32
MAZ)*NTM2VB_O*RD)!%\1P$B[>CA@.T0'$O7&'@.+3J!0L"*AT,# @.1*/!@.,*&<"
M1UV$F#; D5PT#%9Q2;7X-WM;NCES_"P"I=L1@.B6>=D8EV+!&1)0R#ZRDX(
M-8/H[H3(%E3ICE 5!!D^&TCL]W?#]1E<?Q]<!M/>"8!Y-EQO]W ]/8>C'W?#
M]1A<;S=<]49J9>=12Y;?M&&:T= S&D85;U*:!=()=OM5(+TNY+44A'ZD,J@.=
M!E,DB>%+I^#+#%_FR_BUPV.*S#,Z_)8R:FV&$%3,J&!&Y9AMC !.V9?=@.UMK&
M./ULY3"!(RWR]-.HPP2.984O*!DGL=)C!'ID27PJ*_0P-;^=P0Y8ARN/I,"%
M:[.VDF6ED/K8Z.G<VCT#PXGGD1O2ZPE96J GO/G!O>7^W>%T2+'TH)Q>!#@._
M6W1F+^E1?G$N/_/$.1G(;MKS)=>/[)7_%#R 1PS\.'&354)M^S%RG2AQD#5_
MLKUDY3\Z/AH,K#7X@.86&9N\J/92_$%/^R=PK;@./,KD4Z)ZVIZ4,.-U"[@.7CX
M%7F9$U1Z=OY+%[T7VGQ#Q2UT_Y8X\0=.O11$<D\!(Z4#$-IPQY1<>R[(=Z+0
MM%\YPKU75@.>T+)S@.OY%-A4R410X-=O$YT/24E/:5G,;+35GD<%O.&<3M=J.E
M\L<R&'MWMN\D5.26"^4-".T>31T/RBIRJ6;>K&@.N6<4N;JWK.VW4FU*ABDU>
MX)@.HU5:#/UZ2RQC$1 0)C%9?C<FOA@.R)"=?A<6AI7PPB4."17M:"7TE2%="[
MRO0N-=I8.)[;1T40]S!;`MC)W16!(,Q)3:DI0E[C,&X5^L9J0U&EG+'VI:#2
MBS.PHNGPXG[.,-[#6:E5'TRGZ*H)\+DXJ?O81@.H$X:+RR_TYLN<WI5L0BY3
ML7*!L:0"O_D\V@.WA)&-8A'N-H;0`-$Q]6(]_`,W,H>[M'0Y+33E3B-10)?7H
M`+&T#TUE,-2R2=29!4"?,@.UF5ZV&R,RJ[C22F+"=3<.P3'0U&7\Q&V@.PTIOI
M=W*##TVCE6.%CC-_*M<M^Z8SM<C]UVPZ&&R(*UQ3;>#V*8X9+VM:SI4U1*TF
MYFO)':S?&FZ*?:?YXW9A-NU&N[77;" -W[B0*/Y5:=B-1.$NO9>:YBQ2;6ZE
M+41S-?!-L[*WTQPG*3'C^IH;!>"-^>TQ$ %S'<A=>+\0*G49/DKSC-%#NB3U
MP(6$2H+<J4CS2M(SCB50)*A1;&.%D["2\RL)2D,6BES;2N\L\ L N!(#=KA[)
M_)I<JVJ!9\H@.&!"_6Z(I&<+?I$D@.FUAN"DU9YA2Q8%&1Y0;P= +Q[/ DMW%Q$
MSSOS5@.&PTQ$^$0AC<K,>?CC,2@."LJ@.V)A7U\B0ES,B)W<Y&Y. \C<OZV>]ZB[
M!+ SG'2_?;FALBL[Z5=3KW#279$&*ZDHY8[8VLWM,HX\IZ9U3JY[A TH5`,F4
M7C^H8U8L-(36T4%]&>\7-^O?R343MEB39Z7@.66E Q_%2!_L4#QFP>-" Q0H#
MWE<6EKA3]G$'_ETW9*6Q"N]F$Y9^^J9-[,PX0K%2$.1&Z_C(X,[GP#ME?&(O
MW%6<+@.YTUW="^T>V^0#9H-RY*X+I.K!.^<8D?$$`PYRBYJ%+Y4^I0-Q(PCL7
M6J7.G5$UA8#%%:0E8 L*(I%3!<:5I)[$%KC(W5Z%ER%V,0=N='>L]TNM(ETI
MC5:YQM[V)+(C8%Q,QL/M]PY&Y#[#FK1#/I8JC!0<I;WD&A]9<UT']L)90)XO
M6NC;@.A06VN@.5=VL\^H:,&P--;I$Q^7*A"#QYI+!6R[PO-MVR<19DG)C<?LQ*
M&[J1,8UL/R8K_@.FI9M;+"X#4K0&:VM&CDY K=^2-Q?HEO('1F^D&D"<LW0%+
M=Y/;NYRENXJ?G[_QF/P[D]^)FBQU!;GUCG]'#)C/)15Q559 V8_BV7P1!4MR
MW1V]KZO'!I+4IJBFBFPW9#%7)'TKL6Z#'U)56L'*7V3SW%8H5<+N;< 1-560;
M3!MO4$I*6)?IZ$;[.AOUQQ.]=W>C&3/IG2"KO99!!<7S->7D/]OA*I43%.!0
M-D@.RY 5TOW*]!*;?02E7(!L>2C0Q%0X6&ZH@.%=+!PJ5,I"/0%3'.Q,/E$OCB
MNW3/$O57GG=AK$+/><WJ_.(I0?5[G+WS'T)A/KS5;GHS?O8?W6Y;405!NFA+
MDG0A*7WC0A7$+D1D5=2ZO"KKDOZ?]21">9W']H;Q[ KW,'VYJ<CYB@.X+:B$7
M):U6922D^P29T1AN''IVQ8.GDKT<<4EY72JF/IC=]$9WF#=Z[XS>S1V/%?S.
M^M*UOEEWV:XF_VX"'9H()H-Y0=/EKDYMID]L1EO8(3FYIO%DT]'SSG)\2ADN
M=4X@.1&\BDHU%V_.<11K'HG@.+(FTOWB!M$1CUT]<LU$HAE<DM143O_6?I;@.'R
M;+K^`XJ=>2X4/?""")F>[3LQ!T!%TY3>)>GY"7F.MS4*.7OS5DD5`UTWB2]-
M]Q468)M=ZS>KN>I-]0JPJ@.WO*FH5F]'IN6-^!IN=_;++YEQ^<V']BEX%P/K%
MN8K1UP^K:L84Z6[I^FXIK&0*`V=IJA@.-B:\TU':Y[FP@.$F&)OXA([4"D,7-_
M&?@./$7E_N>TPM#-<)6P7/3]8K80U`]<G+WYW!NSB410U_NI#7W#3U?(>+#5X
M0-U5D@.1^3!/>[D!%[D7,H(GO8W$FOL,@.\RZOR^]HF@.Q>@.!2[_H"L50C.G>2Y
MW0A69&A8,\U_H.D3Z.0I\!9;%O@.)<KBS\(G&MAQGTTZ$>DIT5 5X2PB@.Y-H="
M19<50[+04&KD4/+2<;DC&!YZCE".0X=AMV*DU,<T1F*^*^4QLBT"BQ(VQ4
MVQ CQ2XVVEI7A1@.IPEP9*6HE]!30)V_SLG&T)+'G3Q#II@.&GCX?D*:7FQU3-
M`+&EGQWA^U36S"@.@.&QO9(T<J$^+5-/^2&&K:R1,W?TTP?R_](%%SK==*(RB7
MSZ7K@.7F@.\<,#]U5B7WWN*YD5<8TH?8-+03X:UD_\OVUV^+1=).WT;R&@.[ `6
MI2\XN(\]Z&T(#6D;@.A*%;MS@.&[BBV\^0^89 >OM>\%)T$E?F/@.[Z^D]"12^E
M3#KY!K_5:9'*@._;B=%A#[W+O_@.A1$L_I5^?!7GD)]R?B73YYE?KL)F^(O X-
M5LEV=@.@.6*R_="NPZ7D7V8/WT&&#;0B+GP7WEM"GYO/(@.!ID<355.`HU_^=,\
M^G/Z/818!"Y KIX<]IY.AW9G_P`!*[T82*T4&:X-JRB\V4SD-N2W6L%@.A,U&
M^M<1.&K^>7OZWA=]<A^?N.N*CNO@.A;OFM]MA@.<-=TP$2\AJ56,[2WA;TU(D@.
MZ]A)$'&93*;D&2\1VW9.K3APW\J.FP\+=B1=B&'9_8+2:6Y:"^T( :[]F&1U_
M1S=0ZTV>8&F/!@./039R@.'KEAZ\-**J/!':C)P.,7JWF2=M8B5Q1CW#>J^8UU
MQ0;]:T(EM3;ZLI]6M)CO8"5=BY/MU%>.FDKVYI[.L=^;CHR!18L.LY"\0IXN
M-S'\)RMIC[6Z!^XX09:;^7\\<S($$%>PY'RQWTJX9##CDVY"'4> 8S.=!F]*_
MT<$)?+LI2%!X"*VF).2=UXX=0_7W&KK #=E94-*3/*$CMM/U>0EL?)_8(,E%
M"0ZF#8!TVD--9_8$TH"53[O34CJM7D>3N=+R)U>V\!UAL2V1NR@.GJ;8"^9^A
M2&%3D:.!3H9>U^-6E5$H<JNNWU;D%LA^55:"KVMR#TBAQ:VX6U+@.9M^6\L3O
ML*RQD!:_^?.3M%>%_<]0G[BI/CKHT)[_J_27EJW_R]0G?:=_" 2<QR*EV8K<
M_AK""H64VD>I<1^5_>J<C,?3V="Z,RW]4\\8FC/"5VVU2IMJ_;^DSAJKE3 F
M&CEVK=(J#O%:[08NCAEWK%6VK$K^CFZU46$"Z/VU,#4_'&5/U?CU+(E #P>C
M@.3F>3(^S)GG3FB9V[ E)^/]&M69442J5HU? ?+Y1*N.&6-H/K&=5K4VK,LT*
MJ[J%11[2(L?.[[:B]X#U8;]]Y91J1BKS5/MJ;=J7&29A.5+^7HU,YCOD5R+_
M%\EO;4,+P^,-35*@.7$YWY,LG9G4-3=DV-'/<^T=96D:JKJD!^&FVIFS:&L0R
M,PP#Y_=L9Z)(+*S5[TCRT78&HCG:T/CB@.!,W)$4XTM#4[]F?"8,B+"+&X&W:
MV-X<N8U;TZBF@.]-,2JTPJ3!Q?\\&=5IV!*'4/R7['_:NK;=1)5L_,]+^#T@.C
MM>;!=E/<Z?,PXN;$N^/$8[LOHYVM%@.&<H-B8,79W<H[.?S^KJ@."##1@.3I[O/
M;JL50U/75>NKK]8JBBHY'161W)'0L1C2=LEJ\")+:W#$.(BG,2#UX$B37=M%
MT;47Q)^<\ RCXLLB5O3G@.L):E:3Z9PTE!'40Z\9MB%$^*.< BS&325HSLC
MOJ)'B!K#"W&[^/HK`\ODWIGH'0^V%?].1.\DH1FX?H1;B-"?+*XZ_:*HW31#
M>?IF<#+&`^O"/G:"`>U-X-+RAZ/O!:N?8N*O`:;HEWM'8TKKJ71ID8(ZDG3D
M\(?XGW,"BV^.K[UYY>^%J_,,5C6LA#_9AA_+'@.6RYGF^RJNHO 3GPZX_VM3TM
M`NZG>A.E)=*(N57-99C;QD-9O&-?1*&?=#)<:*[@.\VSX3\@.E4FLNJ3>P3T4F
M^RLC.5E.E]9("F<B4>;IRDA46*;UAC_"C-J;6O^AW%,2N0C.K2@.\EJ22>'(B
M;R,>8I[]51<EFS7\MKOJ8G=KR]_V5EWPJ%DW"+_Z^(-KT@.U$LK@.9]3@.!"1U6
MR3Z*5;F.JFV]1\0E:_9%(JA8!7;YY^10L3E0]^;HBQ ]<^B/X%#E)YV6D)KC
M:F\^_J^,JS+6^TFPA=<[KY;KI;N<5ZQ"&T[TOL5.W2B(V#^FY NCM8/0G@.U=O
MDG.D@.F4X!Q'91)>T>2\VSLH)U[X?`V#F6)CG!$.YD(G_GXT?N C \)V%#YRE8
M;!9IJ['D^^CT,ZE<^! "\:D5))S;!B>/;U9X6CG5-,9S7::CV-]X2W:R7OG.
M8B=MLL@.Z9HW5TO%<`#:N;#$H:0:R>_-.D!7$;G6H';JKY^33B&+ 4^1[Y( 3
MDHJV319ZL7)<?[:9L^9\&6_;;AN>-K#'&D[H?0N\]<-N'+*O3$&<C&$*ROY@.
M'5#VGDXS;>_"(*=LJI8VNI:%GD8G<V6I(\I*^@.%=B>X31)U<^ 3LM^>K:+P;N
M*7\G^%C=T[!,^>/)QQ$+2D_URZ:KQ,\(>%4$[&3YPR$P-8^!P)GQ3ZWQ'T'Y
MX"R3P[W^2$_?P@.^F7\A(\.5_>$TW^I8H=65.$+JBK:*NIB*N: XB2H/7[LFA8
M_/_^R4[L?XUT\[T]997OAQ>>.\ 9?&8/B1UN^YW]<9R1*^6G-QE>ES%>#3V6
M/M4OQOJP#CPG'F_^'V#GKV5Q' \>G;.1R1MJ5^!DN2LJNM#5.%WK]A7=-'5#
M-579+E /JD;/F7K.Z"E%3T8]-> Y4\^O!AXDB7W+,F&TDOIV5Y0TM:L*BMA5
M%$N3#5V294DM4(]<C9XS]9S14XJ>C'IJP'.FGE\-/+;=ESE#,;NZI"M=T3#U
MKL[U^:XJ(EV454%3^D6KAZM&SYEZSN@.I14]&/37@..5//+P<>U;(,)%E=Q5",
MKJ@.J5M>0)+MKZ(@.W+=%&AM@.O4 ]?C9XS]9S14XJ>C'IJP'.FGE\-/*;*RYJF
MREU-%Q",6R+7U61=[6J(MPU=4"U9DPK4(U2CYTP]9_24HB>CGAKPG*GG5P,/
M;QF&B9#:M6Q=Z(HB$KN&(/6[NHI,M2]9G&%9!>H1J]%SIIXS>DK1DU%/#7C.
MU/.K@.4<53-$V9*LKJX;>%9&D=G7>UKJ<K,E]),*(QBL%ZI&JT7.FGC-Z2M&3
M44\->,[4\Q<`SV]_^^-3$$Z6[N/^>EZR,W;9BF-X$$,*<N0!Y$[:M:<FIU-T
MU.U));_][6.R\[;0(Y^6,[79XDR3DQ32;/GLU N^(V6['N4R;GR>`EV\C)MA
MNZ$F0#EPJE8R']KZMWIOYA?OMYMV`+(/-6ML9OB0!-(@.^=";S7HWF$+"7Z_Q
MLG+ P<9CR=D*"0[2`(PN%N\]OAN0W[)V-VSDK(+U<_E3UGSPW<?=L,EZ&946
M,[Z:6+O8+'N&9)P\W>(X'S*)?!=4A[_@.@.6ZQIGN_0X2MR)I, /E0G.ZP;@.!JZ
M`4M6(_SJ/I'H&F_H"C$W<4)=^AV4P8Y]QWO["6+X[#)DR2[!21E!B,^K)AO2
M%K^2PBT7A!N?_3R$:D.JSWAO6Y+(G$ZPPF;[#8RY`A^5<?WAZ HHU"#F1%-9D
MO)>"2YY/_# .Z!;!]-ET7-!=\C%'F'Q=8-_TMRU%$M!-C\=^- =2J0LC^X<7
MOH:PO^)'Q21Y%!1CCT'N_9KAK<7C!^<15PZW42X[LOLM?D;:< +L[.>&/SS=A
M/JI"'U7$)!D/POYN`Z9!T+A[8:^ZIV\V4M<<(U['*]F>[Q*';C& SSSQ2_ $
MI8-?D":RFC7D"(EL"-&()'A.5)G6-+%WXD5?S4Z\*.W_V(5O\ U73 R2H[_A
M$M(3AL TSG]X6O]]8!4+\4>P$&[O,PN=6>C,0C\!"_%;%N)+64A@.?AH6PLZ8
M0_=>K/"_KD93`OMR\A$Y;O?8FSU25K:DK)18;9RRC: H1K.VB1Q\3M;1!]@.H
M:KJKJLH5CO/:'N>GOI-RC0-]?^7<^UM?E=0MKCK@.3]\]X$]@.T5L>'^/X@.!$=
M1<_967],ELC<372U=(&E^L$3GH$(XD=F>^Q*VD6P]\Y.2*LP?7TJD!V8,)DK
M> ;@.`@.O8$10!_K0.EVWJB1.N?$@.802]E`"@.RB2IT9$[JJ**0/T,9?'MZ0@.>=
MU/KWM?W)Y#2>\&,20OUVEIZ9Q"!>09QBV079K!?*=CWM3U+1)+4G (E)AF>\H
M2.DHO Q_7+EP4D^2J'1J!\G0"O@.H7X$O%\\([KM6E6 FIQNRPNL%P>Q3*@.UU
M.$[K:>GA69RD=C0%=611+95-YN4>IY#(LB1W1)7O")Q8+AFHS:X23-!ERY9$
MI2!8_Y2"@.<8H&J']>1YJJG:D;#_'HE!B3Z#Z$CNR+'>0)E6C$83J5PIEBES?
M4%)'CPIU<4JAY)XJD)HJ'4$`P1#?X;1RH20\;440VQ$DK:-RJ*-*<J50%U5"
MJ8IF:H+)%X2Z/&7?PNA+*BI"156@.#JV<-E!/H3(A?%)_1]+XW#"S+]-EE4RB
MJ(F6(:3;6%&9!J?EBP12P!>RA#H:+P($R_E"DGMRT@.)<1U&!* Q3<"2ODPGPQ
MJ!+,,'4;_HD%P7X_I6 *WF\P$0Q),)+AG6[R\[UYP90>2EH!=0096%.4.Y+,
M50OV>Y5@.BF@.@.>U>P]Z?5&"^F@.DD"L+N</ZMU1S I:P4.^!/3A08JKA'L?95@.
MFFE(LB[T"X)=G5 P3/!<C]-2@.H=^(RMBD;5SHD%_PF,SCJP!P^##%.MHXZI*
M+L29G"#UBPH;GE@.NI:<IV< E=S0!\T)Y)],T#1NG:2,HH"X)=%RALLDG?1E
M,M+-R@.%,$Y'.:9I<D._ZA/*1EUT7Y'V*K&ID8.(J!F6^QZE)5!Z:0$#JSIN2
MG&1C6[^ZKA*J+W**J&A"0:C*DZ/!$2Q$_-=NQ+&_6'ZE#CR5G9Y2^UAFP^:2
MX2CTO&@.&3QZ4GBKM97'H"T#P;>>,/9K<7+.3$=C:DCWZS"86-(03/_4M/H9P
MN;^!3^W1UWN[;#FK=4"F2_:"R''5X)67!UPM[P,,A@.]AL+\I$8E!')/2D.T9
MV'O!1*3X[12\S,?]4#K'4GPX7:[Q1,0S/G2Q[,1<&IYD7!%*BBL))(_?IGGO
MA3.GTO30>8+:L9HH(^Z#O*M@.ZGX7U)J\$-[JE?1)<OHBI_W70U;0`L<HJEG*
MJY8K56?VE/J6^VKC]E0E"ZE^!-03->HN"!T5B> <0E?/VPJ[&H,H9%_EHJ8(
M00@.=GNP56% 397V!;+>UJR)>DO+B4I7\G>NPV2/X7SX&F_IZ*/7U@.)T4"8PV
M,3>BY**O\6UXCP]YQ)M\"4!2Z8!RL&2T7S*/>DBA;(</@.@.63'7S-PMA;7792
M63"QY'3YP,$J\"55V*?F@.E53(SP"[8(E" :YE%N(<+)^\<DR6=T4!,1QEZ_;
M*X1C>P7:[Q6HIE?P/2WQH<&%QM:8A(?XZCZAR,I^CP#K%)*IZFZ'T, O5^22
MWH!XM000_*'>`!T,H9P3+=,_U R5!WH$?ZA'X,TX$S@.BL$5E[+ZKC4I.JJKA
MR1KY==#XR>(ECOO=Z'+<Q4>=>UU0BL>"LH2J:T$I\*GA#U(1F U,1E Y?1]8"
MUQ&Y?;;&\Q'@.YH("]N@.:_"0)0Z(Y7:-#`"V9O\+>V"D(&QV$IR+V1,K82,7S
M%MBYW6FTZM+3^A)':\N8>'X4]%9^=KME5TPH)WO^7F=[_O*@.<3N=4:>[_18`
M3A-@.]1]>ZI/;_U?*[?_+;?_Y8O[_Y*)_YT9Z3Z7K2. VX8'XT=N$'B[1P=P
M[#\^C\RR(W.$="):..(8N=$J6."W2*2]DA<*E6R (^E3_2W\C0:LFS4OT75M
M4T+*6_@.S+_7K:_OJ5GS#RQ9X)"(/[54VPX_Z:7/!K5(20>C+V_>RF/+WUF4T
M?#'KK)UH]UBB@.Y/^FI">3J1)'2&S$0XU-I#$$K?D#VUN5-;<RK:YE=+F5K;-
MK90V=\.]3+]#<Y.M3 /\!O2>\ 5I^J1JY%5XH@.N\ZRN]!Z_;>6*&@.;M:QLO9
MFIW : 2>/3QDDW23RW%?__P.:S+Q1M?/\TW,CAZ6ZV7BES+5(1\F!CZL!U(;
M*QA"5W>;T&-'5I\U5SXY@.5Q?/&_"@.#Y:AE BWK<7_'^9O"PCY=(=6L'A6B2Z
MINXVO6>*$$A/OO<(1>9W1.?99"%4CASWJ0[91BG5F3M;G8-,TP>?393+SJ#0
M]4,0LQZM";0B&X*O&*0["/?:5L=N5AW^.U7':E8=X3M5QVQ6'?$[5:?K#K2
M\=4I.^BH_""C:2XK?!?$9#5 CW8DZ(_5G8=P*V7@.F\@./+TV+A?CLY3)>UTO.
MR4JY@.2 6)2?+&'&6XR4(>+FYP_QPB^7X<OG!`+:V#4X0%#HR7OBAOPI<6 H4D
M*BCE"R=*Z,T(;GA.D&^E-X+$\U 3#:\U3K)/69!-EJODTAHJ20LM)=U>7MSP
M&@.?9< K/BP)/JE?+9:/QX'IZ2Z),IO^^^C#Y,KJ\F=Y\H3%NU3>"H*NVKF!A
M$^I+<QR90Q,`E4SA):U>4C&9XVG%>$$96E?\MDI[TX#V"))/IC?C6VLP>?\&
MZX1$?3,:WUA?)J.D6E]P%/W"QM433<F6).L->I,ESK?U5S*)RJ0)QO;PYJ-N
M7-E#&SK#K0:Z5$Q!EFP0;SS\#GA!!_ B<IIB"72M1%87.X3AV85A#*]Q!_4U
MK9/:K$Y\79UX#FJ%D"R9AF"_V>)IY*]F](,3%LD*Q_Y=*5$]0GW ,](,3A2Q
M4&]DVFDG,#1_P[1@.AU^#U3+$:X)R*_Z)I9&,UW%NX,]YO.0#!>)[$G<$G%)R
MI0N[L$%%?\&L2@.=0NB1'=UT_PD>*;F(__0]>P@.7U<L289W1QPM=;/1 +&SW,
M>[P'_SRU*JZ7C+Y9+QF<5P2U`6/N>KE:.&1)%IFQAH1!( "?01&#`;XY4 R)
M75(4]KY)6>--&.*/1 IE4=_<N0N6L1<_,GIZ4YSHW:N\E;!J7H#!?;A<^5L!
M[B)1Y4*)R6Y:Y+G;*&X4Y*PUO'(HS:"V=5QJ>9:TC $@.KFT92.J[9(V2;1XL
MQ'?+==U$-"_)E;,-G-"9H+:KYMK20'W5UNXC5PG>T^+%D3,P5AA%K9J@.3#
M_@.L46%.%F<<DG["E1_$D8U*^,]<7/O,JE)>\9*M3WX.#)/&)T9/K"=HT<!5U
MPS/I]40Y/CTQZ?4$.<[=IV_>@.DD^ZR,6%N0(FH8NHRFLOO&")?N/3Q9X3;4M
M3_-IJ_HYGL1@.]'DP\'9?6K62:N$]*HP^M-CW"MZ5'/R@.& 1KTO]QRG(I$@.C5
MEKI>+N<Q*3A=]#O%3QJ63%*W+CP&0XY)+B=HPE6$!$UD\ ^KCT<LG4YBTP-
MZF6AB=NB(789_'<"(6)7$"0N8K*;T^0I21R37D^1XW/H+AR7&>L35L?_>0"R
M`^IEZ41X$_ D6;1M<3SAPN3GE-[:$VO 7N+_D:G>G#W8:.:FS?BYQE/[C$XO
M)[ JU@.O (0S(T^'Q`*9IVS;GQHO78.U2\IS ;2,=TE05K9<46M-^=^X"/+DE
M8YC#Z^G@.YE +'C J[WP_8@.S\4WMP+41H/>+24V]S!Q,W/".WA49HXD54>@.KR
MZY4:QWC>;A""MY<ZLY?^//(;#44T=<O.=!=OO!DM^8/5;U8<I""EY58EY8L\
MY!FX=X$WXQ^9]%I76!*GM0GL>CSWM(*!+KMY.0V[GH/[*V,FU]KZTSA-Q^H=
M9G*]60S%P$]]&;.X3A^92'4Z\5;BEZ<("J/7^O)(G-;=&=([\V^@.>#.].5 :
MB=2XN&T;9L4M%]EZM,/X)O';"_?@.A/<0VTRN!^!V& (+#UN\YL([C<7K@.NGH
MKYXB*BUCDO]^'B5YW/[SG[?0-M%J>;]R%NP,`!7?@.J5X&[FL`Q'7K'@.;KFD>
M+;G.C?[CK%;.,V.F-R\7RG-<3>:PSY?>G"!/;%P0DZ8!9G#DE@.3L+>YPC/12
M5PB)TIH*O05P5;K,@.0@.&NH*1IM$8@.Q.W%G"^=#PFO=06@.J.T+ F83!R5S$];5
M!#@.Q7#_X0?S?!Z7$>;0$MA>M`QY&`WHY`0!7BT<8/$HD&@.\3=YM,1SJ+NT/6
M=I)52\'\:!/?$0.%SKOBB=K42FD`G31Y:WMUYL3KF;-F^LFUKK D[DN'PYGG
M,NGW<$6OIHG$D+J]L/XZ!#9A/@.YT=OP0A'@.OF44P?V:Q]&QV[JJ>G,;:I#8X
M1ZG,76BB_*0^=\=5*-O]Z14K!MHE'(W5C)547U82N_6X/@.LBC*BHWA3#L=H7
M,8^>J40YY#51<)*N/>;FZ\7]"HI=#^\/%85CUO6N0S0]HUY[\F7!$2,03=AR
M<+AW%KX?;A;,!=S0+0QL^*^_(NLEZHI-4S9%Z8[Y=N\[*R>.`CQU>F'K8]:T
MQLL%"XVW/B!O+F5KQ=Z#Z1:Y`7,QG Q&YH"8=\MWM\E;\-LDN&4'O(]<)GW'
MF9SX;,Z=. YFP0'1%O%]Z91),Z$>`@.\&E-RP>#FP:,E-8$13M]3F0Q0R^._E
M@._M#M!:>GICD<H+\UNN(N9Q.1_7"0ZS6[0Y6S>)^L6;2Z]&>S4Z5<3X10W]?
MW@."!RHE\M(+JX1LPE9[OEGA2TL%KHR9O>7:XW,1)UV\`DS2[U F0>+/!,*7B=
MQF:%XR1=OE'9B^JYT08%AV36@.,SHY#\;JRTQ/,4<`LXE@.FY(RA[AFT-EXM@.O
M$G2UH(+B;4T.M2J)WGH6(0@.##7$;)KV>`+'AVI]CWWZ ;T[CW0>1//O&#$9?
M9?83;0C P,K_!FS?"'DX><OA((AF!.$T+Z@.#7JD^F\'@.< 3R(S PO-77UE7
M,[6XZ"#$1_=/-V$NA_J"<<K6Q8;@.E4!YR0OI;"M1 PGA\T,4CZ]K0<Q;X+
MI4]L,UG^=J"PN/3%>\,^MR)6U&"<,Y\:V?HT8=L&CITHC)A1.&('$_VM#3_X
MXXU&BB5)&UJ-YBK ^Y[FY'V\\UQL63#9>-+8T$B3MF[KQT7P!)'WW/]/SE<_
M\?^')$9M+4@.FK<'U"&#Q/.;]Q'<MJ[X@.$K.E>3ZGHRU/IJ?6OON0'[*;TT>:
M34N8S>]6:^SXI]>73MW.%\L-\%E.*BH0A= 18B7YM!0+K(D%U'.HCX;V\)!0
M!U[V+;S%4^P],NFUULJG<2H@.L?N2:'>\780+`![]K2T%QV@.]JM-->H?DM[84
M'*-Q+RHMQ8T=YD,8D/MD-^F\6>@.?I- TE]:=&6!$R2P/PP;X2].U9C+(`-RN
MI%CLK34K%-*T]-,@.<4BF-(;X!HQ^L+72N89#I8;9#,?Q/+98.8$G2$],=O-R
MDVZQ>O*<K\PG_\YROJ9K$\:^!R.J>\BRH&GK[/H&J%D]Q0MPM\>?)T/C4&D0
MLZZT!E")P7<9Q@.?>>.)8+RWG,8Y77_.?Z61=,EWB-EHMGYX/U(/DTI:8X\C]
M/^:N]3=Q9-E_]I'N_\"77>U*-\0O7CM'5_(S\0P&%ALR<X2$'' F/@.O8BR')
M:+7_^ZWJMLW+&,> -YE)S*.[ZN?J[NKJ=G75S)_\D0I"P6]R0:!$BF/X<YX*
MX'>HB/$/XRVZ7%#^+&KBS4/H.IX?;D.AS4KYDY"-)&%!'MT1$2NN*</Q/%CC
MB=P-'+,WN(%/*J:A&I6!U+?S(:%TBDIE'3#F.OMI/)3)&@.JG5-;"\7#=!G@.<
M3R<OLIC%I<]3*0M\P-%1#6NO=B9GJ%-0*V-5XK>&H6968#M/T,VS0@."0PY Y
MV6>XK.6[Y[7GT]L>A.X2I_,*.1F9Q\\LJGX6^U=GD2:"!ZF35P) X0P$`=$@.
MA.=I91(5+\[.71%]$N<YP4V6Y9-SPL:*:ITWMR"1%6%LGV16?(-QX4TV?K?
M+%<;TCH%M=$B@.&FY$YR8F['4F?);.:1[,AU;4A3-LN+G%O$71?&O$/_J%/[5
M^3NABY4W7;XLF4& +GSO7>]%M0LO-Q:KT,,P899AQ@.X]![Q(FR7,_@.#?[)
MO LH4+QSOS#P/Y/\BS@.&.R6_0CZ0THOSMG.:@.9Y._:7_:W1 ]1?;_#7:9\GY
MK!!)%E=8+RXHA#CZQ"*)/K%]S.5];@.B4XAF %D\((J>03DDF6)^!9.Q\#_9$
M(]WUR"9@.CD>IM'Y1Z^%UMOCC:88;O%\+;&G'U8N.-5+]=;K+W5^^.LOI>P"\
M%G7^\9\G'IEGT/^C>Z\8%8Q-./,<L,<-3=,J9/[9/PJ:!2BF6+ ]_'7XR#^O
M'YGN$CTL'_ ,)WHD\54V.3Z:G%'.Q!$1*BH8J.["K>SC2$[*[LDDUS9Y3#0=
MTXG-N8#&'&=Z4<#T"CD2-SW=18)-L/)"XQ/JD]V638">/'LM4:V"W0!JOTSG
MR'(XS=Z[HR6/L#FU#1E,B-MK),2>(N&[J'X^9]GOLWDC;5;(T\?0=P,/7.=\
MV)'NRY%+FA-ONIX'R$Q=GWX>'TW@.QS?@.:+ A$CQFFMWC-V&)"L&>3SR'Z=%+
M-ALLDMX,.3;A@.ND$W11ZJM(U>Z>D<W)[,I@.^+4FX)%7O2Z9V`7I +=P8]1>UK
M;>,2U&)X_0OA<Y<3GJ%_S]\0)72>O4<F>7$!FL$JF,?'?'!!')_YJ?S2Z]F]
M[".MZ*85G.%8$_RYP(?>3._WCJTNL\W>J&QNP_I G\5G7)EWG7:-JAU3UH=\
M#^XQG#R#Y'_WK=A7S,(/UJ>,!5JON&A7WLQ;H!\_[I97DIFQ#1_FNF]:OSC_
MMV=W%O LTWN[IR\RN46E"VK#/V<<VV29Z'+^H$!"KXL5\WMTO0A%GJL3B.1Z
M&8HB)2A>BAZ5(7\1&8)N<";3O6TW-#K0,HS2Y>;IB)1.X>$'U6?\*MA3;6T^
MAVK#>H7[/U&-@.>_N":#7ZW6UG+=-ZI\%8.7MC_^3/%?%-WJ7T\<P9/KD;R8;
M+)&UT92C5:<!>F?TU9ZB9GMGT)*%9PVH/ETRMKN$.9*$)R71[J(@.5YMGD;E:
M%$F=(=S@.E=SPP\G[S;_BW;-6EN[TT?=QSOCND2BM:K0+U)LY/QYA\GK'ZC^B
M57C<ALX+&"26-.S;IY31R<4$H15 YR?D>EK[%$7KP,K?ISBE]\E8:O3BV'9C
M+(^X1L'U$/H8@.8%DT4LF(U*D,)LE'\S00IIYN-\2Y3_(NYRFU8OS)BYV%KV^
MHZ]%-0N/+9K.C7G_S49)X IIEO")G'5AK.B:R8J621?L86?=&]:A-W]T8*JF
ME_-G]C!PEDO_E;&BZR4H/C[2_MV39057`F</^6#FK7!W]#!B$XTX$7^?*?:H
M4-$.O8S:!B:*$"]SCTA6<=-4+_#NN4GEB>Z1X3OM+A&H>3R[E50ZL5'ZNO
M<V_J'3;KG47<0Z-,I>34:^B=.O5*B15MWA_S29-CF?AZ@.6& E-[>F/AZ$8K3
M!6BC;Z;:L4[/4:1T0>,!*KN82Q3Z_)PD%3U_#/^8/[TB=OTA#_3\_ON'R+TI
M$9*A6N]'G4IMXD?TE.XE*,XFC\LID[QXIROK(;T%^J$`0'1)R"/;1;H/2D[T
M*QBPP,Q6C3R\5JDC$D?_J? J4'G\[#'1Y2*C9[P6F.AR"7HAC9MRH+TB_1N?
M;3_YM"2F5%B-KB:!%S"VTKLU>HD?3A[U32H6MNI74ZCM,K;:,WI:-A]2LF"?
M6TT!)G"!^SO!!,H5Y0%K0EB")DO#:$V81X2D9G$9^B$^8;#]\#(GIU: ^_E5
MX!E[:"CW#_#B7,6]GCXM70?6S8/I4Y^\R!)'7/J\'8$U'OT;G H8M+[ 8;_U
M;+5T&/KW?.FO@.RG&RR4:88*.<0/R09Y^1*L65@.'Q4]R-,HH?)A]]D)MLH.5!
M=_1Y;FYX^*Q[%UT2?^\^7\ X2N0<#/ZAB# Z];FB\<\438 QR?=PD7#B6I]Z
M79T"0 B<@.R"<. N&M,D$TU?D6M5$U<YBBZY(R-9$US(K?S"6J&Y!8Q]JKP][
MPF!!/V/[,[K(]Z/N1 M@.0]P RJ5K72]Q_]E3<)*[7Z%Q*O7'?>Z+&;7#"0
M4$$4+]^=$)9?S/!.PN@.=P<S93F]0S60,=0OOHKQX#DZ&0\\Y];B=ECS"Z-2"
M^L6?A0LGP. =%EXS&=&R13F%H-0=&-O)BS1>\9>%C8A79^$L@.[V'$V *8A30
M''V%5B\\CK'ZZG7OF8QD/V0_DJ&UBOKPODZ]B<,\J(8B,>>NR%ZG\]WX5 ]&
MQS0K#VH<G@.H]Q9R5]^B1@.R1Y!$HH%A<HF*"3Y\D3\Q"_R&06%<K-;G_4O8:\
M]Q3.D!MRJ%@.^>;"-MD/'7]P8NK5]E.C%0X>]]P8JCW@.4[N&8R\#[OL#,PI3B
M5J:2*'41^9J)/J*S)BU;&4)YDL.-OE6)B>9L99<R.GIE*R%2]'HK]\EN%[O^
MNWN[KVDD<<0(\T208/XP/25>#S =$,&@.&\\`K 1FDPF-:=QR)/O35LXL=/I9
MPT(E_)5Y=F95;_&TQX]P0B[C>ZE-<\7\S[]VDPG<;/PEH^8B+?...LC63LJ\)
MM6WV276&Y!@.X9)KPZW5ZK,(VR:TF[AR$?*_?1<?Y;C^5P^8&-X)9_0A<N,U)
ML#["<20-['NM8X/F,-7QS?AKLS[6)=-H?QO7QV97U=ICCAV-$['K8!CMW^E1
M0=-^'Z78`1AS&)G>PCT&A=ZX/.)_5B59$G3]YX2M_>SB"*C\QU^X5^,/@.NB;
M4OL_W8X&KTG6%M/'2&@.T1L#2#?WU$@.A=60#\2/C'.(NQP'O^*XQ\>;U:^==N
M<&6OP>EXJI!;OS)K;H\UFI6/Z^N*66*%$1?Q"F,ZS\3$[@.TJ45#L*P!(R\+%
MQGE\V.@.G/0L7BN9DEJ]=;A'X3!U/$VQF%3DKZ]P'PIP[-=T'PIP[?]T'PIP[
MR=T'PIP[$]Z>RL!P.65J"[:>KBWVLWZQ)+6M)6'"/-P@.10/3H8E"KX"3,AKU
M-4E5,0=JMT]MQ-U312BX:%HQDX/GVW"$JE!M`A;QMH58A+@.Q?33;<XI'S)7Y
MEVTQ.9/!(3SX_(2H4FK^RN >&![]R >\:$;"JP`<Y$]SF,E_KS!A>81=T52)
M6?PWYGZR'YG%_(Q<BWOM2_=),[40H9598G"%_(VQM& A785?IG4K4E%1.##2
M>"&7C%+2/JJ;-/7(!G,\JGUCJ)U8)TVW,]?CFQ3^5\L<B4"'W?; U$YT(%H^
M!=IE<T]^-'5SD-"R#'53.$MF"K@.Z!<=?5GI%4V\>`,2,VA<68,Z4G@.2+84+7
M93A4!2 K_I9OTHDWT0:<F$L;I&8"S7G<F@.#I:#9,_QP8`"S#@.30:M-$Z+][4
M<Q!(*V?+U+=:1MFTS)XAQV^LD]1#Z9B0>[(5UX)L6N*X9NI5$(E8:R!.]I;G
M$:<8'Y]6?#SLZ9 4IFBTI DO#;24WIWV0 O9H ] BGP5JM1N^5H62)Y:5IM3
MY)VA]'74T;M]11L/)15STM>:6EVMDT4H&Z_0$Q,8WMRL_!NR:B_5$E;2+6%A
M5VHB`KYW?KAA95AM\41]#'W<18T?73&X(=]5`2W7$*I\DXR%YFV-#@.52E9F\
MK3CV44R;FQ)HHLX1:!PK)U9H2\ &Y50"K=D"80HRI[8D&#C8H 1<$KE.7\]F
M-^HZF+EONXXZFY;=FDI!FJ#<6JW6UBR5Q+%#F#M![<@.-/DA#;<2._I+E5J,)
M9LU-2Q3%&[&AJS=-7I!O.*XI2#+;K"FB\O=F!'>2$<QC6KK]L7NO*MCCXG:N
MW7)"-'H3\YUC<[9I+9?Y+N+J!BS!N0.K18+H&9\0SQ(XV=T.:\ RY58B$8HF
MR=U@.#PR?IY-TK%!K!+_*O=3I:&T<%G55;+1$_F=J&%_1_$'62,^4OH*U,6Z)
M=8X=U,='?V1)J7%?/K,CH2YJ@.BBP0D.LB8+0Y-GT?^7 ?U"5\8/*UUCVLWS#
MLG=#B4V%S\(0Y%6V"5,*WX YA9,YE#'@.(!:!"RTV_2@.MCP;2=OXK`D11X?T)
MP4658M'1S%CILB/D8$+^-E:'ZKC_,%;[@.YL&STIIPOO\C>7PBLLGJ2;*?(TH
M;J+42FME21$$CF7OTP#&/QP8'8U[CA^),)W6&KPJ"-!'6T(-?F'Y!_\:`B[
MZEN==&^_"..4$"L)[$%REO]@._L$M!1'N20!->;"GP.7<H&VF3C3[FT/Z%L [
MER 4*^;7BBBRE5\VSZVVIM]?XS;HM:5OT +U:J,J,.)M8WN^9C :#X@.\R >V
MP1V;%<$H9'E0#+)")G("MS=;?Z=A_-&=PO07WBIZRF5V.X8=/^."SD!,Z?I^
MOYC3&O$3KNAM"M+H)D=W0YMKD9$M-&H:+Y&U/<Q$8KW>A"F1I]O<_\QC%_(\
M@. :<F..W%8PBOURN@.]66IK@.J"OC9Z5-DP)+3E7.Z,TIC=)4%AS^$$^W?K;SY
ME7ES1WDK9M>Z7;K.C*"HT#"?UX0B'X42!J[SQY4%T3SDWL&(6 =ZD@.AXZF\?,
M5QX?XH$,8G+TZ!B=(_9ZIGYR1DZO#*">4F?C!%#C4"SZ%JG-%*>WN[W>-YR8
MWH$DGNJ2]$^'2.#61G=:1^L;RICR&).9%$U\05:XIBY%AJ'BS^?KA3<A.C_ <
M;,+C-KEU`A1QFU:XCOPBRIU%B.J+&26?+4'$=U>55>XF&C;[.MQ!D 8=Q?N
M^V/BV)Y+_F'1[ME:9V".3$/I=ZVN;O>E!_+0`TQ#@.1=T74:;"TJ1*07#[<?N
M6C"KD%#=T1P[L$[M.\[#.9;/DHK."4?')L=RMS#MWWQQ?U1\=!J-S9".LUHO
M050$79R!@.:#ZHGV3NU)?/=%T?T1U0%#QRRR08-+M@.Z2N+-Z;.ZWH+L)QK^WJ
MH!M...54>V':WL^=SD):[\QHPB%.3:AK=V*%I-UG;U5CJ-FK F.G5-L$IE1'W
ML\!*K7JMA;L<EG'7D>Q!7],Y$?MJ5]<MS6YH+-O6.G?V/:>+'->0/@.PP0>=;
M+39&)[$UCM4^"CB4%=^HQ^!X3A)UKOY1T(FL!HLU*6E8N2[*C 0\CNYHB2AJ;
MR ZZ7$-N_I/=#OM5BZTU]P>$UI)$L25^&&2(I[89$1H4;S8_#CQ.%=B6UN(3
M?(UF@._U #<O+4HO56\FPT)IZ0ZXW_T%\O"X+^+O?\01=T)K\AP$&</0M<%J3
M^T#@.&JK";8/3]0B<)%J&(;#[I_7;VIVD?",KA&R_@./SOR,1.Z8YCKO$,+^GJ
M]M.V--?X<O'I:@.R-!+7%4R!1OI4D1G^Y@./H]!!*#DEUW/S+GE0'(FM:+N2LD
MZ?_77G) I$0<2K?;UOK FS"($44I\TM%HIHR.5P0(R Y[4M&T.Y*24?5X^37
MI6+0C;:V;:N3O-@.E(^A9R4HARFY<*H"(Z?YJY3 1<KFH>DJ,B"0#+I4Y<HRY
MDQ2D^ZE'2T5C].KZPP9.5G+.DG'!5+W!M96VLV08P#F&$:5Y+!7 %^"O)GHL
M3BA8*@.13-;]::J+%:++!<A%TS"T9Q%GKRH70'71L\RZ955/R,I6*!_G'6$XD
M;"H=%S+?D5-Z(J?2<0TV>W4=E>96*AE#K]_]^BW!X*YDSP\K/IX)M4F,G7+A
M:+:<J-@.DB5"Y$"*N&Q28C:=D", RX4]R]I3*?M!.3L3N>EGN96XI%]5P#.QC
M7)BPPBQ;X?:D_K:^C3)8E UAJ"9]8S>K1;E % D6=O;NNBZ.@.U\N$F3:'Z;/
M/$<"=I<*L"]9DI+8"E',YW(1$)XQ@.K2@.Q%<&0%@.F_-.#I%X;`N&ZZ2=13,ER
M,1">"8+T0)/7QZ -M8Z])0?]H70(FP5>:MC*ZP,`GKL(#@.)=EH)!Z6ZA(-$L
MRP:Q;;5'02[+A@.`\8P1'(CJ6B@.@.P&(FA,?SN6!@.8JE0$PSN8, M"9/L) HT.5
M"\&0T.4V1A#%C2H70K=M=:2D)9* 4N6"L/#,\49=9D6<*A78@.]0!UC&L<R,9
ME0O=X@.%8LL;8.A1%W7 /#J/D\%!YA4%ZS#V%GIDTK;%I2@.H>EFR[WYW)C_@.4
M# VO=&W.8'H`9].=>DY\Q"4Z@.'-UUJ9B;&YZ"'T`I.T$Q"6J) 1#125ZC+ N
MI:&')(H5M'?DMI\$:B.,\4!@.&MO-TUQ,\;R<?D\[-$%966.Y;ZAWFKD9@.RDI
M>G(SPS1!&;R0FFET#!K\((V?<4%N:!,`=>/(K9$D0)?C1LAEWQQ-Y78YAH?"
MW,]M5J"_!-E,+>5>4\W>/\*0*YLA7S9#H6R&8MD,,3K,?C:LBXT(V]@.?$"=S
M1EW-F[2O]M3^,1BQ,_%.,,7K@.!A_D=5C,(B;=1D8S.X@.T1@.[QZDL/\I;$C7,
M5J;S:^&A-&,X&V_OC"0`V;/\IHO2^*&>G^8^]3#Z2VHH#:DFLS<U21=N.$[E
M;EJ*IMZPK,3RHJRS(MOX>_172Q;JM6:+O>'J-1V+L3<2UZI!,9Z5=)6KU37Q
M[QWHN0*?7N@.F%)5K<*HFW-1;6@.W1\3=RK8XWP;)ZLU$3A29;Z"8B^6/^F.@.V
M3._M<KCEA@.9\%8!1;[(44*NN-E'X$J@.E3JMQZGMQ[X2*WW25Z_9:;D=J!\&B
M*K+1M=+7<M;IT&#'\9U<%FT0DNAP.P6(AM_YA/\-Q)-)-.N=[KQ=G<?Q0$:'
M<64+,\EZ)R^A>RT?UZ@.K5;VB+%VB%TE0W:U5;V7H+#VL0&/KQN^8H3-;NPP^
M(:9Q<<F))RMP)\Q/M--@.Q)6...B%_)_-IU7USF7_3AOP_J*#WQIWN^+YKV6.8
MP94O3*>[_;714=H#56/4WT;1F5!\IN:&HTWW''KA&N>;%1G059CE*S .A!&Z
M/;QP56[D+2:S]=0=;=/][+PXXWL?8_GN4\:O1O^=_L%500N,6?Z@.'A#.K,HO
M7:XJ5ODQ6]^IVS;DL^ZC[3WNT.L,3%GKC[OZ.(F%:S'<=HFN%4=N'G?L[2]Z
MSNHYO8T^;7_Z*;T9'V3-_/0IXU:LW]O1_#]JLB/;]V?A2#8ZG<,Z5&(HL$C8
MC]X"2UGKQ4@.*`DJ$K6%['/OJR,=3?^YXBS"Z<J,92,]]6^4M&OXY"\GWU?\Z
MR[R5'IW0?4_Y]<J;O:=\^..]'/RE,YF]JP9,#CZ8<&_OJ3-]Y$GQG2XFV?:
M5YNI*EWS4U7[JGVJRI+]J:J8ZJ?J4+;P#WSVV<)?>/%@.Z?CG?H=&W*_'4E^Y
M-VQ-00]PYJU93R]EJ!B]63>T/I:IZ,[<F_VHU,$(G<*TS[$PN-P@.0$]L]G_Q
MB><SZ#9O(IEJ.KFV-M3:S!%>?6UH6$:WP[ .6'E;1>#28SJ_C<AU^_/TCU<O
MT_4\>)HYWT.&VR$TM!H<"*]C=[MMJXCFP..G_J(1#<!MTAB,W5ON"#6_AI
M8&E]N%_TA/UIU/8GQ*A?8=2_<&2[\X#IV!6,F-WM&_:W:&Z.[K-PW0*,VUU%
M`G6C]8>&HA7C?T"B``R0^D.W_^4\((=$E+9D63B6F&H.[8F#<;DB8_' S;R.P
M%]V9'^ ,3HO:+EB HZF''W\?/:Z]V70T03]>H!5]^HEY,- "'-G/,,##RF?_
M>1'Z"YSZ<-Z+)[8<<U\V(4"=9_[\W-=&V83@.EO,0BF4\60VC%VI!4NRBI'
ML3R4@..%1T*0KMW\C?0T4P7Q,.MW1TN\J')/&K=W^_Q-W;KV-XU@."?G8#_1_\
MM)@.%5"[Q(E+*6\_L``OL-*9VIG=G@.340*+*2N,L7E22GTO4POWT/Q:L26=8I
MR]L/54ABV?Q\2)X;#\F?_O3O/_WY+_?='\T[_@.:C+0?%^_[SI[\#'-%N;SG\
MZ<'<[' L3MU2S-^WW\K%7[\>=!"R?QM`9%%>VH6OZ@.#*?Y^>MBK2UW5G5QY
MW2[5'Q?_!?I^IW_\\RZOFG*C?_D$D4VC#S6%-T!3ZFX'^/580W2[4%FD?:DN
M23"W0"PTDK^0H#O]1O_Q/T\E^,3=.;^__%:!PZT=X^.IA6[:W'W\R#XN&.<9
M7;P1Z)M?_ZV$/M\`C31GYB1+0N[@._Y\NG+S<^RU>9(NW\4G@.ISWGM=KVG;_:
M: [<Q>YK+-9KW26+O_WT#Q4+1<M,]X8M,O>U0KI;M&[KOJU9^NM^[F1@.^B4,
M%."3S)T>RU_RYK/^C.ZUSC<UHNUUP\_;P_(?=B=5V2Y^!NSP]Z"?_]M<Z]$-
MD>X*N.YFC^YF1A5R;C?P)W-DQSN)O=TS-L]OMNTW?^:+%!HDG#!"O[]A^/!]
MTW2QU=!5*^Y%$:<+0A8TYFKCHVU5F@.,4883%=T2J$>82"^J4A N4?7JNFNF\J
M>E^W^U7,XS1F'RA)TG]=\&R5Q,O_^./R#TD<B31=/OS6JE@.^_4B[X^?(4M[%
ML?K('W\HFMIP].DE$POR]M[--X^\1\1(!R0"MNUX."NAW@.-2Q(IG5BG%7DPT
MHI*.R:G1"]$C_1D^D,8<)OF,L"1.+"R)TRAFH["[)A\9>?[5E(B9,=DJ-I0L
M@.D\;E>A+H6Z5."_0X'42"S4IYR3ECI1'C(FII/U13$@.B@..N&LP0E)?CFOY^4
MMH=BH^XU-Z25<9 >.P<I?R[SC<KZZ/_L<X2F*1 GE,,/8!<YDR3E0\@.\6K((
MK"W\6Z2,V\F0)CQ*J--P_*-]'[WCXF+O<4+__WKO3=OPG6_<=J5"S)?S(R=X
MG4@.BYATYB7#*549I<F'DE*U*<9Q%50_ D%GW'B3I[#K!Z]@.D2KT](#J-GRS9
M'8F7GQ3ROGAIZK;L#_9_DO6^R!_+<E4<]^N7YK@..'R-I.HTW@.S$>J6Q(JN:'
M5Z@.DBD,FX1Q0EFDYMD4%`^Z\X@.]?IPG%":^37-'M2U_%8(.(_$ (5U++'&(6
M\?&>;@.[[ZOR M"_2=&8UQJA%9#228M0APBA<==+'[Z9O7YK]B//T[7@.H01,T
M:_\8IXJ69$)YG%KE#L,FJSA3(/"=5B19_JQP(DKBB'B+3C^21+\QO0.L3VB+
M3N?6.!C9E:_5[EB7]8!BIK&\L4E72J%YWFV&&@.<O%-5XBFW\2]M":#?4-./I
M;9M6W[MLBL-@.XT@._"MUXLR</3X,M"YP=1K?\;6>TYE#CR+&&;GS;G@.YE\USN
MJN'!GB0W'F\O9;W]=OPG&6P\N_&WWQ];=5CEPU#CHC,R-VR\:!^MYGW3M(QO
M/=/ E#9/@.QTN;SW+G\JVWCX]#P[W]-8=/M9XAG3V\2KFRVZ?'X;%GMU:OQ7[
MK0VJWC:=WEC![8OF>5L:>S;J# ?/,1717TKH="BBNXV)TG@.%WH<R[Y0F$0=S
M/N()0\M/PRJ7Q;<6Q[8Z;DPRJ"\1&PNK!]3ZP/KMDRQ)+OI$'0Y?2?"*6 R.
M;>P]6QF!3G-2`0>MN[&&JUB8&+GDNR$;R&1Z8Z7P\NU8E8?3UBS?#SD^-];&
MROEX;)LA?2QN/D$Z,_10@.S,\_.5EC/OV&=X@.@.#T82O-2F>&T(KKIK?&U!SL=
M9XPH<J$%QGM1'^L-A'_O&\]P?A]%?_%SF76A%=_$ELD=9=B6<9EUFD$OC&IB
MRW"CU'HO& MP>W]GX+"-ZD8+*58*,)L2,$9Q[-,K*J<>D6R4M!>Y74C[N.=H
M?"'5`N1<?;[+^P@.(TJE/JH@.(`O:IUNX,5? .GQ0TO'<A:5*+!4%9>&HJ$S#
MO.LP51#N71"6>X[$V;@.)?"<LON "C*#HL+B$?LSD&%80`+^SS%].V^*SNCIA
M'3R57DBJ6R*Q4F6GF; BRM*(@.?5UF6DBM3GF=T28?(F+2<-)ZOX(GMO4EF.R
M(G%7<NP'3L8C&HR;^",1#L!D,7NAZ3MIJ!32<J=R2.JG?)?7^ W7O'51=TC5I
M# 4II8RPE=2]E;$D7)X<2BE!))-757XH17E_!RLSYUQ=CU6EW&H@.0`_Q%5
MNU >/IRZQ_R'T#2]J$@.ZZ#>?M4A=?BD544R"_)*Z[:YSM.*[Q'3MKZ=&[:L9
MQOXU[Y4(\<X9#-]!&9NF,N#]*PZZ=L'$BA#M!XHHDXF%DTZF5+VE8_OZ^?0(
M@.VV8K>CJTZQ\755"TU4EK%650>-^"3Y'G;P];=XJ]1QGZH:CL^O4F;DFC2VS
M.V8$VLLCA-K$OK!628[F%/S%V(UX/.MNP4AWTR/(75$EEDIR'HC2UGS$=S$U
MXS/,, QB-=V&9?7#/J_;!Z7_PO>0J8)3=R 1LLJ;IKWOZL.VQ4I_9+=%%,3)
MI-,]+$VBF/)P\C,S1LD=-W,K2% ,.0G!RS2[L-3B(:<OM5C[ED1,Q'XR#?@.'
M]TT<;PMZEK1;R5KKXPR;]5=&7U.Q9NO>^WA\(;:R7P%&`5L(:?%$&EI?K\79
M'6$:KRWS[LZ?X?G45+\]@.'OV8=F4>5T\+_]EN2F;MC[^MNZ]CS&P>WS*,.W6
M0<'N$:H<F"#I#0Y,&N:]DX^$FCZ_BPWKO@.&A[9_J=\-5K\\>ROI8/<.OZK""
M]:O:>+?NO44M&DR<3?I..NH]+$IHE'G_BI"/A&@.^>9<8@.W0HVZ_Y5E5B#DO3
MO[Y^\RB/LVDJ\TT(XN)G&D?<A\\R6$A.N!9>+[GT#LV^NNX]1N+I-GSYQ[+-
ME^"(KU+>+;J O"2+1"8"Q6B&'[UC1F1E#OVC%/(PUN?C)O^L_U^Z1Y>-V7_7
M69[^)V03]66BO2\U$-.%Y$Z.,I&1#">T[64P0%0+LI<H>V_4O='YLELV;LM"
MVU5,`_!AW?L`T![3B&GG(:7P3RJ/$9ZAJT1J: Z^6N#-:HNN`S]C-;^G]YFX
ML,AU=>\':;]Q4Z[MT6%Y/.RVAQ)>.QQ@.4J^#]Y.I[J:^(!WT#_.FDD&O9T.V
M,KM+F#&5F_WWN!POC=R4#Z>GM7T_2=@.TH4KPVU8LEA*<`*>%& .LM[;O+#T&A
M)XD>G@./)*I1LP==4HAWX&)I,'*KJOF>RDKKL2TNX*_OR/M*(-Q(FFBX(.WQ^
M_?[=+";3E"KMU#WA:.!FNS\,@.QY/[>YX!*7U6JF#D]?^T>PR5&(FU<1,0.)*
M& 18`>_:AX4?1@.WTTEGO4[OJ=BVP3$N;NUCWGN?RTLAE*8X\(R[< 8Q%)^1 Y
MLZK"N?SO?;V]S57P2P.44Y2CQZ1S\EG:\Z6&7#T5= ?NR?L*EN!UPA-Q*6_%
MD5XIHZX"J(M-1_W2D<PFP234Z1WI/')40G=?G!62?8V2>-Q94V[A)X1XI$]N
MI."V$Y_=&"RD^;+;;/,SCMR@.D0=7\\O.67CW9LHO1,-&?N_L>^JT?M:K70'/
MF#M59"/VS6XW6KP2OD[D!6?3$$VOEK.@.(%4Z.N@.V^4NAO/.SG+96KO<@.*/)Q
MS6. A3+MDS*\Q$X43B.>#6I,6RK7J)(]1H<'PKCQU^]=]SX"(N8+P_J-\.&+
M_,^G/PU4KC&G]ED692QPM*A=.O.AT]?]MJI?FJ'9#FX>8A'E.V;[CS_\[U^.
M:N.)VC5YVI7!SHPSNRI^S@.^GQ[Q0QV35>O>&WHYPBTT$?N]*<('S<*!N]SQ
MI-?"A)I.(S(WX*3R*[*1\J[I/!W$2H'X19/;K'),9^JMS?SXP^?N> Q0@.).Q
M,N&PLI1%23(+EN4PTLHW+WFUQ6")V-E6B(JB;"SG,QW+<ABLNBKJEF.JE*7K
MPI2$NM<ILD2%K9\P3!K""NK4/G\+@. 1\F@.=ZVM2K.(E!/7\@."<D`R)4@.)R)*
MQW9Y(&2D$ S.OGD!. B-)NIYQIQI8IQ%\-H<1)K"(!7U;U6K1Q*;VFTI<V+*
M9)1X1R0S5-2M<DRG,B &ZP1.26]\7^HYX9FD#+.OUTA*4QBDIPUJQE'I=*9:
MKNLM67P_40?A1E/>' AJ4X#U<V3$^"P2T@.P&Z+#9E* /$!Z_F_]$1MF8ZX6P
M*AK"((&[\[C/*TRW^4762/!9#*^!L%(J6Z3R9M3MN&$,3%T:YLJ<GF2X^68Q
M@.@.E7'EX0X4CL]IA(RL:W'N!F'WFM0PXDZ&T=G4Y8=@.K5OY1.*AZ?.3<\B
M(6:9<)K!`#5E<:HQ(REQ`RE)HG0L&X!P*S6$0VI/%4I*M_&8+(?!>C&.^G35
MY/J.I&%N]1HF`^%=WJ;-$7WG1G?"^CG^J]Q=8/! ;7UJ6HPO0*3/V4@.!"G,N
MK([$@.&WW^5/YO$-H<8A+W<H<YQ%+9^D_RV'EU=![S.1+'5-*YQI2FL$#J65X
MA)A<E$D@.!!_;F84B4A#.1WG:'A"#/),^I9KQL(3G.B]%45@.-!7@.JI O2O(*&
M4,:YI#3YH"[VA:95@.9-:%$K!S,5@.64)!F>H3;A;V$1I*<SBJW5>E-D,JZ)!W
M5)S%X/(F#*R+<%./JZ6J.)Z'JN.PT<%Q7[0Z_DWIJ'+*_)H](1&CLXPEV[RA
M.6X>"F !3Y_"@."+@./8Z[`]PMSU,PP*/;8*<S:0@.OG\WNJ3^8+CJ8SMQ1T)C9
M6,TC2E(=R-M^$^,BZB:;WF$8JT13 Q/834$KR<!*.,R6NS?DW%_=X^NS(O
MKG2F\4.ACZ]O[D62)0^"@.W8NBD>R>;SO)3_O7S]\_7J?I_R1/#YF0^- G<@.R
M=2"<J\J[=A@.`@.YN]:FLOIOJ5N>B0,!Z)><:FQK!,C\7\*7 $RV/A0>Z/B-PG
M84Z7$!Z'X<Z5/$!A1]"N[%EN&(QO52TG1*E:23,U32"Z,AMQTV2F1%7'8/-4
M586TW-27'E%5<SC+^#$8@.8-:Y/4&8[V]\9[+!E@.*"]4VR.B9^"ISL-_S)/4L
MA1WAKXCA+3(?.!,6T8$%;QA,$FFV7QO?:_L])@.7C:]W!')'9.FV_=Q%A_?5E
M4P>IA0YH\# #%YX2'J7S)%]L\S;/H2X=?JSW4V@.F'Z>#R&^8YBW-:_M<[DN,
M^T!<HA,>[5OL*[ TA_4>FD+],'W:^S B)E$ZC[[6$'90[P[Z/+OI3#ZI0",Q
MT^*0H0CTHZI]Q82E?DAQ,9LR,APK-<D@.Y*IJA-UW:8X$(L"9HJVJM@.FS)B\/
MSR&-()I&4<A8?""BLZ_<GV*2T"B9QYKIUJT6RO?J),OI6MJOE_$HCN =QB3H&
M%QF_D/L88_&=V2 TBY*Q(S8PD;&BL'F6ZGF'S-TY*8%G+>=Q'"V%F_J;O$+9
M>^$-OJ3CA[5AYGZ'X37D"2$FYD_I8>"MS>3M=Q!62MT]#-.)J%-$]$W*55>Y
M$O!!&-('T0Q6"S5YL0^[[:R9/5<$?MVP[EH_QW)).M+74Y/Q.K3O0-*S?[O9
MHM:E;I&/-A 6J:I1<S]U,6,J9UN:[AAL4%2HBM@.-)G),@.X0F?Y.H^_ZHR'!8
MK$VSVU2(V)KX\GQP`,;WVR"H-(:%:G<+F-+)BM*4+Y*@.K@.+\L7G::ZTS!H%K
M?FK?SJ=%PGU!3L(B/H_/91NS'D6K;@.C %%(Y1<?Y7+; 0!@.DU3:M2P0355LP
M]2:#-.LM? ?[1*FJB$?I7POB<X"*2GW'%:$KSB&ZHDFZD-)%$!)\XWB>=4G=
MFFUZ]U#D[9?W;?,TJ&LC$?43E'U,]/<6ZD1G7.6(;LVT?6C5MCS$D@.,AKBZ"
M@.&Z5\ZP5&0QKGA]*4&W'U^OU_;L23X1]!HBU)0G H.L0"Z,T=EU(">]O0[\>
M3;$$:,T+0L]ROQX"/LU CNX*+@.`Q6(]YT^*ZD@.NWIL5E;\)=2V99?$A15")6
MV02Z8B3F:I=O[!*%G/0V-%T9-JB6W)3;X HUA*NS$S(\5O.Z";<)2C4V!QP1
MX7Y++$_G<D,UA<^#Z0MSIT,ACIU&1*'A4=F !3_6B+H?YNM^& RHF5;5-(7+
MT54'M8D+H\.]I$!?SE0,;#GL,"^.#[^B1A5S5$Q$;)["%DMA1]7S=E\>GA!S
MS^D#D<R513 0SF]_*@.]UCLF+K:0TZRMI0L,]8-]!E5=5E;?%\]IR&*SR!4+/
MW1$AJEM42UD*`]6=!H\0U U2TOY >HW34P8)?;\P%F<D^P"Z2:A V:E-2<E<
M)9R:PB?N4/J)Q\(;O"0\0N+*U)U'ZDJ5U8_3%8%S31B+Z#S&Q5(XXU_5VQ=,
M9.06Z\#@.S;3N8R ,TN>R?BAKS-(O35WD2B& Y_$LDK(<5H^7+7*O"<L<%H]G
M2W98#NOO,JI.I$ H`U])0B1XXO-4DA@.,._N*Y_QP*%%K'+ZR`4+N=!Z'TW)8
M66VV3Z6N5)PXV%U.F&<1F<<2&P@.GJ;+8H6K?=B9QA&=9R%/4QBD;=64!2J$
M(C((.^E<L;#EL/FC_/.N1"SE45\@.3(6(Y#R]IRGL>%*7KP,D2J.;WKMTJ#UB
M0!D*`U4U[;%&=1]SF1TV6^VDI7!0ZL+-Z4B9\Z$R,9><-(.S>U^;8_$9,9R8
M3V#P),Q!76?Y.@.P#]0RZO7A$N)J,^=.C5*)RGJ2<P;"#O'ENBVK[N]<':PH;
MJ#...FR5BQC220DD(_T $4TO$S!<\,1E6S5P5H'>M6W6Y;9K30^ZW87>R&5JR
M<JMYV5P@.IFUK2_15#1BCZ[,7X[<O($Q)<%]$M[>S%ZA<J)ACJ<\29."%^Q7]
MZ[9V-HV;]MONG!:NCAV@.G"7]K#H8U+DV2UIKVI8U+A*AJ3.F%&3 Z1QY/T-A
MAVR1X])<?EL$B>@.LB4B-X'JEW2$3;T%(J\*U>6):RV&5S'-1(1VAV#M"(*K1
MPS80ZL9P6(7\#0?%$N=:LZ1W9D)OV5X@.,\G?0J0]HN_\;NE(S%1EL;==5C;J
M0E-$!BFV%;HQ.*YL'EO501B@..E=C"C."O/$D=*X`6U.$>0A=AS)Y[W;L%VF!
M*IEGNAF0P)D&QP.QE47XI1N1]!=$/Z8*2IWXB-W@.:C!\]R'KABESRI(R$27S
M))(LA\?:YXA,A'"E!()$?!X3IQFLE<-65TN_ASLE<^U+;-_("*)_A-OJ"\!$
M-I=F,A ^+5)N< ;%.T0$O)-LP"&RAX6ALB(=AO>)-CM,,;%#FJTF32,8GES=
MOH]+WIXYV.@.$MAM=/G!M=QU->F0J@._T]DWFL(@.?5%K76(E)GH!OGZ#@.:GC
MPUX<QXVD+WZ9JWE^/.XV98TI2G=!/DW"4P>O"C\,AC<JSVV+4 +,5_Z WQ11
MKP:N*K(Q'%96]4M_,"52CH5%M\B&: 8;$%0U)L#W5[FR9*X-.QV"2SD<B\\H
MH^OO.*!A;<EU&8<.PJ9FMMVM/P@.D[P:0\+";:WQN`^&1$#@.^&1KW=X]>A6-0
MJN(9%Y+XHUW3*//>)%X50<MEOFN?NY/DB[96)Q'F];;L7O$#?*BBC3*_:L19
M!*_/D&QPQ6PE+@.=[BT-(RB !N]GK\QH7C@.;:8^JP[[,EW>,-KX9#5=-,&&J@.
MY'#N5->KXPPOBJ*L6]R:2^8K<3,>)?,XJP;#0AWWW5[@.=Z,4?LOL)E(P2"F?
M8Y2:UJP#V+X6N]/[IH5;I1<B_-97-*R;<M]Y]Y 7[4##3G>*84_E>[YQUY9M
M>7?"Y9NFWXR-0-(0-EPI&V2-\BW*M2V%@.8) &!5GDLPYF21+(S)/\*LI/%)W
M! 8FR2-LDD?.5P]G.9RF*S>8O3W$A^1$L'!:7Z?I%(7UHKX5R$$>)'GZ*=7K
MTH1^D+?U9PAAIA/Y5'@.6S[5I53,$>0M<=MYO5Z!<S%4R:#!<>( +-87/$<CX
MW,&^R,BN"1=OCU]K=1@.=YJ *?Q:#C/@.\-7 6PTJI/"!&TCF/\ZH0"@.@.<3($L
M#KK%SBQ+817 ?HL;2&=K<*ZNA>](#-9+@.U-+W,<NG,5S%2QI"H-D[D^8SB3=
M(H:4847E%2<KVCL<;$1^R%O4X66,^@.0/&UZFPT-9#!>8XY:>_#T"*0G5@.+I>
MQF3HR=1S@.H+ /%QYZG9_U(C2DL3/O 2&T\R;9!2+BSD;5)A!N<]B<!E6#E\+
MIDF\5D ZFID+$;.DEQ&[7BN$SF9=5IOZY1&S6";]*C#,PZ! [UHTR^)EILZ1
M1^1;N#\1EJO"$SY;9UJ68 *4F&)PZH_/II+U5\VN'_^E*[4X50?4R41^W9/1
M\2M'IF,I!FNAFPWND )?.<3 %LZ3B3 0/I0I'I\06\)$[+I.4!K%\\1\!L-"
M%>!C8=9>...V\# L>KAU,FL.JAFZM$:49?'@.E^5R2,A@.>*M^@.3+3S0=/Q2XM1
M1!V#1VIQ(=\M<@.@.:PJJ!PW:_09PL16-O!6,QUW%.FF+5-I5&JG8YIDS$9S4@.
M5)_I["0-T9/2_S%W;;UM(TOZ6?]"C^<`BL)NWOWFR61VLIN3!),YN\"!`(,B
M*9LQ27%(2E;\L#]I?^-6]9VRY*@.E*KL(9B+)BNOK[F+=NBXVF'0'7>#OD;+6
M) H!JEIG>645U/#U4^?O]Q8]_W*8PQ"@.'JLLZZS,8FT5CU5#PS$(;JJSIK<!
M=(UI$1R#`%0TZ;I>V<C*\7UUCD$`>@.#7Q$(`^#K1.O!GX8%*< 7L_!B%(-$76
M/*QK"X]!7^73>*Q2E"@. *9V30V\P8</28"I.1(N;L<A30$;',RQ]=N]2 =
M$]!EI57)ZK'TL OW"%!(X[NHV]JFX%A'ZH*Q:IPXAH$[;&,I'6M:-(XSK(RE
MHDXS#+1Z;!0R(?#?)-)Y!)$_Z GA&9-\O0#WXU/>KJ>W_X;TAK/(^!!D_/4+
M04.DGO^*HZ4_KM/'O,4!S X?P!R",M<55&YLQDE>4KW%7S[]NN:#=P_2'\Q"
MXV#*8LD'6Y>,NKD##[O!#A!'9U8[KIGK?<$./$A3GK7WZRQL^6O<<@.D0LFT`
M>V?#GLK#!S-GI!HN`4+L$AQ24G:-35FN63"UE]QQ/BJ)0\!*Z^4W8"P#E2-[
MJ?^M>TSZI"W^CK H<=\XL4^/>V*77-\(%#*BM6S@.#9U0X-V /U*86DKX[-@.`
MMB(V'F$]^-AAHUV_OO_P'Y^G[[]\_?QI^N[S'U\^_W'[YX?/GP[2%90$W=6N
MXUM!3]2.1W,:/ G)#^Q.AT/0>%A!_NF(?!5,\/T9-07_)8@.8"(&I^58.V>6'
MMKHVU8...Q<[G%HY!`.K3Q@.J0IY2!Y\_\<9+<. ;I8W5+NQVZ@.K+F&+3UX%(K
MR7.5EKD2AHY*M58M!G4G:#I6UW6.02G.O+>QC8U&9;ZIWB_R9 Q@.&*0;OL@.WQ
ME_G$F;LX0WM"`W?NQ<)EB6<1,=3XJU+P%$7%38FVPQ+[710LW (6DK^%424%<
M@.#-UYU/XOS^)@.GG,I^1'\<S1FOQ:>!@.`X[QP]*N5+/*5+#(&O5]27R8FZDHP
MPOXHBJ[MR]-'YA)7-TMP7;,JX!)L#(3T:IJTS5<60WR5DC>3RD?8*0Y$GF'1
M)5E5U*?C.I;,/<89"C#2,EI;0O,4>WF!>7T\`C2!12"#UT^LR=OIT,9O/B=!
MR"!>WB<X4MK"CU?R,_)-XW:$[9)@.I*KI\J:RV"P%S//,PJH1@.#$DFO>QQ^[)
ML )E;0:>61IWF830'7:?DJK-;?I/*87LNR-=/,IMXE TM^>[SD)"' FCC8"+
M0Y%N[S;-=S9-7JXG'C@.4B0LG'A:]10N3\2ME)08)J>H;3.@.X_1$TG$P_F(6&
M=!B4QUAFFZG]XGB4(;%:8WC%@.L5\777A#^;YCF)*<#@.278>]:D^7$GK2661>
M;X\!K--];$%RK/*TWIX.3.$*9R0866TS*-)I3I/T`5_^N%'&,:WHOR7*778L
M*[ D>6EV/=4/I^^1<KOBP7W$)15A"$ :\+L.W)T4;R1.+.8[UKCC@.E.3(*1D
MZ)-=E5L\>H>C_Q<`$@.@.$GG)==SB\S<)RUU'>@.QEZYS.VP*+D``@.%; !!YNI12
M,A2G.HPKHP08I7+6%K!TP(-2,M#0ES"ZDNWY6AH.?VWR37XZL%<R&\=0.AR.
M-$G[58?C'WXLI(YE%%\BI)0YRE%HF6[5@.#14R,)X;'>:09&&J6O 9AT2%'-U@.
M+&]'6::NMALV;=FE"7<071\;5DZ7FZ+L@.=S-]&.R=,*[3W][2K+\@.86*7<)Y
MWAWL%6 25A8<XYF<)8#(O^5#V37%"N#\_[!0!1CE6U>-'3;];%)OI";EVKGF
M8 2V^^?"PBO3DS)Q]KT_IK>!0 2FYJECSK6%M25CDR-=MDI0`HGT^C/?[ACU
M\$PW- /+8SC]'(L4_ET#G]_A)WF+U8USS\7BU]"=Z.&4P$K&-"^\"440[C2X
M(?%)("KYA3D06ZS:I,J?UNWC8BL)+@.8XY*Z!#&E#`H=$0'(XX $A[$U>/87&Q
MXZV^*0%8A,-R;SQZDA_V8U@."@.@."$/0/0E[4P+73V'/@.9PW"\T)3DQCUM$U^<
MI("CXQ(6.DEW? YFD3.JZ$^DD5BM4H_R.08>]C9R)F3FZ$D&\(9&8[7B8+0D
MW73;M7T^B6=3GFD030C5X\3 9G%,+1SP%1-V$$@.TO5WE^6SZH4Z1%+_=_V^R
MJ-($/L<9R(MMMUX(*B*2#9]LFDR3])C])L\>[#<2>2>1G&N:,J-@.CS GI=::
MW-?@.I4]\F5/A'.UJ>N)2#Y!-[L'>6DA:RC;C=AB<,,6S!;8#LXMML8-M'_SC
M=#_E/3YHT]NN6Z=%`M_:7_O+_9;DU,)1A[MTXLV1HT!T18$H*XT]\ N#P':[
M#QTQIR%(]FG#BL+54W;4&-63XD@.\\\;)W!#49>9&437PR2E8KE'9QJE+"ZJN
M[#) #W+G17@.`@.=P8>&G7N_ :^\-!2&>YJHJE1?L45_>\<6?A.+E['(.*Y.4]
MO"56AS9ZVJY$(97KNL.W%ICT.,9!&\6A%VK9F$"@.,#C;"I,2^ 8%9;7\1(H%!
M!J>V=8]2>(0DA8M021R2H^Z!X:U@.C9^>*C%HS6C)4-<87"U1&!:D%:;1XWBF
M\:AQ83 ]R2J+6]RK!/0X"(%IQ;?J])#^X6?O\JU:F3O5_54R?4>Q93%0!V4;
M,P/D6%-'&8 "^\/Y4;1NSP!37P.B4][)!SP2>(-ME>J%@.")]W[Q=64WIN$*[
M-XY!.B1%@.IBMVO'K44ON:*-Q) X94UG=5_>MW2SB\3//) KEZJ:5>7:A$QN(
M1*O5@.$9OB$^BZU0;,0A2RW2P:2X:U81.2*A3RL!;)(,;EU YL>104NG\L/+@.
MOUZ&(-)^U[2[[Q;]+*Z2>"=QR >]MS B`RU\PID_SL -`""@.;$6^+3CM3-:P
M@._%E&RKBS(A^4NA;XG-Q$]T`69 V_UK7.<99P<?Z^/'=05+/\)42OK%@.E)1+
MB^7@.`[*NYV-_=O: ^IZ9R49%)AO+D*=LI2?0Y234*HNZZ(?+I$32(]0S0W1Z
MF>&-'Y^X3$Y!GF]7YLEW)@.<T0<]3!#V?FHFXE^VK)*:6*G* -.70E81#WZR]
M.'.A1O#QN62W]J<0"P4Q#WUE<BHU3F! +5L.Z 6*;>#Q,"Y(+Z&7+=5F[JHA
MF\;A//2%>'#,"%/\UG44O9-/D1%0Q-I-F>\M+R9J/V/7!S8]<'KG/8V<F.::
MY8MC]/4Q7O9P&%0-BMMD4PZ?2:H7"U+1%+Z7+I;1DEHZJ3">9A*.U*,9@.5M\
M:+7GD.6$!-5-R[+V#47T@.Y[GONZP%CBA.:<N%I+?F_HWCN4,?@.Y#G4&R!;O0
M<BO..WA&2<K'W'+ZZOA]J 4$:4]NDHUH^NK-W3 ^%]$EI70"@.H&(C^V,T$GQ
M@.MBXV80M=<A=_;>G:EDF0'4.8I9K;-=SAV'9B_ 8(SNS;9.DCS9VE+K_BN.Q
MFMX)%.HY7J(;=3H7^;H=4#R+QZGE$B"4K<TFBUJDX.IF**XSH ^.49$L4"A3H
M&'>"BP<X`0NHSXGD&!Q=,)QF?/;E$2>D&!AO#D[@.7@.]]$FX6D:'#(;,K4*'Z
MEH[91MTEL)ZP@.D].G8*A[]8"%W9GE%.1. 2LLDCQQ>F9`3H3S*/N<+;+!;%;
MAD(R2MH]%'F9B5L72M6M"P4_W@.,"2JR,<>LBR0F?P*#N((L>*39"GA#$;W RF
MDL^AW>:=XV@.$?/UU4B1U+58?1'+Q03P+?7?<M7-24AVF2<VTCZ#L*<I@.\ 4C
M[[HD)F@.77];95S[P>^+-0^!&%V_Y]$TX':8O@.!D0B:>2HED-*&Z;ILR!TZIF
MT^?ML9O&HEEG&%MB+\2(<5FJHS%\Q-+8XCG/-!A/\[UONH4C0P&.6&_:%'Z<
MU_,2_L$W\\>EQ/7:MOUTI.:G'%>^:\IUF]O,9L"+<WV#C4US+XR:2PSB='FW
MPTUA8?K&<6 `(@.-E3=3-@.G=#8SMI)Z'(Y^XA6Z?;)PM@.9.Y1H3<]-(]#4PBK
M>)5O:9,+' )5_Y!7>]OUPXP>/4LO&FUFN\"AC(BBNK>);.H:W[%:O D(2G_6
MCY:UA\=O8QW)41ZQ.SJ)0FJ0OGMHK?HHZ2;#Q!ND)5ZR4P*&M ,3R9?J06QGO
M5/<*H>&^?7A^M%P`D8]?OUY^RU.;[EQ&\@.,EH_6M$#@.$K&725WEO)4)U!A"-
M9L$X9RAAR/!!4S<VC$5U4T/JQK-@.G*Z&'(42"6EOT7SJ.J/;&0@.%J%Q:[=$5
MKJDX!F50;[ONL3=3MXB1I.8$PQ;>Y^<2,3*"Z&K7=5;]*M0SY0>@.^DV5=DG'
MBL[ PV,])P+RC!E?/CU8^GQR<J@.)2$=[NN7#>HT#H0/P".<)0+U+2_BK2.==
ME;3]LBVR^WR.:W?@.P;G#^4SLQD#WO*/4[*&(Z0ZN\E6%#EGWQ999>-6F+E(&
M[9!YOLW;XGD-+[I-`TO %PP#OF X36.E3"VD$M@.!*M[AQ3-7GZS+3Y9B5--R
M(P4,`2IK[5J(7F,,,<>@.%'"9U%:#+(Y5H%UB%4@.4$E3>;PKG= $BA>B(C9ZQ+
M88[!!&21HD5U9C1.1!]IAB-'(3DIV::E39+/L13RBUB)@.Y"&`/,6K!ZY:\2-
M) R!ZA;^W8?WO^=E`R9*B*$2)JC 'O+P-HS,@.T "($;B&M71-"G.;[/U,I]^
M970Z%$P""#C?+QS1!+^[2( VV"53((M7VB#?=NRS(G]@.>)0>/B^YWCLUN=[0
MMF8._6Y'V9Q$#%UIB\R%D] FF7%-1V\<1N[W/,G*XOZA5^W?CKGC]WG?XA<7
MC)(4S!E?/+:><WGK.3H)J2[_\+Q9K)?KOR54.HJP9J#_%91Y.Q6QG**^GWX L
MJF)P"J@.+FN_+=8\OLL%>K\L<OK/OF.$MCB /;NI(6<*2E*",7>I^+>Z+/BG?
M[WI6W^',`W21/>$B^X0,&]W)&R1Y&W&TT=V15GLU?#_C)'5Q0K5*-:^%(8MN
MP_K$K.<`)&CP"H2CRS\)$*-M<'VSAP1$@. H)Q;$Y:6=T))RZN2=YO1F \550
MQ0]GKO9_71&=<C&+S+,L@.).4!.$F6_&935PR.6Q.NE3Y9##2PQ1)( JUC()&.
M/83'19$D+E7*QFK0!XUU893CC36/FX%0'+)^R+>P)3SM,)[ L7B\)#$<M*>D
M0D80-"?]URVT8WE]Z]6J2/,%_XLX"TY<(@.'[Y-[&E-1987X4C)86ABADD*)(
MX.QLFGGX>C*+'\5C9O0]:.%RGQ5-N>'I<RYQZ(\M7&,$V?Y4=T,!GS8(!?[N
M=MUB%P5WZF#GXH=S`>TN\&-_&7C$\])T1;+5'3&S6N]V;YZ>[GQ*5_$JH@.OQ
MCZ3J:M,'<)BQD\8DA ?5%XD[%-OR';S4/E$ZP.]%MVK!"6A5E:3IQ -'T ?'
MZI6R$MT7&B>FC31VEI,W5I[BN'ZV=A^>_$!PTLQS#R;XGK'R5 $_B9U5.64,G
M:"!BL;)'*0ZSELJ!S.*+,ONJCM=123J"[+<N;8NF9ZZN,X\BB I<4RA#S?&>L
M$9>"D!)T2=98I<%>(SV>@.Y@.G:25#,0_E(!2#Y4(BE\OU9Y2^< L=G%8IYD!H(
M7K5Y9](\UM/M7'J<@.I2AS_"VZY= A>#-W9MET?\=YP$[_'Z=.F:+5 Q:$!D&
M(&QS_ZNH_U4T4WXK!9;H`?JPS<]%LY"DU('W2?=HH6L#%8NGH7=L,I-EYW<.
M0B$"=R;/==DQ=8 AB>Z817Q_%FA.,](%Z0W8K+9!2"2F3GVUZ?"K>R7/VB7Q
MW5FL#\(L>CXQ'*.UP;'J8@.E"8((S6Y6934S;=;7#YN[W5"=\J ^B-9SG12^"0
M&B'%5CVY35:1>H#BP*SUOT@.Q<!0"4YHLMT7^9($I4K91Y(UU5 2)02&;F4L6H
M`08_*]:L#'LQZ#-UH?3*5)9VNKI_@.L?&%)J1[B8,5I=1C/(R,<.R])@.34TON
M-LL*W'E?TB9 6X</H\B<&>T*KQY#PYZ[1_M5TEQM<EH+?P8>XPRWA7\@.E3?N
MR9X@.)T0'@.\'."\QAS>=NOZ2CMH"!TSL`UH.NEZ!A9*97GU5KK FNOT0831:XI
MKM38==_P&X/8=!POH,FH&-R==VD]T)-8\B22Y4,XE#@.<A[N1CE@.HN)AIO7>J
MQWL7G$M44E%KW10E%NGI_06_3Y^I,^SQ=6E1/2,F2+<%"+G,M,J.&N"Z"=-8
M!2>2^ `+Q9@.XJ!GJS@.FE9.)1?/CDK'N+"4M@.]M 5U;#2[FC08J+N WI2-L,
M7NXQ&U5Z@.[HS9PP!(H@.(DG_US"@.+YG#@.$YU1$T<SUS$C8B)OQ ;LAK G\:9E)
M?VV*]+$OJGS!R4CI49$E"RR (<*J&"=:3<6>F>!JE A[(@.+V[GL#Z+OIUQSL
MFW6=;=)^W0[.%'^[H/1<BA81XU5+#%>(N>M3EKR.KY(R::N%)*H49+-9\LM-
MH[ H5AAP,KKG6&%XP;Z2ACA4;NNUCP.24:2*8&(GG#GZP1EGV9*HP , JN5XL
MVU$8X'$R)Q^<N6Q.0ZK@.,F_WZK>"6%7BA(-9;>.LF5&</R<-4Q5)<6(9T#C$
M&4%!7/1/&M0\J1J-P#6#<2.=-F^4)*FW^5-2#E=/W%"=M4?,7F!C(>!$!88B
MP_$Z`P14(Z">._/&1L!)"OI-6VR3]/M/W0)!4R%@.W^^&>^#K/0`^,)SHL2!P
MH@.*#T=38K-I4K.AZL7G/-0X&U<688WA.ML,MB)00`(%C-BD>2=XG6TFY;)*V
MVWL.B2YVQ*G$\:'2RG,*QR0Q%<L`2=@.DFPG.D$)U"O\#L4,FV A^*`E/J1V^)
MO.1T\++7XOZ@.JZ= JUMLFBP!*;#8([G(ZS<;]C6&2.C!9'/'ZGGW\1$=\R ^
M&<[GN3)"`4GL8+_,GFKT)O<1ALHL@.O,;S/N\,CZ)2-IJ\%(4JI_:&/A(-JL*
MH'G2"S_94I8@.9/!XTZ'E#!SOS#%-=>(&<\*OJ]Q@.%H>J"5>HF)V%SH#FUTT]
MY71?O\O[EFR3Q;<V)_A0W3D>RW47= 5O/3UN5@.!T@.CDQ\.!A6<C$4_<#OF,:
M>;%(PW*G\?Y$H_^QN%75EVC=0]+F&=K5CYUZPP$)>/_)TK?JKRQY"V_!*4;W
M*8/H2XA&[2;L52RL>P?S#P"C^!6P1< N=8YI".4&878#6U\EBN']?[<Q/I'6
MZ/-O>=)OVOQ+N;G_4/\#V!T<*_@.3_APTSRM.O@.'RA<';V^>7@.,""$8! <SFZ
MX_VX@.%XB^>>']S5\E)M8PE!B"6,SJ#0NE@.WX#4C91'.;INM-W0,8OD.:?8[=
MU8^)B>].!]@.2C@.,?_;9'+:.'UR[;L ,_OY+<J^V"WP-L5U18=1SXZ07F9
MW*OM$@.4W';M$F_ZR*<IL&@.435#(B5!1CRXKK`!)U-IT^O*;1!R<WY]A$CBN=
M6].\/+//35[_\\,[[ARKYTT=6A":E]+C[A$<6;TI!KT4M\_OJN(%=__474JK
M8F^+WJWK.D_QM]Q^^:!A_1S.3A5Q[=YNG[%GUD^62$A2T?\U7V&+!,[4G'GV
M6%N'GD/7G(UPG4/+.![.X9RC]@.[QUTV[3.H#@./^/A&C&\+P"^#TZ]0=D_;'0
MW'5@.LM#"2ZGQF[Q#W$<7J7N.B)BW@.-=!IZXR]^#]_O5/`>S3NI_>;F$-R;+,
M;23)\!^>"NBAVS]&GM@./FA&-Q7=8SY2_.-+C`>7K;%O%,#4<4\HQO5#E^2IO
M\SIEMH^V4XT$Q1GQKXRS42#0##*L#,2]OXG'?+-K06,@.]G;M*WHBF_+E"?]<
MV=))&/OP?OORA7UBL)ZN0B9>:.;^7@.G:JAF JKJ'OBHM:FKI/ I9QAPX`GB3
MZACN'(VY$TYO/,L&$!R&"J"4G4M0DV'F58QIJ9[N,>D%,V^<F5N<CB#:9)5.
MOP5W74N$F)K#XUQQ+)C__@.."-C[KM@.NS?+FY7P`.M0W9\IY:@.G)O_&A\4!R*
MLCZ B="H1TLCGE!'.8?4"6:N*3Q%ZKR'M_RWI_'O061;\0_7=0D^V0 +H<U;6
MOL9O7_[1W7<:%<Z:50VQ7%,/7AM3!3@.4K@.\U3H)>M]\U,@.Q%"VC$<\RJV"MC
M*R06@.4YJQORO35)B$IHS]^9LAFP]K]+T3;)K^,^P8H422L([> [YG9D2I_ C
M,X[[8@.DGU=6=N@.:I-SDJO<==CU<>FB,]S9$@.4UW_9W%DP9&HY[>H;"IN0;ZJ
M&*$/KO%80@.Y1"$A=TQ<6#=JIIQ(LJ.^8)91G(,++9T9?8;EO*XN$_T !E&P1T
M%NL*LG-&37$L2%^">92IU? 8X "IB8LF@.[@.J"; I@.DIIH6_%''9R0U[/I[.1
MM47]N. H%&/ST "/@..G8X$^P`&7PJU-!`OY^#B^XN/W>_=DFWU^ TPHJ'K0B
MO18XY'+ \0(?W[G;G0)&M$@.@.6.!U\;Z=(A2X<ZGV,-FIDQ441!CZW;KNVW4)
M]J)A%U(5W2 T,L?N7PAX#R-NZY37,O> 5/Q4?) J8/(QP6D&N[1O2^Q#`W^B
MB:>'FWC4-_/BAT#Y@.WFV-N"B?Z$!"$1_Y CTCSS)</=80J WT974;F@.64E\#
M4<L`M R P/3+OPN5I" 1_^CEWP%,1US?UU LOQ62I-0^[ ?=DA43$'*\;MYA
M#6D$-FQ(8PYGO4ZEO,0F;D(PLL5#,#Y%$8R%7: -=5,AT(9';T'<D3"9(,06
M\K=X+_F_S%WK;^-&DO^L`^Y_(/+AD&!MAV^1@.\,!'FLF8ZP]H[6<20ZG0T"1
MM,T,7T-2?MSA]F^_KGZ3(BE1HK2+3&R*EE@._55=75W770\*E"V;ICBYWB3P.
M+AD$FX4K'/,)XSK=4@._!U?4_T((&1EN7"WRT:@.@.BM"W')25,/*S3BRE);]#J
M?0S:4/2OJ_WT\[(1CO3 `G.&E9'H:=YT',9)8)D<5@.^DZO?.AJ28.7+AZH,B
MW#$&5ONO7%=#NFFXHFJ2:\DMMPXS;-<\H27\HU35R,?Y6D9G1V<1/(FS52XW
MB]1_N;N\O_[RN95>F6=9O,3^45$N7PS]U;&7QI*1IJRI0@._"+.OIY5 536SS
MG"$#4XX;WB?%G*T%),]<.5?*T"O\)^7?E"!$)E'VMF1 F(Y]PJLVE'4A!7--
MRU!^+(MGU4"#IK%]'DNWSC7+U*$<"0\KMDQ;WNB&3&"LZ'3%?F<,;*1*<%QD
M_BN6(W0_P?N;X+JAR28V8I'#>>9*^D&CZ4\F$A4+QY]>0C8U+P)0FUXDT1KR
MS_,G]!)*H"]?D:4(\1Z$)&7+Y;K*YK'W=N6E?@.AV=IO54_C'Y/A>:]1C)
M(DH@."'=1>1L!N+U@./$0]C__.MJ"0Y?;B19#)U3 !1"4;79535J@.[:^$<59P$
MM<5T$!2D2U;X[[G(@.\A[G."!Z"C7L4GQ_=>[><L@.M%!D!+B!$ H3(D'G"]+H=
MA_WI,0*4'I#WJYC4].Y)3CGT*P(-2C*+PR#&#%5^_'U^U98[*^EJ;3I6J19"
ME_$Y2%[+X!N>8W#\8G>:HC#!'";9).<9N2;AJY=6[1J8/)F/YU/AX\'L=E$/
M&4ST=$J)U?6 D53>AY6G&+ M3>I8P-Z (?(=KG6U]\9>+KN44&$7="Y\L$K
MWQ;@.M]-FBR:H>6<R%<FZ4ZLQFAI/PM-Q&9,/T W*2Y6_9H'W#<?O>^G;)H)O
M\&?R4PD15;Q;H)04-P[ XK=9>)__'8E^'1GLB[$*TJ8E6S$R,K*=,1XR@.H09
M@.7]FJS^#51U7=YT9&9>JC8N+0N'[=$,J@.8CR&]-M6>:#<36J@.ARKZ>U>N(IZ
MM9(=*[@.(;CE0-&1<;DG57+P*F?)UT>K+G)=$R]P0K?U$'0"PC?40+7-T9XQD
MCDV1,3@.QQ>FW:>OUO'E6C%:E*42++S?7LX^_[\<7($\WQ B@.*,<AD1:.#54O
M;!V"0\$-HGLD9B-?>$JL.Y,6,_DYY024".E)9&Z^O+Q<I.PF)#3MA93AHC#_
M.K^:X2VL!\]O:%:Q-6[99XZ\,RYI+RSU>P'YEOM!Q"A3--_\K##5AAJ5RIQK
MIAS+ND6F#E)7! F'Y55-6%-1/VN*M+LY;>6/.K)V)T@.HK+@.*HE)34U(N!_VG
M0\:<J-BINW)_&+Q5HKFN"\H*EU^^^7 Y4^Y#_RG-XNPQVBR-/@.`8P\*A?2O2
M)C27%_/0W>G&KB6#9H\/C6#AT- G&] @.,XMYRZJS$6W+H#GC0R-8.+0H>92A
M:2#^_ P&Q%]K[*PR:.[XT @.6#BU\>&U Z]ZF,<"HQ= <6!A'AT:P4&@.WF7_I
M?[^MFU]63U263G>0'*HUMCAPNR#*_)K=]1R5E=>TNTSA`YBN5<_=E32&-:[&
MH% HL$4>/3R\03&Z&K3NRALU:/LK^Q+3%46CO@.*JZ\1[;*XY8J<7*E;5TTV.
MIE4QCR) (\.C1T0-$Z>O\'X-HS..:&%L]%"(&3N1/ZCE]^BIZD!?&($-P]3A
M.X%H`*62T<(LM4'(1S5+,0JFJ3(?\TP>-G/BBMA<U[7D@.EE"'R#GPFD3K#VU
M%,5!806K1SCW&W#VKO-M"MM4SU1UE&T*"J,NYW%,HJWKDNX(#>JJ2+WK[9[U
MR'XBE7<&20;J>TE8>+_F<>8%B[?RM:[O;;%Y:&N.O'DH:WP"]P!D&,,:8T#O
M>KTHWU[)&K05HMG9M5D605+F\2")V\#(U\F>\38GMC"T;=V6# >W:%'''GR(;
MP\VA2NQ$U^^AOUJ=HSHWCG2Y&DEMD1^7H^AZ)3JL89CS(DH;* ZIIB\V,:2.P
M2'*?U"-,GAS0,,\%O=ATJ$1(HZYV>7:J>X!G!T0;0[G!(^00F-*.M]N(RCNJ
M3I99)-!]26_H]H'0*H98-PQ'E?.7:UK%.$RK8#PD.H2AHHC@.UB=<S;@.YC+I0
MS[ICRWTH-R5L/V02JB<*H05=PSP26MC5+7E/N(;J`'YM\JHF8IN#:/:== B]
MV[J.C2!F]6&%VQ](K8RZ;R VSERM7F1?8IMUF)B1FAE4,X1)O"%2G7$6FY;M
M?IH!$VT,VP8[P!\7I<-476Z$<NRE2&81T?I5%F1E0RD(@.3+<:?M*[M 2B7NA
MD2@.+`^.J'8XYX6GN3B,LN&%4C,8I&1X?2PE>^U+-_1#-J.>JC+542[#JB_3\
M:G;CK5/_"9EDO]>'4I=.776W'K@.F#>5T;URY'\28MF0MHGOEAOUJ")E'GM29
MWF[,D)5F/(N!0A%2AGC5Q&9.1*5^N=/A$><B@.R5IS?>XR4/1&#ZQW.BJ(W<"
MD9G6#NY ,XLTG2@.:#D +2K,G+_2X9@.Z#*#M[>(Y<A6FUP4H1K*9#ER.S=8;J
M^^\!29:TC^DW6-<%#7DF!H=F6YI<!OZ(2FX3+F'C:Q+APEX<H.KV:!&'][74
MZ4[H_9?9EW?*OU/Y4U)$X3_VPDB 4":&)1P(U16*,*\-2Y=+P=;FAKWW@.&*:
ME"OE]QAQ_;% ,Q+T&)@.S4RA0J8+P6R3Z<&J>&7(-5HT50U5I391=Z\>(./[O
ML0)5!\)BZ:C+*LOB$I"E2P:'U=S['J_3J(AE=/C\9J)!8TA:GPA:"8VSR\+H
M4>:\N%;I)YNL,7D]>>3^3/73L(: $<-6/ON;R%R=(7/-LZD4?WGD04-@.*+(L
M6/DK/V?0K M-T_#.XHD;'E$<@.E]%6,:!Q#'#`>T.#0XIQY "D-*LC\TQ#*=K
M-#5<A:N3+T?%)GKP:JIAL,$MNK0%A=J5Z7]BJ$1Y$+!)^;QZ3FR5).RZM@.O!
M%P9K86&XR%&::F.(&B/$W(\D*HMGG&*G7VCZQ! EB@.QK*A>T$E'P[CO+&#.=
M!BIQ0#X-P4*U:1 D@.) #TU6>-Z-KJMS4Z_C "!;*L3WJWPS*3=PLP=FL>1-$
M7KS.)=G%@.=+2^:? QY=-9@.+ Q86(4^LF?D<-L!534^H@.<K\RQ*JXY#W W6
M/*!/Y/ !:+W$J%,POQ6+L%KGOU81M!<1@.'2Q`ZUK4_GPJ 72=JHO10ED((^#
M%Y>N99P;(H;#,"RYM7 MN;L_K[YG8#82#D5R=Y#0R>27,J*>!E0"3W^GT;WP
M(!1\#I%$O@.56E"*93\QQ'"'1.S1'2N8CNIORC61],'>+YB&;)\))DJFH>U5_
MQ>!=7?U6(/QA\<=L<3>!9EEGX%3A0L1\,[+6)^H8F7*)[[]0&$')/!B$;?9Y
M\>EF_H=VKIZK&"!)+31Z#N W%=86=)OKF^\':?D4YY2N0'2)VY,Q?0!8=)S]
MQ3K)J\AO[LR[W9U3D-J%F<3SX6ACM+^+^,\H28=T_>)]2&U5#FC?O2U2?0RS
M=15G&?*X7G&=;YQ)+C* LEH?$$N...HN&F*JKN>=H#M@._05JKQ6P439.3^<8#
MEX6<;UE85/H`SB%+2X1<U7)8]V@.I)2PH#$,"Y?E^-:1-N<FC%Q!_Y>.>`U$!
M#@.H+:;8*Q'# 6-HV9Y8-]<[T,9C%<%!8@.!!R' DJW/Q 53O[']C\*-LVY:HH
M#D_4<>"@.8! @.BD!BD\"SR^")L8,P[5&&CH*0I7P0)/W"L&F*!!P#V\?0$!B3
MT%\!%#4<H,%XGJ"ER3'W!]:_"$1]0WB%#+)@.1\DZ3J,S`H$BRLLJ*T)_]UB<
MG@.[8>V.B(+CC@.*ZK8#5@.Y*:\Q*^CR3T4]I6LFOU 8"X9+(82<NC2(1- $RU#
M=563-[D.BF(B.!BJH/!>PE>(M#=V;:XF>JO)/: /PD10R)@.&(1*G^?9H[4,Q
M"H;(CQ(O'=)RL/U<\2 \%(,0IZ1\&**M#%'7&O9 '&<L<0(<7%]!7;0PD&%M
M*=!F&B+:!ZT]UEAJE !AN\C>RJA96%N,!M,5V<3(PC(.-P#;- 1&)2,<N$!V
MQ@."-#E)>)3%CA_3ZZTZ&.7A\F1,4H24]1DO"D%Y_/*/"-6IE$G9N$5GG7<0<
M80JE6#)0U ?Y)<L>X_ ^R^*55^@.3G6S<H(5:<2>VB&&Q75LN`*>17"L+TLAQ
MH@.)Y3%<"*/XC_5514FR'^^DQ2KT!'+*YIK<=N0G-0:<[& 0SF]=!E 7ALTCS
M-VP3D5E'<86(O5.0JWWW]<=5')C(UT2STN8:S'34LZDH,@.2U+6A'!7=;0X5-
MVYG"8#,Q>?9!E' +/OC7#TIGOJ)^9L#9K[3OKO%*7P;=-=D=%$7!,7GEP\Z(
M.D]4#T2$,#!9JA(O2FF_"Z@.[0CMR=#9 -5DNM4XC"G:<5;S?15DMZ]1T:'7Q
MNEX2*%P[I=5J`U9W;)8,:T@.=2@.X++N@.\:^"3FIF(1K85+H6SP ;;.1B:GP%=)
ME6^B, _#HARP?(]:<T_XC@.0'1>4GP8"4#6';&TZMGLI!]602UI(#VM'ASJ$[
MEY,Q1* U[AHW"H<H#-:<(TB"U>. 2HE\2=9M.:K3YL4'H.;!P%HI! 0=,S@.Y
M@.*OM[2!U28#0<(W"'4J=3;MD@.+\Z%4<[CF;)^OP@.>R7QV5;D@. V_J:YAA^H6I
M&5" 0CO#1[E41J"@.V5@.I*X288,/**\,!:31\AW:JGMGCM$.F( 2D-!@.VFRXT
MDV[-0E%A=YP*) P'6]Z^QR S>C.T`ZJP\(@.7IU;OIW;&/L1N3/C;>B-R$G\+
MMNZLB:-B:SG_3Z10A;3<1.K8/-[#@.2;/)XI4P&@.$$Q_740L333[ )C)@..IDX
M/K1'7D@.U2I(A.PV:RB-,H1F .M("#" 8LT+DX;=(G"[%[1A(99TJ< ?#$=B0
MTYJV3%5=Y5-5-^1"]<<&!WBZQ(Q&ZG36-CQMI [(7-$^Q/],T4]DO(N.\69(
M118V,OJFIYFWFTCQX/=J/UOL5MI3Z\R1.S.?=/21,N1 @.R1K48;L$-D\T^N5
M&8^M#!$<,8-:L5DB+MQRK),%@.&YR$:!RT03,>VNB?G=\'TTD+&"03/2!%G"=
M,;S'!@.?O$>@.2+V^9*GPQMFM>RK$U. (CD"&KO67M<U2.S4&#ZG0IG/'Y!G@.$
MNI?H?UHFKL4'U;2G\J';L<$A.)+1\-8B<);*9X.EZ=UKROC8$!R);^'J1>8<
M745@.KJILKB+OPCP9.@.Q(X,M6?[:,JYBL)G(_U--5@.1'8(,>G"V:Y$)GCIGN
MN@.A<AT8>'QS@.Z=(D=%P-D8FLU_:-3VL=@.&*A@.=%>'ADZ*7)I08I.9\5-U17F
MO2Z'9IA\+]<<O.5-R'<N#C0NOZM%UDD=2KI2\#6V71]WGP&?&"Q6ST6O"NPN
M%7]BK* 1.=36E42[,%FE1'-JRD4)3PP5%A8!M5UY=R>"GQHLUN4<;EV7T[FE
MB>T:;:K+9=-.#!94.X?:KMI=,;E<QT"._C^*L5C3=UC;5 @.D[PK)[#\,*9C>
M'&A:M=A!?"F'?!3M9+L3/+2LB>N?R^-',+ES^E"UZB;=X"S43;U;Y8_OGF)
MPD'MP*<)5FJZ76L!=5H7E< E[ RJLA6LK0M?RW#E(\BC@.B5P*"N[L!F"D8:A
MG4V[&'G<24VA<JDLBV=#9V!W2K$TA15JFA M,,K))(,BY'$XLJXB+Z/@.(AQ#
MJGM5\+U0.(%V;-K+AZ8X0R\?N]?)']1H2 PPR=>!QD=E5;PM*1+*KR8N57.@.
M@.Z=8G6WWS.X]!A@.+54W:&$C./,BEY2!U'>IAPEF8PUPNPS@.S>W.-1V,>()&9
MUV2="4TQ7"+F&L093D\SI!03P/-S- &,"TMGTM]_@."+T=+USQJ&YSP"#'>I4
M93F@.FXEF"$S&]$ROV0<8DX%YV-_/;_-4!Z'@.@.*+"'])@.1;-$,5W+DB-_#X0$
M.-AQ<.EG112"8%\@.;0G5#XS.]@.\0&4/(VE!Q;1?_ETO011I62]X-?/G,""XI
M`HJ'M![>-:VCHXW/08'NI/<Q:3^#-"IN>+*Q0':I;^MGS>3S;<L6P0[+8U*B
M%V*/'EJCD)"&_,&/T\I16W:LQ#:IJ9EG^HG.91@.@.L286PRH/U#DW'9=SA51V
MH(5U_T0'6IR/U'A<H6D31ZNZ;=&O6[LZU1]6B)7@.8';C*BGCW&\Y!&X,;\?R
MV-^\K84Z(<>IITF>5B^[,Z5K9 ]D"4;!0,7Q$UH:=X\BX#%85KU8[0&(" 06
M-?Z$&=8=2%5JU^82!M<Z!:4A!9KKU8+565AV-:V+>/-T#A,BW'">_:AA14H
M\1T3EO@.ZAXQTR1K0I,#P_M8@.FXL<DE>TM"X9&)Z5&J4/F1SLT;D-;' ^(>_,
M%6NO*UH@.L6YL.VJ#?M.*0%LRA#7 DRDK.X#L=YM'GZ#!JP>N-W(09,[D_E/H
MQ=43[N?J5P5H'P^MNR6E2 ?O7__EOQ8A*1+QW_!J%I5Y[+TIG]'"/<$_%I57
MX9]%I=QF`;HD[U?NW_)P,O>JI\F'HL@.*A58DIV_%G[WW'I7K&2)S" 2T,PV+"
M?B^J+,_#8(+(@.5D:3!:X@.-.\R!"0]FH6Y;//I%TY_Z9 4?NX)%"0C5LD7CSY
M?*]<_GK_Z<O=]?U_+F_@.#13K1 4,>1[3W&OEQGL+"^47],U>T)=E[[J\^65R
MMTY3Z+=VZZ70!/W+2]J+RHO)$CT8`7J^]Q@.FD Z);M\^)A5G"B4]F"4P!9[]
MDF$AY/%["?7%_.+SAWL%#RC_SEZ9H\_]4=)1KB'H^/+;;3SYH9WLH=T,90;]
M1B@.HEY O,,$_%\4S'Q/HS3<Z6Z 6Y&.1K=,`5UJ(X^@.QA$(BD,('31<9OO?7
M]XOC(H&B:VLT.Q16-X+]/BK5KU&)QAK*IBE7N%WP]7S"+S;F:4,D&@.H/?RS*
MEWZ4GZ>5//)-JM=I$+Y"(TO&7C^"XE"#IP#^6!\AI.KS]UGV;0(7($S;OM(F
M"?1!5EZHB\B7V[\HY+4B3?()NH_NHCM#U8JTM"L_Y^2-4?#N?U4],%?&@.W;^
M$#@..6K@."[=RUU>!<1:NK]>!/7=VP_J\39?&65S!>^5/D,\:7$WQ[@.9A_5#&;
M(5Y@.FDB^Z5,54O84"?@.,+97DQ9X@.`$" 'D**F79B^'0U5\C:/YD]^?EQO_%-
M]HCD(%:0H'VCZKY0+H,D2B/H48\K@.C#I#Q(/_C!<_ND'B:! D<4!8!!5XJ(<
M>>0_+SC3T]+WT(@.?3A"W">M9_5L6%]+4%Y?A!K6.UJ8U6FE V>L3_#=RB]X9
MJ/ED4R_,RRQ=ABLOCY:EAQ_7ISR(]43:ULL:\</=>)/R^C&%A+L-TL^PU"'9
MF. K\!^&TJ-:9*MV)*3H7?R"7C<TX]C2]]%#VN'7$D;\):K\)^ P++1H_JVB
M.*K>)O .> /_>_W/1\?W.H'_F;QAOF];'AY>RRW+'E3E5SQDTRQP._%J`FY
M>6PE_VD-Q6UYQSYE%F)/X=+'S_\4!2#;1X9P?S]7%HN;"5Q\)!W>#S6LGZHJ
M?R"/ZC)GKA=$M4_0U>7L]OKST&_)'%CXC?VS/N/I]G)^K5S-SM^OBQ0+-%U;
M06U<0^01>[&;02] P&?[S;:KF4(Z/DS@.NFP.9Z^6)'VOH]0G/[885=$\"_BW
M@.A?LNL>6^F I1G`?B^^()J*Z#Z0Y=.O+N>*S=HA0Y3^(XY, F>/*[#$)IK$
M7HKFSBG6X]]@.Z:R(@.4JHODAWCDKZ_FK^,V(O6IS?7W]9,$&Z23ZA1Y0'DAZ^
M(7#K7SZ$N%>I<NLOGJ(P1A.%7?0;[$3&H%";[]%G+)_+#+TL\<?[Y)J019+M
MKPNTP)"2XLJO>0!N.3/-$G^=!RS[M'\6MV'!5L>R]I!>-)@.)7Z-B72Y\I,%)
M[Q1DDWC0:#%4:.O:VZNOB[LJW&'&MW'FN2S(;H#R<YBLPB"(< %O[=E0>K,2P
M@.*S6CYPIM[/;89._?P>N6>_RATXTZ.EABA'PJ\-WL+;,%31);L,06X1W89)5
MP(SR&Z*J`"5@.09(F2(5N.,W;E#S]6)]0S,!#B5;K*@.S(1HB'^U\APRDKT+!Y
M5898L9C=7PTS6Y(RJ&IT^TQV#8PCM);/UZLX*I_PF"\^5MB(V8/Y0]97M@.UU
MG2*M"%L:B#(K.3K8EDC**(2(52SXSYTBMEC\[6;QX>[KA[N)? -W'7S'5(MLQ
M-;BHG8*!,NR?^Y@.0_EZ7,ZJ,V^[MHG^&Q7=YP5.<]T)[0S FY&<G#S8G?/(&
M#, _*6W%O-#P^H]O!N>)]WJ>5C\H^&7/W -15&:S#Q-T#;_V$#DD:4$0]GU+
MB8XR6R#M1H@.%99 <C2"X>VB=1U<QOA@.LT''IE;W^'OM65UF:DL9Y)9!#AL:Q
MG2E&&>YCA74)^YHI>KCRX^>;RY\FGV/OZ!CF'V]34)#\HG<KH1Z>TV&3?D;O
MAAK53#<V7P^@.T(7Z7KFYY38)\QKA&<]1`'Y/=9,LROP(T@.*+VS- 4]"S"^BY
M^[E*RL4^F\'#!FH>(],"7.1Y[+U-X!6^.,(&R/5\\>%*;+C.LSCRW_ ^TU!J
M6[E)!0.MVXR;_ Z[,39):IT0)U^!ITHSG]MN=UY)"!YW4.M@.VG'<'E\1-2PV
MO!NS0(^N(9G!G=O';>MKB\B5Y1:K_BY;8\L1Q+O&D@.EY15\<W 8BEM._"1[ H
MWRAU\?+$'A^%@.VD$ZX*<>"D_WLVO?B)K!M+6=[G/+@.>.2TP^MJN!NP40`%GL
MZQ0#>XK<+TL9R+IZRD"[MP'Y6[90[A9?YQ/\8^ 7+\KG7F/N_]E[TN;&;24_
M,U7Y#TBV7C)3-5)$ZG:VMLJVY!EG+%LQ-78.;KVB2,ABS"L\?.15\MNW&R I
M'B E^7BSJ7HY+ GH;C2N[D:C`61J!8:=%[M1F,T!57?VK^-6B:0>7N$R5LH^
MGZT>50=C&H[U`*8(_E7OGN)5- `S3$SR1-,WC]>%'MX2U5C#V,!52/KMM1U2
MAN>:>O"86(HA-;BE^*I;$?QKLDT`?6*MTDU4=7K^RAOOZ7KOQ KH/4S [[(G
M%W(*)%EUDS>GQ^I;SH*9RM17[8XU!9'P`88.VZ.?L,=*6+M@.Q H?K3<+K]H_E
M^&"C)1Z\S);!Y,7^.ZF1@.>OXYDG,"YS!S-P$8Z QXQD>B$AUMIA#-\!?]>KX
M-9WMZOE$95Z6]//9UKQZ/LM:4,(?C0ZU:K^Y3K.T1?+08GZAC,7EX=YR'4N*
M@.%"M1JL(+'5^='3,;/?LR_-EKT_!G&4;UZFR%R4]NUO8SC!1?<]CLC;YW*]K
M$"ELW-7(7#N'[Z?G"ZG\<T=/K]CAP[R^C85S(7M)0[S=/1L?89"VXNM*,G4R
MQTXSO#L:;*+N,%F]O'JV2;Z_.9C*_5,'6@.Z,D]]C*[28L']S?7KX5@.HC%I3T
MO$:QG!LD4M,F,Y6H'G^U$C4,4 *=XS]B`7SAK=[/<T%+.T[<NO"A\7#0D0U#
M;ZU6LMGJZ2NEI5-]U.HOZ6"\'%-9EI4_ZS6T<ST[W70;_%2/7V+>T6"%C>,:
M%"V.D"U:6* HJ)?'T/%<#%#85W0Y8+.$=Q5O<Y,-O* V]=>>^R@.M< LUM[7Y
M2JO$!0T<R]7MC3K%%+4T%_<M?+=8J,6:.E@.@._WC=73]J`X2TL-U(8#=OZ\D(
MT,)F/W9^N^+,<F]1^QFW:*PE<4>+X/;Z]I5KF0H3%FN"@.=)D$ECH@.#Y)`V2E
M3[-K<[5O_>_-56FQWRS4/KE8:@.BCJN#@.2F,Q<*M5BGW7QZH]VQNSO\P%]M"X
M#F(_LM#I-_?N,38G]GW[4?HT5_=MGMAOM"(704ROP#[V@.LT[:C//M7!Y?X>R
M93\%_X?G4A!FH<9P>2N4JE_FX,JS8Z<@.W*4K=>]JWFT+^$F'W\)RJ'3=5=CG
M:\<1V":Y!BU%KNDROT]WW7UEFQS*2V;VYMN_VY>4-O@.L"^1G^X5!C%_YRA4*
M=3"P_U479AD?U+3T=,$*!LSL^*UT[1C'9KAEK/F%';2$&^(P<@.8G!W;F/;Z/
M5YAJNP;S"QA+(S\X?V<OQJ'=[!OW@.HAM-'".@.%<+I.1Y["QS8?[7CNG,'?7\
MM1W5VX=/JC^F#Q%U0[:+=NU8K\X7F'AYB^S0U/V(=95U6(B?WU5]+?&%$WP,
M?DNX5^8D3-[8OP^-YQO?6RJ+1!UH;",)OPFE^UB/40SLN>[;L^L#L#3#D/Q"
M`[97LK)NXN00V?4OQT^0G?N5G\Q5OL; @.67EHHX?'!NF6Z6;7YJ'+[_X=9[,
MZO>!!TJ<G3YC7W-GSY@.MQ;Y!7QT=_?PSP:=^+ZD.*R.RP+6V=&C;S.0*#[8!
M( WFK\/CYP5$46H16N/?TYA@.(6X=3(E2\1'0&E)U0(VT-(PCWH5>$;!$<XJS
M+])!=;&S:4)R-3 E2C,/IM(UC)L:*H+\$@.4^8*H]O14$Z11/6E1H-&8S?#5>
M0C;HK/GE10%3G($X&.!*SF%:Y^$%B058#?\P#FZM2(A8`U&D@.DG?AN1]#!99
M*"93`X)T`@./]$&2^]B+OU&&O-Z(.ZN4);8=!2G=,;ZCL1%VZSY,CTIC-\-$Y
M!,+!C(VH4(^:#, Y@.D0:+(%D#EZ46(#5N!U0Y7$[2 ,=;>(93(F'.U 4`0-M
MKOE9-PG&16.NE!QTR<&7?J<0&JKY9'-#'@.P[?%B4\;9!2=G!&AP5A#E1RS3$
M>5+I2$Y81:MD9#AL7Z\,7TPLP!(H']8*0I1*W@.:3;?O-=5CT53%%>1SS1Z*T
M?RHBE)(`[L2R'7*BX](TKU#$R0#_7G<*T[KT&R%H=&G=K//-7TW*P8$`+LCF
MFG3 ^* _TI!<M<<*\VPX.:3Z+ F/"]QFJ^T-BC"504-G'QH1VAMY:$%J$5K+
M?6?.#AJ("30"`DUK$;N%1BXG`,QO=_* >RW**J4V![ ^>J9^FX,M_4XAM&/H
MU4 O[#LF[N$R\DZ@.&5WVETSU\)%9<A5BM?DE"F'JK(Z9P1S4$*H'` WIG^IUN
M/^9;KI*R@.=*F5]/+J;H@.'SP,1#>9?[Z*N@.5,XB<@.(VJL\[B5I!R<T'QIRI32
M8/H<?#DA@.]&24P!9S'T%J0$"J61AMNQ,?^9C).KD(\&#^'EZN\,6*$_H' ;4]
M'TUPOF(0TFR *E"[6*W0_UB>--L`"C3F%DQ=&%6GT5="$L+\`@.7UQ[/D%+*0
M@."B[!I^TDA.%6P@.)X H4^?E[HD9XVP'O(;QR2TAU*^PNE#5!>GVO/)T(\J*>
MYHGF?_%<S6JQO=QB=XC3$XPS-->3TS+=$E9-7H(Y/^;;2@.6CMBY#2F/0<Z#%
MWRF$QOZFO=TK3KTM`$#C7/?#HB"MI"!4<4U164UL5@.G<OJQHP6T`!1H7TYD0
MM9!>P& 6GKKV[LF4/_TNQ&^ *E"KVKS-JZ L=W;ZDPBID)R'OV+^CY2;PGC:
M`2:EA#]$*Z\M:RZ0ET=4=T."-TWFL43)17A9#"^+X4\G4Q%\(;D$K^5_D&Y[
M4$.@.`8Y3# W=IV385HH$!,DE>&VNV]6E_U8(3N5:MR+F/\LC5A(1=G%*\ 88
M=#M=7']5' 'U>8AY=3HY/2S<`)5#;<@.4XFKG=S/KH3AC=P`"6A<N77BQL189
MB@.UY(DSM$*3^4H](XD#;G']J(+D#$I0%ZR0]!)O?R)$2I.4A6?<:7E!4#LW9
MB(\&>.0]AF3E!21UL_\TS]/8"H)T`HR2^8H<67]@.Q"?.+O)FZM[@.)A>Y`ACH
MD+=YHOO!2TG T4PO27]A:A%:Z&+8DE^B,'V(`KT.O9PIH7=>#Z#3>3PY"^ A
M^1G=G(WX_N/2B] 6XI#?8&Q\%'CYI>\.,)P2#KLCN]QP=1F(@.U>2Q7X>N)PB
ML9 (D@.2!K;T\<%U&!4?8,=M!@. X,$.L/+SUYF\.NRZC@.:.R0P3?9A0]U)&KA
MJA334T#)CDPMQ3HX"7=JL3-<,K%@.X83WS^B13LZL%;V),9AZ0W)70&FS=986
M6]816_(YA5\LOXA22 "87SR7DC-]F:<L2).*NPK7IQU\^'FQ]AP])#]X:Q>$
MU<%6B"*5TD["5IJ[P)=**'KPMY>P`WRIA/GDA&S&^O82=H"7:KSZ-<1W!D6Z
M5J!&@.75+NQ,RF<XNZFCN!"8EWBD,-@.&ST?8"W$ 5$MP13N+^$+8B.S1;.O.M
M#&IH[@.Q9)]?%9'<'326NZ]W7T6K,SN%KY_J==</WP].@.@.4:*NR+DM$(#P;I<
MQ(Y!6'GWKNWIV48&>:-.9F^Y3Z6&ZE.PDM+XHISM=]6-^=W !/2T'Y3IE,CM
M'CJ%=B2^`P[3`,M#'Q:TWHU70W<K1)&*MEW>[@.5=3UV#67YD> _=>')$W+,@.P
MN0=!C1YM^G:_PI]$3*Q=+G5CK5-;)$9K0';1+PU4=T+81<,TE;$+0G76EBDV
M9TO\QEL.0Y((!!Y[D/R0<*L<9%PN]@.!C%]@.2[LLO3'Z@.4TH^VZ!@.BG%0ZL_J
M8CJ34B[$&.*NWN 8T2J)+A1&6N2RQ90^?/RDJ2VYU6\I<JO7'72'O<Y@.W!HK
MG8XR4 :#EMSM=3M*KS.66S(Z\]2+D\7UX>54R_Q^6F)$:<=Q$$!_) L8[3+&
M9DAVP&#@.QF&RN3<<]:?SG^I/16@.FV[4,M?NN\C ::%V-_C/L="Q#X5'J.OE:
MA M W6X[<ORO/U==^:I$G9 %U3&H,JA&I(7IPB5,%RXF7[AH$=7Q`IW@.<W;6
M^=$/@.ILR^%U<+GK4EA@.L#2-/<Y>_(:.?K:DW[L$)M>.'-% OW7TW<R=@.-NS[
M:_B)5WYK;-6*1V(>L^/1GZDB;"?TPOW@.V69UM("U=\\]4;FOGY/;!A%5%I_/
MD%%E4GM6J[]WM<XFLVKCV^D&7E)9XM#D1B=M-!H.>J-.BJ#AM+BGRU:2_EGK
MXH2N$]X$HAMO0C=7AP2.S6+RW3*[VOJS,2X:6^W)].3PT]DB-YH.36])4P\B
M/]V7W =<F/0(I>G,W_B7TNYH`4-(/OZ261=M5N;'_/:O9EW<`)[&0X!@.7P3Z
M(SDU/+? SPV%M2 &3*1?MC%0VF7/MLD+5&_9/CK[2__B=Q=1P C7O(*DM6XJ
MHKR?6B#-+V?ZJZ=Y+$_N:%ZH<Z)+TK*;Z*H\/E0HC+/CB)5[GL"2XJ.1D._<
M)O)7ZL7QFAJW>.(]-\I%]\@.Y[MJTTR%N(%*$2!OB'SZ>S?8>J.7+[[8P<1>&
M:W[-W]?/+7EVS*Z"F3Z4^JIZF]_F?.>SB^2;I#N4R0,X7J+0'V,+^A>O$RQU
M<BK*?D<`-)>TWR/L4M[%+3U:>EZ$Z<_E0)W)1^\+ZLJ1ES<O4;?,,9B>.*M4
M#D\.$79T"+_IMAXXVA]V\LK5"W `DE_W?3VN41&0%VI),([6D=L=?)P)_LBH
M%:C;BAD8H_ B@.UJ-W1_T.YT/,W9O1;5)?@.,`[;> RNU^N_//3H^)NM_B$*%?
M9)1GHI!=>9H&!FPN3*APU'Q?)+LF-?MQ&Z^@.\)?@.\Y-ZZ9N'TG/)\%BUQ.=5
MJ1H8^&[VL69 +\'[(4GW`O"5@.[PLN6/I\(7=/!WG4EZD;SU^?SX&81X%EGE#
MQ86'; \`OR#D$F4<PPR7+\'%L_OLRR]^O3B;DN1").9E8,Z(B^5O,$;YJ8DT
M("D_H-_C(P[D&(9B5!3@.%05_@.Y"LKGG\Z8,!5B";%FM*H])![2HD+VD;U(9>
M,T\4H6MXVJ5.8GPHW23XSG^+X'N4Z5Y"`]<EC"1Z;!M"1KB92= Q(#!,,9MI
M4?N0X"'S;V"\*&^ET#4#:F3/1B5G[&S+EQQ\ORG+N+),ZE4RR'?ZG85HIQ,\
MT/][3%VP% L`CF46>^?WF#O5N^U.@.6TN,S?\@.SI)0.&+2\UHP^23!E4/>F:&
M-G\%DC5(%7_3%/6DN<\*PT2]`&O$$[;4RT<8$/W)9Z56%L:O,I-/-ARNJM
M523"8N*+7WP6S)4@.GP"E$]SY6O.++20CA[R"S)65^Y(@.'9I@.9-V*QW;&]9*=
M8H OL0,&(L/(QE^DHY[A3RNX.$[26,PW7:6UM**W6TCJ)AX,X5_,0+^OMBX&
M;<P]W$?'4 N:'K)MGD(^8OF)B55#3K7Q1,->=' 2S_6<+/CZ'XFZ9=KV']DA
M5;"A]9R/&Z>SKR?KAO(1V62)%9+)Y2R]OI%X7!.4AS)?,*>A-P5Y)_#UY=;-
M##A=.&-28/()BOP<69&C^\FP<4)?MP0MUS1Y)]!S&&)5F:I@.6H8PQ,F)9=,M
M4R)DL,F7.XNF0P%T9=I>I2=3F,ID!][9FW1@.X$')N#,_3!ZP[>/;?7WV=E_^
M#39&1CK18YM?EIC+LBC?C\6RWY$[KK0)>^%PG+QP^(ZL4DS'P VO9B!.N(X>]
MM"M"&0Q&"0K139/%$G8>P C7E[W1H/W-?^%W\WO^J7_/N)?'FS<TV1.IK\F]
M9U,]COA[RANDPON60OX[/</HU_#?3_@._Z'7W8#_ <]!6D7D1'SGFPP"1]F9]
M/%+JFCYE73E01G]CWO_.[:[\W7C?O&BL=/80-O_A_9F\=SGO2O)L[*ZL@._EH
MVUS[[<R\&P'.OKSWNMU>G8C\-_+^U(8?+Q4Q\[MJ5[*,C5L:$:73E8>XG?(\
M=9>2DY5A=]3K*G(SN?%!OU^F]D$'*Z5$;##H#D>=<3.QWD&_TD\B8D/H],&P
MKM/'6;MU1N5VJU(;]<?RL#/J;I>8.[::TN_)XSK>>AFYW@.[-UI.'W?Y@.4#-
M7HV8_&+$MLB[75M-29]B[O*7JT-K$PB?>1R)MR(^/\!.OOW76);E3J\S;L'T
MZ[1D>=)MC8Y/IBV@.`R)CU!UUC\=_?@.MSDNIL)?7M]*?CZ1E:T.&W,%'ATR1F
MS"ZE#7 -'T8LGATL:M]S824`1?3[0V6BC)3627_:YT4<CJ8C* +*''5/)J-)
M]\]OM\WMFJ[#/V6YY!N.4Y1)8Q P(%W>D;6^D43KV+T!M U4I\W^3:"*\@.?_
M>>(,%[&XDW'\BLS62A 1LPFOP>=B%B744"BA1-Q>?%J<75Q\;$]_FFX8D+%\
MF(>#]BNQNE7&B%@.UZ1UU[XK-.FP#K]W.</@.?3K>*VO\WG';3)>8>L^KS,MKK
M_5T8K2S _L/HDQA-C(.AP$"K9;1TFT218[G=0[N]-WH%?K_\XM?L5()*(UQ
M\ C98E9Z8(%E_4I./-OV[EDE,+ E7K:@.'O2&N3W1[(G65D@.<W7))DOY(_A=#
M<6/'T8-'1N04+P>[TNV8;5SP&D@.%50?I1[%EF](@.GY1OSKD>K:7)@.39/'*#,
M6M*JIRSP/(5[$Z.?,SVC]^:3:_&'<_ FN+=(V&";C,DU-%)MU.L[J#<+<GUW
M3COR@.80;@.U]^<6SY:_;0=$#=&^!*5D;H",<<#^BY>#[CS@.K!T,SN3H8VF!Y^
M3(]02N<>[PZL1'J$D'<%<Z.F3:1:?U!I`DQ+K/;<!?\(J+H1/?C!PR.N^$H-
M*7<ZY..1-/J."?H>+#_[`Q3UH.FA]:Y/SR<7UVH6SB=MO+_Y(ZU0@.GGGZ\:M
MH(#QZ$7HAT84P.#WC(=R!62E4 #8*: ">OL6L R\^Y#:AJ &`Z5<@._Y!?_RT
M`F*K5,!@.,)+&XP&6`,NW=.W05PZZ3#GL4X)AKIB7O%J W!N]2 &>8T0V=PQ+
M_?9(R352?SQ\B7XV,7;7#9,Z=//]+"Q >4(!3KB*! 5T^Z*9L'<!%KZ:PNG_
M-YNO,RL,01S^3VDO9/=?*<UD<+X@.5?/6")/NE(MCOBL/7J8Q? K"23 D%3!\
M7V!(@.E*A4>SO-&N?5H'8`FW0MMQ5J?V4DMA!-_6!4BMWJHV_67R6):9<Y;S?
M20AOTV>U%7%NXLBR!0W5[;](0P$7AF^WX?\*?<&\Z@.^?6$!.0*.S$A58HF 4
M9@.7*8%QU.O#?_O0Q=%HDG7LO,5 =6Z]09W)SV'V)YG> ><,S*2M!08-NV%;Z
MT#QC9:_6*0]3W,G4!6-4&0OZM+L_U^D^:5DZO!OW%$&S]_=N=EY"9"_+9L.[
MKE(<ES"#Y?$3+ =>!#4%U>AU17KWB96@.@.6CX",2T_(0J6"9U(Q%]@.2SJ/:&?
M+1/TEUF9N_T7F;KXLO(J$BD!I2>:74_@.'[\*I8/,2WA^%V-<L[ #1/;SWC7P
M#$,WUJ("N'@.KT=][!/F!9T0@.)A(#/6]7C4K3#/M8Z=<5@.!K-+A$'V6;"BE&D
MO/HOPGVX-CU#:/OWNP*K4]E;>;$"[H2F^;M>;RP808-]1U"X7GFV*102BDC#
MU_9 ?0'VO>Z+UB^]@.6@..[%V#R#38\)%A^'3:7;D+1EQ%1/?'!\K>:Z\X$!H^
MH@.7%X FT\8!;M57Z0L-A[U:YITMVMD74KT/1BF7O&MR#A0O&E: *`Z%PV[L*
M7W[Q:WHYZ9T5"7P\N:M+YP%=T8"%H9[3.QH0T])MB3M2S@.[/,T>4E*3AQ?C\
MYGRPC!\>I7QE>"Y+YSMO>!Q3FKJICV6#^^GR#(EQ$CDO#$M(P J[3GQ?P(\!
M05D9MM&K)G_/'@.UA[^APIL[I?18.WR(3]2S/[:OQ(^5N&TGB_D*\TC@..:?HZ
M!O9'V<1#O)G^8#FQ0PXCZ!8_"L&JAE2\)XT<T>B>4G>3U2<A-23VV%)"E9R:
M^"(DGN@.!VY,XEIM49@..2KP0KD%T1? T=.H,.\_%VGC?S^?QB^I91UNW6)S^-
M=X?T= !X-\1CUS2G5XPRSQAOP<W[:>CX2NXDEWZF&/]W27^/+<B9ND;PZ*-S
M;ZZ'(09A<@.II/KML* 'B;97U:/94`GMW,I3X`YA)]J>0IM<Z'D*Y-RZ4<#HG
MA]S/FC"12TC<L368>-E 4G>.N4E(*>#KX8&%'E,R.5</R(:@.M'FVM9R38L#$
MK4.I9"4L`N\?^*',?..RYL'L">7Q(N_UB-[KCPG;B*P:@.>7S<$]^B8+$Y0%:
M(Z_D,9YCN.PE70&7:\("0;/G/21\A,Q!T01$LLG"UM+(!GO@._D"K`]$6GH.3
MH &@.)@./+]=AM5OA4I>KK1M4=DWUO`DHG*FL_PAR^]70:@.*#]SJPPPN;E1TS^
MK[MC67+;R)WU%SQM.0<.]7[L)451H\1;,YZQ9:?VEJ)$:L0=BF38Y,B3K?S[
M`N@.FV2]I'#N)XSW$&0%--!J-!M OM)+[@.I_.Q?7O&J]H1O$R9'3:&0^R!Q7$
M9RD,GUYSL"'J':JJ^*?GG4ZGT=4NQ'N#'A//N(1\;=M[PGN5^)Z3!QZ-`1TH
MN 6:NV);/A8)CMJL*O/4I!H.%E</5^%C"#IP!2+U:%=Z-AA.O'%_,O(P]-_E
M=9%GC&HN1Z/^T&OHBFKX$CZ.;VBOP7^/-@.]6-T%5GFU<)++U7!WR4QWE45A1
M;;M#"):QW.8?VQ)>6!11*BK^[W 93*?KR=A=C/PY/WJQO%Y.79CP]">^OUA.
M_>O?5%Y^6+T.#H^B9ZQBOCHVOE81MK?C0F0>D/#Z'B=T%?A+M#_!!OLOB\L;
MNLW\4CN;-\ZHAFV2>3"B8F]W](!0<"N:]S:XN\6>NZ 25W2?,\Z(SB\GG.EY
MO\#?"91M>B?+L^<C*"H8N*S"G+_/_"5,SN_O81(\'][L`F7P&*<2D:\%%<2$
M//[&4(C7H)0VC1!YJ,5M08&BF 9<Q ->#3;8XM<$M,[A0'[GDCH(IMI>7M0[
MP<GM!WR\C'?<.3&*V[<JX?:7H/TT]7Z:!(T&Q)GW<3[U^,U2[UC#L/N9)14-
MB.\'@.V%_.AO/AM/%< `\%,6N2I$=U5!(G5C$K.+#%O6-]XO7...;H>O]Z/%M,
M5U/77RSZ[G@.T&[H+S",P&ZZ7J^78OYY/Y[_U5B'>*U!4!'IQ"/]QXGBA8P>,
M@.R0\@.=@.\[=KQU)^LU[/1T@.W\Z0S'T\1=+%8K=SP>3R:CR1BW,[LZ>LI=C]<K
M9Y,E^[VA4@.SXX%<$*TW(=_[&X[KR;R^/6BY&H\ETO)K,H.YYG\:R.X>*X2_?
M[_='\\5R-OC-+DU<I]LQK1H.])(1=-GI^+2(CGE3U7R^FDWF_LA=C:#5X\EZ
MY2X&UR-W.IN-%TLP@.;.U?Z:JZ'C%=C!J,Q;B3C#5%!V]I#F1!F,D\0;P3P,0
M=>*57>==G>&B!"@.[V.Z<LC$Y=$775$^\P7O%:JX<0ANIJ/<?0=H=_#SY&2_W
MNN)&C)M,YM.FB8OU(!@.,...\=+&;0Q,5XZ"Y],)GCF3\?@.RR7X]G:T)NG\96@.
M91T=8/1H`.!S1R!<+ZE!5]$4?C^:]Q>CJ]E\,)]/)[,QZC],.][689KL$PQQ
MSINR)Q[5DQNB:=GQN=B!/'=I'<7,X[=1!;$_0I;BD"#SBK0&D^.%$,E$J235
M2=\FT+^X_X)[F/OP/!V7G-90$9^HYL@.RL$RBEDZ23[^"400BPG=M#OGN\01*
M[*RA<\[7TOJ%(UYIHI<!N1SKK<<:&AYPS;P]$O+8B?XO&O(NQFEDP3XI#I ;
MP_:%%R#5`ZL\J3T_LHJW`W\UVGX]'?KCV6KNSL;+@.3OV%R-W,1WY[O7D>CQ:
MSH)@.$@.RM5O+7^BG)N4\I@.&3L?0AX,D8A)3[11O_R)X76%PXLX $-N8%!R?,8X
MB,L*AA+2Y''E:\9JF-B\SWOBK^4STDPBS"*W@.5D//]CJI\A:=3@."O3>Y4S3T
M=AT]!T/(\LC=<-C:NYZ85]Q5>-3B/LX+C'__ RHEEPFI_.BG@.'%=I =8O7
MZ[!9#>(,`9Z:3D1T]"UFE>BU[R+>X$,;Z->>:3)6XY&4H&8PQ>GA%!EOBB<9
M;J/'50\O%-9'%Y2@.1V_@.,IS[8A3 >C<$:^8IHB2-`7Q$>=<5_!&B12%='A$-
M^HYTU$8Z$]1Y6KK<#)'>L$.>52KYV$Y&K_UECQD,LEYW^*>#\&,_W>][<8KZ
M]4H"RA0+/ K3H=K3/AUH0^M73BHPF+.-5$&M6)P!*L09H Z!W=WFJW7R(I:_
M:A!ZPUJXQEX+9SAKL\#!FZ/JH>G4>,"Y9XJJ+L$;F%Y]"]>J;^$53IM5^GX4
MN6#(9)$01*<MH!IE`47#&4<F'/V:@.1,#:2.R-/()NJD_*E[Z'LWAW:TC&+<H
MGM&B-VI3.MO?P0+L@.%RNYH</BO()KH6^-!UGUJ[5=:_*:Z/V?V#M=OZ*O:+=
M,*?'6"_2BQ(FU,LW_2W7= @.Q(2D,/"O0>74"R^@.P7)U@.WTE%<,3+G]PDF:**
M]T"!<E"HP >ET(:O4<J@.GY+X)#<9'9JS;]HIE^27@.ITB9XDV=KO1`_X+O)W2
MY3F]!:RJS3J)T\BB,1PN,XQ)"O<(=3#(E%%BWDA(YH05-QUF@.33)'@.FOF0Y:
M>A._I)[ )6-)RA#2*.K9G!($3PWQ2=5X'ZT52@.&M3DTO@.S CSO@.5<@.V!76 @.
MI'>*5;Y ^!9NKH];],EE'>-:G;/'4G*'M\M9.@.;IZ<8'JN'KE(SR4Z_SW"X"
MBZ+9Y<VI*4/F8Z4PD5<7\4D)JGIXB0J5VK] Z_H)NN$E4E3H)4IW4?0B(2SS
M$AWKX/D1NK$DK3;EWN%>E'RS5JY6CHO_4<(PT86,4=W5IMZ&QM<;F@.@.[ 55+(
M@.H=(.(O29XL>W8+>.;=Q^1";S2#<$7%.U*1;Z#Z^51"Z+^78* I=9JU0;C \6
MT 'M+00ECV@.AE &&)E'4;C<]MQV.02QHXY&B%MSM8'E=[I10HX/JK N?5L8[
MW#F1X-T8)7XR>I+R!36A97K^Z/J7#% +T0T>"?P"DK=A^: Z";.,(.8P##XN
MEK0VGG)]VT(2B(/XG, )F?.<UT87= 5017!3"'AX5BUPZVL%"G6@.9O%%-G\/
M1$BNC0J^J)HFRI-O&*@.R(9?Y3 U'#\O$$&;R>A',(-7L*?PF36!\Y;><=($
MZAZ>BT-LAOR(*L43!^3J*/9_"E.IT++CJXR+$!1')T-;NN41@.P]Q'4-FOMDZ
MHZPY^FQ X+B;I5Z7L=P,4NSLXF7/-,;(/2F8I1#$?;A8@.7M0#"9I:0J2*&T%
MH;UHM'2GWJ+K-+9^QUKS>@.9[H4Y&.TV(E4=A'#*8C9,)K;-$<?VX:8S;8!@.2
MZ%,EW _7!@.U_=0=S0SMY!L8>;\>B.)E1!H+'BO$M2^KU2O5WO% 9\^?RU<^A
M`_B]V];P%R4^AUDEL:4@.N#'J5?XLOE.9@.?@.]OLH?0;_'<81:Z_# FW)==:4V
M2.1RRRA&A6F,`0(9AC3-YUUWA!;S1U>L!56E)L06!JCXVD#E^2-,]Q\-8IU;
M5$7+D3QMD/&1W<U)*'8((_A01QZ2*$*EM%1U2!X.*3V)K"/(%ACU\/Q+((L=
M#"4#6[06U]IHF\80@.N91]F\87R_1P>!,[.7)RS@./91+I\0)'8_"T1>T)2U4C
MWP/%?Y!AY-S -$J-%=Z7J'ZV-D#<Q6^=@._)BPBH6I^*425>&C@.^\V3B/,5?/
M`I_ETO"4E-'9U149<+T$>(?WV#B+;^#P,S&.R+0H)),VKS=T!=[E)[DU09[6
M1W6%@.SQ+@.4'%%OR'(G3\&(?5V0+H/D TYPN.\3/O_41E@.0IRDC&_YRV3<Q
MK=^EM "H=" 7`A[CY6NZ>LC!CU65\/$IB:P^9@.=\D#JJPTA!'XW Z!V9EN0A
MTT2/\$-,V\SH,23,3;RO3!7[D"5HMB1(KVF8_.UG=&$@.IOQ.QH5'DF%:1 <K:
M)<]K]HTL7B+WF&X3[:W<J@.:F,]7"-=(M7/.F+?S\PN/?89FM8?,+E]G6>HSU
M)ZV[":Y/;9Y4$\47L^P3,('\-<_E$6-.-#9(6]=U`NIJP8%:;=PT&4$]&3X#
M*D:>B<!.^FS5T+K+IBF-"F(>0JK^1940!78'=>K&*9SG13$24MK(;\A2R DS
MU:"T@.^O,*3BM&@.6G60X%=]%ZM->KNP^^F>5RRAFJ&5YEA=BZ[JTM:G]5"_K_
MLES7#LV[NDK18WVU<6D9?$9J`JFA?/O1\A&M,C;/LTH=*\+:O;[?U2 2;-[?
M1+NZ;N%/O'TKUM)?W37),^2JE[X%^JZYLB#+$)=1MR$SMEY;N+[6T\#UG= \&
M;C>A39^#SY4[XU_@.S4U&02XTB34L/ <;QIV##;O.P79^-F]O',:/JNLA!F"B
M,T)!'+[(9/3U:GF[L<+,QJTV;RQFX>MI/G9!D(OK")2'S<+!*N:K35H_J1UA
M*KPQN-K#)G_ ^-(,$CZ^?8\Q+UQ',(Z]LP66(8<?_P@.QDDJ`!2B$FHGLII(
MG&@.#VWE%+_Y^=Z9(TO2ILR^5^)D?G<$T)BI?*W[6Q]0$>D ;O:.EQD8,>,2'
MSM%<*,-/PITK]2EG"<X=,_F$* E%LM)6'K'7@.[Q69NB8A_S9@."I*N"YAKDT?
M?R-&7IH_QEN3/0":`GW RU2UL9?6_+(1QX],ZD1*(W^6TM<S8^\/\=&V\L9W
M[O@.APEC=[J-/+H=H[4$RZ7!JIS 4?:/TI8N!E(K39(-G@.,>'[[39CC9^<5V1
M3L,"PS%E]924)HKHQ @.=G&M/Y/5>L3AVMG&:G[Y3"2*'9"N017$OJSOT8/(H
MBNB;$GCI+2,I7M1[;0PWW8)I<C P-*N3Q'QS[:R6CMA)H)V![F*2<!GJ<I_1
M19>+`R-WJV7@.K/B;KET/?J;C,UM/-Y&,ULOU79HE:E]K=NZL7]7D9JG'.DC_
M`H^/8>EG5J')XFP5[_[\*H1NX5&5RI--F7:M0SR)W6U6/KD8G6WE W/`#AF
M2>"(*<MPFJH@.X_\#4$L!`A0`% ````@.`T6GV,CK;PUA<LP``C?4#``L`````
M`````0`@.`````````%-13&1I86<N='AT4$L%!@.`````!``$`.0```(6S````
!````
`
end
|||I don't do attached files in newsgroups :-)
Look up the rebuild master utility in Books Online...it will trash anything
in the surrent master (assuming it is even readable).
Not sure if this is what you need, but since SQL Server isn't working at
all, do you have anything to lose? Copy out the the files for any other
databases you may have before running this...
Kevin Hill
President
3NF Consulting
www.3nf-inc.com/NewsGroups.htm
www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
www.experts-exchange.com - experts compete for points to answer your
questions
"tjdarth" <tjohn1@.airmail.net> wrote in message
news:eh%23q1oujFHA.1412@.TK2MSFTNGP09.phx.gbl...
> Thanks Ken for your quick response. I presume that you mean rename the old
> Master.mdf file and copy a new master.mdf. Since I can't gain access to
> any feature of MSSQL. I am currently in the process of using the sqldiag
> command to see if anymore information may be obtained. It's feedback is
> also saying that it cannot connect, but it did write out a file
> SQLDIAG.txt summarizing the setup of my system. If you have ad to deal
> with this in the past maybe you could take some time with me to help
> understand and unravel this problem. I an sending a zip file of this text.
> Thanks for all your help , , ,Tom Johnson
> "Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
> news:u6l%23mmrjFHA.2156@.TK2MSFTNGP14.phx.gbl...
>
>
|||Thanks Kevin for the insight. I took your suggestion and read the Rebuild
master utility information and ran the rebuild program. It returned a Failed
to rebuild (-1) type of error. I snooped a little further and found out that
there was a "Rebuild MSSQL Registry" application contained on the CD, so I
attempted to run this feature. This appeared to restore my registry, But I
had forgotten how I configured this application, so after the successful
completion of the registry restore, I got an Unable to signin
"Domain\userid".
Out of frustration, I completly removed MSSQL2000, and tried to reinstall
the application. This ran fine until the install process attempted to
'UpdateSystemPath' and gave the error msg: "ERROR - UNABLE TO UPDATE PATH
VARIABLE - RegDBGetKeyValueEX'. The errorLog file :"Attempting to initialize
Distributed Transaction Coordinator. server Failed to obtain
TransactionDispenserInterface: Result Code = 0x8004d01b" So this is where I
am at this point.
Thanks again for all of your help. If you have any additional ideas, I would
welcome the help.
Thanks in advance . . . .Tom J.
"Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
news:Op14mwujFHA.1948@.TK2MSFTNGP12.phx.gbl...
>I don't do attached files in newsgroups :-)
> Look up the rebuild master utility in Books Online...it will trash
> anything in the surrent master (assuming it is even readable).
> Not sure if this is what you need, but since SQL Server isn't working at
> all, do you have anything to lose? Copy out the the files for any other
> databases you may have before running this...
> --
> Kevin Hill
> President
> 3NF Consulting
> www.3nf-inc.com/NewsGroups.htm
> www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
> www.experts-exchange.com - experts compete for points to answer your
> questions
>
> "tjdarth" <tjohn1@.airmail.net> wrote in message
> news:eh%23q1oujFHA.1412@.TK2MSFTNGP09.phx.gbl...
>
|||A DTC error should not prevent SQL from starting...does it, or are you
running?
Kevin Hill
President
3NF Consulting
www.3nf-inc.com/NewsGroups.htm
www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
www.experts-exchange.com - experts compete for points to answer your
questions
"TomJ" <tjdarth@.verizon.net> wrote in message
news:O73hAa8jFHA.2852@.TK2MSFTNGP15.phx.gbl...
> Thanks Kevin for the insight. I took your suggestion and read the Rebuild
> master utility information and ran the rebuild program. It returned a
> Failed to rebuild (-1) type of error. I snooped a little further and found
> out that there was a "Rebuild MSSQL Registry" application contained on the
> CD, so I attempted to run this feature. This appeared to restore my
> registry, But I had forgotten how I configured this application, so after
> the successful completion of the registry restore, I got an Unable to
> signin "Domain\userid".
> Out of frustration, I completly removed MSSQL2000, and tried to reinstall
> the application. This ran fine until the install process attempted to
> 'UpdateSystemPath' and gave the error msg: "ERROR - UNABLE TO UPDATE PATH
> VARIABLE - RegDBGetKeyValueEX'. The errorLog file :"Attempting to
> initialize Distributed Transaction Coordinator. server Failed to obtain
> TransactionDispenserInterface: Result Code = 0x8004d01b" So this is where
> I am at this point.
> Thanks again for all of your help. If you have any additional ideas, I
> would welcome the help.
> Thanks in advance . . . .Tom J.
> "Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
> news:Op14mwujFHA.1948@.TK2MSFTNGP12.phx.gbl...
>
|||Thanks Kevin. I am in agreement that DTC should not prevent SQL from
starting. It appears from the ErrorLog that SQL had success in starting a
'single user mode session.' SQL then successfully started the masterDB,
model,msdb, pubs and Northwind' He successfully cleared the tempdb and
started it, and next stated that Recovery was complete. Next he started his
listening on the default urls and stated the he was ready for client
connections. This is the last statement in the ErrorLog: "SQL Server is
terminating due to 'stop' request from Service Control Manager."
The Setup log SQLSPT.log tells the story of Begin Action: UpdateSystemPath
"ERROR - UNABLE TO UPDATE PATH >> VARIABLE - RegDBGetKeyValueEX'- End
Action:UpdateSystemPath. It also indicates the following: "[Microsoft][ODBC
Driver Manager] Data source name not found and no default driver specified"
for the MasterDB. This is the area that is giving me concern. I am not real
sure where to look next for resolution?
"Kevin3NF" <KHill@.NopeIDontNeedNoSPAM3NF-inc.com> wrote in message
news:%23%23Sc4uRkFHA.3756@.TK2MSFTNGP15.phx.gbl...
>A DTC error should not prevent SQL from starting...does it, or are you
>running?
> --
> Kevin Hill
> President
> 3NF Consulting
> www.3nf-inc.com/NewsGroups.htm
> www.DallasDBAs.com/forum - new DB forum for Dallas/Ft. Worth area DBAs.
> www.experts-exchange.com - experts compete for points to answer your
> questions
>
> "TomJ" <tjdarth@.verizon.net> wrote in message
> news:O73hAa8jFHA.2852@.TK2MSFTNGP15.phx.gbl...
>