|
Posted by Nick Dakoronias on October 17, 2007, 5:45 am
If you were Registered and logged in, you could reply and use other advanced thread options
Hello Microsoft Security forum readers,
I would appreciate if someone could advise how to use Local Security
Authority (LSA) API on Win2000 SP4 Server
in order to determine if the specific computer is a member of a domain, a
member of a workgroup, or a stand-alone computer.
The input I have so far, is that I need to follow these steps:
1. Open the Policy object of the local computer by using
LsaOpenPolicy.
2. Use LsaQueryInformationPolicy to retrieve domain information.
3. Check the value of the security identifier (SID) field.
If the value is NULL, the computer is either a stand-alone computer or
part of a workgroup.
If the Name field points to a string that matches the local workstation
name, the computer is a stand-alone computer.
Otherwise, the Name field points to the workgroup name.
4. If the SID pointer has a value, the computer is part of a domain. The
domain name is stored in the Name field.
Do these steps above refer on Local security policy -> Security options ?
If this is the case which is the setting for SID?
Many thanks in advance for your time and support.
Regards, Nick
ITS Athens
|
|
Posted by on October 17, 2007, 4:30 pm
If you were Registered and logged in, you could reply and use other advanced thread options
Hello Nick,
This looks like a lot of work to get the computer's domain. There are
more direct methods in .Net and scripting. What language are you
writing in?
J Wolfgang Goerlich
> Hello Microsoft Security forum readers,
>
> I would appreciate if someone could advise how to use Local Security
> Authority (LSA) API on Win2000 SP4 Server
> in order to determine if the specific computer is a member of a domain, a
> member of a workgroup, or a stand-alone computer.
> The input I have so far, is that I need to follow these steps:
> 1. Open the Policy object of the local computer by using
> LsaOpenPolicy.
>
> 2. Use LsaQueryInformationPolicy to retrieve domain information.
> 3. Check the value of the security identifier (SID) field.
> If the value is NULL, the computer is either a stand-alone computer or
> part of a workgroup.
> If the Name field points to a string that matches the local workstation
> name, the computer is a stand-alone computer.
> Otherwise, the Name field points to the workgroup name.
> 4. If the SID pointer has a value, the computer is part of a domain. The
> domain name is stored in the Name field.
>
> Do these steps above refer on Local security policy -> Security options ?
> If this is the case which is the setting for SID?
>
> Many thanks in advance for your time and support.
>
> Regards, Nick
> ITS Athens
|
|
Posted by Nick Dakoronias on October 18, 2007, 2:13 am
If you were Registered and logged in, you could reply and use other advanced thread options Hello Wolfrag,
Pls let me clarify the following:
I am not a developer or programmer (at least for a long time).
I just receive a security vulnerabilty notification from my company's
security team that alerted me to fix it.
We have such periodical scan reports in our company.
The issue is how to resolve this..
Is there any clear article or step by step guidance?
Thanks in advance for your time and support
]Nick
> Hello Nick,
>
> This looks like a lot of work to get the computer's domain. There are
> more direct methods in .Net and scripting. What language are you
> writing in?
>
> J Wolfgang Goerlich
>
> > Hello Microsoft Security forum readers,
> >
> > I would appreciate if someone could advise how to use Local Security
> > Authority (LSA) API on Win2000 SP4 Server
> > in order to determine if the specific computer is a member of a domain,
a
> > member of a workgroup, or a stand-alone computer.
> > The input I have so far, is that I need to follow these steps:
> > 1. Open the Policy object of the local computer by using
> > LsaOpenPolicy.
> >
> > 2. Use LsaQueryInformationPolicy to retrieve domain information.
> > 3. Check the value of the security identifier (SID) field.
> > If the value is NULL, the computer is either a stand-alone computer
or
> > part of a workgroup.
> > If the Name field points to a string that matches the local
workstation
> > name, the computer is a stand-alone computer.
> > Otherwise, the Name field points to the workgroup name.
> > 4. If the SID pointer has a value, the computer is part of a domain.
The
> > domain name is stored in the Name field.
> >
> > Do these steps above refer on Local security policy -> Security options
?
> > If this is the case which is the setting for SID?
> >
> > Many thanks in advance for your time and support.
> >
> > Regards, Nick
> > ITS Athens
>
>
|
|
Posted by on October 18, 2007, 8:08 am
If you were Registered and logged in, you could reply and use other advanced thread options I use the following VBScript to get the domain information. It prints
this two ways: the Windows NT domain name and the longer fully
qualified domain name. To test, copy the text below into a file such
as whatdomain.vbs. Double-click whatdomain.vbs, and it will display
the domain name in message boxes.
'--------------------------------------------------------------------------------
Set objSysInfo = CreateObject("ADSystemInfo")
domain = objSysInfo.DomainShortName
MsgBox "WinNT://" + domain
MsgBox objSysInfo.DomainDNSName
'--------------------------------------------------------------------------------
For auditing purposes, you might edit this to write output to a file
or a report. Look to Microsoft's web site and the "Hey Scripting Guy"
articles to provide more information on scripting.
Regards,
J Wolfgang Goerlich
> Hello Wolfgang,
> Pls let me clarify the following:
> I am not a developer or programmer (at least for a long time).
> I just receive a security vulnerabilty notification from my company's
> security team that alerted me to fix it.
> We have such periodical scan reports in our company.
> The issue is how to resolve this..
> Is there any clear article or step by step guidance?
>
> Thanks in advance for your time and support
> ]Nick
>
>
>
>
>
> > Hello Nick,
>
> > This looks like a lot of work to get the computer's domain. There are
> > more direct methods in .Net and scripting. What language are you
> > writing in?
>
> > J Wolfgang Goerlich
>
> > > Hello Microsoft Security forum readers,
>
> > > I would appreciate if someone could advise how to use Local Security
> > > Authority (LSA) API on Win2000 SP4 Server
> > > in order to determine if the specific computer is a member of a domain,
> a
> > > member of a workgroup, or a stand-alone computer.
> > > The input I have so far, is that I need to follow these steps:
> > > 1. Open the Policy object of the local computer by using
> > > LsaOpenPolicy.
>
> > > 2. Use LsaQueryInformationPolicy to retrieve domain information.
> > > 3. Check the value of the security identifier (SID) field.
> > > If the value is NULL, the computer is either a stand-alone computer
> or
> > > part of a workgroup.
> > > If the Name field points to a string that matches the local
> workstation
> > > name, the computer is a stand-alone computer.
> > > Otherwise, the Name field points to the workgroup name.
> > > 4. If the SID pointer has a value, the computer is part of a domain.
> The
> > > domain name is stored in the Name field.
>
> > > Do these steps above refer on Local security policy -> Security options
> ?
> > > If this is the case which is the setting for SID?
>
> > > Many thanks in advance for your time and support.
>
> > > Regards, Nick
> > > ITS Athens- Hide quoted text -
>
> - Show quoted text -
|
|
Posted by Nick Dakoronias on October 18, 2007, 10:01 am
If you were Registered and logged in, you could reply and use other advanced thread options Dear Wolfgang,
At first, my appreciation for your time and effort.
I have performed the exact steps as per your advise, but I receive an error
msg:
The specified domain either doesn't exist or could not be cotancted.
Below is the attached error snapshot
Does this error mean something to you? Is this a valid error?
Many thanks once more for your support.
Regards, Nick.
> I use the following VBScript to get the domain information. It prints
> this two ways: the Windows NT domain name and the longer fully
> qualified domain name. To test, copy the text below into a file such
> as whatdomain.vbs. Double-click whatdomain.vbs, and it will display
> the domain name in message boxes.
>
>
'---------------------------------------------------------------------------
-----
> Set objSysInfo = CreateObject("ADSystemInfo")
> domain = objSysInfo.DomainShortName
> MsgBox "WinNT://" + domain
> MsgBox objSysInfo.DomainDNSName
>
'---------------------------------------------------------------------------
-----
>
> For auditing purposes, you might edit this to write output to a file
> or a report. Look to Microsoft's web site and the "Hey Scripting Guy"
> articles to provide more information on scripting.
>
> Regards,
>
> J Wolfgang Goerlich
>
>
> > Hello Wolfgang,
> > Pls let me clarify the following:
> > I am not a developer or programmer (at least for a long time).
> > I just receive a security vulnerabilty notification from my company's
> > security team that alerted me to fix it.
> > We have such periodical scan reports in our company.
> > The issue is how to resolve this..
> > Is there any clear article or step by step guidance?
> >
> > Thanks in advance for your time and support
> > ]Nick
> >
> >
> >
> >
> >
> > > Hello Nick,
> >
> > > This looks like a lot of work to get the computer's domain. There are
> > > more direct methods in .Net and scripting. What language are you
> > > writing in?
> >
> > > J Wolfgang Goerlich
> >
> > > > Hello Microsoft Security forum readers,
> >
> > > > I would appreciate if someone could advise how to use Local Security
> > > > Authority (LSA) API on Win2000 SP4 Server
> > > > in order to determine if the specific computer is a member of a
domain,
> > a
> > > > member of a workgroup, or a stand-alone computer.
> > > > The input I have so far, is that I need to follow these steps:
> > > > 1. Open the Policy object of the local computer by using
> > > > LsaOpenPolicy.
> >
> > > > 2. Use LsaQueryInformationPolicy to retrieve domain information.
> > > > 3. Check the value of the security identifier (SID) field.
> > > > If the value is NULL, the computer is either a stand-alone
computer
> > or
> > > > part of a workgroup.
> > > > If the Name field points to a string that matches the local
> > workstation
> > > > name, the computer is a stand-alone computer.
> > > > Otherwise, the Name field points to the workgroup name.
> > > > 4. If the SID pointer has a value, the computer is part of a
domain.
> > The
> > > > domain name is stored in the Name field.
> >
> > > > Do these steps above refer on Local security policy -> Security
options
> > ?
> > > > If this is the case which is the setting for SID?
> >
> > > > Many thanks in advance for your time and support.
> >
> > > > Regards, Nick
> > > > ITS Athens- Hide quoted text -
> >
> > - Show quoted text -
>
>
begin 666 Whatdomainvbs_msg.doc
MT,X*&Q&N$`````````````````````/@`#`/[_"0`&```````````````!
M````,@``````````$ ``- ````$```#^____`````#$```#_____________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M_______________________LI<$`?V )! ``^!*_````````$ ``````!@``
M`@@```X`8FIB:N:'YH<````````````````````````)!!8`+A ``(3M``"$
M[0```@````````````````````````````````````````#__P\`````````
M``#__P\```````````#__P\``````````````````````*0``````*0#````
M````I ,``*0#````````I ,```````"D`P```````*0#````````I ,``!0`
M`````````````+@#````````W ,```````#<`P```````-P#````````W ,`
M``P```#H`P``# ```+@#````````Q00``+8`````! `````````$````````
M``0`````````! `````````$``````````0`````````! `````````$````
M````1 0```(```!&! ```````$8$````````1@0```````!&! ```````$8$
M````````1@0``"0```![!0``: (``.,'``!&````:@0``!4`````````````
M````````````I ,`````````! ``````````````````````````````! ``
M```````$``````````0`````````! ```````&H$``````````````````"D
M`P```````*0#``````````0````````````````````$````````?P0``!8`
M```H! ```````"@$````````* 0`````````! ``"@```*0#``````````0`
M``````"D`P`````````$````````1 0``````````````````"@$````````
M````````````````````````````````````````````````````````````
M``````0```````!$! ``````````````````* 0``````````````````"@$
M````````I ,```````"D`P``````````````````````````````````````
M````````````````````````````````````````````* 0`````````! ``
M`````/0#```,````@"S?JHX1R $``````````-P#````````"@0```H````H
M! ``````````````````1 0```````"5! ``, ```,4$````````* 0`````
M```I" ```````!0$```*````*0@````````H! ``````````````````````
M````````````````````````````````````````````````````````````
M`````````````````````"D(``````````````````"D`P```````"@$```<
M``````0`````````! ```````"@$``````````0`````````! ``````````
M``````````````````````````````````````````0`````````! ``````
M```$````````:@0```````!J! ``````````````````````````````````
M````````````````'@0```H`````````````````````````````````````
M```````````$``````````0`````````! ```````,4$``````````0`````
M````! `````````$``````````0``````````````````+@#````````N ,`
M``````"X`P``) ```-P#````````N ,```````"X`P```````+@#````````
MW ,```````"X`P```````+@#````````N ,```````"D`P```````*0#````
M````I ,```````"D`P```````*0#````````I ,```````#_____``````(`
M# $`````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````````````$-````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````8```$(```"" ``]_,`````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````!A9H#1J7```/`VH`````%F@-&I<`50@!``(`!@```@@``/T`````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M```````````````````````````````````````````````````````!````
M`0`&```"" ``_@``````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M```````````````````"`0$!+ `QD&@!'[#0+R"PX#TAL @'(K (!R.0H 4D
MD* %); ``!>PQ (8L,0"#)#$`@``````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````!"'P``1 !D````
M``````@`````````````````C!J-">@#Z ,`````````````````````````
M``````````````````\`!/ ^````L@0*\ @````!! ````H``$,`"_ :````
M!$$!````!<$"````!@$"````_P$```@``````!#P! ```````(!B``?PL!X`
M``8&]NWBYSE&)91@.#A)QGX>%_\`C!X```$```!$``````"0`P!N'O"$'@``
M]NWBYSE&)91@.#A)QGX>%_^)4$Y'#0H:"@````U)2$12```!Q0```*,(`@``
M051X7NV="Y 5U9G'N^^=ZPP/$9&G*"@P`K+K$`$248-^H*%$A 4'!BJ:#B
M`T1$C6#"FJQ9$ROK)BE3V4KM;J6BJQ'4PHV%0E9=7Z7H:I0%'!Z".,-K&)AA
MYCYZO^XS<^CIY^G7O7W[_INNJ>;><[[SG=\Y_>_OG-/=5[YNX>+[%LZ6L($`
M"( `" 0@</GEE\M,3R=/GAS #K*"``B 0$436+UZ]:I5J^2_7[!HZ<W?)SW=
MM&E31?- Y4$`!$# +X&-&S<:]?3RRS>>L":S0YG^=6SJ@?8?_HGQ6V/Z$YFM
MK=G8/U&$H72MO!.EDR>=_W&PKW>X:_HNUK@%^_1=:'0DZP)$=O#'*KV%_UU*
M_;J>/B>D2D#-3O0][Y+ZXJ3#3$]3WO,B!PB ``B @ 6!+N-]Q*?&`-SC!1_Q
M:9?A"P^@$)]V#/:Z1-'KF-=XLZ/&(G[Z&'SA>_4%"6WC_>3.D1GXI#0TH0
M`($*(D K22(;+4"9H5B,]Q7E4=KM^"FY1Y3L(_0M_56R#XM@+K2N++2L%$GI
M-4W^P+*.??\R\;SY???FO[Y7/#U+F=NU)+?K+IXKM_.NW(X3__5J#>E!``22
M1\#__*F<^9&<^7$)B>0/WD^EIT_[&>UTD!>6U/3 GZ<'_=S.\]R>NW-?W1U%
MO;);%V>W+HK",FR"``B$3H#N)Z5-;];\B:%0"SV5936.50H=(:J2_R'M+!L%
MI_27E#1TUP,:3/?]&>T!C2 ["( `"' "M&1/QUQ2V0'[T&Y+*8KBCR ?[ROM
M#ZM[&]L?XM:4UH?4D7YKEY%^X=B#'?O1!UG*0O,*VM6#(RL*1Q[0#AXH-*D'
M)^W9+^^@G=O);E^<W:;N>LL(43TU)1*#0 D)<$D5$5/RT_]XWUQ)N5H=_BO'
M54EE?U/=_H%VGK+0HFIHJL?CM*M:V2FI=KP*3:J,IGK_HYKXD%%2TWV>4,61
M3:'J!OLDIO1YNO\_T:XFZ)14]<.!%L/\JM-_03M]F]-):M493UEZI4Z;:GL7
M\:V_D_Y;=?8_9X8]30=,4K/;U;^9$?^B'NLD-5/[JQ+V#Q0-`B#@B0`/2)TC
M4V8S97D7*Q_R*X7.D3Z-^G/JL5QE/=AG8NI[8R&JJIM:B-KAW"F:DAY>3I*:
M.E4]-FQL\M1A_C3=_TG:?7MESE@U])=L=[69&:YIZ[;%)*E,5;&!``B4'0'#
M>-_9_S#CTRA(=02G'L?[47CBPV9FN#$X]6$$64 `!$I%@ _S#7.I=O[8ZJF<
MZKB[2DX_1CO+;Q><!JEMZN2?=$2CO7Z2ZO73CN-3U ,:[[/@5#TVC?=I?9]&
M^LY%TV!?/]X/XJ?7O#3>I_E3\WC?JQVD!P$0* D!PYRIB*1&%9_*-6M4$>RZ
M'I7JKDV;:DM2=)#JJ?[784MUCO?5Q*;QOG[^E!+P]?UT/S9MJJY'J9^[C??9
MDA2EK!K\"^VO.G/J:3V*9D[5+-IZ%!VP650^WE>/M?%^IE8+5W'+5$E.#A0*
MO8T%[T-!]Q/H3B=.2L>W-7E\W)D_;RKXICWV`A0\;^KQ(H7D( `"E42 !:&N
MFR42^=J;;E]6-X>]_Q3O0\'[4)Q>SXCW]>%UD5Q%'(8C)X8@_(B]ZM+E_28N
M;P>-N/NQ^/3PPQ=XNG88XE/HJ7Y\T3DN-7<(\_L3,=[7G2.=$R8V)PS&^ZR7
MX?6[)WH""UVZ=ACGMRT714\]B2E/C/=+^>.&7" ``B!@2Z!+? I.( `"( `"
M/@C@_?P^H"$+"( `"-@2B.K^4R '`1 `@4HCX/_]4I5&"O4%`1 ``6<"B$_1
M0T `!$ @' +0TW XP@H(@ `(0$_1!T `!$ @' +0TW XP@H(@ `(0$_1!T `
M!$ @' +0TW XP@H(@ `(0$_1!T `!$ @' +0TW XP@H(@ `(I,\Y?^S$B_[V
MK+/.VKES9T <W;=N';!AP\"-&X>\]=:(=]X9^O;;_=]\Y3WWJ//Y6Q[6[_^
MC4M=>&&/T:/[]^U[=E/3>2^]?,F2)0.>?OIX8V,,6< E$ `!$ A.(*B>]OKH
MH['+EX_ZWT^[G3M:OOAB:=0H:>1(:<0(:>A0Z<PSI<&#U7W0('G(D)IAPT;M
M/BSXR")>HW!3!M+3TY]]]OS?_K;'P('2\.&J>@X:)/7M*W7OKH[K%44J%%1?
MJZJD;MVD'CVD7KVDTT[K/7CPU/]^L_O2I8</'PZW)@2=_T2!2 ,8?FF+.R.2
M5]!S_4\FN&81=U[00YZ,_XB8ZZ^)N3II*1GBGONP[R^+7>/:6?.:7L0KUB'-
MLF[(:^@D47@BXJV/BX$_L_&IH#__G7/YU],ASSQ3^]9;J6'#)-)3DM&>/:54
M2FIID?;OEW;OEK9MD^KKI3U[I$.'I-96*9=3O\UD5&T]Y91QS<VGWWO/[EV[
MHJ@2V2SK-B/G!14S(GJ>S)87:O$XSA.$6"4V]!]#E<NKO6(%5L09GWK:_X47
MSMJHP0.K=6ZJI4:/18\>D`P=4#?WK7Z7WWU?W#S^4/OM,VKY=VK=/:FY6
M$[2U2?D\"6MK=?7?*%+?AQ_>NW>OB)=!TIA'H_HACW[ 90A1HQ U?<PH:-_@
M/[M:6.8UIW0=^K$LK.*66F.VR5(Z6#:[9^F8I1&##P;W]*Z:/3=_(GYE<K!L
M]Y69@P-_P;;FK6!N%#N&K.W$:ZH_E0Q-X.R_<V)]7M>4^FJ:R0CV0^=.&$0Q
M@N3U\[Z^[E]\,6S=.IF4M+I:5=+CQ_/??'.<E/333U4-?>\]Z8,/)%+;3SY1
M/_G\<U52=^QH/7! H3$^J6HV6Z4H1S.9"W.Y;YYXXA %L&%LK$N9V](\&C5<
MHNT2!+^2F_WQ:I,L"(ZF+5,Z%"=BV3(-_]!P)K#/S2VI-\*_M:R4WH)#=3QY
M9?"'ZXZEMYX*-7!PYN_<$*[28#9NUPKB9Y+9@MV)8&Y!N\HRO,P.[QYV'=A3
M%0Q&/.459Q(\I9_X=/"O?YVAR5 :O-,,:7-S;N_>-9G,3WOVS)&&?O01C?2S
M>ZZ]O3UX3=A5VM"6>K->M2RX2]P?2U/^8HH@B0&G%Z#J*IETN#VAJ*-E]I
M[.18T&>[QO4-V;6W<,NN*9VK8-E)F''#!48ON^;2#1+&^#,+^F-]&[DVBB!\
M=]\]8<F2WUUUU9&#!UN;FP^UM37G<L>RV>;V]K:6EOJC1U=-FG3AO'D];[WU
MCY,F24U-RI$C!?HJE^N6R9S]\LN?4AB+S2,!WTKAL1SWY%ZET!SOL&NALP2[
M^R&6@A444 2+?U7CLJN_L(5(S+)1Q(@ZI8K(;#$[C"<(GN/3WL\_KZ33ZC0H
MC=R;FOYPQ14#;[MMRLB15YYSSLC[[_^/18L:.LO/T]J^)-5+TB_GSAU]^^VW
M^,AN*2)AG>T^_&%9+$'9T;/SUH<^^L@B4D=_9EU["TO@S[BKVUR&S&[P8--<
MNCE$9>(;XB7$U?-0$K@Z'"G\(%6HXC\U+V*E:N_>PH$#^1X]VMO:3J)!>CX_
M?M>NANKJ%DGJ+DF3APQ)+5_^6K=N4YY\LH<DT;-0>R3ICPL67OR#NGG?_C;9
M)_&>-7KTGJ^^.M+2DI.D@BP?+Q2ZR7+FXX^W;-DR;MPX$1_LTA@ZDSF"L M)
M>)<U=+[@NJ8_&9AQ!YL&-T3\MQSBL?/']2PRX]*/H<S]U2&@,U=3WT9FQ7'0
M('XB6;:F"!.1+F17%T^%ZG$9I,U@WU4=7'UV;BS7["()[)J)/G=N08>.X>EZ
MXWRZ69ZDO*N+5+ X:>2KY]^Z_)8;)D^>O&G3)M<B3W[NV6XO_*EW.MTSE>J>
M3J<I2MVW;^=55S7^YC>C!PTB#:7M_<;&+4\]=<F:-5E)>F7ITF%SYLP:.Y9;
M/C1]>LO:M:3(;:G445J5DJ1,.OUN:^L'LV<O7+BPBFY6+>X67#2+ZR]*`P$0
MB",!NJZL6K7*VW@_5;^CD,NU9[.M[>TM;6TM-&"OJ>GQTDO5=77;:/5)J^:X
M?OTN7KITUYHU6QY_?-+BQ3-U8KI[VK2OUJYMS62.RW);H9#3]F.Y7#])VEE?
MOY]N7,4&`@DE0%=NPY;0BE9TM;S=+Y7]ZJMLH=":S1XG26UKHYTF0(_18/_5
M5_,S9VYO;&S58(X^]=0)*U=^=*"<.&\?F$[5.G[ENWCKYMD^7V0B&;SY.8
MYFF5/Y_O)4D']^SY^NNOB]SJ.5XON#$I-*@ V<]5M2:UK)]?(6GV;W[V_/
MYVE=OHTD-9>C^+1-4=K3:;K=J7K3IK8Y<^H;&FABE#::3NVI'=#]`_1M_=57
M-VS80(5E99GF`7+Y/.DRB2E)*@6J&?JP1=TJN250=Q `@7(GX"T^;3MZ5!73
M?+XEGV^E@3^I(2DCZ2,M+DE2M]=?/[S@QL:N-Y,>EZ3/)D[<MWY]1I)HQ3^?
M2F45A<14_:OM.461:>#?IFY!:-JMA :Q&3 O']\%M(/L( `"94' 6WQ*ZT@T
M/"<-I2B5#BA$)4$DE20Q)4,')>F;*5.KM->@*-I&![3*WSYWKJJDVJ[.F9*,
M$E :H:N1J1:<DCB2%-*J_#>2].:2):=,G]Z/'N>7)%G;Z. D2>I35[=S]6I:
MRB=]+6@QJ6J!)@JTJ0`2T282:"U+R3!$4'!IU3R""L$D"(" "P%O>IH:.N2X
MIH.M)*9LP)[/IPL%>JG)GV^^N7;.G"FUM>8":[MWI_OYMRQ;1K?LDWI2B-HA
MIB2L6M#:0**<H?NF0GY[O_[.9S;TYKX91N*('W&B@ `(!"?@34_3(VI99,IB
M3)I+3>7SM"K_\NS9YRU8,.M;W^(.;9XTZ8L9,VA<S]:8+NK?_^([[_SBKKL.
MTY(4RZN)*1W3U #)<55U]4DG42P;R69XVL0$H\TEL0MKI$T*HR"0/P(I#R-
MLN4)$VB 3SK8JB@T^TEJN)LBTX4+)RY90H$G!#3*Z[8]=9;VUY\<-ITQI:
MZ>VGZC9^Z-!)*U?N7+JT21OFDY[24A7=B$KQZ7N*TK=OWU-//34B/F:Y+-I*
M?N-&FE&ET7O#NG5?7G_];GIMBO;UV($#KUBS)O/88Z2P] GM-*-*\OJ%+)]^
M^ND#Z&VJQ=J*<QL@Q+18[8ER0" 6!+S=+T4NM\R;UUN30C6ZE*0SUJ\?3(_A
M=];E_2E3OER[EFZ-HGE2"CQI._S**]MFS-A)K^G3MC'5U?*++S9+$CT%0*I*
M<OZNHJ3[]!DQ8D2?/GV*CR2ZF5.(:?%;$R6"0&D)>(Q/)>GL*ZC^Q)\L4
MG-)^_../&V^\D4U\OGO--5O?>(/"4KH=E>[;SVMC>8I #V_8L'W>/%;//]76
M[OCP0YI799,`!Q1EO:(,'3KTW'//#0Y"_SR?@S7V?@>VL:F B%15T)_@%8<%
M$ "!.!"0_^Z&6U;<.E_P?2C,XX;-FW/WW:<&G(4"*2F%HB._][U,]^Y;GG^>
M'HLBA69SLJ2DM-/=5*2J%,".6;#@X-:MG[_]-GU'>DIJ2_=5_:>B;._;=\:,
M&;-FS:JFM_UC`P$0`($R).#G?2BLFOTON&#_#3?TUC210E22RT_7K__D^>?I
M*Q)*=2J UJPZ=W7I24OSSN]__;;U,:-G-*8DHC_<W5U129CA\_'F):AET(
M+H,`"'0AX'F\SW*?=\LM.RZ[[&19IG>8TLB=!OBT4Q!*\DK_5><!M)V.U94K
M[:]ZYZEV0)I+[SS=K"@OI%*UM;53ITZER5,T"PB ``B4.P&?>DK5GOCHH_53
MIM#2$]URI=[AK^WT$!034UIN8MK*/F'?TDXS`&E9_A]%^8,FIM=>>^VEEUY:
M[A#A/PB ``@0`<_K^YP:39)>L7+E[MFSZ0=.:K094S:0)_5D8JH_8+=&T?QH
MDRR_H"C_55,S9LR8Z=.GTXI-B+?QF]=_(EIH$N\Z)7= W%6D! $0"$C ?WRJ
MBG$J=?6B1=U6K7IOS)A&[8']*FTEBF9+U3>>: -\-2#5]@.R_&=9_E4J]?6
M`;3\-7?N7!KIUV@/^X>RZ9]Z,O]"0RA%>#+"Q-U3%B0&`1 H:P*!])35G,3Q
MFI4K6Q8O?N.""_Y274TWYS?(,KO#E%ZX_Z4L_T66?R=)S]34_-_ @6,G3)@S
M9\[\^?,G3)B0H5^<CFR+]!%2$:_9(P,B*9$&!$ @&02\/6]J5V=ZNFGFS)GS
M[[GG@J5+VV?/WCQQXFOGG__2J%&OC1SY_JA1#>>==\:D2=.F3:-?B*JKJ[ON
MNNO.///,8N(SA(J&ATWYMP@GB]DH* L$DD? S_VG\:1@^3P2DTA^T[XA8&19
MEZY?MO)M!!E!``1 P$P@A/6H>&+%9&@\VP5>@4"""21'3_5O.7&8M=0G,[0K
M)#C!'1U5`X$B$)"OFON#!V^[T=/[4(K@%HH``1 `@3(B4"GK4674)' 5!$"@
MK DD9[Q?ULT`YT$`!!) `'J:@$9$%4 `!&)!(#EZJGAQ6EBS]*;YCO$1V
M(.* 0QJ1[,[]VH<%0Q8?%LIEX3%XU0**BMF!4%P*Q4C JOG([L/MY.@IK.
MK^P)-@Q_?K^T#_(;G@TK^2L%?#@0Z6_2"+:FCV0^SD9+.#[L^/ VQ"PE<=A3
MNJU/R1(X?**OM;Z.KAGU-75-K$\@XH^Y41R*,U2!I70MQ<S3M1:6;6$HB)?N
MXY^2$]2/F_BQ^:THE)Y]J/\;=35YH>R _Y?U,+WGAI3<3Y[2G-?!FJ5E.U,&
MD$N '7\S7H?>8M?5S:PL^X-XQ46ZKE?/'2@9X%B>%'9JX%QW5W%(5'S*YT]=
MJUW"!.:SR"X68&JK[XMFM^WR.N=RC@["A>-0.X?SV1!Z&%**,_1:%X.W#DW@
M8R+8C)W9-U\V7-O=4[W\N6I71%C6'+HN+]JA+(>O/)T4(FZ(TTZ4GHI7.U8I
M^67 W$7X^>S0N?U=11P*#1$.4PJVB9OUX9N/+);^F.VX-H%XO=A%3@1(N(5Z
M\K!HB051>/7':Y<+UPWHJ=?VBC ]BTKXQH,4P^>6'IC3B.1B$5.$50IFVH=O
M/K(X\/34!)[JRBSSDU_O=NB%NC)Q3>"I:EX3.Y0>NF-1EY7,^5,6"-@%()RI
M(8UAV.6U6_A+KX]$#/[PK_CG!L_->1VLZ=USSFBHB#E6$BR%M8+74\+../O<
MLEE%_!&IA0,6N^[$6=GEU6<4,/C>4U5US$CDC?T'<P?3-Y:C61BNLOV_I*
M,7IVW9Y_)5Y?2BG>T(;$9L>8>YYD@=Z'4O?@;3?A?2C^U+"8N3RU:S$=0UD@
M``(DQZM6K<)X'ST!!$ `!,(A0._G#\<0K$1-P'7(&;4#L \"(.!,`/$I>@@(
M@ `(A$- _NZ<NI6W)V3^U#"G[DHHZAE)\*7ZR>&U1L6DQIR6:8QS)U[1>'*
M"@E ``0<""1M_I3?>F*YQE?\KJ#WQW!S#%^"-*=ASK--+Y'FM4A#,KWLLHP\
M@=<5]N*S0HD@D P"B1WOE_ML8]2Q<S*Z+VH!`K$BD%@]Y91)F-@F_DG\`SK+
M2I7[)216)P:<`0$?!!*NI\Z#;KL!=2C"Q ;U;/-JT#6+R%C>=^D^NA&R@ `(
M$ &Z7PHW3*D+/H88-GCG,$MY<)MM1@RE)_130W+)=@!P1 0-534- OW7@-
M)*.@YQJ<6A;*KP?QGZR(`AIL@D <"*1D68Z#'Z'[X$]6_.4*W7EG@V8G]6O]
M-3>4NL2DO\(-$(@G`3K+Z/G]1.EI/$'#*Q `@<038'J*^=/$-S0J" (@4"0"
MT-,B@48Q( `"B2> ^Z42WH( B 0)$()"H^C>(VTB#M('ZW`$NI_QND7.0%
M`1 H"8'DZ&ET]\_[:QA_MY%26>S!*G^%(A<(@$ )"21'3_40<8=0";L4B@:!
MBB603#W5-Z=A$D ?^O'Q-?_0/&/@D%VPTUB6PO,B%!7$B&0@$'\"R=%3_?M'
M]&HE\A@[OZO?D-@\A^ O\N5VH)[Q/R7@(0CX)I </64SCVP++EOZIY58B.H;
M,7,L2';D!0$0* L"B=+3*(ASC88F1H$7-D$@2022HZ=>0TCG].9OO=H7Z251
MV!0I%VE ``2B() </=7/G_)8TOPA_<;SHDYC<_A:* #CY$T<:P"0(@4!P"
M\I7?O_FA10LF3YZ\:=.FXA19(:7XOO^4^ 3)6R%X44T0B!4!O \EVN;PO2P&
M,8VV86 =!"(CD)SQ?F2(_!OVMX3E+Y=_+Y$3!$ @) +0TY! P@P(@$#%$X">
M5GP7```0`(&0"$!/0P(),R ``A5/`.\_K?@N```@``(A$4!\&A)(F $!$*AX
M`M#3BN\"```"(! 2`>AI2"!A!@1 H.()0$\KO@L```B 0$@$H*<A@809$ "!
MBB<`/:WX+@``( `"(1& GH8$$F9 ``0JG@#TM.*[``" ``B$1 #W\X<$$F9
M``0JG@#BTXKO`@```B 0$@'H:4@@808$0*#B"4!/*[X+```(@$!(!.3O7+_@
MD3MNQN^=A,2S4LR$\CM:<8:%MWK'N75BZ!M^[R2&C5).+BD)W<JI#>!KS @@
M/HU9@Y2).Q2?DIPF[S<<691!C8#XM$QZ8ES<1'P:EY: 'R ``LD@@/6H9+1C
MB6O!IE/+_6^)(:+X\B> [YMV$I:J ?[R?C!ZY9+3#>+T5O2D*9&.\GH17C
M4(<HIAI)W?C&ZZB_J2#T&PRBJ$4<6@<^%),`QOO%I)W,LD*7-AXJLH#1;#^*
MB#CT6B2SL5$K1P+04W20H 2*'-E%(:98T _:"9!?(P`]14<(2J"8D5U$8LH7
MTX*R0/[*)@`]K>SV#Z/V18Y/PW#9PD8R:A$1')@5) `]%02%9+8$BAF?6DZG
MAM(VQ:Q%* [#2 P)0$]CV"AEYE*1([N()+7(M2BS-H:[8@2@IV*<D,J>0/$C
MNR@DM?BU0)]*'@'H:?+:M-@U"CVR8W+)-TO[H4MJZ+4H=C.@O!@0@)[&H!'*
MW(4H(CMVYRG;.!Z#Y(6K@%'4HLP;%NY[)H#?C_*,#!D,!,+5M5+A348M2D4/
MY3("B$_1$X(22$9DEXQ:!&U+Y ]&`'H:C!]R:Z\*96)4UGGZ(O!R<@3YEU
MTP_OK,/OG01'65$62#KQ/NF*:G%4UID`78_I3>304_03/P28GJY>O=I/YGCG
MP?OYX]T^,?4.>AK3ABD+MQ(_VXCA?UGTP_@XR?04\Z?Q:1%X`@(@4-X$,-XO
M[_:#]R ``G$@@/@T#JT`'T `!))#`/?S)Z<M41,0`('2$L#\:6GYHW00`('D
M@>00@)XFIRU1$Q `@=(2@)Z6EC]*!P$02 X!Z&ERVA(U`0$0*"T!Z&EI^:-T
M$ "!Y!#X?_5C^6%Q>V+Q`````$E%3D2N0F""````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M`````````````````````````````````````````````````(8"#P`2``$`
MG `/``0````````````$````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M`````````````$ ``$#Q_P(`0 `,! ``````````!@!.`&\`<@!M`&$`; ``
M``(````8`$-*& !?2 $$84H8`&U("01S2 D$=$@)! ``````````````````
M`````$0`04#R_Z$`1 `,!0``````````%@!$`&4`9@!A`'4`; !T`" `4 !A
M`'(`80!G`'(`80!P`&@`( !&`&\`;@!T``````!2`&E \_^S`%(`# 4`````
M``````P`5 !A`&(`; !E`" `3@!O`'(`;0!A`&P````<`!?V`P``--8&``$*
M`VP`--8&``$%`P``8?8#```"``L````H`&M ]/_!`"@```4```````````<`
M3@!O`" `3 !I`',`= ````(```````````````(````%```0`````/____\`
M````! ```)@`````, ````````" ````@ ``````````````!@```@@```4`
M````!@```@@```8`````!@```@@```<`````````! ````<```````0````'
M```````$````!P``````! ````<``0````0````(````Y0``````````````
M#1J7`/] `X !``$````!````T".1`<4!Q0$!``````````$``````````A `
M`````````@```% ``! `0 ``__\!````!P!5`&X`:P!N`&\`=P!N`/__`0`(
M``````````````#__P$``````/__```"`/__`````/__```"`/__``````,`
M``!'%I !H0`"`@8#!00%`@,$AWH`( ```( (`````````/\!````````5 !I
M`&T`90!S`" `3@!E`'<`( !2`&\`;0!A`&X````U%I !`@`%!0$"`0<&`@4'
M`````````! ``````````````( `````4P!Y`&T`8@!O`&P````S)I !H0`"
M"P8$`@("`@($AWH`( ```( (`````````/\!````````00!R`&D`80!L````
M(@`$`/$(B!@`\- "``!H`0`````XE+J&.)2ZA@`````"`````````````0``
M``$``0````0``Q !``````````$````!``$````!`````````"$#`/ 0````
M`0``````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````````````@'H 6T
M`+0`@8%R- ```````````````````0````$`````````````````````````
M```````````````````````````````````````````````````````````"
M`````````````3*#$0#P$ `(````````````````````````````````````
M``!(4 `````H\/\/`0`!/P``Y 0``/___W____]_____?____W____]_____
M?____W\-&I<``````#(``````````````````````/__$@``````````````
M``````<`20!4`%,`( !$`' `= `'`$D`5 !3`" `1 !P`'0`````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````````#^_P``!0("
M```````````````````````!````X(6?\OE/:!"KD0@`*R>SV3 ```!8`0``
M$ ````$```"(`````@```) ````#````G ````0```"H````!0```+@````'
M````Q ````@```#8````"0```.@````2````] ````H````4`0``# ```" !
M```-````+ $```X````X`0``#P```$ !```0````2 $``!,```!0`0```@``
M`.4$```>````! `````````>````! `````````>````" ```$E44R!$<'0`
M'@````0`````````'@````P```!.;W)M86PN9&]T```>````" ```$E44R!$
M<'0`'@````0````R````'@```!@```!-:6-R;W-O9G0@3V9F:6-E(%=O<F0`
M``! ``````````````! `````!@LG8X1R % `````!@LG8X1R $#`````0``
M``,``````````P````$````#````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````_O\```4"
M`@```````````````````````0````+5S=6<+AL0DY<(`"LL^:XP````\ ``
M``P````!````: ````\```!P````!0```(0````&````C ```!$```"4````
M%P```)P````+````I ```! ```"L````$P```+0````6````O ````T```#$
M````# ```-$````"````Y00``!X````,````24)-($=R965C90```P````$`
M```#`````0````,````!`````P```-@8"P`+``````````L`````````"P``
M```````+`````````!X0```!`````0`````,$ ```@```!X````&````5&ET
M;&4``P````$`````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M``````````````````````````````````````````````````````$````"
M`````P````0````%````!@````<````(````_O___PH````+````# ````T`
M```.````#P```! ````1````$@```!,````4````%0```!8````7````& ``
M`/[___\:````&P```!P````=````'@```!\````@````_O___R(````C````
M) ```"4````F````)P```"@```#^____*@```"L````L````+0```"X````O
M````, ```/[____]____,P```/[____^_____O______________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M________________4@!O`&\`= `@`$4`;@!T`'(`>0``````````````````
M`````````````````````````````````````````!8`!0'__________P,`
M```&"0(``````, ```````!&````````````````8!/KJHX1R $U````@ ``
M``````!$`&$`= !A````````````````````````````````````````````
M````````````````````````````````"@`"`?_______________P``````
M``````````````````````````````````````````D```!"'P```````#$`
M5 !A`&(`; !E````````````````````````````````````````````````
M```````````````````````.``(!`0````8```#_____````````````````
M````````````````````````````````&0`````0````````5P!O`'(`9 !$
M`&\`8P!U`&T`90!N`'0`````````````````````````````````````````
M`````````````!H``@$"````!0```/____\`````````````````````````
M````````````````````````````+A ````````%`%,`=0!M`&T`80!R`'D`
M20!N`&8`;P!R`&T`80!T`&D`;P!N````````````````````````````````
M````* `"`?_______________P``````````````````````````````````
M`````````````"$`````$ ````````4`1 !O`&,`=0!M`&4`;@!T`%,`=0!M
M`&T`80!R`'D`20!N`&8`;P!R`&T`80!T`&D`;P!N```````````````X``(!
M! ```/__________````````````````````````````````````````````
M````*0`````0`````````0!#`&\`;0!P`$\`8@!J````````````````````
M`````````````````````````````````````````````!(``@#_________
M______\`````````````````````````````````````````````````````
M<0``````````````````````````````````````````````````````````
M`````````````````````````````````````````/_______________P``
M````````````````````````````````````````````````````````````
M``$```#^____________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M____________________________________________________________
M________________________`0#^_P,*``#_____!@D"``````# ````````
M1A\```!-:6-R;W-O9G0@3V9F:6-E(%=O<F0@1&]C=6UE;G0`"@```$U35V]R
M9$1O8P`0````5V]R9"Y$;V-U;65N="XX`/0YLG$`````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
C````````````````````````````````````````````````
`
end
|
| Similar Threads | Posted | | Port 21 open during nmap scans of Domain Controllers & Member Servers | January 13, 2006, 5:57 pm |
| User permission to open Open files in Computer Management | May 16, 2008, 4:56 am |
| Re: Viewing Win2k3 Event logs remotely in a Win2k Domain | May 26, 2005, 5:50 pm |
| How do I restrict users from joing member servers to my domain | May 1, 2006, 6:02 am |
| Re: Fast User Switching in Domain Member mode / Authentication Tic | September 25, 2005, 11:28 pm |
| Possible conflicting info:Help file states that Offline Root CA canot be member server of domain? | January 23, 2007, 5:27 pm |
| cannot open remote registry when login with a domain user on vista or windows server 2008 | May 4, 2008, 9:44 am |
| Windows security hotfixes install order question | February 18, 2006, 9:58 pm |
| Permissions to Rename a Computer within an AD domain | February 16, 2006, 10:10 am |
| Computer in a Workgroup Access in a Domain Setting | June 21, 2005, 11:55 am |
|