rusthound_ce/enums/
acl.rs

1extern crate lazy_static;
2
3use lazy_static::lazy_static;
4use std::collections::HashMap;
5
6use crate::{enums::decode_guid_le, objects::{
7    common::{AceTemplate, LdapObject}, user::User
8}};
9use crate::enums::constants::*;
10use crate::enums::secdesc::*;
11use crate::enums::sid::{bin_to_string, sid_maker};
12use bitflags::bitflags;
13use log::{trace,error};
14
15/// This function allows to parse the attribut nTSecurityDescriptor from secdesc.rs
16/// <http://www.selfadsi.org/deep-inside/ad-security-descriptors.htm#SecurityDescriptorStructure>
17pub fn parse_ntsecuritydescriptor<T: LdapObject>(
18    object: &mut T,
19    nt: &Vec<u8>,
20    entry_type: String,
21    result_attrs: &HashMap<String, Vec<String>>,
22    result_bin: &HashMap<String, Vec<Vec<u8>>>,
23    domain: &String,
24) -> Vec<AceTemplate> {
25    let mut relations_dacl: Vec<AceTemplate> = Vec::new();
26    let relations_sacl: Vec<AceTemplate> = Vec::new();
27    let secdesc: SecurityDescriptor;
28    let mut owner_sid: String = "".to_string();
29
30    secdesc = SecurityDescriptor::parse(&nt).unwrap().1;
31    trace!("SECURITY-DESCRIPTOR: {:?}", secdesc);
32
33    // Check for ACL protected for Bloodhound4.1+
34    // IsACLProtected
35    let acl_is_protected = has_control(secdesc.control, SecurityDescriptorFlags::DACL_PROTECTED);
36    //trace!("{} acl_is_protected: {:?}",object.properties().name,acl_is_protected);
37
38    match entry_type.as_str()
39    {
40        "EnterpriseCA" | "RootCA" | "CertTemplate" => {
41            object.set_is_acl_protected(acl_is_protected);
42        }
43        _ => {}
44    }
45
46    if secdesc.offset_owner as usize != 0 
47    {
48        owner_sid = sid_maker(LdapSid::parse(&nt[secdesc.offset_owner as usize..]).unwrap().1,domain);
49        trace!("OWNER-SID: {:?}", owner_sid);
50    }
51
52    if secdesc.offset_group as usize != 0 
53    {
54        let group_sid = sid_maker(LdapSid::parse(&nt[secdesc.offset_group as usize..]).unwrap().1,domain);
55        trace!("GROUP-SID: {:?}", group_sid);
56    }
57
58    if secdesc.offset_sacl as usize != 0 
59    {
60        let res = Acl::parse(&nt[secdesc.offset_sacl as usize..]);
61        match res {
62            Ok(_res) => {
63                let sacl = _res.1;
64                trace!("SACL: {:?}", sacl);
65                //let aces = sacl.data;
66                /*ace_maker(
67                    object,
68                    domain,
69                    &mut relations_sacl,
70                    &owner_sid,
71                    aces,
72                    &entry_type,
73                    result_attrs,
74                    result_bin,
75                );*/
76                trace!("RESULT: {:?}", relations_sacl);
77            },
78            Err(err) => error!("Error. Reason: {err}")
79        }
80        return relations_sacl;
81    }
82
83    if secdesc.offset_dacl as usize != 0 
84    {
85        let res = Acl::parse(&nt[secdesc.offset_dacl as usize..]);    
86        match res {
87            Ok(_res) => {
88                let dacl = _res.1;
89                trace!("DACL: {:?}", dacl);
90                let aces = dacl.data;
91                ace_maker(
92                    object,
93                    domain,
94                    &mut relations_dacl,
95                    &owner_sid,
96                    aces,
97                    &entry_type,
98                    result_attrs,
99                    result_bin,
100                );
101                trace!("RESULT: {:?}", relations_dacl);
102            },
103            Err(err) => error!("Error. Reason: {err}")
104        }
105        return relations_dacl;
106    }
107    return relations_dacl;
108}
109
110/// Parse ace in acl and get correct values (thanks fox-it for bloodhound.py works)
111/// <https://github.com/fox-it/BloodHound.py/blob/master/bloodhound/enumeration/acls.py>
112fn ace_maker<T: LdapObject>(
113    object: &mut T,
114    domain: &String,
115    relations: &mut Vec<AceTemplate>,
116    osid: &String,
117    aces: Vec<Ace>,
118    entry_type: &String,
119    _result_attrs: &HashMap<String, Vec<String>>,
120    _result_bin: &HashMap<String, Vec<Vec<u8>>>,
121) {
122    // trace!("ACL/ACE FOR ENTRY: {:?}",object.properties().name);
123    // Ignore Creator Owner or Local System
124    let ignoresids = [
125        "S-1-3-0".to_string(),
126        "S-1-5-18".to_string(),
127        "S-1-5-10".to_string(),
128    ]; //, "S-1-1-0".to_string(), "S-1-5-10".to_string(), "S-1-5-11".to_string()];
129    if ignoresids.iter().any(|i| !osid.contains(i)) {
130        relations.push(AceTemplate::new(
131            osid.to_owned(),
132            "Base".to_string(),
133            "Owns".to_string(),
134            false,
135            "".to_string(),
136            )
137        );
138    }
139
140    for ace in aces {
141        if ace.ace_type != 0x05 && ace.ace_type != 0x00
142        {
143            trace!("Don't care about acetype {:?}", ace.ace_type);
144            continue
145        }
146
147        let sid = sid_maker(AceFormat::get_sid(ace.data.to_owned()).unwrap(), domain);
148        trace!("SID for this ACE: {}", &sid);
149
150        // Check if sid is in the ignored list
151        if ignoresids.iter().any(|i| sid.contains(i))
152        {
153            continue
154        }
155
156        // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L74
157        if ace.ace_type == 0x05 {
158            trace!("TYPE: 0x05");
159            // GUID : inherited_object_type
160            let inherited_object_type = match AceFormat::get_inherited_object_type(ace.data.to_owned()) 
161            {
162                Some(inherited_object_type) => inherited_object_type,
163                None => 0,
164            };
165            // GUID : object_type
166            let object_type = match AceFormat::get_object_type(ace.data.to_owned()) 
167            {
168                Some(object_type) => object_type,
169                None => 0,
170            };
171            // Get and check ace.ace_flags object content INHERITED_ACE and return boolean
172            let is_inherited = ace.ace_flags & INHERITED_ACE == INHERITED_ACE;
173
174            // Get the Flag for the ace.datas
175            let flags = AceFormat::get_flags(ace.data.to_owned()).unwrap().bits();
176
177            // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L77
178            if (ace.ace_flags & INHERITED_ACE != INHERITED_ACE)
179            && (ace.ace_flags & INHERIT_ONLY_ACE == INHERIT_ONLY_ACE) 
180            {
181                // ACE is set on this object, but only inherited, so not applicable to us
182                continue
183            }
184
185            // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L82
186            if (ace.ace_flags & INHERITED_ACE == INHERITED_ACE) 
187            && (&flags & ACE_INHERITED_OBJECT_TYPE_PRESENT == ACE_INHERITED_OBJECT_TYPE_PRESENT)
188            {
189                // ACE is set on this object, but only inherited, so not applicable to us
190                // need to verify if the ACE applies to this object type #todo
191                // Verify if the ACE applies to this object type
192                // if not ace_applies(ace_object.acedata.get_inherited_object_type().lower(), entrytype, objecttype_guid_map):
193                // continue
194                // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L85
195                let ace_guid = decode_guid_le(&inherited_object_type.to_le_bytes().to_vec()).to_lowercase();
196                if !(ace_applies(&ace_guid, &entry_type)) 
197                {
198                    continue
199                }
200            }
201
202            let mask = match AceFormat::get_mask(ace.data.to_owned()) {
203                Some(mask) => mask,
204                None => continue,
205            };
206            trace!("ACE MASK for ACETYPE 0x05: {:?}", mask);
207
208            let ace_guid = decode_guid_le(&object_type.to_le_bytes().to_vec()).to_lowercase();
209            trace!("ACE GUID for ACETYPE 0x05: {:?}", ace_guid);
210
211            // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L92
212            if ((MaskFlags::GENERIC_ALL.bits() | mask) == mask)
213            || ((MaskFlags::WRITE_DACL.bits() | mask) == mask)
214            || ((MaskFlags::WRITE_OWNER.bits() | mask) == mask)
215            || ((MaskFlags::GENERIC_WRITE.bits() | mask) == mask)
216            {
217                trace!("ACE MASK contain: GENERIC_ALL or WRITE_DACL or WRITE_OWNER or GENERIC_WRITE");
218                if (&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT) && !(ace_applies(&ace_guid, &entry_type))
219                {
220                    continue
221                }
222                if (MaskFlags::GENERIC_ALL.bits() | mask) == mask 
223                {
224                    if entry_type == "Computer" && (&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT)
225                    && object.get_haslaps().to_owned()
226                    {
227                        if &ace_guid == OBJECTTYPE_GUID_HASHMAP.get("ms-mcs-admpwd").unwrap_or(&String::from("GUID-NOT-FOUND")) {
228                            relations.push(AceTemplate::new(
229                                sid.to_owned(),
230                                "".to_string(),
231                                "ReadLAPSPassword".to_string(),
232                                is_inherited,
233                                "".to_string())
234                            );
235                        }
236                    } else {
237                        relations.push(AceTemplate::new(
238                            sid.to_owned(),
239                            "".to_string(),
240                            "GenericAll".to_string(),
241                            is_inherited,
242                            "".to_string())
243                        );
244                    }
245                    continue
246                }
247                if (MaskFlags::GENERIC_WRITE.bits() | mask) == mask {
248                    relations.push(AceTemplate::new(
249                        sid.to_owned(),
250                        "".to_string(),
251                        "GenericWrite".to_string(),
252                        is_inherited,
253                        "".to_string())
254                    );
255                    if (entry_type != "Domain") && (entry_type != "Computer") 
256                    {
257                        continue
258                    }
259                }
260                if (MaskFlags::WRITE_DACL.bits() | mask) == mask {
261                    relations.push(AceTemplate::new(
262                        sid.to_owned(),
263                        "".to_string(),
264                        "WriteDacl".to_string(),
265                        is_inherited,
266                        "".to_string())
267                    );
268                }
269                if (MaskFlags::WRITE_OWNER.bits() | mask) == mask {
270                    relations.push(AceTemplate::new(
271                        sid.to_owned(),
272                        "".to_string(),
273                        "WriteOwner".to_string(),
274                        is_inherited,
275                        "".to_string())
276                    );
277                }
278            }
279
280            // Property write privileges
281            // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L126
282            if (MaskFlags::ADS_RIGHT_DS_WRITE_PROP.bits() | mask) == mask {
283
284                if ((entry_type == "User") || (entry_type == "Group") || (entry_type == "Computer"))
285                && !(&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT)
286                {
287                    relations.push(AceTemplate::new(
288                        sid.to_owned(),
289                        "".to_string(),
290                        "GenericWrite".to_string(),
291                        is_inherited,
292                        "".to_string())
293                    );
294                }
295                if entry_type == "Group" && can_write_property(&ace, WRITE_MEMBER)
296                {
297                    relations.push(AceTemplate::new(
298                        sid.to_owned(),
299                        "".to_string(),
300                        "AddMember".to_string(),
301                        is_inherited,
302                        "".to_string())
303                    );
304                }
305                if entry_type == "Group" && can_write_property(&ace, USER_ACCOUNT_RESTRICTIONS_SET) && sid.ends_with("-512")
306                {
307                    relations.push(AceTemplate::new(
308                        sid.to_owned(),
309                        "".to_string(),
310                        "WriteAccountRestrictions".to_string(),
311                        is_inherited,
312                        "".to_string())
313                    );
314                }
315                if entry_type == "Computer" && can_write_property(&ace, ALLOWED_TO_ACT)
316                {
317                    relations.push(AceTemplate::new(
318                        sid.to_owned(),
319                        "".to_string(),
320                        "AddAllowedToAct".to_string(),
321                        is_inherited,
322                        "".to_string())
323                    );
324                }
325                if entry_type == "Computer" && can_write_property(&ace, USER_ACCOUNT_RESTRICTIONS_SET) && !&sid.ends_with("-512")
326                {
327                    relations.push(AceTemplate::new(
328                        sid.to_owned(),
329                        "".to_string(),
330                        "WriteAccountRestrictions".to_string(),
331                        is_inherited,
332                        "".to_string())
333                    );
334                }
335                if entry_type == "OU" && can_write_property(&ace, WRITE_GPLINK)
336                {
337                    relations.push(AceTemplate::new(
338                        sid.to_owned(),
339                        "".to_string(),
340                        "WriteGPLink".to_string(),
341                        is_inherited,
342                        "".to_string())
343                    );
344                }
345                // Since BloodHound 4.1
346                // AddKeyCredentialLink write access
347                if ((entry_type == "User") || (entry_type == "Computer"))
348                && (&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT)
349                && (&ace_guid == OBJECTTYPE_GUID_HASHMAP.get("ms-ds-key-credential-link").unwrap_or(&String::from("GUID-NOT-FOUND")))
350                {
351                    relations.push(AceTemplate::new(
352                        sid.to_owned(),
353                        "".to_string(),
354                        "AddKeyCredentialLink".to_string(),
355                        is_inherited,
356                        "".to_string())
357                    );
358                }
359                if ((entry_type == "User") || (entry_type == "Computer"))
360                && (&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT) 
361                && (&ace_guid == OBJECTTYPE_GUID_HASHMAP.get("service-principal-name").unwrap_or(&String::from("GUID-NOT-FOUND")))
362                {
363                    relations.push(AceTemplate::new(
364                        sid.to_owned(),
365                        "".to_string(),
366                        "WriteSPN".to_string(),
367                        is_inherited,
368                        "".to_string())
369                    );
370                }
371            } 
372            else if (MaskFlags::ADS_RIGHT_DS_SELF.bits() | mask) == mask 
373            {
374                if (entry_type == "Group") && (&ace_guid == WRITE_MEMBER)
375                {
376                    relations.push(AceTemplate::new(
377                        sid.to_owned(),
378                        "".to_string(),
379                        "AddSelf".to_string(),
380                        is_inherited,
381                        "".to_string())
382                    );
383                }
384            }
385
386            // Property read privileges
387            // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L138
388            if (MaskFlags::ADS_RIGHT_DS_READ_PROP.bits() | mask) == mask 
389            {
390                if (entry_type == "Computer")
391                && (&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT)
392                && object.get_haslaps().to_owned()
393                {
394                    if &ace_guid == OBJECTTYPE_GUID_HASHMAP.get("ms-mcs-admpwd").unwrap_or(&String::from("GUID-NOT-FOUND"))
395                    {
396                        relations.push(AceTemplate::new(
397                            sid.to_owned(),
398                            "".to_string(),
399                            "ReadLAPSPassword".to_string(),
400                            is_inherited,
401                            "".to_string())
402                        );
403                    }
404                }
405            }
406
407            // Extended rights
408            // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L146
409            if (MaskFlags::ADS_RIGHT_DS_CONTROL_ACCESS.bits() | mask) == mask 
410            {
411                // All Extended
412                if vec!["User","Domain"].contains(&entry_type.as_str()) && !(&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT)
413                {
414                    relations.push(AceTemplate::new(
415                        sid.to_owned(),
416                        "".to_string(),
417                        "AllExtendedRights".to_string(),
418                        is_inherited,
419                        "".to_string())
420                    );
421                }
422                if (entry_type == "Computer")
423                && !(&flags & ACE_OBJECT_TYPE_PRESENT == ACE_OBJECT_TYPE_PRESENT)
424                && false
425                {
426                    relations.push(AceTemplate::new(
427                        sid.to_owned(),
428                        "".to_string(),
429                        "AllExtendedRights".to_string(),
430                        is_inherited,
431                        "".to_string())
432                    );
433                }
434                if (entry_type == "Domain") && has_extended_right(&ace, GET_CHANGES) 
435                {
436                    relations.push(AceTemplate::new(
437                        sid.to_owned(),
438                        "".to_string(),
439                        "GetChanges".to_string(),
440                        is_inherited,
441                        "".to_string())
442                    );
443                }
444                if (entry_type == "Domain") && has_extended_right(&ace, GET_CHANGES_ALL) 
445                {
446                    relations.push(AceTemplate::new(
447                        sid.to_owned(),
448                        "".to_string(),
449                        "GetChangesAll".to_string(),
450                        is_inherited,
451                        "".to_string())
452                    );
453                }
454                if (entry_type == "Domain") && has_extended_right(&ace, GET_CHANGES_IN_FILTERED_SET)
455                {
456                    relations.push(AceTemplate::new(
457                        sid.to_owned(),
458                        "".to_string(),
459                        "GetChangesInFilteredSet".to_string(),
460                        is_inherited,
461                        "".to_string())
462                    );
463                }
464                if (entry_type == "User") && has_extended_right(&ace, USER_FORCE_CHANGE_PASSWORD)
465                {
466                    relations.push(AceTemplate::new(
467                        sid.to_owned(),
468                        "".to_string(),
469                        "ForceChangePassword".to_string(),
470                        is_inherited,
471                        "".to_string())
472                    );
473                }
474                if vec!["EnterpriseCA","RootCA","CertTemplate"].contains(&entry_type.as_str()) && has_extended_right(&ace, ENROLL)
475                {
476                    relations.push(AceTemplate::new(
477                        sid.to_owned(),
478                        "".to_string(),
479                        "Enroll".to_string(),
480                        is_inherited,
481                        "".to_string())
482                    );
483                }
484                if vec!["EnterpriseCA","RootCA","CertTemplate"].contains(&entry_type.as_str()) && has_extended_right(&ace, AUTO_ENROLL)
485                {
486                    relations.push(AceTemplate::new(
487                        sid.to_owned(),
488                        "".to_string(),
489                        "AutoEnroll".to_string(),
490                        is_inherited,
491                        "".to_string())
492                    );
493                }
494            }
495        }
496
497        // For AceType == 0x00
498        // https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L162
499        if ace.ace_type == 0x00 {
500            trace!("TYPE: 0x00");
501
502            let is_inherited = ace.ace_flags & INHERITED_ACE == INHERITED_ACE;
503
504            let mask = match AceFormat::get_mask(ace.data.to_owned()) {
505                Some(mask) => mask,
506                None => continue,
507            };
508            trace!("ACE MASK for ACETYPE 0x00: {:?}", mask);
509
510            if (MaskFlags::GENERIC_ALL.bits() | mask) == mask 
511            {
512                relations.push(AceTemplate::new(
513                    sid.to_owned(),
514                    "".to_string(),
515                    "GenericAll".to_string(),
516                    is_inherited,
517                    "".to_string())
518                );
519                continue
520            }
521            if (MaskFlags::ADS_RIGHT_DS_WRITE_PROP.bits() | mask) == mask 
522            {
523                relations.push(AceTemplate::new(
524                    sid.to_owned(),
525                    "".to_string(),
526                    "GenericWrite".to_string(),
527                    is_inherited,
528                    "".to_string())
529                );
530            }
531            if (MaskFlags::WRITE_OWNER.bits() | mask) == mask
532            {
533                relations.push(AceTemplate::new(
534                    sid.to_owned(),
535                    "".to_string(),
536                    "WriteOwner".to_string(),
537                    is_inherited,
538                    "".to_string())
539                );
540            }
541            // For users and domain, check extended rights
542            if ((entry_type == "User") || (entry_type == "Domain"))
543                && ((MaskFlags::ADS_RIGHT_DS_CONTROL_ACCESS.bits() | mask) == mask)
544            {
545                relations.push(AceTemplate::new(
546                    sid.to_owned(),
547                    "".to_string(),
548                    "AllExtendedRights".to_string(),
549                    is_inherited,
550                    "".to_string())
551                );
552            }
553            // For computer
554            if (entry_type == "Computer")
555                && ((MaskFlags::ADS_RIGHT_DS_CONTROL_ACCESS.bits() | mask) == mask)
556                && false
557            {
558                relations.push(AceTemplate::new(
559                    sid.to_owned(),
560                    "".to_string(),
561                    "AllExtendedRights".to_string(),
562                    is_inherited,
563                    "".to_string())
564                );
565            }
566            if (MaskFlags::WRITE_DACL.bits() | mask) == mask 
567            {
568                relations.push(AceTemplate::new(
569                    sid.to_owned(),
570                    "".to_string(),
571                    "WriteDacl".to_string(),
572                    is_inherited,
573                    "".to_string())
574                );
575            }
576            // Self add, also possible ad ACCESS_ALLOWED_ACE
577            // Thanks to bh-py: <https://github.com/dirkjanm/BloodHound.py/blob/d47e765fd3d0356e2e4b48d0d9a0841525194c64/bloodhound/enumeration/acls.py#L221C1-L225C97>
578            if (MaskFlags::ADS_RIGHT_DS_SELF.bits() & mask) == mask 
579                && sid != "S-1-5-32-544"
580                && !sid.ends_with("-512")
581                && !sid.ends_with("-519") {
582                
583                if entry_type == "Group" {
584                    relations.push(AceTemplate::new(
585                        sid.to_owned(),
586                        "".to_string(),
587                        "AddSelf".to_string(),
588                        is_inherited,
589                        "".to_string()
590                    ));
591                } else {
592                    relations.push(AceTemplate::new(
593                        sid.to_owned(),
594                        "".to_string(),
595                        "Self".to_string(),
596                        is_inherited,
597                        "".to_string()
598                    ));
599                }
600            }
601    
602            if vec!["EnterpriseCA","RootCA"].contains(&entry_type.as_str())
603            && (MaskFlags::MANAGE_CA.bits() | mask) == mask
604            {
605                relations.push(AceTemplate::new(
606                    sid.to_owned(),
607                    "".to_string(),
608                    "ManageCA".to_string(),
609                    is_inherited,
610                    "".to_string())
611                );
612            }
613            if vec!["EnterpriseCA","RootCA"].contains(&entry_type.as_str())
614            && (MaskFlags::MANAGE_CERTIFICATES.bits() | mask) == mask
615            {
616                relations.push(AceTemplate::new(
617                    sid.to_owned(),
618                    "".to_string(),
619                    "ManageCertificates".to_string(),
620                    is_inherited,
621                    "".to_string())
622                );
623            }
624        }
625    }
626}
627
628/// Checks if the access is sufficient to write to a specific property.
629/// <https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L193>
630fn can_write_property(
631    ace: &Ace,
632    bin_property: &str
633) -> bool {
634    // This can either be because we have the right ADS_RIGHT_DS_WRITE_PROP and the correct GUID
635    // is set in ObjectType, or if we have the ADS_RIGHT_DS_WRITE_PROP right and the ObjectType
636    // is empty, in which case we can write to any property. This is documented in
637    // [MS-ADTS] section 5.1.3.2: https://msdn.microsoft.com/en-us/library/cc223511.aspx
638
639    // If not found, then assume can't write. Should not happen, but missing some parsers.
640    let mask = match AceFormat::get_mask(ace.data.to_owned()) {
641        Some(mask) => mask,
642        None => return false,
643    };
644
645    if (MaskFlags::ADS_RIGHT_DS_WRITE_PROP.bits() | mask) != mask {
646        //if not ace_object.acedata.mask.has_priv(ACCESS_MASK.ADS_RIGHT_DS_WRITE_PROP):
647        return false;
648    }
649
650    // Get the Flag for the ace.datas
651    let flags = AceFormat::get_flags(ace.data.to_owned()).unwrap().bits();
652
653    if !((&flags & ACE_OBJECT_TYPE_PRESENT) == ACE_OBJECT_TYPE_PRESENT)
654    {
655        return true;
656    }
657
658    let typea = match AceFormat::get_object_type(ace.data.to_owned()) {
659        Some(typea) => typea,
660        None => 0,
661    };
662
663    trace!("AceFormat::get_object_type {}",decode_guid_le(&typea.to_le_bytes().to_vec()));
664    trace!("bin_property_guid_string {}", bin_property.to_uppercase());
665
666    if bin_to_string(&typea.to_le_bytes().to_vec()) == bin_property.to_uppercase()
667    {
668        trace!("MATCHED AceFormat::get_object_type with bin_property!");
669        return true;
670    }
671
672    return false;
673}
674
675/// Checks if the access is sufficient to control the right with the given GUID.
676/// <https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L211>
677fn has_extended_right(ace: &Ace, bin_right_guid: &str) -> bool {
678    // This can either be because we have the right ADS_RIGHT_DS_CONTROL_ACCESS and the correct GUID
679    // is set in ObjectType, or if we have the ADS_RIGHT_DS_CONTROL_ACCESS right and the ObjectType
680    // is empty, in which case we have all extended rights. This is documented in
681    // [MS-ADTS] section 5.1.3.2: https://msdn.microsoft.com/en-us/library/cc223511.aspx
682
683    let mask = match AceFormat::get_mask(ace.data.to_owned()) {
684        Some(mask) => mask,
685        None => return false,
686    };
687    if (MaskFlags::ADS_RIGHT_DS_CONTROL_ACCESS.bits() | mask) != mask {
688        // if not ace_object.acedata.mask.has_priv(ACCESS_MASK.ADS_RIGHT_DS_CONTROL_ACCESS):
689        trace!("has_extended_right : return false for ADS_RIGHT_DS_CONTROL_ACCESS != mask");
690        return false;
691    }
692    // Get the Flag for the ace.datas
693    let flags = AceFormat::get_flags(ace.data.to_owned()).unwrap().bits();
694
695    if !((&flags & ACE_OBJECT_TYPE_PRESENT) == ACE_OBJECT_TYPE_PRESENT) {
696        // if not ace_object.acedata.has_flag(ACCESS_ALLOWED_OBJECT_ACE.ACE_OBJECT_TYPE_PRESENT):
697        trace!("has_extended_right : return true for ACE_OBJECT_TYPE_PRESENT != ace_flags");
698        return true;
699    }
700
701    let typea = match AceFormat::get_object_type(ace.data.to_owned()) {
702        Some(typea) => typea,
703        None => 0,
704    };
705
706    trace!("AceFormat::get_object_type {}",decode_guid_le(&typea.to_le_bytes().to_vec()).to_uppercase());
707    trace!("bin_right_guid {}", bin_right_guid.to_uppercase());
708
709    if decode_guid_le(&typea.to_le_bytes().to_vec()) == bin_right_guid.to_uppercase() {
710        trace!("MATCHED AceFormat::get_object_type with bin_right_guid!");
711        return true;
712    }
713
714    return false;
715}
716
717/// Check if an ACE applies to this object.
718/// <https://github.com/fox-it/BloodHound.py/blob/645082e3462c93f31b571db945cde1fd7b837fb9/bloodhound/enumeration/acls.py#L229>
719fn ace_applies(ace_guid: &String, entry_type: &String) -> bool {
720    // Checks if an ACE applies to this object (based on object classes).
721    // Note that this function assumes you already verified that InheritedObjectType is set (via the flag).
722    // If this is not set, the ACE applies to all object types.
723    trace!("ACE GUID: {}", &ace_guid);
724    trace!("OBJECTTYPE_GUID_HASHMAP: {}",OBJECTTYPE_GUID_HASHMAP.get(entry_type).unwrap_or(&String::from("GUID-NOT-FOUND")));
725    return &ace_guid == &OBJECTTYPE_GUID_HASHMAP.get(entry_type).unwrap_or(&String::from("GUID-NOT-FOUND"))
726}
727
728/// Function to parse GMSA DACL which states which users (or groups) can read the password
729pub fn parse_gmsa(processed_aces: &[AceTemplate], user: &mut User) {
730    for ace in processed_aces {
731        if ace.right_name() == "Owner"  { // || ace.right_name() == "Owns" {
732            continue;
733        }
734        let mut ace = ace.clone();
735        *ace.right_name_mut() = "ReadGMSAPassword".to_string();
736        user.aces_mut().push(ace);
737    }
738}
739
740/// Function to get relations for CASecurity from LDAP attribute.
741pub fn parse_ca_security(
742    nt: &Vec<u8>,
743    hosting_computer_sid: &String,
744    domain: &String,
745) -> Vec<AceTemplate> {
746    // The CASecurity exist in the AD object DACL and in registry of the CA server.
747    // SharpHound prefer to use the values from registry as they are the ground truth.
748    // If changes are made on the CA server, registry and the AD object is updated.
749    // If changes are made directly on the AD object, the CA server registry is not updated.
750    // For RustHound, we need to use AD object DACL because we dont have RPC to read registry yet.
751    let blacklist_sid = vec![
752        // <https://learn.microsoft.com/fr-fr/windows-server/identity/ad-ds/manage/understand-security-identifiers>
753        "-544", // Administrators
754        "-519", // Enterprise Administrators
755        "-512", // Domain Admins
756    ];
757    let mut relations:  Vec<AceTemplate> = Vec::new();
758    // Hosting Computer local administrator group is the owner.
759    relations.push(AceTemplate::new(
760        hosting_computer_sid.to_owned() + "-544",
761        "LocalGroup".to_string(),
762        "Owns".to_string(),
763        false,
764        "".to_string())
765    );
766    let secdesc: SecurityDescriptor = SecurityDescriptor::parse(&nt).unwrap().1;
767    if secdesc.offset_dacl as usize != 0 
768    {
769        let res = Acl::parse(&nt[secdesc.offset_dacl as usize..]);    
770        match res {
771            Ok(_res) => {
772                let dacl = _res.1;
773                let aces = dacl.data;
774                for ace in aces {
775                    let sid = sid_maker(AceFormat::get_sid(ace.data.to_owned()).unwrap(), domain);
776                    let mask = match AceFormat::get_mask(ace.data.to_owned()) {
777                        Some(mask) => mask,
778                        None => continue,
779                    };
780                    if ace.ace_type == 0x05 {
781                        if has_extended_right(&ace, ENROLL)
782                        {
783                            relations.push(AceTemplate::new(
784                                sid.to_owned(),
785                                "".to_string(),
786                                "Enroll".to_string(),
787                                false,
788                                "".to_string())
789                            );
790                        }
791                    }
792                    if ace.ace_type == 0x00 {
793                        if (MaskFlags::MANAGE_CERTIFICATES.bits() | mask) == mask
794                        {
795                            // trace!("SID: {:?}\nMASK: ManageCertificates",&sid);
796                            if !blacklist_sid.iter().any(|blacklisted| sid.ends_with(blacklisted)) {
797                                // HostingComputer SID, need to add -544 for LocalGroup
798                                relations.push(AceTemplate::new(
799                                    sid.to_owned() + "-544",
800                                    "LocalGroup".to_string(),
801                                    "ManageCertificates".to_string(),
802                                    false,
803                                    "".to_string())
804                                );
805                            } else {
806                                relations.push(AceTemplate::new(
807                                    sid.to_owned(),
808                                    "Group".to_string(),
809                                    "ManageCertificates".to_string(),
810                                    false,
811                                    "".to_string())
812                                );
813                            }
814                        }
815                        if (MaskFlags::MANAGE_CA.bits() | mask) == mask
816                        {
817                            // trace!("SID: {:?}\nMASK: ManageCA",&sid);
818                            if !blacklist_sid.iter().any(|blacklisted| sid.ends_with(blacklisted)) {
819                                // HostingComputer SID, need to add -544 for LocalGroup
820                                relations.push(AceTemplate::new(
821                                    sid.to_owned() + "-544",
822                                    "LocalGroup".to_string(),
823                                    "ManageCA".to_string(),
824                                    false,
825                                    "".to_string())
826                                );
827                            } else {
828                                relations.push(AceTemplate::new(
829                                    sid.to_owned(),
830                                    "Group".to_string(),
831                                    "ManageCA".to_string(),
832                                    false,
833                                    "".to_string())
834                                );
835                            }
836                        }
837                    }
838                }
839            },
840            Err(err) => { error!("Error. Reason: {err}") }
841        }
842    }
843    return relations
844}
845
846// Access Mask contain value?
847bitflags! {
848    pub struct MaskFlags: u32 {
849        // These constants are only used when WRITING
850        // and are then translated into their actual rights
851        const SET_GENERIC_READ        = 0x80000000;
852        const SET_GENERIC_WRITE       = 0x04000000;
853        const SET_GENERIC_EXECUTE     = 0x20000000;
854        const SET_GENERIC_ALL         = 0x10000000;
855        // When reading, these constants are actually represented by
856        // the following for Active Directory specific Access Masks
857        // Reference: https://docs.microsoft.com/en-us/dotnet/api/system.directoryservices.activedirectoryrights?view=netframework-4.7.2
858        const GENERIC_READ            = 0x00020094;
859        const GENERIC_WRITE           = 0x00020028;
860        const GENERIC_EXECUTE         = 0x00020004;
861        const GENERIC_ALL             = 0x000F01FF;
862
863        // These are actual rights (for all ACE types)
864        const MAXIMUM_ALLOWED         = 0x02000000;
865        const ACCESS_SYSTEM_SECURITY  = 0x01000000;
866        const SYNCHRONIZE             = 0x00100000;
867        const WRITE_OWNER             = 0x00080000;
868        const WRITE_DACL              = 0x00040000;
869        const READ_CONTROL            = 0x00020000;
870        const DELETE                  = 0x00010000;
871
872        // ACE type specific mask constants (for ACCESS_ALLOWED_OBJECT_ACE)
873        // Note that while not documented, these also seem valid
874        // for ACCESS_ALLOWED_ACE types
875        const ADS_RIGHT_DS_CONTROL_ACCESS         = 0x00000100;
876        const ADS_RIGHT_DS_CREATE_CHILD           = 0x00000001;
877        const ADS_RIGHT_DS_DELETE_CHILD           = 0x00000002;
878        const ADS_RIGHT_DS_READ_PROP              = 0x00000010;
879        const ADS_RIGHT_DS_WRITE_PROP             = 0x00000020;
880        const ADS_RIGHT_DS_SELF                   = 0x00000008;
881        
882        // ADCS
883        const MANAGE_CA = 1;
884        const MANAGE_CERTIFICATES = 2;
885    }
886}
887
888bitflags! {
889    struct SecurityDescriptorFlags: u16 {
890        const SELF_RELATIVE = 0b1000000000000000;
891        const RM_CONTROL_VALID = 0b0100000000000000;
892        const SACL_PROTECTED = 0b0010000000000000;
893        const DACL_PROTECTED = 0b0001000000000000;
894        const SACL_INHERITED = 0b0000100000000000;
895        const DACL_INHERITED = 0b0000010000000000;
896        const SACL_COMPUTED_INHERITANCE_REQUIRED = 0b0000001000000000;
897        const DACL_COMPUTED_INHERITANCE_REQUIRED = 0b0000000100000000;
898        const SERVER_SECURITY = 0b0000000010000000;
899        const DACL_TRUSTED = 0b0000000001000000;
900        const SACL_DEFAULT = 0b0000000000100000;
901        const SACL_PRESENT = 0b0000000000010000;
902        const DACL_DEFAULT = 0b0000000000001000;
903        const DACL_PRESENT = 0b0000000000000100;
904        const GROUP_DEFAULT = 0b0000000000000010;
905        const OWNER_DEFAULT = 0b0000000000000001;
906    }
907}
908
909fn has_control(secdesc_control: u16, flag: SecurityDescriptorFlags) -> bool {
910    let flags = SecurityDescriptorFlags::from_bits(secdesc_control).unwrap();
911    flags.contains(flag)
912}
913
914// OBJECTTYPE_GUID_HASHMAP with all know guid
915lazy_static! {
916    static ref OBJECTTYPE_GUID_HASHMAP: HashMap<String, String> = {
917        let values = [
918            ("ms-mcs-admpwdexpirationtime", "2bb09a7b-9acd-4082-9b51-104bb7f6a01e"),
919            ("ms-mcs-admpwd", "a740f691-b206-4baa-9ab1-559f8985523f"),
920            ("ms-ds-key-credential-link", "5b47d60f-6090-40b2-9f37-2a4de88f3063"),
921            ("service-principal-name", "f3a64788-5306-11d1-a9c5-0000f80367c1"),
922            ("ms-ds-sitename", "98a7f36d-3595-448a-9e6f-6b8965baed9c"),
923            ("frs-staging-path", "1be8f175-a9ff-11d0-afe2-00c04fd930c9"),
924            ("account-name-history", "031952ec-3b72-11d2-90cc-00c04fd91ab1"),
925            ("ms-ts-property01", "faaea977-9655-49d7-853d-f27bb7aaca0f"),
926            ("registered-address", "bf967a10-0de6-11d0-a285-00aa003049e2"),
927            ("msi-script-path", "bf967937-0de6-11d0-a285-00aa003049e2"),
928            ("ms-ds-promotion-settings", "c881b4e2-43c0-4ebe-b9bb-5250aa9b434c"),
929            ("frs-service-command-status", "2a132582-9373-11d1-aebc-0000f80367c1"),
930            ("attribute-schema", "bf967a80-0de6-11d0-a285-00aa003049e2"),
931            ("ntfrs-member", "2a132586-9373-11d1-aebc-0000f80367c1"),
932            ("configuration", "bf967a87-0de6-11d0-a285-00aa003049e2"),
933            ("ms-ts-secondary-desktop-bl", "34b107af-a00a-455a-b139-dd1a1b12d8af"),
934            ("rdn-att-id", "bf967a0f-0de6-11d0-a285-00aa003049e2"),
935            ("msi-script-name", "96a7dd62-9118-11d1-aebc-0000f80367c1"),
936            ("ms-ds-hab-seniority-index", "def449f1-fd3b-4045-98cf-d9658da788b5"),
937            ("frs-service-command", "ddac0cee-af8f-11d0-afeb-00c04fd930c9"),
938            ("account-expires", "bf967915-0de6-11d0-a285-00aa003049e2"),
939            ("ms-ts-primary-desktop-bl", "9daadc18-40d1-4ed1-a2bf-6b9bf47d3daa"),
940            ("rdn", "bf967a0e-0de6-11d0-a285-00aa003049e2"),
941            ("msi-script", "d9e18313-8939-11d1-aebc-0000f80367c1"),
942            ("ms-ds-phonetic-display-name", "e21a94e4-2d66-4ce5-b30d-0ef87a776ff0"),
943            ("frs-root-security", "5245801f-ca6a-11d0-afff-0000f80367c1"),
944            ("subschema", "5a8b3261-c38d-11d1-bbc9-0080c76670c0"),
945            ("ntds-site-settings", "19195a5d-6da0-11d0-afd3-00c04fd930c9"),
946            ("computer", "bf967a86-0de6-11d0-a285-00aa003049e2"),
947            ("ms-ts-secondary-desktops", "f63aa29a-bb31-48e1-bfab-0a6c5a1d39c2"),
948            ("range-upper", "bf967a0d-0de6-11d0-a285-00aa003049e2"),
949            ("msi-file-list", "7bfdcb7d-4807-11d1-a9c3-0000f80367c1"),
950            ("ms-ds-phonetic-company-name", "5bd5208d-e5f4-46ae-a514-543bc9c47659"),
951            ("frs-root-path", "1be8f174-a9ff-11d0-afe2-00c04fd930c9"),
952            ("ms-ts-primary-desktop", "29259694-09e4-4237-9f72-9306ebe63ab2"),
953            ("range-lower", "bf967a0c-0de6-11d0-a285-00aa003049e2"),
954            ("mscope-id", "963d2751-48be-11d1-a9c3-0000f80367c1"),
955            ("ms-ds-phonetic-department", "6cd53daf-003e-49e7-a702-6fa896e7a6ef"),
956            ("frs-replica-set-type", "26d9736b-6070-11d1-a9c6-0000f80367c1"),
957            ("dmd", "bf967a8f-0de6-11d0-a285-00aa003049e2"),
958            ("ntds-service", "19195a5f-6da0-11d0-afd3-00c04fd930c9"),
959            ("com-connection-point", "bf967a85-0de6-11d0-a285-00aa003049e2"),
960            ("ms-ts-endpoint-plugin", "3c08b569-801f-4158-b17b-e363d6ae696a"),
961            ("querypoint", "7bfdcb86-4807-11d1-a9c3-0000f80367c1"),
962            ("ms-wmi-targettype", "ca2a281e-262b-4ff7-b419-bc123352a4e9"),
963            ("ms-ds-phonetic-last-name", "f217e4ec-0836-4b90-88af-2f5d4bbda2bc"),
964            ("frs-replica-set-guid", "5245801a-ca6a-11d0-afff-0000f80367c1"),
965            ("ms-ts-endpoint-type", "377ade80-e2d8-46c5-9bcd-6d9dec93b35e"),
966            ("query-policy-object", "e1aea403-cd5b-11d0-afff-0000f80367c1"),
967            ("ms-wmi-targetpath", "5006a79a-6bfe-4561-9f52-13cf4dd3e560"),
968            ("ms-ds-phonetic-first-name", "4b1cba4e-302f-4134-ac7c-f01f6c797843"),
969            ("frs-primary-member", "2a132581-9373-11d1-aebc-0000f80367c1"),
970            ("ntds-dsa", "f0f8ffab-1191-11d0-a060-00aa006c33ed"),
971            ("ntds-dsa-ro", "85d16ec1-0791-4bc8-8ab3-70980602ff8c"),
972            ("class-store", "bf967a84-0de6-11d0-a285-00aa003049e2"),
973            ("ms-ts-endpoint-data", "40e1c407-4344-40f3-ab43-3625a34a63a2"),
974            ("query-policy-bl", "e1aea404-cd5b-11d0-afff-0000f80367c1"),
975            ("ms-wmi-targetobject", "c44f67a5-7de5-4a1f-92d9-662b57364b77"),
976            ("ms-ds-non-members-bl", "2a8c68fc-3a7a-4e87-8720-fe77c51cbe74"),
977            ("frs-partner-auth-level", "2a132580-9373-11d1-aebc-0000f80367c1"),
978            ("ms-ts-initial-program", "9201ac6f-1d69-4dfb-802e-d95510109599"),
979            ("query-filter", "cbf70a26-7e78-11d2-9921-0000f87a57d4"),
980            ("ms-wmi-targetnamespace", "1c4ab61f-3420-44e5-849d-8b5dbf60feb7"),
981            ("ms-ds-non-members", "cafcb1de-f23c-46b5-adf7-1e64957bd5db"),
982            ("frs-member-reference-bl", "2a13257f-9373-11d1-aebc-0000f80367c1"),
983            ("organization", "bf967aa3-0de6-11d0-a285-00aa003049e2"),
984            ("ms-ts-work-directory", "a744f666-3d3c-4cc8-834b-9d4f6f687b8b"),
985            ("quality-of-service", "80a67e4e-9f22-11d0-afdd-00c04fd930c9"),
986            ("ms-wmi-targetclass", "95b6d8d6-c9e8-4661-a2bc-6a5cabc04c62"),
987            ("ms-ds-nc-type", "5a2eacd7-cc2b-48cf-9d9a-b6f1a0024de9"),
988            ("frs-member-reference", "2a13257e-9373-11d1-aebc-0000f80367c1"),
989            ("ntds-connection", "19195a60-6da0-11d0-afd3-00c04fd930c9"),
990            ("class-registration", "bf967a82-0de6-11d0-a285-00aa003049e2"),
991            ("ms-ts-default-to-main-printer", "c0ffe2bd-cacf-4dc7-88d5-61e9e95766f6"),
992            ("pwd-properties", "bf967a0b-0de6-11d0-a285-00aa003049e2"),
993            ("ms-wmi-stringvalidvalues", "37609d31-a2bf-4b58-8f53-2b64e57a076d"),
994            ("ms-ds-members-for-az-role-bl", "ececcd20-a7e0-4688-9ccf-02ece5e287f5"),
995            ("frs-level-limit", "5245801e-ca6a-11d0-afff-0000f80367c1"),
996            ("ms-ts-connect-printer-drives", "8ce6a937-871b-4c92-b285-d99d4036681c"),
997            ("pwd-last-set", "bf967a0a-0de6-11d0-a285-00aa003049e2"),
998            ("ms-wmi-stringdefault", "152e42b6-37c5-4f55-ab48-1606384a9aea"),
999            ("ms-ds-members-for-az-role", "cbf7e6cd-85a4-4314-8939-8bfe80597835"),
1000            ("frs-flags", "2a13257d-9373-11d1-aebc-0000f80367c1"),
1001            ("msmq-site-link", "9a0dc346-c100-11d1-bbc5-0080c76670c0"),
1002            ("certification-authority", "3fdfee50-47f4-11d1-a9c3-0000f80367c1"),
1003            ("ms-ts-connect-client-drives", "23572aaf-29dd-44ea-b0fa-7e8438b9a4a3"),
1004            ("pwd-history-length", "bf967a09-0de6-11d0-a285-00aa003049e2"),
1005            ("ms-wmi-sourceorganization", "34f7ed6c-615d-418d-aa00-549a7d7be03e"),
1006            ("ms-ds-max-values", "d1e169a4-ebe9-49bf-8fcb-8aef3874592d"),
1007            ("frs-file-filter", "1be8f170-a9ff-11d0-afe2-00c04fd930c9"),
1008            ("ms-ts-broken-connection-action", "1cf41bba-5604-463e-94d6-1a1287b72ca3"),
1009            ("purported-search", "b4b54e50-943a-11d1-aebd-0000f80367c1"),
1010            ("ms-wmi-scopeguid", "87b78d51-405f-4b7f-80ed-2bd28786f48d"),
1011            ("ms-ds-password-settings-precedence", "456374ac-1f0a-4617-93cf-bc55a7c9d341"),
1012            ("frs-fault-condition", "1be8f178-a9ff-11d0-afe2-00c04fd930c9"),
1013            ("msmq-settings", "9a0dc347-c100-11d1-bbc5-0080c76670c0"),
1014            ("category-registration", "7d6c0e9d-7e20-11d0-afd6-00c04fd930c9"),
1015            ("ms-ts-reconnection-action", "366ed7ca-3e18-4c7f-abae-351a01e4b4f7"),
1016            ("public-key-policy", "80a67e28-9f22-11d0-afdd-00c04fd930c9"),
1017            ("ms-wmi-querylanguage", "7d3cfa98-c17b-4254-8bd7-4de9b932a345"),
1018            ("ms-ds-resultant-pso", "b77ea093-88d0-4780-9a98-911f8e8b1dca"),
1019            ("frs-extensions", "52458020-ca6a-11d0-afff-0000f80367c1"),
1020            ("msmq-foreign", "9a0dc32f-c100-11d1-bbc5-0080c76670c0"),
1021            ("ms-ds-quota-amount", "fbb9a00d-3a8c-4233-9cf9-7189264903a1"),
1022            ("gp-link", "f30e3bbe-9ff0-11d1-b603-0000f80367c1"),
1023            ("acs-max-duration-per-flow", "7f56127e-5301-11d1-a9c5-0000f80367c1"),
1024            ("ms-tsls-property01", "87e53590-971d-4a52-955b-4794d15a84ae"),
1025            ("retired-repl-dsa-signatures", "7bfdcb7f-4807-11d1-a9c3-0000f80367c1"),
1026            ("msmq-encrypt-key", "9a0dc331-c100-11d1-bbc5-0080c76670c0"),
1027            ("ms-ds-principal-name", "564e9325-d057-c143-9e3b-4f9e5ef46f93"),
1028            ("governs-id", "bf96797d-0de6-11d0-a285-00aa003049e2"),
1029            ("acs-max-aggregate-peak-rate-per-user", "f072230c-aef5-11d1-bdcf-0000f80367c1"),
1030            ("organizational-unit", "bf967aa5-0de6-11d0-a285-00aa003049e2"),
1031            ("cross-ref", "bf967a8d-0de6-11d0-a285-00aa003049e2"),
1032            ("ms-ts-managingls4", "f7a3b6a0-2107-4140-b306-75cb521731e5"),
1033            ("required-categories", "7d6c0e93-7e20-11d0-afd6-00c04fd930c9"),
1034            ("msmq-ds-services", "2df90d78-009f-11d2-aa4c-00c04fd7d83a"),
1035            ("ms-ds-other-settings", "79d2f34c-9d7d-42bb-838f-866b3e4400e2"),
1036            ("global-address-list", "f754c748-06f4-11d2-aa53-00c04fd7d83a"),
1037            ("acs-identity-name", "dab029b6-ddf7-11d1-90a5-00c04fd91ab1"),
1038            ("ms-ts-managingls3", "fad5dcc1-2130-4c87-a118-75322cd67050"),
1039            ("reps-to", "bf967a1e-0de6-11d0-a285-00aa003049e2"),
1040            ("msmq-ds-service", "2df90d82-009f-11d2-aa4c-00c04fd7d83a"),
1041            ("ms-ds-operations-for-az-task-bl", "a637d211-5739-4ed1-89b2-88974548bc59"),
1042            ("given-name", "f0f8ff8e-1191-11d0-a060-00aa006c33ed"),
1043            ("acs-event-log-level", "7f561286-5301-11d1-a9c5-0000f80367c1"),
1044            ("organizational-role", "a8df74bf-c5ea-11d1-bbcb-0080c76670c0"),
1045            ("crl-distribution-point", "167758ca-47f3-11d1-a9c3-0000f80367c1"),
1046            ("ms-ts-managingls2", "349f0757-51bd-4fc8-9d66-3eceea8a25be"),
1047            ("reps-from", "bf967a1d-0de6-11d0-a285-00aa003049e2"),
1048            ("msmq-digests-mig", "0f71d8e0-da3b-11d1-90a5-00c04fd91ab1"),
1049            ("ms-ds-operations-for-az-task", "1aacb436-2e9d-44a9-9298-ce4debeb6ebf"),
1050            ("generation-qualifier", "16775804-47f3-11d1-a9c3-0000f80367c1"),
1051            ("acs-enable-rsvp-message-logging", "7f561285-5301-11d1-a9c5-0000f80367c1"),
1052            ("ms-ts-managingls", "f3bcc547-85b0-432c-9ac0-304506bf2c83"),
1053            ("repl-interval", "45ba9d1a-56fa-11d2-90d0-00c04fd91ab1"),
1054            ("msmq-digests", "9a0dc33c-c100-11d1-bbc5-0080c76670c0"),
1055            ("ms-ds-operations-for-az-role-bl", "f85b6228-3734-4525-b6b7-3f3bb220902c"),
1056            ("generated-connection", "bf96797a-0de6-11d0-a285-00aa003049e2"),
1057            ("acs-enable-rsvp-accounting", "f072230e-aef5-11d1-bdcf-0000f80367c1"),
1058            ("organizational-person", "bf967aa4-0de6-11d0-a285-00aa003049e2"),
1059            ("country", "bf967a8c-0de6-11d0-a285-00aa003049e2"),
1060            ("ms-ts-licenseversion4", "70ca5d97-2304-490a-8a27-52678c8d2095"),
1061            ("reports", "bf967a1c-0de6-11d0-a285-00aa003049e2"),
1062            ("msmq-dependent-client-services", "2df90d76-009f-11d2-aa4c-00c04fd7d83a"),
1063            ("ms-ds-operations-for-az-role", "93f701be-fa4c-43b6-bc2f-4dbea718ffab"),
1064            ("garbage-coll-period", "5fd424a1-1262-11d0-a060-00aa006c33ed"),
1065            ("acs-enable-acs-service", "7f561287-5301-11d1-a9c5-0000f80367c1"),
1066            ("ms-ts-licenseversion3", "f8ba8f81-4cab-4973-a3c8-3a6da62a5e31"),
1067            ("replica-source", "bf967a18-0de6-11d0-a285-00aa003049e2"),
1068            ("msmq-dependent-client-service", "2df90d83-009f-11d2-aa4c-00c04fd7d83a"),
1069            ("ms-ds-object-reference-bl", "2b702515-c1f7-4b3b-b148-c0e4c6ceecb4"),
1070            ("fsmo-role-owner", "66171887-8f3c-11d0-afda-00c04fd930c9"),
1071            ("acs-dsbm-refresh", "1cb3559f-56d0-11d1-a9c6-0000f80367c1"),
1072            ("ntfrs-subscriptions", "2a132587-9373-11d1-aebc-0000f80367c1"),
1073            ("control-access-right", "8297931e-86d3-11d0-afda-00c04fd930c9"),
1074            ("ms-ts-licenseversion2", "4b0df103-8d97-45d9-ad69-85c3080ba4e7"),
1075            ("repl-uptodate-vector", "bf967a16-0de6-11d0-a285-00aa003049e2"),
1076            ("msmq-csp-name", "9a0dc334-c100-11d1-bbc5-0080c76670c0"),
1077            ("ms-ds-object-reference", "638ec2e8-22e7-409c-85d2-11b21bee72de"),
1078            ("frs-working-path", "1be8f173-a9ff-11d0-afe2-00c04fd930c9"),
1079            ("acs-dsbm-priority", "1cb3559e-56d0-11d1-a9c6-0000f80367c1"),
1080            ("ms-ts-licenseversion", "0ae94a89-372f-4df2-ae8a-c64a2bc47278"),
1081            ("repl-topology-stay-of-execution", "7bfdcb83-4807-11d1-a9c3-0000f80367c1"),
1082            ("msmq-cost", "9a0dc33a-c100-11d1-bbc5-0080c76670c0"),
1083            ("ms-ds-machine-account-quota", "d064fb68-1480-11d3-91c1-0000f87a57d4"),
1084            ("frs-version-guid", "26d9736c-6070-11d1-a9c6-0000f80367c1"),
1085            ("acs-dsbm-deadtime", "1cb355a0-56d0-11d1-a9c6-0000f80367c1"),
1086            ("ntfrs-subscriber", "2a132588-9373-11d1-aebc-0000f80367c1"),
1087            ("container", "bf967a8b-0de6-11d0-a285-00aa003049e2"),
1088            ("ms-ts-expiredate4", "5e11dc43-204a-4faf-a008-6863621c6f5f"),
1089            ("repl-property-meta-data", "281416c0-1968-11d0-a28f-00aa003049e2"),
1090            ("msmq-computer-type-ex", "18120de8-f4c4-4341-bd95-32eb5bcf7c80"),
1091            ("ms-ds-top-quota-usage", "7b7cce4f-f1f5-4bb6-b7eb-23504af19e75"),
1092            ("frs-version", "2a132585-9373-11d1-aebc-0000f80367c1"),
1093            ("acs-direction", "7f56127a-5301-11d1-a9c5-0000f80367c1"),
1094            ("ms-ts-expiredate3", "41bc7f04-be72-4930-bd10-1f3439412387"),
1095            ("remote-storage-guid", "2a39c5b0-8960-11d1-aebc-0000f80367c1"),
1096            ("msmq-computer-type", "9a0dc32e-c100-11d1-bbc5-0080c76670c0"),
1097            ("ms-ds-tombstone-quota-factor", "461744d7-f3b6-45ba-8753-fb9552a5df32"),
1098            ("frs-update-timeout", "1be8f172-a9ff-11d0-afe2-00c04fd930c9"),
1099            ("acs-cache-timeout", "1cb355a1-56d0-11d1-a9c6-0000f80367c1"),
1100            ("ntfrs-settings", "f780acc2-56f0-11d1-a9c6-0000f80367c1"),
1101            ("person", "bf967aa7-0de6-11d0-a285-00aa003049e2"),
1102            ("ms-ts-expiredate2", "54dfcf71-bc3f-4f0b-9d5a-4b2476bb8925"),
1103            ("remote-source-type", "bf967a15-0de6-11d0-a285-00aa003049e2"),
1104            ("msmq-base-priority", "9a0dc323-c100-11d1-bbc5-0080c76670c0"),
1105            ("ms-ds-trust-forest-trust-info", "29cc866e-49d3-4969-942e-1dbc0925d183"),
1106            ("frs-time-last-config-change", "2a132584-9373-11d1-aebc-0000f80367c1"),
1107            ("acs-allocable-rsvp-bandwidth", "7f561283-5301-11d1-a9c5-0000f80367c1"),
1108            ("contact", "5cb41ed0-0e4c-11d0-a286-00aa003049e2"),
1109            ("ms-ts-expiredate", "70004ef5-25c3-446a-97c8-996ae8566776"),
1110            ("remote-source", "bf967a14-0de6-11d0-a285-00aa003049e2"),
1111            ("msmq-authenticate", "9a0dc326-c100-11d1-bbc5-0080c76670c0"),
1112            ("ms-ds-supported-encryption-types", "20119867-1d04-4ab7-9371-cfc3d5df0afd"),
1113            ("frs-time-last-command", "2a132583-9373-11d1-aebc-0000f80367c1"),
1114            ("acs-aggregate-token-rate-per-user", "7f56127d-5301-11d1-a9c5-0000f80367c1"),
1115            ("ntfrs-replica-set", "5245803a-ca6a-11d0-afff-0000f80367c1"),
1116            ("connection-point", "5cb41ecf-0e4c-11d0-a286-00aa003049e2"),
1117            ("ms-ts-property02", "3586f6ac-51b7-4978-ab42-f936463198e7"),
1118            ("remote-server-name", "bf967a12-0de6-11d0-a285-00aa003049e2"),
1119            ("msi-script-size", "96a7dd63-9118-11d1-aebc-0000f80367c1"),
1120            ("ms-dfs-link-security-descriptor-v2", "57cf87f7-3426-4841-b322-02b3b6e9eba8"),
1121            ("roomnumber", "81d7f8c2-e327-4a0d-91c6-b42d4009115f"),
1122            ("msmq-os-type", "9a0dc330-c100-11d1-bbc5-0080c76670c0"),
1123            ("ms-ds-repl-attribute-meta-data", "d7c53242-724e-4c39-9d4c-2df8c9d66c7a"),
1124            ("help-data16", "5fd424a7-1262-11d0-a060-00aa006c33ed"),
1125            ("acs-non-reserved-min-policed-size", "b6873917-3b90-11d2-90cc-00c04fd91ab1"),
1126            ("query-policy", "83cc7075-cca7-11d0-afff-0000f80367c1"),
1127            ("dns-node", "e0fa1e8c-9b45-11d0-afdd-00c04fd930c9"),
1128            ("ms-dfs-link-path-v2", "86b021f6-10ab-40a2-a252-1dc0cc3be6a9"),
1129            ("role-occupant", "a8df7465-c5ea-11d1-bbcb-0080c76670c0"),
1130            ("msmq-nt4-stub", "6f914be6-d57e-11d1-90a2-00c04fd91ab1"),
1131            ("ms-ds-preferred-gc-site", "d921b50a-0ab2-42cd-87f6-09cf83a91854"),
1132            ("has-partial-replica-ncs", "bf967981-0de6-11d0-a285-00aa003049e2"),
1133            ("acs-non-reserved-max-sdu-size", "aec2cfe3-3b90-11d2-90cc-00c04fd91ab1"),
1134            ("ms-dfs-link-identity-guid-v2", "edb027f3-5726-4dee-8d4e-dbf07e1ad1f1"),
1135            ("rights-guid", "8297931c-86d3-11d0-afda-00c04fd930c9"),
1136            ("msmq-nt4-flags", "eb38a158-d57f-11d1-90a2-00c04fd91ab1"),
1137            ("ms-ds-per-user-trust-tombstones-quota", "8b70a6c6-50f9-4fa3-a71e-1ce03040449b"),
1138            ("has-master-ncs", "bf967982-0de6-11d0-a285-00aa003049e2"),
1139            ("acs-minimum-policed-size", "8d0e7195-3b90-11d2-90cc-00c04fd91ab1"),
1140            ("print-queue", "bf967aa8-0de6-11d0-a285-00aa003049e2"),
1141            ("ms-dfs-last-modified-v2", "3c095e8a-314e-465b-83f5-ab8277bcf29b"),
1142            ("rid-used-pool", "6617188b-8f3c-11d0-afda-00c04fd930c9"),
1143            ("msmq-name-style", "9a0dc333-c100-11d1-bbc5-0080c76670c0"),
1144            ("ms-ds-per-user-trust-quota", "d161adf0-ca24-4993-a3aa-8b2c981302e8"),
1145            ("groups-to-ignore", "eea65904-8ac6-11d0-afda-00c04fd930c9"),
1146            ("acs-minimum-latency", "9517fefb-3b90-11d2-90cc-00c04fd91ab1"),
1147            ("display-template", "5fd4250c-1262-11d0-a060-00aa006c33ed"),
1148            ("ms-dfs-generation-guid-v2", "35b8b3d9-c58f-43d6-930e-5040f2f1a781"),
1149            ("rid-set-references", "7bfdcb7b-4807-11d1-a9c3-0000f80367c1"),
1150            ("msmq-multicast-address", "1d2f4412-f10d-4337-9b48-6e5b125cd265"),
1151            ("ms-ds-non-security-group-extra-classes", "2de144fc-1f52-486f-bdf4-16fcc3084e54"),
1152            ("group-type", "9a9a021e-4a5b-11d1-a9c3-0000f80367c1"),
1153            ("acs-minimum-delay-variation", "9c65329b-3b90-11d2-90cc-00c04fd91ab1"),
1154            ("ms-pki-private-key-recovery-agent", "1562a632-44b9-4a7e-a2d3-e426c96a3acc"),
1155            ("ms-dfs-comment-v2", "b786cec9-61fd-4523-b2c1-5ceb3860bb32"),
1156            ("rid-previous-allocation-pool", "6617188a-8f3c-11d0-afda-00c04fd930c9"),
1157            ("msmq-migrated", "9a0dc33f-c100-11d1-bbc5-0080c76670c0"),
1158            ("ms-ds-nc-ro-replica-locations-bl", "f547511c-5b2a-44cc-8358-992a88258164"),
1159            ("group-priority", "eea65905-8ac6-11d0-afda-00c04fd930c9"),
1160            ("acs-maximum-sdu-size", "87a2d8f9-3b90-11d2-90cc-00c04fd91ab1"),
1161            ("display-specifier", "e0fa1e8a-9b45-11d0-afdd-00c04fd930c9"),
1162            ("ms-dfsr-stagingcleanuptriggerinpercent", "d64b9c23-e1fa-467b-b317-6964d744d633"),
1163            ("rid-next-rid", "6617188c-8f3c-11d0-afda-00c04fd930c9"),
1164            ("msmq-long-lived", "9a0dc335-c100-11d1-bbc5-0080c76670c0"),
1165            ("ms-ds-nc-ro-replica-locations", "3df793df-9858-4417-a701-735a1ecebf74"),
1166            ("group-membership-sam", "bf967980-0de6-11d0-a285-00aa003049e2"),
1167            ("acs-max-token-rate-per-flow", "7f56127b-5301-11d1-a9c5-0000f80367c1"),
1168            ("pki-enrollment-service", "ee4aa692-3bba-11d2-90cc-00c04fd91ab1"),
1169            ("ms-dfsr-commonstagingsizeinmb", "135eb00e-4846-458b-8ea2-a37559afd405"),
1170            ("rid-manager-reference", "66171886-8f3c-11d0-afda-00c04fd930c9"),
1171            ("msmq-label-ex", "4580ad25-d407-48d2-ad24-43e6e56793d7"),
1172            ("ms-ds-nc-replica-locations", "97de9615-b537-46bc-ac0f-10720f3909f3"),
1173            ("group-attributes", "bf96797e-0de6-11d0-a285-00aa003049e2"),
1174            ("acs-max-token-bucket-per-flow", "81f6e0df-3b90-11d2-90cc-00c04fd91ab1"),
1175            ("dhcp-class", "963d2756-48be-11d1-a9c3-0000f80367c1"),
1176            ("ms-dfsr-commonstagingpath", "936eac41-d257-4bb9-bd55-f310a3cf09ad"),
1177            ("rid-available-pool", "66171888-8f3c-11d0-afda-00c04fd930c9"),
1178            ("msmq-label", "9a0dc325-c100-11d1-bbc5-0080c76670c0"),
1179            ("ms-ds-nc-repl-outbound-neighbors", "855f2ef5-a1c5-4cc4-ba6d-32522848b61f"),
1180            ("gpc-wql-filter", "7bd4c7a6-1add-4436-8c04-3999a880154c"),
1181            ("acs-max-size-of-rsvp-log-file", "1cb3559d-56d0-11d1-a9c6-0000f80367c1"),
1182            ("pki-certificate-template", "e5209ca2-3bba-11d2-90cc-00c04fd91ab1"),
1183            ("ms-dfsr-options2", "11e24318-4ca6-4f49-9afe-e5eb1afa3473"),
1184            ("rid-allocation-pool", "66171889-8f3c-11d0-afda-00c04fd930c9"),
1185            ("msmq-journal-quota", "9a0dc324-c100-11d1-bbc5-0080c76670c0"),
1186            ("ms-ds-nc-repl-inbound-neighbors", "9edba85a-3e9e-431b-9b1a-a5b6e9eda796"),
1187            ("gpc-user-extension-names", "42a75fc6-783f-11d2-9916-0000f87a57d4"),
1188            ("acs-max-size-of-rsvp-account-file", "f0722311-aef5-11d1-bdcf-0000f80367c1"),
1189            ("dfs-configuration", "8447f9f2-1027-11d0-a05f-00aa006c33ed"),
1190            ("ms-dfsr-ondemandexclusiondirectoryfilter", "7d523aff-9012-49b2-9925-f922a0018656"),
1191            ("rid", "bf967a22-0de6-11d0-a285-00aa003049e2"),
1192            ("msmq-journal", "9a0dc321-c100-11d1-bbc5-0080c76670c0"),
1193            ("ms-ds-nc-repl-cursors", "8a167ce4-f9e8-47eb-8d78-f7fe80abb2cc"),
1194            ("gpc-machine-extension-names", "32ff8ecc-783f-11d2-9916-0000f87a57d4"),
1195            ("acs-max-peak-bandwidth-per-flow", "7f56127c-5301-11d1-a9c5-0000f80367c1"),
1196            ("physical-location", "b7b13122-b82e-11d0-afee-0000f80367c1"),
1197            ("ms-dfsr-ondemandexclusionfilefilter", "a68359dc-a581-4ee6-9015-5382c60f0fb4"),
1198            ("revision", "bf967a21-0de6-11d0-a285-00aa003049e2"),
1199            ("msmq-interval2", "99b88f52-3b7b-11d2-90cc-00c04fd91ab1"),
1200            ("ms-ds-quota-used", "b5a84308-615d-4bb7-b05f-2f1746aa439f"),
1201            ("gpc-functionality-version", "f30e3bc0-9ff0-11d1-b603-0000f80367c1"),
1202            ("acs-max-peak-bandwidth", "7f561284-5301-11d1-a9c5-0000f80367c1"),
1203            ("device", "bf967a8e-0de6-11d0-a285-00aa003049e2"),
1204            ("ms-dfsr-defaultcompressionexclusionfilter", "87811bd5-cd8b-45cb-9f5d-980f3a9e0c97"),
1205            ("token-groups-no-gc-acceptable", "040fc392-33df-11d2-98b2-0000f87a57d4"),
1206            ("msmq-interval1", "8ea825aa-3b7b-11d2-90cc-00c04fd91ab1"),
1207            ("ms-ds-quota-trustee", "16378906-4ea5-49be-a8d1-bfd41dff4f65"),
1208            ("gpc-file-sys-path", "f30e3bc1-9ff0-11d1-b603-0000f80367c1"),
1209            ("acs-max-no-of-log-files", "1cb3559c-56d0-11d1-a9c6-0000f80367c1"),
1210            ("ms-dfsr-disablepacketprivacy", "6a84ede5-741e-43fd-9dd6-aa0f61578621"),
1211            ("token-groups-global-and-universal", "46a9b11d-60ae-405a-b7e8-ff8a58d456d2"),
1212            ("msmq-in-routing-servers", "9a0dc32c-c100-11d1-bbc5-0080c76670c0"),
1213            ("ms-ds-quota-effective", "6655b152-101c-48b4-b347-e1fcebc60157"),
1214            ("gp-options", "f30e3bbf-9ff0-11d1-b603-0000f80367c1"),
1215            ("acs-max-no-of-account-files", "f0722310-aef5-11d1-bdcf-0000f80367c1"),
1216            ("package-registration", "bf967aa6-0de6-11d0-a285-00aa003049e2"),
1217            ("cross-ref-container", "ef9e60e0-56f7-11d1-a9c6-0000f80367c1"),
1218            ("ms-tsls-property02", "47c77bb0-316e-4e2f-97f1-0d4c48fca9dd"),
1219            ("token-groups", "b7c69e6d-2cc7-11d2-854e-00a0c983f608"),
1220            ("additional-trusted-service-names", "032160be-9824-11d1-aec0-0000f80367c1"),
1221            ("ds-ui-settings", "09b10f14-6f93-11d2-9905-0000f87a57d4"),
1222            ("ms-ds-claim-shares-possible-values-with", "52c8d13a-ce0b-4f57-892b-18f5a43a2400"),
1223            ("sam-domain-updates", "04d2d114-f799-4e9b-bcdc-90e8f5ba7ebe"),
1224            ("msmq-secured-source", "8bf0221b-7a06-4d63-91f0-1499941813d3"),
1225            ("ms-ds-tasks-for-az-role-bl", "a0dcd536-5158-42fe-8c40-c00a7ad37959"),
1226            ("install-ui-level", "96a7dd64-9118-11d1-aebc-0000f80367c1"),
1227            ("additional-information", "6d05fb41-246b-11d0-a9c8-00aa006c33ed"),
1228            ("room", "7860e5d2-c8b0-4cbb-bd45-d9455beb9206"),
1229            ("ms-ds-claim-type-applies-to-class", "6afb0e4c-d876-437c-aeb6-c3e41454c272"),
1230            ("sam-account-type", "6e7b626c-64f2-11d0-afd2-00c04fd930c9"),
1231            ("msmq-routing-services", "2df90d77-009f-11d2-aa4c-00c04fd7d83a"),
1232            ("ms-ds-tasks-for-az-role", "35319082-8c4a-4646-9386-c2949d49894d"),
1233            ("initials", "f0f8ff90-1191-11d0-a060-00aa006c33ed"),
1234            ("acs-server-list", "7cbd59a5-3b90-11d2-90cc-00c04fd91ab1"),
1235            ("domainrelatedobject", "8bfd2d3d-efda-4549-852c-f85e137aedc6"),
1236            ("ms-ds-claim-attribute-source", "eebc123e-bae6-4166-9e5b-29884a8b76b0"),
1237            ("sam-account-name", "3e0abfd0-126a-11d0-a060-00aa006c33ed"),
1238            ("msmq-routing-service", "2df90d81-009f-11d2-aa4c-00c04fd7d83a"),
1239            ("ms-ds-spn-suffixes", "789ee1eb-8c8e-4e4c-8cec-79b31b7617b5"),
1240            ("initial-auth-outgoing", "52458024-ca6a-11d0-afff-0000f80367c1"),
1241            ("acs-total-no-of-flows", "7f561280-5301-11d1-a9c5-0000f80367c1"),
1242            ("rid-set", "7bfdcb89-4807-11d1-a9c3-0000f80367c1"),
1243            ("ms-ds-claim-value-type", "c66217b9-e48e-47f7-b7d5-6552b8afd619"),
1244            ("rpc-ns-transfer-syntax", "29401c4a-7a27-11d0-afd6-00c04fd930c9"),
1245            ("msmq-recipient-formatname", "3bfe6748-b544-485a-b067-1b310c4334bf"),
1246            ("ms-ds-site-affinity", "c17c5602-bcb7-46f0-9656-6370ca884b72"),
1247            ("initial-auth-incoming", "52458023-ca6a-11d0-afff-0000f80367c1"),
1248            ("acs-time-of-day", "7f561279-5301-11d1-a9c5-0000f80367c1"),
1249            ("domain-policy", "bf967a99-0de6-11d0-a285-00aa003049e2"),
1250            ("ms-ds-claim-possible-values", "2e28edee-ed7c-453f-afe4-93bd86f2174f"),
1251            ("rpc-ns-profile-entry", "bf967a28-0de6-11d0-a285-00aa003049e2"),
1252            ("msmq-quota", "9a0dc322-c100-11d1-bbc5-0080c76670c0"),
1253            ("ms-ds-settings", "0e1b47d7-40a3-4b48-8d1b-4cac0c1cdf21"),
1254            ("indexedscopes", "7bfdcb87-4807-11d1-a9c3-0000f80367c1"),
1255            ("acs-service-type", "7f56127f-5301-11d1-a9c5-0000f80367c1"),
1256            ("rid-manager", "6617188d-8f3c-11d0-afda-00c04fd930c9"),
1257            ("ms-ds-is-used-as-resource-security-attribute", "51c9f89d-4730-468d-a2b5-1d493212d17e"),
1258            ("rpc-ns-priority", "bf967a27-0de6-11d0-a285-00aa003049e2"),
1259            ("msmq-queue-type", "9a0dc320-c100-11d1-bbc5-0080c76670c0"),
1260            ("ms-ds-security-group-extra-classes", "4f146ae8-a4fe-4801-a731-f51848a4f4e4"),
1261            ("implemented-categories", "7d6c0e92-7e20-11d0-afd6-00c04fd930c9"),
1262            ("acs-rsvp-log-files-location", "1cb3559b-56d0-11d1-a9c6-0000f80367c1"),
1263            ("ms-ds-bridgehead-servers-used", "3ced1465-7b71-2541-8780-1e1ea6243a82"),
1264            ("rpc-ns-object-id", "29401c48-7a27-11d0-afd6-00c04fd930c9"),
1265            ("msmq-queue-quota", "3f6b8e12-d57f-11d1-90a2-00c04fd91ab1"),
1266            ("ms-ds-sd-reference-domain", "4c51e316-f628-43a5-b06b-ffb695fcb4f3"),
1267            ("icon-path", "f0f8ff83-1191-11d0-a060-00aa006c33ed"),
1268            ("acs-rsvp-account-files-location", "f072230f-aef5-11d1-bdcf-0000f80367c1"),
1269            ("rfc822localpart", "b93e3a78-cbae-485e-a07b-5ef4ae505686"),
1270            ("domain-dns", "19195a5b-6da0-11d0-afd3-00c04fd930c9"),
1271            ("ms-dfs-ttl-v2", "ea944d31-864a-4349-ada5-062e2c614f5e"),
1272            ("rpc-ns-interface-id", "bf967a25-0de6-11d0-a285-00aa003049e2"),
1273            ("msmq-queue-name-ext", "2df90d87-009f-11d2-aa4c-00c04fd7d83a"),
1274            ("ms-ds-schema-extensions", "b39a61be-ed07-4cab-9a4a-4963ed0141e1"),
1275            ("host", "6043df71-fa48-46cf-ab7c-cbd54644b22d"),
1276            ("acs-priority", "7f561281-5301-11d1-a9c5-0000f80367c1"),
1277            ("domain", "19195a5a-6da0-11d0-afd3-00c04fd930c9"),
1278            ("ms-dfs-target-list-v2", "6ab126c6-fa41-4b36-809e-7ca91610d48f"),
1279            ("rpc-ns-group", "bf967a24-0de6-11d0-a285-00aa003049e2"),
1280            ("msmq-queue-journal-quota", "8e441266-d57f-11d1-90a2-00c04fd91ab1"),
1281            ("ms-ds-retired-repl-nc-signatures", "d5b35506-19d6-4d26-9afb-11357ac99b5e"),
1282            ("houseidentifier", "a45398b7-c44a-4eb6-82d3-13c10946dbfe"),
1283            ("acs-policy-name", "1cb3559a-56d0-11d1-a9c6-0000f80367c1"),
1284            ("residential-person", "a8df74d6-c5ea-11d1-bbcb-0080c76670c0"),
1285            ("documentseries", "7a2be07c-302f-4b96-bc90-0795d66885f8"),
1286            ("ms-dfs-short-name-link-path-v2", "2d7826f0-4cf7-42e9-a039-1110e0d9ca99"),
1287            ("rpc-ns-entry-flags", "80212841-4bdc-11d1-a9c4-0000f80367c1"),
1288            ("msmq-qm-id", "9a0dc33e-c100-11d1-bbc5-0080c76670c0"),
1289            ("ms-ds-replicationepoch", "08e3aa79-eb1c-45b5-af7b-8f94246c8e41"),
1290            ("home-drive", "bf967986-0de6-11d0-a285-00aa003049e2"),
1291            ("acs-permission-bits", "7f561282-5301-11d1-a9c5-0000f80367c1"),
1292            ("ms-dfs-schema-minor-version", "fef9a725-e8f1-43ab-bd86-6a0115ce9e38"),
1293            ("rpc-ns-codeset", "7a0ba0e0-8e98-11d0-afda-00c04fd930c9"),
1294            ("msmq-privacy-level", "9a0dc327-c100-11d1-bbc5-0080c76670c0"),
1295            ("ms-ds-replication-notify-subsequent-dsa-delay", "d63db385-dd92-4b52-b1d8-0d3ecc0e86b6"),
1296            ("home-directory", "bf967985-0de6-11d0-a285-00aa003049e2"),
1297            ("acs-non-reserved-tx-size", "f072230d-aef5-11d1-bdcf-0000f80367c1"),
1298            ("remote-storage-service-point", "2a39c5bd-8960-11d1-aebc-0000f80367c1"),
1299            ("document", "39bad96d-c2d6-4baf-88ab-7e4207600117"),
1300            ("ms-dfs-schema-major-version", "ec6d7855-704a-4f61-9aa6-c49a7c1d54c7"),
1301            ("rpc-ns-bindings", "bf967a23-0de6-11d0-a285-00aa003049e2"),
1302            ("msmq-prev-site-gates", "2df90d75-009f-11d2-aa4c-00c04fd7d83a"),
1303            ("ms-ds-replication-notify-first-dsa-delay", "85abd4f4-0a89-4e49-bdec-6f35bb2562ba"),
1304            ("hide-from-ab", "ec05b750-a977-4efe-8e8d-ba6c1a6e33a8"),
1305            ("acs-non-reserved-tx-limit", "1cb355a2-56d0-11d1-a9c6-0000f80367c1"),
1306            ("ms-dfs-properties-v2", "0c3e5bc5-eb0e-40f5-9b53-334e958dffdb"),
1307            ("rpc-ns-annotation", "88611bde-8cf4-11d0-afda-00c04fd930c9"),
1308            ("msmq-owner-id", "9a0dc328-c100-11d1-bbc5-0080c76670c0"),
1309            ("ms-ds-replicates-nc-reason", "0ea12b84-08b3-11d3-91bc-0000f87a57d4"),
1310            ("help-file-name", "5fd424a9-1262-11d0-a060-00aa006c33ed"),
1311            ("acs-non-reserved-token-size", "a916d7c9-3b90-11d2-90cc-00c04fd91ab1"),
1312            ("remote-mail-recipient", "bf967aa9-0de6-11d0-a285-00aa003049e2"),
1313            ("dns-zone", "e0fa1e8b-9b45-11d0-afdd-00c04fd930c9"),
1314            ("ms-dfs-namespace-identity-guid-v2", "200432ce-ec5f-4931-a525-d7f4afe34e68"),
1315            ("root-trust", "7bfdcb80-4807-11d1-a9c3-0000f80367c1"),
1316            ("msmq-out-routing-servers", "9a0dc32b-c100-11d1-bbc5-0080c76670c0"),
1317            ("ms-ds-repl-value-meta-data", "2f5c8145-e1bd-410b-8957-8bfa81d5acfd"),
1318            ("help-data32", "5fd424a8-1262-11d0-a060-00aa006c33ed"),
1319            ("acs-non-reserved-peak-rate", "a331a73f-3b90-11d2-90cc-00c04fd91ab1"),
1320            ("ms-ds-is-full-replica-for", "c8bc72e0-a6b4-48f0-94a5-fd76a88c9987"),
1321            ("ipsec-negotiation-policy-type", "07383074-91df-11d1-aebc-0000f80367c1"),
1322            ("allowed-attributes", "9a7ad940-ca53-11d1-bbd0-0080c76670c0"),
1323            ("ft-dfs", "8447f9f3-1027-11d0-a05f-00aa006c33ed"),
1324            ("ms-tpm-srk-pub-thumbprint", "19d706eb-4d76-44a2-85d6-1c342be3be37"),
1325            ("see-also", "bf967a31-0de6-11d0-a285-00aa003049e2"),
1326            ("msmq-sites", "9a0dc32a-c100-11d1-bbc5-0080c76670c0"),
1327            ("ms-ds-krbtgt-link-bl", "5dd68c41-bfdf-438b-9b5d-39d9618bf260"),
1328            ("ipsec-negotiation-policy-reference", "b40ff822-427a-11d1-a9c2-0000f80367c1"),
1329            ("admin-property-pages", "52458038-ca6a-11d0-afff-0000f80367c1"),
1330            ("rpc-server-element", "f29653d0-7ad0-11d0-afd6-00c04fd930c9"),
1331            ("ms-spp-issuance-license", "1075b3a1-bbaf-49d2-ae8d-c4f25c823303"),
1332            ("security-identifier", "bf967a2f-0de6-11d0-a285-00aa003049e2"),
1333            ("msmq-site-name-ex", "422144fa-c17f-4649-94d6-9731ed2784ed"),
1334            ("ms-ds-revealed-dsas", "94f6f2ac-c76d-4b5e-b71f-f332c3e93c22"),
1335            ("ipsec-negotiation-policy-action", "07383075-91df-11d1-aebc-0000f80367c1"),
1336            ("admin-multiselect-property-pages", "18f9b67d-5ac6-4b3b-97db-d0a406afb7ba"),
1337            ("friendlycountry", "c498f152-dc6b-474a-9f52-7cdba3d7d351"),
1338            ("ms-spp-config-license", "0353c4b5-d199-40b0-b3c5-deb32fd9ec06"),
1339            ("secretary", "01072d9a-98ad-4a53-9744-e83e287278fb"),
1340            ("msmq-site-name", "ffadb4b2-de39-11d1-90a5-00c04fd91ab1"),
1341            ("ms-ds-secondary-krbtgt-number", "aa156612-2396-467e-ad6a-28d23fdb1865"),
1342            ("ipsec-name", "b40ff81c-427a-11d1-a9c2-0000f80367c1"),
1343            ("admin-display-name", "bf96791a-0de6-11d0-a285-00aa003049e2"),
1344            ("rpc-server", "88611be0-8cf4-11d0-afda-00c04fd930c9"),
1345            ("ms-spp-phone-license", "67e4d912-f362-4052-8c79-42f45ba7b221"),
1346            ("search-guide", "bf967a2e-0de6-11d0-a285-00aa003049e2"),
1347            ("msmq-site-id", "9a0dc340-c100-11d1-bbc5-0080c76670c0"),
1348            ("ms-ds-reveal-ondemand-group", "303d9f4a-1dd6-4b38-8fc5-33afe8c988ad"),
1349            ("ipsec-isakmp-reference", "b40ff820-427a-11d1-a9c2-0000f80367c1"),
1350            ("admin-description", "bf967919-0de6-11d0-a285-00aa003049e2"),
1351            ("foreign-security-principal", "89e31c12-8530-11d0-afda-00c04fd930c9"),
1352            ("ms-spp-online-license", "098f368e-4812-48cd-afb7-a136b96807ed"),
1353            ("search-flags", "bf967a2d-0de6-11d0-a285-00aa003049e2"),
1354            ("msmq-site-gates-mig", "e2704852-3b7b-11d2-90cc-00c04fd91ab1"),
1355            ("ms-ds-never-reveal-group", "15585999-fd49-4d66-b25d-eeb96aba8174"),
1356            ("ipsec-id", "b40ff81d-427a-11d1-a9c2-0000f80367c1"),
1357            ("admin-count", "bf967918-0de6-11d0-a285-00aa003049e2"),
1358            ("rpc-profile-element", "f29653cf-7ad0-11d0-afd6-00c04fd930c9"),
1359            ("ms-spp-confirmation-id", "6e8797c4-acda-4a49-8740-b0bd05a9b831"),
1360            ("sd-rights-effective", "c3dbafa6-33df-11d2-98b2-0000f87a57d4"),
1361            ("msmq-site-gates", "9a0dc339-c100-11d1-bbc5-0080c76670c0"),
1362            ("ms-ds-has-full-replica-ncs", "1d3c2d18-42d0-4868-99fe-0eca1e6fa9f3"),
1363            ("ipsec-filter-reference", "b40ff823-427a-11d1-a9c2-0000f80367c1"),
1364            ("admin-context-menu", "553fd038-f32e-11d0-b0bc-00c04fd8dca6"),
1365            ("file-link-tracking-entry", "8e4eb2ed-4712-11d0-a1a0-00c04fd930c9"),
1366            ("ms-spp-installation-id", "69bfb114-407b-4739-a213-c663802b3e37"),
1367            ("script-path", "bf9679a8-0de6-11d0-a285-00aa003049e2"),
1368            ("msmq-site-foreign", "fd129d8a-d57e-11d1-90a2-00c04fd91ab1"),
1369            ("ms-ds-revealed-users", "185c7821-3749-443a-bd6a-288899071adb"),
1370            ("ipsec-data-type", "b40ff81e-427a-11d1-a9c2-0000f80367c1"),
1371            ("address-type", "5fd42464-1262-11d0-a060-00aa006c33ed"),
1372            ("rpc-profile", "88611be1-8cf4-11d0-afda-00c04fd930c9"),
1373            ("ms-spp-kms-ids", "9b663eda-3542-46d6-9df0-314025af2bac"),
1374            ("scope-flags", "16f3a4c2-7e79-11d2-9921-0000f87a57d4"),
1375            ("msmq-site-2", "9a0dc338-c100-11d1-bbc5-0080c76670c0"),
1376            ("ms-ds-krbtgt-link", "778ff5c9-6f4e-4b74-856a-d68383313910"),
1377            ("ipsec-data", "b40ff81f-427a-11d1-a9c2-0000f80367c1"),
1378            ("address-syntax", "5fd42463-1262-11d0-a060-00aa006c33ed"),
1379            ("file-link-tracking", "dd712229-10e4-11d0-a05f-00aa006c33ed"),
1380            ("ms-spp-csvlk-sku-id", "9684f739-7b78-476d-8d74-31ad7692eef4"),
1381            ("schema-version", "bf967a2c-0de6-11d0-a285-00aa003049e2"),
1382            ("msmq-site-1", "9a0dc337-c100-11d1-bbc5-0080c76670c0"),
1383            ("ms-ds-source-object-dn", "773e93af-d3b4-48d4-b3f9-06457602d3d0"),
1384            ("invocation-id", "bf96798e-0de6-11d0-a285-00aa003049e2"),
1385            ("address-home", "16775781-47f3-11d1-a9c3-0000f80367c1"),
1386            ("rpc-group", "88611bdf-8cf4-11d0-afda-00c04fd930c9"),
1387            ("ms-spp-csvlk-partial-product-key", "a601b091-8652-453a-b386-87ad239b7c08"),
1388            ("schema-update", "1e2d06b4-ac8f-11d0-afe3-00c04fd930c9"),
1389            ("msmq-sign-key", "9a0dc332-c100-11d1-bbc5-0080c76670c0"),
1390            ("ms-ds-updatescript", "146eb639-bb9f-4fc1-a825-e29e00c77920"),
1391            ("international-isdn-number", "bf96798d-0de6-11d0-a285-00aa003049e2"),
1392            ("address-entry-display-table-msdos", "5fd42462-1262-11d0-a060-00aa006c33ed"),
1393            ("dynamic-object", "66d51249-3355-4c1f-b24e-81f252aca23b"),
1394            ("ms-spp-csvlk-pid", "b47f510d-6b50-47e1-b556-772c79e4ffc4"),
1395            ("schema-info", "f9fb64ae-93b4-11d2-9945-0000f87a57d4"),
1396            ("msmq-sign-certificates-mig", "3881b8ea-da3b-11d1-90a5-00c04fd91ab1"),
1397            ("ms-ds-user-password-expiry-time-computed", "add5cf10-7b09-4449-9ae6-2534148f8a72"),
1398            ("inter-site-topology-renew", "b7c69e5f-2cc7-11d2-854e-00a0c983f608"),
1399            ("address-entry-display-table", "5fd42461-1262-11d0-a060-00aa006c33ed"),
1400            ("rpc-entry", "bf967aac-0de6-11d0-a285-00aa003049e2"),
1401            ("ms-ds-members-of-resource-property-list-bl", "7469b704-edb0-4568-a5a5-59f4862c75a7"),
1402            ("schema-id-guid", "bf967923-0de6-11d0-a285-00aa003049e2"),
1403            ("msmq-sign-certificates", "9a0dc33b-c100-11d1-bbc5-0080c76670c0"),
1404            ("ms-ds-user-account-control-computed", "2cc4b836-b63f-4940-8d23-ea7acf06af56"),
1405            ("inter-site-topology-generator", "b7c69e5e-2cc7-11d2-854e-00a0c983f608"),
1406            ("address-book-roots", "f70b6e48-06f4-11d2-aa53-00c04fd7d83a"),
1407            ("dsa", "3fdfee52-47f4-11d1-a9c3-0000f80367c1"),
1408            ("ms-ds-members-of-resource-property-list", "4d371c11-4cad-4c41-8ad2-b180ab2bd13c"),
1409            ("schema-flags-ex", "bf967a2b-0de6-11d0-a285-00aa003049e2"),
1410            ("msmq-services", "9a0dc33d-c100-11d1-bbc5-0080c76670c0"),
1411            ("ms-ds-tasks-for-az-task-bl", "df446e52-b5fa-4ca2-a42f-13f98a526c8f"),
1412            ("inter-site-topology-failover", "b7c69e60-2cc7-11d2-854e-00a0c983f608"),
1413            ("address", "f0f8ff84-1191-11d0-a060-00aa006c33ed"),
1414            ("rpc-container", "80212842-4bdc-11d1-a9c4-0000f80367c1"),
1415            ("ms-ds-claim-shares-possible-values-with-bl", "54d522db-ec95-48f5-9bbd-1880ebbb2180"),
1416            ("schedule", "dd712224-10e4-11d0-a05f-00aa006c33ed"),
1417            ("msmq-service-type", "9a0dc32d-c100-11d1-bbc5-0080c76670c0"),
1418            ("ms-ds-tasks-for-az-task", "b11c8ee2-5fcd-46a7-95f0-f38333f096cf"),
1419            ("instance-type", "bf96798c-0de6-11d0-a285-00aa003049e2"),
1420            ("must-contain", "bf9679d3-0de6-11d0-a285-00aa003049e2"),
1421            ("ms-ds-token-group-names", "65650576-4699-4fc9-8d18-26e0cd0137a6"),
1422            ("keywords", "bf967993-0de6-11d0-a285-00aa003049e2"),
1423            ("attributecertificateattribute", "fa4693bb-7bc2-4cb9-81a8-c99c43b7905e"),
1424            ("ms-dns-dnskey-record-set-ttl", "8f4e317f-28d7-442c-a6df-1f491f97b326"),
1425            ("service-instance-version", "bf967a37-0de6-11d0-a285-00aa003049e2"),
1426            ("msrassavedframedroute", "db0c90c7-c1f2-11d1-bbc5-0080c76670c0"),
1427            ("ms-ds-optional-feature-flags", "8a0560c1-97b9-4811-9db7-dc061598965b"),
1428            ("jpegphoto", "bac80572-09c4-4fa9-9ae6-7628d7adbe0e"),
1429            ("associatedname", "f7fbfc45-85ab-42a4-a435-780e62f7858b"),
1430            ("security-object", "bf967aaf-0de6-11d0-a285-00aa003049e2"),
1431            ("infrastructure-update", "2df90d89-009f-11d2-aa4c-00c04fd7d83a"),
1432            ("ms-dns-nsec3-iterations", "80b70aab-8959-4ec0-8e93-126e76df3aca"),
1433            ("service-dns-name-type", "28630eba-41d5-11d1-a9c1-0000f80367c1"),
1434            ("msrassavedframedipaddress", "db0c90c6-c1f2-11d1-bbc5-0080c76670c0"),
1435            ("ms-ds-value-type-reference-bl", "ab5543ad-23a1-3b45-b937-9b313d5474a8"),
1436            ("is-single-valued", "bf967992-0de6-11d0-a285-00aa003049e2"),
1437            ("associateddomain", "3320fc38-c379-4c17-a510-1bdf6133c5da"),
1438            ("ms-dns-nsec3-random-salt-length", "13361665-916c-4de7-a59d-b1ebbd0de129"),
1439            ("service-dns-name", "28630eb8-41d5-11d1-a9c1-0000f80367c1"),
1440            ("msrassavedcallbacknumber", "db0c90c5-c1f2-11d1-bbc5-0080c76670c0"),
1441            ("ms-ds-value-type-reference", "78fc5d84-c1dc-3148-8984-58f792d41d3e"),
1442            ("is-recycled", "8fb59256-55f1-444b-aacb-f5b482fe3459"),
1443            ("assoc-nt-account", "398f63c0-ca60-11d1-bbd1-0000f81f10c0"),
1444            ("secret", "bf967aae-0de6-11d0-a285-00aa003049e2"),
1445            ("inetorgperson", "4828cc14-1437-45bc-9b07-ad6f015e5f28"),
1446            ("ms-dns-nsec3-hash-algorithm", "ff9e5552-7db7-4138-8888-05ce320a0323"),
1447            ("service-class-name", "b7b1311d-b82e-11d0-afee-0000f80367c1"),
1448            ("msradiusservicetype", "db0c90b6-c1f2-11d1-bbc5-0080c76670c0"),
1449            ("ms-ds-usn-last-sync-success", "31f7b8b6-c9f8-4f2d-a37b-58a823030331"),
1450            ("is-privilege-holder", "19405b9c-3cfa-11d1-a9c0-0000f80367c1"),
1451            ("assistant", "0296c11c-40da-11d1-a9c0-0000f80367c1"),
1452            ("index-server-catalog", "7bfdcb8a-4807-11d1-a9c3-0000f80367c1"),
1453            ("ms-dns-rfc5011-key-rollovers", "27d93c40-065a-43c0-bdd8-cdf2c7d120aa"),
1454            ("service-class-info", "bf967a36-0de6-11d0-a285-00aa003049e2"),
1455            ("msradiusframedroute", "db0c90a9-c1f2-11d1-bbc5-0080c76670c0"),
1456            ("ms-ds-failed-interactive-logon-count-at-last-successful-logon", "c5d234e5-644a-4403-a665-e26e0aef5e98"),
1457            ("is-member-of-partial-attribute-set", "19405b9d-3cfa-11d1-a9c0-0000f80367c1"),
1458            ("asset-number", "ba305f75-47e3-11d0-a1a6-00c04fd930c9"),
1459            ("sam-server", "bf967aad-0de6-11d0-a285-00aa003049e2"),
1460            ("ms-dns-ds-record-algorithms", "5c5b7ad2-20fa-44bb-beb3-34b9c0f65579"),
1461            ("service-class-id", "bf967a35-0de6-11d0-a285-00aa003049e2"),
1462            ("msradiusframedipaddress", "db0c90a4-c1f2-11d1-bbc5-0080c76670c0"),
1463            ("ms-ds-failed-interactive-logon-count", "dc3ca86f-70ad-4960-8425-a4d6313d93dd"),
1464            ("is-member-of-dl", "bf967991-0de6-11d0-a285-00aa003049e2"),
1465            ("applies-to", "8297931d-86d3-11d0-afda-00c04fd930c9"),
1466            ("group-policy-container", "f30e3bc2-9ff0-11d1-b603-0000f80367c1"),
1467            ("ms-dns-maintain-trust-anchor", "0dc063c1-52d9-4456-9e15-9c2434aafd94"),
1468            ("service-binding-information", "b7b1311c-b82e-11d0-afee-0000f80367c1"),
1469            ("msradiuscallbacknumber", "db0c909c-c1f2-11d1-bbc5-0080c76670c0"),
1470            ("ms-ds-last-failed-interactive-logon-time", "c7e7dafa-10c3-4b8b-9acd-54f11063742e"),
1471            ("is-ephemeral", "f4c453f0-c5f1-11d1-bbcb-0080c76670c0"),
1472            ("application-name", "dd712226-10e4-11d0-a05f-00aa006c33ed"),
1473            ("sam-domain-base", "bf967a91-0de6-11d0-a285-00aa003049e2"),
1474            ("ms-dns-nsec3-optout", "7bea2088-8ce2-423c-b191-66ec506b1595"),
1475            ("server-state", "bf967a34-0de6-11d0-a285-00aa003049e2"),
1476            ("msnpsavedcallingstationid", "db0c908e-c1f2-11d1-bbc5-0080c76670c0"),
1477            ("ms-ds-last-successful-interactive-logon-time", "011929e6-8b5d-4258-b64a-00b0b4949747"),
1478            ("is-deleted", "bf96798f-0de6-11d0-a285-00aa003049e2"),
1479            ("app-schema-version", "96a7dd65-9118-11d1-aebc-0000f80367c1"),
1480            ("groupofuniquenames", "0310a911-93a3-4e21-a7a3-55d85ab2c48b"),
1481            ("ms-dns-sign-with-nsec3", "c79f2199-6da1-46ff-923c-1f3f800c721e"),
1482            ("server-role", "bf967a33-0de6-11d0-a285-00aa003049e2"),
1483            ("msnpcallingstationid", "db0c908a-c1f2-11d1-bbc5-0080c76670c0"),
1484            ("ms-ds-revealed-list-bl", "aa1c88fd-b0f6-429f-b2ca-9d902266e808"),
1485            ("is-defunct", "28630ebe-41d5-11d1-a9c1-0000f80367c1"),
1486            ("anr", "45b01500-c419-11d1-bbc9-0080c76670c0"),
1487            ("sam-domain", "bf967a90-0de6-11d0-a285-00aa003049e2"),
1488            ("ms-dns-is-signed", "aa12854c-d8fc-4d5e-91ca-368b8d829bee"),
1489            ("server-reference-bl", "26d9736e-6070-11d1-a9c6-0000f80367c1"),
1490            ("msnpcalledstationid", "db0c9089-c1f2-11d1-bbc5-0080c76670c0"),
1491            ("ms-ds-revealed-list", "cbdad11c-7fec-387b-6219-3a0627d9af81"),
1492            ("is-critical-system-object", "00fbf30d-91fe-11d1-aebc-0000f80367c1"),
1493            ("alt-security-identities", "00fbf30c-91fe-11d1-aebc-0000f80367c1"),
1494            ("group-of-names", "bf967a9d-0de6-11d0-a285-00aa003049e2"),
1495            ("ms-dns-keymaster-zones", "0be0dd3b-041a-418c-ace9-2f17d23e9d42"),
1496            ("server-reference", "26d9736d-6070-11d1-a9c6-0000f80367c1"),
1497            ("msnpallowdialin", "db0c9085-c1f2-11d1-bbc5-0080c76670c0"),
1498            ("ms-ds-is-user-cachable-at-rodc", "fe01245a-341f-4556-951f-48c033a89050"),
1499            ("ipsec-policy-reference", "b7b13118-b82e-11d0-afee-0000f80367c1"),
1500            ("allowed-child-classes-effective", "9a7ad943-ca53-11d1-bbd0-0080c76670c0"),
1501            ("rras-administration-dictionary", "f39b98ae-938d-11d1-aebd-0000f80367c1"),
1502            ("ms-tpm-tpm-information-for-computer-bl", "14fa84c9-8ecd-4348-bc91-6d3ced472ab7"),
1503            ("server-name", "09dcb7a0-165f-11d0-a064-00aa006c33ed"),
1504            ("msmq-version", "9a0dc336-c100-11d1-bbc5-0080c76670c0"),
1505            ("ms-ds-is-partial-replica-for", "37c94ff6-c6d4-498f-b2f9-c6f7f8647809"),
1506            ("ipsec-owners-reference", "b40ff824-427a-11d1-a9c2-0000f80367c1"),
1507            ("allowed-child-classes", "9a7ad942-ca53-11d1-bbd0-0080c76670c0"),
1508            ("group", "bf967a9c-0de6-11d0-a285-00aa003049e2"),
1509            ("ms-tpm-tpm-information-for-computer", "ea1b7b93-5e48-46d5-bc6c-4df4fda78a35"),
1510            ("serial-number", "bf967a32-0de6-11d0-a285-00aa003049e2"),
1511            ("msmq-user-sid", "c58aae32-56f9-11d2-90d0-00c04fd91ab1"),
1512            ("ms-ds-is-domain-for", "ff155a2a-44e5-4de0-8318-13a58988de4f"),
1513            ("ipsec-nfa-reference", "b40ff821-427a-11d1-a9c2-0000f80367c1"),
1514            ("allowed-attributes-effective", "9a7ad941-ca53-11d1-bbd0-0080c76670c0"),
1515            ("rras-administration-connection-point", "2a39c5be-8960-11d1-aebc-0000f80367c1"),
1516            ("ms-tpm-owner-information-temp", "c894809d-b513-4ff8-8811-f4f43f5ac7bc"),
1517            ("seq-notification", "ddac0cf2-af8f-11d0-afeb-00c04fd930c9"),
1518            ("msmq-transactional", "9a0dc329-c100-11d1-bbc5-0080c76670c0"),
1519            ("ipsec-negotiation-policy", "b40ff827-427a-11d1-a9c2-0000f80367c1"),
1520            ("ms-authz-central-access-policy-id", "62f29b60-be74-4630-9456-2f6691993a86"),
1521            ("site-server", "1be8f17c-a9ff-11d0-afe2-00c04fd930c9"),
1522            ("netboot-machine-file-path", "3e978923-8c01-11d0-afda-00c04fd930c9"),
1523            ("ms-dfsr-stagingsizeinmb", "250a8f20-f6fc-4559-ae65-e4b24c67aebe"),
1524            ("legacy-exchange-dn", "28630ebc-41d5-11d1-a9c1-0000f80367c1"),
1525            ("bridgehead-server-list-bl", "d50c2cdb-8951-11d1-aebc-0000f80367c1"),
1526            ("ms-authz-resource-condition", "80997877-f874-4c68-864d-6e508a83bdbd"),
1527            ("site-object-bl", "3e10944d-c354-11d0-aff8-0000f80367c1"),
1528            ("netboot-locally-installed-oses", "07383080-91df-11d1-aebc-0000f80367c1"),
1529            ("ms-dfsr-stagingpath", "86b9a69e-f0a6-405d-99bb-77d977992c2a"),
1530            ("ldap-ipdeny-list", "7359a353-90f7-11d1-aebc-0000f80367c1"),
1531            ("birth-location", "1f0075f9-7e40-11d0-afd6-00c04fd930c9"),
1532            ("service-instance", "bf967ab2-0de6-11d0-a285-00aa003049e2"),
1533            ("ipsec-isakmp-policy", "b40ff828-427a-11d1-a9c2-0000f80367c1"),
1534            ("ms-authz-last-effective-security-policy", "8e1685c6-3e2f-48a2-a58d-5af0ea789fa0"),
1535            ("site-object", "3e10944c-c354-11d0-aff8-0000f80367c1"),
1536            ("netboot-limit-clients", "07383077-91df-11d1-aebc-0000f80367c1"),
1537            ("ms-dfsr-rootsizeinmb", "90b769ac-4413-43cf-ad7a-867142e740a3"),
1538            ("ldap-display-name", "bf96799a-0de6-11d0-a285-00aa003049e2"),
1539            ("bad-pwd-count", "bf96792e-0de6-11d0-a285-00aa003049e2"),
1540            ("ms-authz-proposed-security-policy", "b946bece-09b5-4b6a-b25a-4b63a330e80e"),
1541            ("site-list", "d50c2cdc-8951-11d1-aebc-0000f80367c1"),
1542            ("netboot-intellimirror-oses", "0738307e-91df-11d1-aebc-0000f80367c1"),
1543            ("ms-dfsr-rootpath", "d7d5e8c1-e61f-464f-9fcf-20bbe0a2ec54"),
1544            ("ldap-admin-limits", "7359a352-90f7-11d1-aebc-0000f80367c1"),
1545            ("bad-password-time", "bf96792d-0de6-11d0-a285-00aa003049e2"),
1546            ("service-connection-point", "28630ec1-41d5-11d1-a9c1-0000f80367c1"),
1547            ("ipsec-filter", "b40ff826-427a-11d1-a9c2-0000f80367c1"),
1548            ("ms-authz-effective-security-policy", "07831919-8f94-4fb6-8a42-91545dccdad3"),
1549            ("site-link-list", "d50c2cdd-8951-11d1-aebc-0000f80367c1"),
1550            ("netboot-initialization", "3e978920-8c01-11d0-afda-00c04fd930c9"),
1551            ("ms-dfsr-extension", "78f011ec-a766-4b19-adcf-7b81ed781a4d"),
1552            ("last-update-sequence", "7d6c0e9c-7e20-11d0-afd6-00c04fd930c9"),
1553            ("auxiliary-class", "bf96792c-0de6-11d0-a285-00aa003049e2"),
1554            ("ms-dns-nsec3-current-salt", "387d9432-a6d1-4474-82cd-0a89aae084ae"),
1555            ("site-guid", "3e978924-8c01-11d0-afda-00c04fd930c9"),
1556            ("netboot-duid", "532570bd-3d77-424f-822f-0d636dc6daad"),
1557            ("ms-dfsr-version", "1a861408-38c3-49ea-ba75-85481a77c655"),
1558            ("last-set-time", "bf967998-0de6-11d0-a285-00aa003049e2"),
1559            ("authority-revocation-list", "1677578d-47f3-11d1-a9c3-0000f80367c1"),
1560            ("service-class", "bf967ab1-0de6-11d0-a285-00aa003049e2"),
1561            ("ipsec-base", "b40ff825-427a-11d1-a9c2-0000f80367c1"),
1562            ("ms-dns-nsec3-user-salt", "aff16770-9622-4fbc-a128-3088777605b9"),
1563            ("signature-algorithms", "2a39c5b2-8960-11d1-aebc-0000f80367c1"),
1564            ("netboot-guid", "3e978921-8c01-11d0-afda-00c04fd930c9"),
1565            ("ms-frs-topology-pref", "92aa27e0-5c50-402d-9ec1-ee847def9788"),
1566            ("last-logon-timestamp", "c0e20a04-0e5a-4ff3-9482-5efeaecd7060"),
1567            ("authentication-options", "bf967928-0de6-11d0-a285-00aa003049e2"),
1568            ("ms-dns-propagation-time", "ba340d47-2181-4ca0-a2f6-fae4479dab2a"),
1569            ("sid-history", "17eb4278-d167-11d0-b002-0000f80367c1"),
1570            ("netboot-current-client-count", "07383079-91df-11d1-aebc-0000f80367c1"),
1571            ("ms-frs-hub-member", "5643ff81-35b6-4ca9-9512-baf0bd0a2772"),
1572            ("last-logon", "bf967997-0de6-11d0-a285-00aa003049e2"),
1573            ("auditing-policy", "6da8a4fe-0e52-11d0-a286-00aa003049e2"),
1574            ("service-administration-point", "b7b13123-b82e-11d0-afee-0000f80367c1"),
1575            ("inter-site-transport-container", "26d97375-6070-11d1-a9c6-0000f80367c1"),
1576            ("ms-dns-parent-has-secure-delegation", "285c6964-c11a-499e-96d8-bf7c75a223c6"),
1577            ("show-in-advanced-view-only", "bf967984-0de6-11d0-a285-00aa003049e2"),
1578            ("netboot-answer-requests", "0738307a-91df-11d1-aebc-0000f80367c1"),
1579            ("ms-exch-owner-bl", "bf9679f4-0de6-11d0-a285-00aa003049e2"),
1580            ("last-logoff", "bf967996-0de6-11d0-a285-00aa003049e2"),
1581            ("audio", "d0e1d224-e1a0-42ce-a2da-793ba5244f35"),
1582            ("ms-dns-dnskey-records", "28c458f5-602d-4ac9-a77c-b3f1be503a7e"),
1583            ("show-in-address-book", "3e74f60e-3e73-11d1-a9c0-0000f80367c1"),
1584            ("netboot-answer-only-valid-clients", "0738307b-91df-11d1-aebc-0000f80367c1"),
1585            ("ms-exch-labeleduri", "16775820-47f3-11d1-a9c3-0000f80367c1"),
1586            ("last-known-parent", "52ab8670-5709-11d1-a9c6-0000f80367c1"),
1587            ("attribute-types", "9a7ad944-ca53-11d1-bbd0-0080c76670c0"),
1588            ("servers-container", "f780acc0-56f0-11d1-a9c6-0000f80367c1"),
1589            ("inter-site-transport", "26d97376-6070-11d1-a9c6-0000f80367c1"),
1590            ("ms-dns-signing-keys", "b7673e6d-cad9-4e9e-b31a-63e8098fdd63"),
1591            ("short-server-name", "45b01501-c419-11d1-bbc9-0080c76670c0"),
1592            ("netboot-allow-new-clients", "07383076-91df-11d1-aebc-0000f80367c1"),
1593            ("ms-exch-house-identifier", "a8df7407-c5ea-11d1-bbcb-0080c76670c0"),
1594            ("last-content-indexed", "bf967995-0de6-11d0-a285-00aa003049e2"),
1595            ("attribute-syntax", "bf967925-0de6-11d0-a285-00aa003049e2"),
1596            ("ms-dns-signing-key-descriptors", "3443d8cd-e5b6-4f3b-b098-659a0214a079"),
1597            ("shell-property-pages", "52458039-ca6a-11d0-afff-0000f80367c1"),
1598            ("netbios-name", "bf9679d8-0de6-11d0-a285-00aa003049e2"),
1599            ("ms-exch-assistant-name", "a8df7394-c5ea-11d1-bbcb-0080c76670c0"),
1600            ("last-backup-restoration-time", "1fbb0be8-ba63-11d0-afef-0000f80367c1"),
1601            ("attribute-security-guid", "bf967924-0de6-11d0-a285-00aa003049e2"),
1602            ("server", "bf967a92-0de6-11d0-a285-00aa003049e2"),
1603            ("intellimirror-scp", "07383085-91df-11d1-aebc-0000f80367c1"),
1604            ("ms-dns-secure-delegation-polling-period", "f6b0f0be-a8e4-4468-8fd9-c3c47b8722f9"),
1605            ("shell-context-menu", "553fd039-f32e-11d0-b0bc-00c04fd8dca6"),
1606            ("nc-name", "bf9679d6-0de6-11d0-a285-00aa003049e2"),
1607            ("ms-ds-token-group-names-no-gc-acceptable", "523fc6c8-9af4-4a02-9cd7-3dea129eeb27"),
1608            ("labeleduri", "c569bb46-c680-44bc-a273-e6c227d71b45"),
1609            ("attribute-id", "bf967922-0de6-11d0-a285-00aa003049e2"),
1610            ("ms-dns-signature-inception-offset", "03d4c32e-e217-4a61-9699-7bbc4729a026"),
1611            ("setup-command", "7d6c0e97-7e20-11d0-afd6-00c04fd930c9"),
1612            ("name-service-flags", "80212840-4bdc-11d1-a9c4-0000f80367c1"),
1613            ("ms-ds-token-group-names-global-and-universal", "fa06d1f4-7922-4aad-b79c-b2201f54417c"),
1614            ("knowledge-information", "1677581f-47f3-11d1-a9c3-0000f80367c1"),
1615            ("attribute-display-names", "cb843f80-48d9-11d1-a9c3-0000f80367c1"),
1616            ("security-principal", "bf967ab0-0de6-11d0-a285-00aa003049e2"),
1617            ("intellimirror-group", "07383086-91df-11d1-aebc-0000f80367c1"),
1618            ("ms-dns-ds-record-set-ttl", "29869b7c-64c4-42fe-97d5-fbc2fa124160"),
1619            ("catalogs", "7bfdcb81-4807-11d1-a9c3-0000f80367c1"),
1620            ("subnet-container", "b7b13125-b82e-11d0-afee-0000f80367c1"),
1621            ("link-track-vol-entry", "ddac0cf6-af8f-11d0-afeb-00c04fd930c9"),
1622            ("ms-kds-publickey-length", "e338f470-39cd-4549-ab5b-f69f9e583fe0"),
1623            ("surname", "bf967a41-0de6-11d0-a285-00aa003049e2"),
1624            ("notification-list", "19195a56-6da0-11d0-afd3-00c04fd930c9"),
1625            ("ms-dfsr-rdcminfilesizeinkb", "f402a330-ace5-4dc1-8cc9-74d900bf8ae0"),
1626            ("lockout-time", "28630ebf-41d5-11d1-a9c1-0000f80367c1"),
1627            ("carlicense", "d4159c92-957d-4a87-8a67-8d2934e01649"),
1628            ("ms-kds-secretagreement-param", "30b099d9-edfe-7549-b807-eba444da79e9"),
1629            ("supported-application-context", "1677588f-47f3-11d1-a9c3-0000f80367c1"),
1630            ("non-security-member-bl", "52458019-ca6a-11d0-afff-0000f80367c1"),
1631            ("ms-dfsr-rdcenabled", "e3b44e05-f4a7-4078-a730-f48670a743f8"),
1632            ("lockout-threshold", "bf9679a6-0de6-11d0-a285-00aa003049e2"),
1633            ("canonical-name", "9a7ad945-ca53-11d1-bbd0-0080c76670c0"),
1634            ("subnet", "b7b13124-b82e-11d0-afee-0000f80367c1"),
1635            ("link-track-omt-entry", "ddac0cf7-af8f-11d0-afeb-00c04fd930c9"),
1636            ("ms-kds-secretagreement-algorithmid", "1702975d-225e-cb4a-b15d-0daea8b5e990"),
1637            ("supplemental-credentials", "bf967a3f-0de6-11d0-a285-00aa003049e2"),
1638            ("non-security-member", "52458018-ca6a-11d0-afff-0000f80367c1"),
1639            ("ms-dfsr-contentsetguid", "1035a8e1-67a8-4c21-b7bb-031cdf99d7a0"),
1640            ("lockout-duration", "bf9679a5-0de6-11d0-a285-00aa003049e2"),
1641            ("can-upgrade-script", "d9e18314-8939-11d1-aebc-0000f80367c1"),
1642            ("ms-kds-kdf-param", "8a800772-f4b8-154f-b41c-2e4271eff7a7"),
1643            ("superior-dns-root", "5245801d-ca6a-11d0-afff-0000f80367c1"),
1644            ("next-rid", "bf9679db-0de6-11d0-a285-00aa003049e2"),
1645            ("ms-dfsr-options", "d6d67084-c720-417d-8647-b696237a114c"),
1646            ("lock-out-observation-window", "bf9679a4-0de6-11d0-a285-00aa003049e2"),
1647            ("ca-web-url", "963d2736-48be-11d1-a9c3-0000f80367c1"),
1648            ("storage", "bf967ab5-0de6-11d0-a285-00aa003049e2"),
1649            ("link-track-object-move-table", "ddac0cf5-af8f-11d0-afeb-00c04fd930c9"),
1650            ("ms-kds-kdf-algorithmid", "db2c48b2-d14d-ec4e-9f58-ad579d8b440e"),
1651            ("super-scopes", "963d274b-48be-11d1-a9c3-0000f80367c1"),
1652            ("next-level-store", "bf9679da-0de6-11d0-a285-00aa003049e2"),
1653            ("ms-dfsr-flags", "fe515695-3f61-45c8-9bfa-19c148c57b09"),
1654            ("location", "09dcb79f-165f-11d0-a064-00aa006c33ed"),
1655            ("ca-usages", "963d2738-48be-11d1-a9c3-0000f80367c1"),
1656            ("ms-ds-is-primary-computer-for", "998c06ac-3f87-444e-a5df-11b03dc8a50c"),
1657            ("super-scope-description", "963d274c-48be-11d1-a9c3-0000f80367c1"),
1658            ("network-address", "bf9679d9-0de6-11d0-a285-00aa003049e2"),
1659            ("ms-dfsr-keywords", "048b4692-6227-4b67-a074-c4437083e14b"),
1660            ("localization-display-id", "a746f0d1-78d0-11d2-9916-0000f87a57d4"),
1661            ("ca-connect", "963d2735-48be-11d1-a9c3-0000f80367c1"),
1662            ("sites-container", "7a4117da-cd67-11d0-afff-0000f80367c1"),
1663            ("licensing-site-settings", "1be8f17d-a9ff-11d0-afe2-00c04fd930c9"),
1664            ("ms-ds-primary-computer", "a13df4e2-dbb0-4ceb-828b-8b2e143e9e81"),
1665            ("subschemasubentry", "9a7ad94d-ca53-11d1-bbd0-0080c76670c0"),
1666            ("netboot-tools", "0738307f-91df-11d1-aebc-0000f80367c1"),
1667            ("ms-dfsr-schedule", "4699f15f-a71f-48e2-9ff5-5897c0759205"),
1668            ("localized-description", "d9e18316-8939-11d1-aebc-0000f80367c1"),
1669            ("ca-certificate-dn", "963d2740-48be-11d1-a9c3-0000f80367c1"),
1670            ("ms-ds-generation-id", "1e5d393d-8cb7-4b4f-840a-973b36cc09c3"),
1671            ("sub-refs", "bf967a3c-0de6-11d0-a285-00aa003049e2"),
1672            ("netboot-sif-file", "2df90d84-009f-11d2-aa4c-00c04fd7d83a"),
1673            ("ms-dfsr-directoryfilter", "93c7b477-1f2e-4b40-b7bf-007e8d038ccf"),
1674            ("locality-name", "bf9679a2-0de6-11d0-a285-00aa003049e2"),
1675            ("ca-certificate", "bf967932-0de6-11d0-a285-00aa003049e2"),
1676            ("site-link-bridge", "d50c2cdf-8951-11d1-aebc-0000f80367c1"),
1677            ("leaf", "bf967a9e-0de6-11d0-a285-00aa003049e2"),
1678            ("ms-ds-claim-is-single-valued", "cd789fb9-96b4-4648-8219-ca378161af38"),
1679            ("sub-class-of", "bf967a3b-0de6-11d0-a285-00aa003049e2"),
1680            ("netboot-server", "07383081-91df-11d1-aebc-0000f80367c1"),
1681            ("ms-dfsr-filefilter", "d68270ac-a5dc-4841-a6ac-cd68be38c181"),
1682            ("locale-id", "bf9679a1-0de6-11d0-a285-00aa003049e2"),
1683            ("bytes-per-minute", "ba305f76-47e3-11d0-a1a6-00c04fd930c9"),
1684            ("ms-ds-claim-is-value-space-restricted", "0c2ce4c7-f1c3-4482-8578-c60d4bb74422"),
1685            ("structural-object-class", "3860949f-f6a8-4b38-9950-81ecb6bc2982"),
1686            ("netboot-scp-bl", "07383082-91df-11d1-aebc-0000f80367c1"),
1687            ("ms-dfsr-tombstoneexpiryinmin", "23e35d4c-e324-4861-a22f-e199140dae00"),
1688            ("local-policy-reference", "80a67e4d-9f22-11d0-afdd-00c04fd930c9"),
1689            ("business-category", "bf967931-0de6-11d0-a285-00aa003049e2"),
1690            ("site-link", "d50c2cde-8951-11d1-aebc-0000f80367c1"),
1691            ("ipsec-policy", "b7b13121-b82e-11d0-afee-0000f80367c1"),
1692            ("ms-ds-claim-source-type", "92f19c05-8dfa-4222-bbd1-2c4f01487754"),
1693            ("street-address", "bf967a3a-0de6-11d0-a285-00aa003049e2"),
1694            ("netboot-new-machine-ou", "0738307d-91df-11d1-aebc-0000f80367c1"),
1695            ("ms-dfsr-replicationgrouptype", "eeed0fc8-1001-45ed-80cc-bbf744930720"),
1696            ("local-policy-flags", "bf96799e-0de6-11d0-a285-00aa003049e2"),
1697            ("builtin-modified-count", "bf967930-0de6-11d0-a285-00aa003049e2"),
1698            ("ms-ds-claim-source", "fa32f2a6-f28b-47d0-bf91-663e8f910a72"),
1699            ("state-or-province-name", "bf967a39-0de6-11d0-a285-00aa003049e2"),
1700            ("netboot-new-machine-naming-policy", "0738307c-91df-11d1-aebc-0000f80367c1"),
1701            ("ms-dfsr-enabled", "03726ae7-8e7d-4446-8aae-a91657c00993"),
1702            ("lm-pwd-history", "bf96799d-0de6-11d0-a285-00aa003049e2"),
1703            ("builtin-creation-time", "bf96792f-0de6-11d0-a285-00aa003049e2"),
1704            ("site", "bf967ab3-0de6-11d0-a285-00aa003049e2"),
1705            ("ipsec-nfa", "b40ff829-427a-11d1-a9c2-0000f80367c1"),
1706            ("ms-authz-member-rules-in-central-access-policy-bl", "516e67cf-fedd-4494-bb3a-bc506a948891"),
1707            ("spn-mappings", "2ab0e76c-7041-11d2-9905-0000f87a57d4"),
1708            ("netboot-mirror-data-file", "2df90d85-009f-11d2-aa4c-00c04fd7d83a"),
1709            ("ms-dfsr-conflictsizeinmb", "9ad33fc9-aacf-4299-bb3e-d1fc6ea88e49"),
1710            ("link-track-secret", "2ae80fe2-47b4-11d0-a1a4-00c04fd930c9"),
1711            ("buildingname", "f87fa54b-b2c5-4fd7-88c0-daccb21d93c5"),
1712            ("ms-authz-member-rules-in-central-access-policy", "57f22f7a-377e-42c3-9872-cec6f21d2e3e"),
1713            ("smtp-mail-address", "26d9736f-6070-11d1-a9c6-0000f80367c1"),
1714            ("netboot-max-clients", "07383078-91df-11d1-aebc-0000f80367c1"),
1715            ("ms-dfsr-conflictpath", "5cf0bcc8-60f7-4bff-bda6-aea0344eb151"),
1716            ("link-id", "bf96799b-0de6-11d0-a285-00aa003049e2"),
1717            ("bridgehead-transport-list", "d50c2cda-8951-11d1-aebc-0000f80367c1"),
1718            ("simplesecurityobject", "5fe69b0b-e146-4f15-b0ab-c1e5d488e094"),
1719            ("ms-dfsr-maxageincacheinmin", "2ab0e48d-ac4e-4afc-83e5-a34240db6198"),
1720            ("marshalled-interface", "bf9679b9-0de6-11d0-a285-00aa003049e2"),
1721            ("com-typelib-id", "281416de-1968-11d0-a28f-00aa003049e2"),
1722            ("shadowaccount", "5b6d8467-1a18-4174-b350-9cc6e7b4ac8d"),
1723            ("ms-com-partitionset", "250464ab-c417-497a-975a-9e0d459a7ca1"),
1724            ("ms-ds-groupmsamembership", "888eedd6-ce04-df40-b462-b8a50e41ba38"),
1725            ("telex-primary", "0296c121-40da-11d1-a9c0-0000f80367c1"),
1726            ("oem-information", "bf9679ea-0de6-11d0-a285-00aa003049e2"),
1727            ("ms-dfsr-mindurationcacheinmin", "4c5d607a-ce49-444a-9862-82a95f5d1fcc"),
1728            ("mapi-id", "bf9679b7-0de6-11d0-a285-00aa003049e2"),
1729            ("com-treat-as-class-id", "281416db-1968-11d0-a28f-00aa003049e2"),
1730            ("ms-ds-managedpasswordinterval", "f8758ef7-ac76-8843-a2ee-a26b4dcaf409"),
1731            ("telex-number", "bf967a4b-0de6-11d0-a285-00aa003049e2"),
1732            ("object-version", "16775848-47f3-11d1-a9c3-0000f80367c1"),
1733            ("ms-dfsr-cachepolicy", "db7a08e7-fc76-4569-a45f-f5ecb66a88b5"),
1734            ("manager", "bf9679b5-0de6-11d0-a285-00aa003049e2"),
1735            ("com-progid", "bf96793d-0de6-11d0-a285-00aa003049e2"),
1736            ("posixaccount", "ad44bb41-67d5-4d88-b575-7b20674e76d8"),
1737            ("ms-com-partition", "c9010e74-4e58-49f7-8a89-5e3e2340fcf8"),
1738            ("ms-ds-managedpasswordpreviousid", "d0d62131-2d4a-d04f-99d9-1c63646229a4"),
1739            ("teletex-terminal-identifier", "bf967a4a-0de6-11d0-a285-00aa003049e2"),
1740            ("object-sid", "bf9679e8-0de6-11d0-a285-00aa003049e2"),
1741            ("ms-dfsr-readonly", "5ac48021-e447-46e7-9d23-92c0c6a90dfb"),
1742            ("managed-objects", "0296c124-40da-11d1-a9c0-0000f80367c1"),
1743            ("com-other-prog-id", "281416dd-1968-11d0-a28f-00aa003049e2"),
1744            ("ms-ds-managedpasswordid", "0e78295a-c6d3-0a40-b491-d62251ffa0a6"),
1745            ("telephone-number", "bf967a49-0de6-11d0-a285-00aa003049e2"),
1746            ("object-guid", "bf9679e7-0de6-11d0-a285-00aa003049e2"),
1747            ("ms-dfsr-deletedsizeinmb", "53ed9ad1-9975-41f4-83f5-0c061a12553a"),
1748            ("managed-by", "0296c120-40da-11d1-a9c0-0000f80367c1"),
1749            ("com-interfaceid", "bf96793c-0de6-11d0-a285-00aa003049e2"),
1750            ("volume", "bf967abb-0de6-11d0-a285-00aa003049e2"),
1751            ("meeting", "11b6cc94-48c4-11d1-a9c3-0000f80367c1"),
1752            ("ms-ds-managedpassword", "e362ed86-b728-0842-b27d-2dea7a9df218"),
1753            ("system-poss-superiors", "bf967a47-0de6-11d0-a285-00aa003049e2"),
1754            ("object-count", "34aaa216-b699-11d0-afee-0000f80367c1"),
1755            ("ms-dfsr-deletedpath", "817cf0b8-db95-4914-b833-5a079ef65764"),
1756            ("machine-wide-policy", "80a67e4f-9f22-11d0-afdd-00c04fd930c9"),
1757            ("com-clsid", "281416d9-1968-11d0-a28f-00aa003049e2"),
1758            ("ms-ds-allowed-to-act-on-behalf-of-other-identity", "3f78c3e5-f79a-46bd-a0b8-9d18116ddc79"),
1759            ("system-only", "bf967a46-0de6-11d0-a285-00aa003049e2"),
1760            ("object-classes", "9a7ad94b-ca53-11d1-bbd0-0080c76670c0"),
1761            ("ms-dfsr-priority", "eb20e7d6-32ad-42de-b141-16ad2631b01b"),
1762            ("machine-role", "bf9679b2-0de6-11d0-a285-00aa003049e2"),
1763            ("com-classid", "bf96793b-0de6-11d0-a285-00aa003049e2"),
1764            ("user", "bf967aba-0de6-11d0-a285-00aa003049e2"),
1765            ("mail-recipient", "bf967aa1-0de6-11d0-a285-00aa003049e2"),
1766            ("ms-imaging-hash-algorithm", "8ae70db5-6406-4196-92fe-f3bb557520a7"),
1767            ("system-must-contain", "bf967a45-0de6-11d0-a285-00aa003049e2"),
1768            ("object-class-category", "bf9679e6-0de6-11d0-a285-00aa003049e2"),
1769            ("ms-dfsr-computerreferencebl", "5eb526d7-d71b-44ae-8cc6-95460052e6ac"),
1770            ("machine-password-change-interval", "c9b6358e-bb38-11d0-afef-0000f80367c1"),
1771            ("code-page", "bf967938-0de6-11d0-a285-00aa003049e2"),
1772            ("type-library", "281416e2-1968-11d0-a28f-00aa003049e2"),
1773            ("ms-imaging-thumbprint-hash", "9cdfdbc5-0304-4569-95f6-c4f663fe5ae6"),
1774            ("system-may-contain", "bf967a44-0de6-11d0-a285-00aa003049e2"),
1775            ("object-class", "bf9679e5-0de6-11d0-a285-00aa003049e2"),
1776            ("ms-dfsr-memberreferencebl", "adde62c6-1880-41ed-bd3c-30b7d25e14f0"),
1777            ("machine-architecture", "bf9679af-0de6-11d0-a285-00aa003049e2"),
1778            ("class-display-name", "548e1c22-dea6-11d0-b010-0000f80367c1"),
1779            ("lost-and-found", "52ab8671-5709-11d1-a9c6-0000f80367c1"),
1780            ("ms-kds-createtime", "ae18119f-6390-0045-b32d-97dbc701aef7"),
1781            ("system-flags", "e0fa1e62-9b45-11d0-afdd-00c04fd930c9"),
1782            ("object-category", "26d97369-6070-11d1-a9c6-0000f80367c1"),
1783            ("ms-dfsr-computerreference", "6c7b5785-3d21-41bf-8a8a-627941544d5a"),
1784            ("lsa-modified-count", "bf9679ae-0de6-11d0-a285-00aa003049e2"),
1785            ("certificate-templates", "2a39c5b1-8960-11d1-aebc-0000f80367c1"),
1786            ("trusted-domain", "bf967ab8-0de6-11d0-a285-00aa003049e2"),
1787            ("ms-kds-usestarttime", "6cdc047f-f522-b74a-9a9c-d95ac8cdfda2"),
1788            ("system-auxiliary-class", "bf967a43-0de6-11d0-a285-00aa003049e2"),
1789            ("obj-dist-name", "bf9679e4-0de6-11d0-a285-00aa003049e2"),
1790            ("ms-dfsr-memberreference", "261337aa-f1c3-44b2-bbea-c88d49e6f0c7"),
1791            ("lsa-creation-time", "bf9679ad-0de6-11d0-a285-00aa003049e2"),
1792            ("certificate-revocation-list", "1677579f-47f3-11d1-a9c3-0000f80367c1"),
1793            ("locality", "bf967aa0-0de6-11d0-a285-00aa003049e2"),
1794            ("ms-kds-domainid", "96400482-cf07-e94c-90e8-f2efc4f0495e"),
1795            ("sync-with-sid", "037651e5-441d-11d1-a9c3-0000f80367c1"),
1796            ("nt-security-descriptor", "bf9679e3-0de6-11d0-a285-00aa003049e2"),
1797            ("ms-dfsr-dfslinktarget", "f7b85ba9-3bf9-428f-aab4-2eee6d56f063"),
1798            ("logon-workstation", "bf9679ac-0de6-11d0-a285-00aa003049e2"),
1799            ("certificate-authority-object", "963d2732-48be-11d1-a9c3-0000f80367c1"),
1800            ("top", "bf967ab7-0de6-11d0-a285-00aa003049e2"),
1801            ("ms-kds-version", "d5f07340-e6b0-1e4a-97be-0d3318bd9db1"),
1802            ("sync-with-object", "037651e2-441d-11d1-a9c3-0000f80367c1"),
1803            ("nt-pwd-history", "bf9679e2-0de6-11d0-a285-00aa003049e2"),
1804            ("ms-dfsr-replicationgroupguid", "2dad8796-7619-4ff8-966e-0a5cc67b287f"),
1805            ("logon-hours", "bf9679ab-0de6-11d0-a285-00aa003049e2"),
1806            ("category-id", "7d6c0e94-7e20-11d0-afd6-00c04fd930c9"),
1807            ("link-track-volume-table", "ddac0cf4-af8f-11d0-afeb-00c04fd930c9"),
1808            ("ms-kds-rootkeydata", "26627c27-08a2-0a40-a1b1-8dce85b42993"),
1809            ("sync-membership", "037651e3-441d-11d1-a9c3-0000f80367c1"),
1810            ("nt-mixed-domain", "3e97891f-8c01-11d0-afda-00c04fd930c9"),
1811            ("ms-dfsr-rootfence", "51928e94-2cd8-4abe-b552-e50412444370"),
1812            ("logon-count", "bf9679aa-0de6-11d0-a285-00aa003049e2"),
1813            ("categories", "7bfdcb7e-4807-11d1-a9c3-0000f80367c1"),
1814            ("ms-kds-privatekey-length", "615f42a1-37e7-1148-a0dd-3007e09cfc81"),
1815            ("sync-attributes", "037651e4-441d-11d1-a9c3-0000f80367c1"),
1816            ("nt-group-members", "bf9679df-0de6-11d0-a285-00aa003049e2"),
1817            ("ms-dfsr-dfspath", "2cc903e2-398c-443b-ac86-ff6b01eac7ba"),
1818            ("logo", "bf9679a9-0de6-11d0-a285-00aa003049e2"),
1819            ("trust-auth-incoming", "bf967a59-0de6-11d0-a285-00aa003049e2"),
1820            ("organizationalstatus", "28596019-7349-4d2f-adff-5a629961f942"),
1821            ("ms-net-ieee-80211-gp-policydata", "9c1495a5-4d76-468e-991e-1433b0a67855"),
1822            ("meetingid", "11b6cc7c-48c4-11d1-a9c3-0000f80367c1"),
1823            ("creation-time", "bf967946-0de6-11d0-a285-00aa003049e2"),
1824            ("nisnetgroup", "72efbf84-6e7b-4a5c-a8db-8a75a7cad254"),
1825            ("ms-ds-az-scope", "4feae054-ce55-47bb-860e-5b12063a51de"),
1826            ("ms-ds-cloudextensionattribute3", "82f6c81a-fada-4a0d-b0f7-706d46838eb5"),
1827            ("trust-attributes", "80a67e5a-9f22-11d0-afdd-00c04fd930c9"),
1828            ("organizational-unit-name", "bf9679f0-0de6-11d0-a285-00aa003049e2"),
1829            ("ms-net-ieee-80211-gp-policyguid", "35697062-1eaf-448b-ac1e-388e0be4fdee"),
1830            ("meetingendtime", "11b6cc91-48c4-11d1-a9c3-0000f80367c1"),
1831            ("create-wizard-ext", "2b09958b-8931-11d1-aebc-0000f80367c1"),
1832            ("ms-ds-cloudextensionattribute2", "f34ee0ac-c0c1-4ba9-82c9-1a90752f16a5"),
1833            ("tree-name", "28630ebd-41d5-11d1-a9c1-0000f80367c1"),
1834            ("organization-name", "bf9679ef-0de6-11d0-a285-00aa003049e2"),
1835            ("ms-imaging-psp-string", "7b6760ae-d6ed-44a6-b6be-9de62c09ec67"),
1836            ("meetingdescription", "11b6cc7e-48c4-11d1-a9c3-0000f80367c1"),
1837            ("create-time-stamp", "2df90d73-009f-11d2-aa4c-00c04fd7d83a"),
1838            ("ipnetwork", "d95836c3-143e-43fb-992a-b057f1ecadf9"),
1839            ("ms-ds-az-role", "8213eac9-9d55-44dc-925c-e9a52b927644"),
1840            ("ms-ds-cloudextensionattribute1", "9709eaaf-49da-4db2-908a-0446e5eab844"),
1841            ("treat-as-leaf", "8fd044e3-771f-11d1-aeae-0000f80367c1"),
1842            ("options-location", "963d274e-48be-11d1-a9c3-0000f80367c1"),
1843            ("ms-imaging-psp-identifier", "51583ce9-94fa-4b12-b990-304c35b18595"),
1844            ("meetingcontactinfo", "11b6cc87-48c4-11d1-a9c3-0000f80367c1"),
1845            ("create-dialog", "2b09958a-8931-11d1-aebc-0000f80367c1"),
1846            ("ms-ds-rid-pool-allocation-enabled", "24977c8c-c1b7-3340-b4f6-2b375eb711d7"),
1847            ("transport-type", "26d97374-6070-11d1-a9c6-0000f80367c1"),
1848            ("options", "19195a53-6da0-11d0-afd3-00c04fd930c9"),
1849            ("ms-iis-ftp-root", "2a7827a4-1483-49a5-9d84-52e3812156b4"),
1850            ("meetingblob", "11b6cc93-48c4-11d1-a9c3-0000f80367c1"),
1851            ("country-name", "bf967945-0de6-11d0-a285-00aa003049e2"),
1852            ("iphost", "ab911646-8827-4f95-8780-5a8f008eb68f"),
1853            ("ms-ds-az-operation", "860abe37-9a9b-4fa4-b3d2-b8ace5df9ec5"),
1854            ("ms-ds-applies-to-resource-types", "693f2006-5764-3d4a-8439-58f04aab4b59"),
1855            ("transport-dll-name", "26d97372-6070-11d1-a9c6-0000f80367c1"),
1856            ("option-description", "963d274d-48be-11d1-a9c3-0000f80367c1"),
1857            ("ms-iis-ftp-dir", "8a5c99e9-2230-46eb-b8e8-e59d712eb9ee"),
1858            ("meetingbandwidth", "11b6cc92-48c4-11d1-a9c3-0000f80367c1"),
1859            ("country-code", "5fd42471-1262-11d0-a060-00aa006c33ed"),
1860            ("ms-ds-transformation-rules-compiled", "0bb49a10-536b-bc4d-a273-0bab0dd4bd10"),
1861            ("transport-address-attribute", "c1dc867c-a261-11d1-b606-0000f80367c1"),
1862            ("operator-count", "bf9679ee-0de6-11d0-a285-00aa003049e2"),
1863            ("ms-ieee-80211-id", "7f73ef75-14c9-4c23-81de-dd07a06f9e8b"),
1864            ("meetingapplication", "11b6cc83-48c4-11d1-a9c3-0000f80367c1"),
1865            ("cost", "bf967944-0de6-11d0-a285-00aa003049e2"),
1866            ("oncrpc", "cadd1e5e-fefc-4f3f-b5a9-70e994204303"),
1867            ("ms-ds-az-application", "ddf8de9b-cba5-4e12-842e-28d8b66f75ec"),
1868            ("ms-ds-tdo-ingress-bl", "5a5661a1-97c6-544b-8056-e430fe7bc554"),
1869            ("tombstone-lifetime", "16c3a860-1273-11d0-a060-00aa006c33ed"),
1870            ("operating-system-version", "3e978926-8c01-11d0-afda-00c04fd930c9"),
1871            ("ms-ieee-80211-data-type", "6558b180-35da-4efe-beed-521f8f48cafb"),
1872            ("meetingadvertisescope", "11b6cc8b-48c4-11d1-a9c3-0000f80367c1"),
1873            ("control-access-rights", "6da8a4fc-0e52-11d0-a286-00aa003049e2"),
1874            ("ms-ds-tdo-egress-bl", "d5006229-9913-2242-8b17-83761d1e0e5b"),
1875            ("title", "bf967a55-0de6-11d0-a285-00aa003049e2"),
1876            ("operating-system-service-pack", "3e978927-8c01-11d0-afda-00c04fd930c9"),
1877            ("ms-ieee-80211-data", "0e0d0938-2658-4580-a9f6-7a0ac7b566cb"),
1878            ("may-contain", "bf9679bf-0de6-11d0-a285-00aa003049e2"),
1879            ("context-menu", "4d8601ee-ac85-11d0-afe3-00c04fd930c9"),
1880            ("ipprotocol", "9c2dcbd2-fbf0-4dc7-ace0-8356dcd0f013"),
1881            ("ms-ds-az-admin-manager", "cfee1051-5f28-4bae-a863-5d0cc18a8ed1"),
1882            ("ms-ds-egress-claims-transformation-policy", "c137427e-9a73-b040-9190-1b095bb43288"),
1883            ("time-vol-change", "ddac0cf0-af8f-11d0-afeb-00c04fd930c9"),
1884            ("operating-system-hotfix", "bd951b3c-9c96-11d0-afdd-00c04fd930c9"),
1885            ("ms-tpm-ownerinformation", "aa4e1a6d-550d-4e05-8c35-4afcb917a9fe"),
1886            ("max-ticket-age", "bf9679be-0de6-11d0-a285-00aa003049e2"),
1887            ("content-indexing-allowed", "bf967943-0de6-11d0-a285-00aa003049e2"),
1888            ("ms-ds-ingress-claims-transformation-policy", "86284c08-0c6e-1540-8b15-75147d23d20d"),
1889            ("time-refresh", "ddac0cf1-af8f-11d0-afeb-00c04fd930c9"),
1890            ("operating-system", "3e978925-8c01-11d0-afda-00c04fd930c9"),
1891            ("ms-fve-recoveryguid", "f76909bc-e678-47a0-b0b3-f86a0044c06d"),
1892            ("max-storage", "bf9679bd-0de6-11d0-a285-00aa003049e2"),
1893            ("company", "f0f8ff88-1191-11d0-a060-00aa006c33ed"),
1894            ("ipservice", "2517fadf-fa97-48ad-9de6-79ac5721f864"),
1895            ("ms-ds-app-data", "9e67d761-e327-4d55-bc95-682f875e2f8e"),
1896            ("ms-ds-transformation-rules", "55872b71-c4b2-3b48-ae51-4095f91ec600"),
1897            ("text-encoded-or-address", "a8df7489-c5ea-11d1-bbcb-0080c76670c0"),
1898            ("omt-indx-guid", "1f0075fa-7e40-11d0-afd6-00c04fd930c9"),
1899            ("ms-fve-keypackage", "1fd55ea8-88a7-47dc-8129-0daa97186a54"),
1900            ("max-renew-age", "bf9679bc-0de6-11d0-a285-00aa003049e2"),
1901            ("common-name", "bf96793f-0de6-11d0-a285-00aa003049e2"),
1902            ("ms-ds-geocoordinates-longitude", "94c42110-bae4-4cea-8577-af813af5da25"),
1903            ("text-country", "f0f8ffa7-1191-11d0-a060-00aa006c33ed"),
1904            ("omt-guid", "ddac0cf3-af8f-11d0-afeb-00c04fd930c9"),
1905            ("ms-fve-volumeguid", "85e5a5cf-dcee-4075-9cfd-ac9db6a2f245"),
1906            ("max-pwd-age", "bf9679bb-0de6-11d0-a285-00aa003049e2"),
1907            ("comment", "bf96793e-0de6-11d0-a285-00aa003049e2"),
1908            ("posixgroup", "2a9350b8-062c-4ed0-9903-dde10d06deba"),
1909            ("ms-ds-app-configuration", "90df3c3e-1854-4455-a5d7-cad40d56657a"),
1910            ("ms-ds-geocoordinates-latitude", "dc66d44e-3d43-40f5-85c5-3c12e169927e"),
1911            ("terminal-server", "6db69a1c-9422-11d1-aebd-0000f80367c1"),
1912            ("om-syntax", "bf9679ed-0de6-11d0-a285-00aa003049e2"),
1913            ("ms-fve-recoverypassword", "43061ac1-c8ad-4ccc-b785-2bfac20fc60a"),
1914            ("mastered-by", "e48e64e0-12c9-11d3-9102-00c04fd91ab1"),
1915            ("com-unique-libid", "281416da-1968-11d0-a28f-00aa003049e2"),
1916            ("ms-ds-geocoordinates-altitude", "a11703b7-5641-4d9c-863e-5fb3325e74e0"),
1917            ("template-roots", "ed9de9a0-7041-11d2-9905-0000f87a57d4"),
1918            ("om-object-class", "bf9679ec-0de6-11d0-a285-00aa003049e2"),
1919            ("default-object-category", "26d97367-6070-11d1-a9c6-0000f80367c1"),
1920            ("ms-ds-cloudextensionattribute18", "88e73b34-0aa6-4469-9842-6eb01b32a5b5"),
1921            ("unstructuredname", "9c8ef177-41cf-45c9-9673-7716c0c8901b"),
1922            ("partial-attribute-deletion-list", "28630ec0-41d5-11d1-a9c1-0000f80367c1"),
1923            ("ms-pki-oid-cps", "5f49940e-a79f-4a51-bb6f-3d446a54dc6b"),
1924            ("meetingstarttime", "11b6cc90-48c4-11d1-a9c3-0000f80367c1"),
1925            ("default-local-policy-object", "bf96799f-0de6-11d0-a285-00aa003049e2"),
1926            ("mssfu-30-domain-info", "36297dce-656b-4423-ab65-dabb2770819e"),
1927            ("ms-ds-managed-service-account", "ce206244-5827-4a86-ba1c-1c0c386c1b64"),
1928            ("ms-ds-cloudextensionattribute17", "3d3c6dda-6be8-4229-967e-2ff5bb93b4ce"),
1929            ("unstructuredaddress", "50950839-cc4c-4491-863a-fcf942d684b7"),
1930            ("parent-guid", "2df90d74-009f-11d2-aa4c-00c04fd7d83a"),
1931            ("ms-pki-oid-attribute", "8c9e1288-5028-4f4f-a704-76d026f246ef"),
1932            ("meetingscope", "11b6cc8a-48c4-11d1-a9c3-0000f80367c1"),
1933            ("default-hiding-value", "b7b13116-b82e-11d0-afee-0000f80367c1"),
1934            ("ms-ds-cloudextensionattribute16", "9581215b-5196-4053-a11e-6ffcafc62c4d"),
1935            ("uniquemember", "8f888726-f80a-44d7-b1ee-cb9df21392c8"),
1936            ("parent-ca-certificate-chain", "963d2733-48be-11d1-a9c3-0000f80367c1"),
1937            ("ms-pki-minimal-key-size", "e96a63f5-417f-46d3-be52-db7703c503df"),
1938            ("meetingrecurrence", "11b6cc8f-48c4-11d1-a9c3-0000f80367c1"),
1939            ("default-group", "720bc4e2-a54a-11d0-afdf-00c04fd930c9"),
1940            ("mssfu-30-net-id", "e263192c-2a02-48df-9792-94f2328781a0"),
1941            ("ms-ds-quota-control", "de91fc26-bd02-4b52-ae26-795999e96fc7"),
1942            ("ms-ds-cloudextensionattribute15", "aae4d537-8af0-4daa-9cc6-62eadb84ff03"),
1943            ("uniqueidentifier", "ba0184c7-38c5-4bed-a526-75421470580c"),
1944            ("parent-ca", "5245801b-ca6a-11d0-afff-0000f80367c1"),
1945            ("ms-pki-enrollment-servers", "f22bd38f-a1d0-4832-8b28-0331438886a6"),
1946            ("meetingrating", "11b6cc8d-48c4-11d1-a9c3-0000f80367c1"),
1947            ("default-class-store", "bf967948-0de6-11d0-a285-00aa003049e2"),
1948            ("ms-ds-cloudextensionattribute14", "cebcb6ba-6e80-4927-8560-98feca086a9f"),
1949            ("unicode-pwd", "bf9679e1-0de6-11d0-a285-00aa003049e2"),
1950            ("package-type", "7d6c0e96-7e20-11d0-afd6-00c04fd930c9"),
1951            ("ms-pki-enrollment-flag", "d15ef7d8-f226-46db-ae79-b34e560bd12c"),
1952            ("meetingprotocol", "11b6cc81-48c4-11d1-a9c3-0000f80367c1"),
1953            ("dbcs-pwd", "bf96799c-0de6-11d0-a285-00aa003049e2"),
1954            ("mssfu-30-mail-aliases", "d6710785-86ff-44b7-85b5-f1f8689522ce"),
1955            ("ms-ds-quota-container", "da83fc4f-076f-4aea-b4dc-8f4dab9b5993"),
1956            ("ms-ds-cloudextensionattribute13", "28be464b-ab90-4b79-a6b0-df437431d036"),
1957            ("unc-name", "bf967a64-0de6-11d0-a285-00aa003049e2"),
1958            ("package-name", "7d6c0e98-7e20-11d0-afd6-00c04fd930c9"),
1959            ("ms-pki-credential-roaming-tokens", "b7ff5a38-0818-42b0-8110-d3d154c97f24"),
1960            ("meetingowner", "11b6cc88-48c4-11d1-a9c3-0000f80367c1"),
1961            ("current-value", "bf967947-0de6-11d0-a285-00aa003049e2"),
1962            ("ms-ds-cloudextensionattribute12", "3c01c43d-e10b-4fca-92b2-4cf615d5b09a"),
1963            ("uid", "0bb0fca0-1e89-429f-901a-1413894d9f59"),
1964            ("package-flags", "7d6c0e99-7e20-11d0-afd6-00c04fd930c9"),
1965            ("ms-pki-certificate-policy", "38942346-cc5b-424b-a7d8-6ffd12029c5f"),
1966            ("meetingoriginator", "11b6cc86-48c4-11d1-a9c3-0000f80367c1"),
1967            ("current-parent-ca", "963d273f-48be-11d1-a9c3-0000f80367c1"),
1968            ("bootabledevice", "4bcb2477-4bb3-4545-a9fc-fb66e136b435"),
1969            ("ms-ds-password-settings-container", "5b06b06a-4cf3-44c0-bd16-43bc10a987da"),
1970            ("ms-ds-cloudextensionattribute11", "9e9ebbc8-7da5-42a6-8925-244e12a56e24"),
1971            ("uas-compat", "bf967a61-0de6-11d0-a285-00aa003049e2"),
1972            ("owner", "bf9679f3-0de6-11d0-a285-00aa003049e2"),
1973            ("ms-pki-certificate-name-flag", "ea1dddc4-60ff-416e-8cc0-17cee534bce7"),
1974            ("meetingname", "11b6cc7d-48c4-11d1-a9c3-0000f80367c1"),
1975            ("current-location", "1f0075fc-7e40-11d0-afd6-00c04fd930c9"),
1976            ("ms-ds-cloudextensionattribute10", "670afcb3-13bd-47fc-90b3-0a527ed81ab7"),
1977            ("trust-type", "bf967a60-0de6-11d0-a285-00aa003049e2"),
1978            ("other-well-known-objects", "1ea64e5d-ac0f-11d2-90df-00c04fd91ab1"),
1979            ("ms-pki-certificate-application-policy", "dbd90548-aa37-4202-9966-8c537ba5ce32"),
1980            ("meetingmaxparticipants", "11b6cc85-48c4-11d1-a9c3-0000f80367c1"),
1981            ("curr-machine-id", "1f0075fe-7e40-11d0-afd6-00c04fd930c9"),
1982            ("ieee802device", "a699e529-a637-4b7d-a0fb-5dc466a0b8a7"),
1983            ("ms-ds-password-settings", "3bcd9db8-f84b-451c-952f-6c52b81f9ec6"),
1984            ("ms-ds-cloudextensionattribute9", "0a63e12c-3040-4441-ae26-cd95af0d247e"),
1985            ("trust-posix-offset", "bf967a5e-0de6-11d0-a285-00aa003049e2"),
1986            ("other-name", "bf9679f2-0de6-11d0-a285-00aa003049e2"),
1987            ("ms-pki-cert-template-oid", "3164c36a-ba26-468c-8bda-c1e5cc256728"),
1988            ("meetinglocation", "11b6cc80-48c4-11d1-a9c3-0000f80367c1"),
1989            ("cross-certificate-pair", "167757b2-47f3-11d1-a9c3-0000f80367c1"),
1990            ("ms-ds-cloudextensionattribute8", "3cd1c514-8449-44ca-81c0-021781800d2a"),
1991            ("trust-partner", "bf967a5d-0de6-11d0-a285-00aa003049e2"),
1992            ("other-mailbox", "0296c123-40da-11d1-a9c0-0000f80367c1"),
1993            ("ms-net-ieee-8023-gp-policyreserved", "d3c527c7-2606-4deb-8cfd-18426feec8ce"),
1994            ("meetinglanguage", "11b6cc84-48c4-11d1-a9c3-0000f80367c1"),
1995            ("crl-partitioned-revocation-list", "963d2731-48be-11d1-a9c3-0000f80367c1"),
1996            ("nisobject", "904f8a93-4954-4c5f-b1e1-53c097a31e13"),
1997            ("ms-ds-optional-feature", "44f00041-35af-468b-b20a-6ce8737c580b"),
1998            ("ms-ds-cloudextensionattribute7", "4a7c1319-e34e-40c2-9d00-60ff7890f207"),
1999            ("trust-parent", "b000ea7a-a086-11d0-afdd-00c04fd930c9"),
2000            ("other-login-workstations", "bf9679f1-0de6-11d0-a285-00aa003049e2"),
2001            ("ms-net-ieee-8023-gp-policydata", "8398948b-7457-4d91-bd4d-8d7ed669c9f7"),
2002            ("meetingkeyword", "11b6cc7f-48c4-11d1-a9c3-0000f80367c1"),
2003            ("crl-object", "963d2737-48be-11d1-a9c3-0000f80367c1"),
2004            ("ms-ds-cloudextensionattribute6", "60452679-28e1-4bec-ace3-712833361456"),
2005            ("trust-direction", "bf967a5c-0de6-11d0-a285-00aa003049e2"),
2006            ("original-display-table-msdos", "5fd424cf-1262-11d0-a060-00aa006c33ed"),
2007            ("ms-net-ieee-8023-gp-policyguid", "94a7b05a-b8b2-4f59-9c25-39e69baa1684"),
2008            ("meetingisencrypted", "11b6cc8e-48c4-11d1-a9c3-0000f80367c1"),
2009            ("creator", "7bfdcb85-4807-11d1-a9c3-0000f80367c1"),
2010            ("nismap", "7672666c-02c1-4f33-9ecf-f649c1dd9b7c"),
2011            ("ms-ds-az-task", "1ed3a473-9b1b-418a-bfa0-3a37b95a5306"),
2012            ("ms-ds-cloudextensionattribute5", "2915e85b-e347-4852-aabb-22e5a651c864"),
2013            ("trust-auth-outgoing", "bf967a5f-0de6-11d0-a285-00aa003049e2"),
2014            ("original-display-table", "5fd424ce-1262-11d0-a060-00aa006c33ed"),
2015            ("ms-net-ieee-80211-gp-policyreserved", "0f69c62e-088e-4ff5-a53a-e923cec07c0a"),
2016            ("meetingip", "11b6cc89-48c4-11d1-a9c3-0000f80367c1"),
2017            ("creation-wizard", "4d8601ed-ac85-11d0-afe3-00c04fd930c9"),
2018            ("ms-ds-cloudextensionattribute4", "9cbf3437-4e6e-485b-b291-22b02554273f"),
2019            ("dhcp-obj-description", "963d2744-48be-11d1-a9c3-0000f80367c1"),
2020            ("ms-ds-device-id", "c30181c7-6342-41fb-b279-f7c566cbe0a7"),
2021            ("user-workstations", "bf9679d7-0de6-11d0-a285-00aa003049e2"),
2022            ("phone-isdn-primary", "0296c11f-40da-11d1-a9c0-0000f80367c1"),
2023            ("ms-rras-attribute", "f39b98ad-938d-11d1-aebd-0000f80367c1"),
2024            ("ms-com-defaultpartitionlink", "998b10f7-aa1a-4364-b867-753d197fe670"),
2025            ("dhcp-maxkey", "963d2754-48be-11d1-a9c3-0000f80367c1"),
2026            ("ms-dfs-link-v2", "7769fb7a-1159-4e96-9ccd-68bc487073eb"),
2027            ("ms-dfsr-content", "64759b35-d3a1-42e4-b5f1-a3de162109b3"),
2028            ("ms-ds-device-physical-ids", "90615414-a2a0-4447-a993-53409599b74e"),
2029            ("user-smime-certificate", "e16a9db2-403c-11d1-a9c0-0000f80367c1"),
2030            ("phone-ip-primary", "4d146e4a-48d4-11d1-a9c3-0000f80367c1"),
2031            ("ms-pki-accountcredentials", "b8dfa744-31dc-4ef1-ac7c-84baf7ef9da7"),
2032            ("move-tree-state", "1f2ac2c8-3b71-11d2-90cc-00c04fd91ab1"),
2033            ("dhcp-mask", "963d2747-48be-11d1-a9c3-0000f80367c1"),
2034            ("ms-ds-device-os-version", "70fb8c63-5fab-4504-ab9d-14b329a8a7f8"),
2035            ("user-shared-folder-other", "9a9a0220-4a5b-11d1-a9c3-0000f80367c1"),
2036            ("phone-ip-other", "4d146e4b-48d4-11d1-a9c3-0000f80367c1"),
2037            ("ms-pki-dpapimasterkeys", "b3f93023-9239-4f7c-b99c-6745d87adbc2"),
2038            ("moniker-display-name", "bf9679c8-0de6-11d0-a285-00aa003049e2"),
2039            ("dhcp-identification", "963d2742-48be-11d1-a9c3-0000f80367c1"),
2040            ("ms-dfs-deleted-link-v2", "25173408-04ca-40e8-865e-3f9ce9bf1bd3"),
2041            ("ms-dfsr-replicationgroup", "1c332fe0-0c2a-4f32-afca-23c5e45a9e77"),
2042            ("ms-ds-device-os-type", "100e454d-f3bb-4dcb-845f-8d5edc471c59"),
2043            ("user-shared-folder", "9a9a021f-4a5b-11d1-a9c3-0000f80367c1"),
2044            ("phone-home-primary", "f0f8ffa1-1191-11d0-a060-00aa006c33ed"),
2045            ("ms-pki-roamingtimestamp", "6617e4ac-a2f1-43ab-b60c-11fbd1facf05"),
2046            ("moniker", "bf9679c7-0de6-11d0-a285-00aa003049e2"),
2047            ("dhcp-flags", "963d2741-48be-11d1-a9c3-0000f80367c1"),
2048            ("ms-ds-is-enabled", "22a95c0e-1f83-4c82-94ce-bea688cfc871"),
2049            ("user-principal-name", "28630ebb-41d5-11d1-a9c1-0000f80367c1"),
2050            ("phone-home-other", "f0f8ffa2-1191-11d0-a060-00aa006c33ed"),
2051            ("ms-pki-ra-signature", "fe17e04b-937d-4f7e-8e0e-9292c8d5683e"),
2052            ("modify-time-stamp", "9a7ad94a-ca53-11d1-bbd0-0080c76670c0"),
2053            ("dhcp-classes", "963d2750-48be-11d1-a9c3-0000f80367c1"),
2054            ("ms-fve-recoveryinformation", "ea715d30-8f53-40d0-bd1e-6109186d782c"),
2055            ("ms-dfsr-globalsettings", "7b35dbad-b3ec-486a-aad4-2fec9d6ea6f6"),
2056            ("ms-ds-approximate-last-logon-time-stamp", "a34f983b-84c6-4f0c-9050-a3a14a1d35a4"),
2057            ("userpkcs12", "23998ab5-70f8-4007-a4c1-a84a38311f9a"),
2058            ("phone-fax-other", "0296c11d-40da-11d1-a9c0-0000f80367c1"),
2059            ("ms-pki-ra-policies", "d546ae22-0951-4d47-817e-1c9f96faad46"),
2060            ("modified-count-at-last-prom", "bf9679c6-0de6-11d0-a285-00aa003049e2"),
2061            ("destination-indicator", "bf967951-0de6-11d0-a285-00aa003049e2"),
2062            ("ms-ds-registered-users", "0449160c-5a8e-4fc8-b052-01c0f6e48f02"),
2063            ("userclass", "11732a8a-e14d-4cc5-b92f-d93f51c6d8e4"),
2064            ("personal-title", "16775858-47f3-11d1-a9c3-0000f80367c1"),
2065            ("ms-pki-ra-application-policies", "3c91fbbf-4773-4ccd-a87b-85d53e7bcf6a"),
2066            ("modified-count", "bf9679c5-0de6-11d0-a285-00aa003049e2"),
2067            ("desktop-profile", "eea65906-8ac6-11d0-afda-00c04fd930c9"),
2068            ("ms-net-ieee-8023-grouppolicy", "99a03a6a-ab19-4446-9350-0cb878ed2d9b"),
2069            ("ms-dfsr-subscription", "67212414-7bcc-4609-87e0-088dad8abdee"),
2070            ("ms-ds-registered-owner", "617626e9-01eb-42cf-991f-ce617982237e"),
2071            ("user-password", "bf967a6e-0de6-11d0-a285-00aa003049e2"),
2072            ("per-recip-dialog-display-table", "5fd424d4-1262-11d0-a060-00aa006c33ed"),
2073            ("ms-pki-template-schema-version", "0c15e9f5-491d-4594-918f-32813a091da9"),
2074            ("min-ticket-age", "bf9679c4-0de6-11d0-a285-00aa003049e2"),
2075            ("description", "bf967950-0de6-11d0-a285-00aa003049e2"),
2076            ("ms-ds-device-location", "e3fb56c8-5de8-45f5-b1b1-d2b6cd31e762"),
2077            ("user-parameters", "bf967a6d-0de6-11d0-a285-00aa003049e2"),
2078            ("per-msg-dialog-display-table", "5fd424d3-1262-11d0-a060-00aa006c33ed"),
2079            ("ms-pki-template-minor-revision", "13f5236c-1884-46b1-b5d0-484e38990d58"),
2080            ("min-pwd-length", "bf9679c3-0de6-11d0-a285-00aa003049e2"),
2081            ("departmentnumber", "be9ef6ee-cbc7-4f22-b27b-96967e7ee585"),
2082            ("ms-net-ieee-80211-grouppolicy", "1cb81863-b822-4379-9ea2-5ff7bdc6386d"),
2083            ("ms-dfsr-subscriber", "e11505d7-92c4-43e7-bf5c-295832ffc896"),
2084            ("ms-ds-maximum-registration-inactivity-period", "0a5caa39-05e6-49ca-b808-025b936610e7"),
2085            ("user-comment", "bf967a6a-0de6-11d0-a285-00aa003049e2"),
2086            ("pending-parent-ca", "963d273e-48be-11d1-a9c3-0000f80367c1"),
2087            ("ms-pki-supersede-templates", "9de8ae7d-7a5b-421d-b5e4-061f79dfd5d7"),
2088            ("min-pwd-age", "bf9679c2-0de6-11d0-a285-00aa003049e2"),
2089            ("department", "bf96794f-0de6-11d0-a285-00aa003049e2"),
2090            ("ms-ds-registration-quota", "ca3286c2-1f64-4079-96bc-e62b610e730f"),
2091            ("user-cert", "bf967a69-0de6-11d0-a285-00aa003049e2"),
2092            ("pending-ca-certificates", "963d273c-48be-11d1-a9c3-0000f80367c1"),
2093            ("ms-pki-site-name", "0cd8711f-0afc-4926-a4b1-09b08d3d436c"),
2094            ("mhs-or-address", "0296c122-40da-11d1-a9c0-0000f80367c1"),
2095            ("delta-revocation-list", "167757b5-47f3-11d1-a9c3-0000f80367c1"),
2096            ("mssfu-30-nis-map-config", "faf733d0-f8eb-4dcf-8d75-f1753af6a50b"),
2097            ("ms-dfsr-localsettings", "fa85c591-197f-477e-83bd-ea5a43df2239"),
2098            ("ms-ds-issuer-certificates", "6b3d6fda-0893-43c4-89fb-1fb52a6616a9"),
2099            ("user-account-control", "bf967a68-0de6-11d0-a285-00aa003049e2"),
2100            ("pek-list", "07383083-91df-11d1-aebc-0000f80367c1"),
2101            ("ms-pki-private-key-flag", "bab04ac2-0435-4709-9307-28380e7c7001"),
2102            ("member", "bf9679c0-0de6-11d0-a285-00aa003049e2"),
2103            ("default-security-descriptor", "807a6d30-1669-11d0-a064-00aa006c33ed"),
2104            ("ms-ds-cloudextensionattribute20", "f5446328-8b6e-498d-95a8-211748d5acdc"),
2105            ("upn-suffixes", "032160bf-9824-11d1-aec0-0000f80367c1"),
2106            ("pek-key-change-interval", "07383084-91df-11d1-aebc-0000f80367c1"),
2107            ("ms-pki-oid-user-notice", "04c4da7a-e114-4e69-88de-e293f2d3b395"),
2108            ("meetingurl", "11b6cc8c-48c4-11d1-a9c3-0000f80367c1"),
2109            ("default-priority", "281416c8-1968-11d0-a28f-00aa003049e2"),
2110            ("mssfu-30-network-user", "e15334a3-0bf0-4427-b672-11f5d84acc92"),
2111            ("ms-exch-configuration-container", "d03d6858-06f4-11d2-aa53-00c04fd7d83a"),
2112            ("ms-ds-cloudextensionattribute19", "0975fe99-9607-468a-8e18-c800d3387395"),
2113            ("upgrade-product-code", "d9e18312-8939-11d1-aebc-0000f80367c1"),
2114            ("partial-attribute-set", "19405b9e-3cfa-11d1-a9c0-0000f80367c1"),
2115            ("ms-pki-oid-localizedname", "7d59a816-bb05-4a72-971f-5c1331f67559"),
2116            ("meetingtype", "11b6cc82-48c4-11d1-a9c3-0000f80367c1"),
2117            ("display-name-printable", "bf967954-0de6-11d0-a285-00aa003049e2"),
2118            ("ms-ds-claim-type", "81a3857c-5469-4d8f-aae6-c27699762604"),
2119            ("ms-ds-user-allowed-to-authenticate-to", "de0caa7f-724e-4286-b179-192671efc664"),
2120            ("volume-count", "34aaa217-b699-11d0-afee-0000f80367c1"),
2121            ("pki-expiration-period", "041570d2-3b9e-11d2-90cc-00c04fd91ab1"),
2122            ("ms-sql-serviceaccount", "64933a3e-ccee-11d2-9993-0000f87a57d4"),
2123            ("ms-ds-authenticatedat-dc", "3e1ee99c-6604-4489-89d9-84798a89515a"),
2124            ("display-name", "bf967953-0de6-11d0-a285-00aa003049e2"),
2125            ("ms-imaging-postscanprocess", "1f7c257c-b8a3-4525-82f8-11ccc7bee36e"),
2126            ("ms-ds-syncserverurl", "b7acc3d2-2a74-4fa4-ac25-e63fe8b61218"),
2127            ("vol-table-idx-guid", "1f0075fb-7e40-11d0-afd6-00c04fd930c9"),
2128            ("pki-enrollment-access", "926be278-56f9-11d2-90d0-00c04fd91ab1"),
2129            ("ms-sql-build", "603e94c4-ccee-11d2-9993-0000f87a57d4"),
2130            ("ms-ds-approx-immed-subordinates", "e185d243-f6ce-4adb-b496-b0c005d7823c"),
2131            ("dhcp-update-time", "963d2755-48be-11d1-a9c3-0000f80367c1"),
2132            ("ms-ds-resource-properties", "7a4a4584-b350-478f-acd6-b4b852d82cc0"),
2133            ("ms-ds-cloud-isenabled", "89848328-7c4e-4f6f-a013-28ce3ad282dc"),
2134            ("vol-table-guid", "1f0075fd-7e40-11d0-afd6-00c04fd930c9"),
2135            ("pki-default-key-spec", "426cae6e-3b9d-11d2-90cc-00c04fd91ab1"),
2136            ("ms-sql-memory", "5b5d448c-ccee-11d2-9993-0000f87a57d4"),
2137            ("ms-ds-auxiliary-classes", "c4af1073-ee50-4be0-b8c0-89a41fe99abe"),
2138            ("dhcp-unique-key", "963d273a-48be-11d1-a9c3-0000f80367c1"),
2139            ("ms-imaging-psps", "a0ed2ac1-970c-4777-848e-ec63a0ec44fc"),
2140            ("ms-ds-cloud-issuer-public-certificates", "a1e8b54f-4bd6-4fd2-98e2-bcee92a55497"),
2141            ("version-number-lo", "7d6c0e9b-7e20-11d0-afd6-00c04fd930c9"),
2142            ("pki-default-csps", "1ef6336e-3b9e-11d2-90cc-00c04fd91ab1"),
2143            ("ms-sql-location", "561c9644-ccee-11d2-9993-0000f87a57d4"),
2144            ("ms-ds-allowed-to-delegate-to", "800d94d7-b7a1-42a1-b14d-7cae1423d07f"),
2145            ("dhcp-type", "963d273b-48be-11d1-a9c3-0000f80367c1"),
2146            ("ms-ds-claim-types", "36093235-c715-4821-ab6a-b56fb2805a58"),
2147            ("ms-ds-cloud-anchor", "78565e80-03d4-4fe3-afac-8c3bca2f3653"),
2148            ("version-number-hi", "7d6c0e9a-7e20-11d0-afd6-00c04fd930c9"),
2149            ("pki-critical-extensions", "fc5a9106-3b9d-11d2-90cc-00c04fd91ab1"),
2150            ("ms-sql-contact", "4f6cbdd8-ccee-11d2-9993-0000f87a57d4"),
2151            ("ms-ds-allowed-dns-suffixes", "8469441b-9ac4-4e45-8205-bd219dbf672d"),
2152            ("dhcp-subnets", "963d2746-48be-11d1-a9c3-0000f80367c1"),
2153            ("ms-ieee-80211-policy", "7b9a2d92-b7eb-4382-9772-c3e0f9baaf94"),
2154            ("ms-ds-cloud-ismanaged", "5315ba8e-958f-4b52-bd38-1349a304dd63"),
2155            ("version-number", "bf967a76-0de6-11d0-a285-00aa003049e2"),
2156            ("picture", "8d3bca50-1d7e-11d0-a081-00aa006c33ed"),
2157            ("ms-sql-registeredowner", "48fd44ea-ccee-11d2-9993-0000f87a57d4"),
2158            ("ms-ds-all-users-trust-quota", "d3aa4a5c-4e03-4810-97aa-2b339e7a434b"),
2159            ("dhcp-state", "963d2752-48be-11d1-a9c3-0000f80367c1"),
2160            ("ms-ds-claim-type-property-base", "b8442f58-c490-4487-8a9d-d80b883271ad"),
2161            ("ms-ds-ismanaged", "60686ace-6c27-43de-a4e5-f00c2f8d3309"),
2162            ("vendor", "281416df-1968-11d0-a28f-00aa003049e2"),
2163            ("physical-location-object", "b7b13119-b82e-11d0-afee-0000f80367c1"),
2164            ("ms-sql-name", "3532dfd8-ccee-11d2-9993-0000f87a57d4"),
2165            ("ms-ds-additional-sam-account-name", "975571df-a4d5-429a-9f59-cdc6581d91e6"),
2166            ("dhcp-sites", "963d2749-48be-11d1-a9c3-0000f80367c1"),
2167            ("ms-dfsr-connection", "e58f972e-64b5-46ef-8d8b-bbc3e1897eab"),
2168            ("ms-ds-issuer-public-certificates", "b5f1edfe-b4d2-4076-ab0f-6148342b0bf6"),
2169            ("valid-accesses", "4d2fa380-7f54-11d2-992a-0000f87a57d4"),
2170            ("physical-delivery-office-name", "bf9679f7-0de6-11d0-a285-00aa003049e2"),
2171            ("ms-radius-savedframedipv6route", "9666bb5c-df9d-4d41-b437-2eec7e27c9b3"),
2172            ("ms-ds-additional-dns-host-name", "80863791-dbe9-4eb8-837e-7f0ab55d9ac7"),
2173            ("dhcp-servers", "963d2745-48be-11d1-a9c3-0000f80367c1"),
2174            ("template-roots2", "b1cba91a-0682-4362-a659-153e201ef069"),
2175            ("ms-ds-drs-farm-id", "6055f766-202e-49cd-a8be-e52bb159edfb"),
2176            ("usn-source", "167758ad-47f3-11d1-a9c3-0000f80367c1"),
2177            ("photo", "9c979768-ba1a-4c08-9632-c6a5c1ed649a"),
2178            ("ms-radius-framedipv6route", "5a5aa804-3083-4863-94e5-018a79a22ec0"),
2179            ("ms-drm-identity-certificate", "e85e1204-3434-41ad-9b56-e2901228fff0"),
2180            ("dhcp-reservations", "963d274a-48be-11d1-a9c3-0000f80367c1"),
2181            ("global-address-list2", "4898f63d-4112-477c-8826-3ca00bd8277d"),
2182            ("ms-dfsr-member", "4229c897-c211-437c-a5ae-dbf705b696e5"),
2183            ("ms-ds-repl-value-meta-data-ext", "1e02d2ef-44ad-46b2-a67d-9fd18d780bca"),
2184            ("usn-last-obj-rem", "bf967a73-0de6-11d0-a285-00aa003049e2"),
2185            ("phone-pager-primary", "f0f8ffa6-1191-11d0-a060-00aa006c33ed"),
2186            ("ms-radius-savedframedipv6prefix", "0965a062-b1e1-403b-b48d-5c0eb0e952cc"),
2187            ("ms-com-userpartitionsetlink", "8e940c8a-e477-4367-b08d-ff2ff942dcd7"),
2188            ("dhcp-ranges", "963d2748-48be-11d1-a9c3-0000f80367c1"),
2189            ("address-book-roots2", "508ca374-a511-4e4e-9f4f-856f61a6b7e4"),
2190            ("ms-ds-parent-dist-name", "b918fe7d-971a-f404-9e21-9261abec970b"),
2191            ("usn-intersite", "a8df7498-c5ea-11d1-bbcb-0080c76670c0"),
2192            ("phone-pager-other", "f0f8ffa4-1191-11d0-a060-00aa006c33ed"),
2193            ("ms-radius-framedipv6prefix", "f63ed610-d67c-494d-87be-cd1e24359a38"),
2194            ("ms-com-userlink", "9e6f3a4d-242c-4f37-b068-36b57f9fc852"),
2195            ("dhcp-properties", "963d2753-48be-11d1-a9c3-0000f80367c1"),
2196            ("ms-dfs-namespace-v2", "21cb8628-f3c3-4bbf-bff6-060b2d8f299a"),
2197            ("ms-dfsr-topology", "04828aa9-6e42-4e80-b962-e2fe00754d17"),
2198            ("ms-ds-member-transitive", "e215395b-9104-44d9-b894-399ec9e21dfc"),
2199            ("usn-dsa-last-obj-removed", "bf967a71-0de6-11d0-a285-00aa003049e2"),
2200            ("phone-office-other", "f0f8ffa5-1191-11d0-a060-00aa006c33ed"),
2201            ("ms-radius-savedframedinterfaceid", "a4da7289-92a3-42e5-b6b6-dad16d280ac9"),
2202            ("ms-com-partitionsetlink", "67f121dc-7d02-4c7d-82f5-9ad4c950ac34"),
2203            ("dhcp-options", "963d274f-48be-11d1-a9c3-0000f80367c1"),
2204            ("ms-ds-is-member-of-dl-transitive", "862166b6-c941-4727-9565-48bfff2941de"),
2205            ("usn-created", "bf967a70-0de6-11d0-a285-00aa003049e2"),
2206            ("phone-mobile-primary", "f0f8ffa3-1191-11d0-a060-00aa006c33ed"),
2207            ("ms-radius-framedinterfaceid", "a6f24a23-d65c-4d65-a64f-35fb6873c2b9"),
2208            ("ms-com-partitionlink", "09abac62-043f-4702-ac2b-6ca15eee5754"),
2209            ("dhcp-obj-name", "963d2743-48be-11d1-a9c3-0000f80367c1"),
2210            ("ms-dfs-namespace-anchor", "da73a085-6e64-4d61-b064-015d04164795"),
2211            ("ms-dfsr-contentset", "4937f40d-a6dc-4d48-97ca-06e5fbfd3f16"),
2212            ("ms-ds-device-object-version", "ef65695a-f179-4e6a-93de-b01e06681cfb"),
2213            ("usn-changed", "bf967a6f-0de6-11d0-a285-00aa003049e2"),
2214            ("phone-mobile-other", "0296c11e-40da-11d1-a9c0-0000f80367c1"),
2215            ("ms-rras-vendor-attribute-entry", "f39b98ac-938d-11d1-aebd-0000f80367c1"),
2216            ("ms-com-objectid", "430f678b-889f-41f2-9843-203b5a65572f"),
2217            ("ms-sql-publicationurl", "ae0c11b8-ccee-11d2-9993-0000f87a57d4"),
2218            ("ms-ds-az-scope-name", "515a6b06-2617-4173-8099-d5605df043c6"),
2219            ("dns-tombstoned", "d5eb2eb7-be4e-463b-a214-634a44d7392e"),
2220            ("ms-dns-server-settings", "ef2fc3ed-6e18-415b-99e4-3114a8cb124b"),
2221            ("ms-ds-computer-authn-policy", "afb863c9-bea3-440f-a9f3-6153cc668929"),
2222            ("gecos", "a3e03f1f-1d55-4253-a0af-30c2a784e46e"),
2223            ("preferred-delivery-method", "bf9679fe-0de6-11d0-a285-00aa003049e2"),
2224            ("ms-sql-connectionurl", "a92d23da-ccee-11d2-9993-0000f87a57d4"),
2225            ("ms-ds-az-operation-id", "a5f3b553-5d76-4cbe-ba3f-4312152cab18"),
2226            ("dns-secure-secondaries", "e0fa1e67-9b45-11d0-afdd-00c04fd930c9"),
2227            ("ms-sql-sqlpublication", "17c2f64e-ccef-11d2-9993-0000f87a57d4"),
2228            ("ms-ds-user-authn-policy-bl", "2f17faa9-5d47-4b1f-977e-aa52fabe65c8"),
2229            ("gidnumber", "c5b95f0c-ec9e-41c4-849c-b46597ed6696"),
2230            ("postal-code", "bf9679fd-0de6-11d0-a285-00aa003049e2"),
2231            ("ms-sql-informationurl", "a42cd510-ccee-11d2-9993-0000f87a57d4"),
2232            ("ms-ds-az-minor-version", "ee85ed93-b209-4788-8165-e702f51bfbf3"),
2233            ("dns-root", "bf967959-0de6-11d0-a285-00aa003049e2"),
2234            ("ms-tpm-information-object", "85045b6a-47a6-4243-a7cc-6890701f662c"),
2235            ("ms-ds-user-authn-policy", "cd26b9f3-d415-442a-8f78-7c61523ee95b"),
2236            ("uidnumber", "850fcc8f-9c6b-47e1-b671-7c654be4d5b3"),
2237            ("postal-address", "bf9679fc-0de6-11d0-a285-00aa003049e2"),
2238            ("ms-sql-lastupdateddate", "9fcc43d4-ccee-11d2-9993-0000f87a57d4"),
2239            ("ms-ds-az-major-version", "cfb9adb7-c4b7-4059-9568-1ed9db6b7248"),
2240            ("dns-record", "e0fa1e69-9b45-11d0-afdd-00c04fd930c9"),
2241            ("ms-sql-sqlrepository", "11d43c5c-ccef-11d2-9993-0000f87a57d4"),
2242            ("ms-ds-authn-policy-silo-members-bl", "11fccbc7-fbe4-4951-b4b7-addf6f9efd44"),
2243            ("unixuserpassword", "612cb747-c0e8-4f92-9221-fdd5f15b550d"),
2244            ("post-office-box", "bf9679fb-0de6-11d0-a285-00aa003049e2"),
2245            ("ms-sql-status", "9a7d4770-ccee-11d2-9993-0000f87a57d4"),
2246            ("ms-ds-az-ldap-query", "5e53368b-fc94-45c8-9d7d-daf31ee7112d"),
2247            ("dns-property", "675a15fe-3b70-11d2-90cc-00c04fd91ab1"),
2248            ("ms-tpm-information-objects-container", "e027a8bd-6456-45de-90a3-38593877ee74"),
2249            ("ms-ds-authn-policy-silo-members", "164d1e05-48a6-4886-a8e9-77a2006e3c77"),
2250            ("x509-cert", "bf967a7f-0de6-11d0-a285-00aa003049e2"),
2251            ("possible-inferiors", "9a7ad94c-ca53-11d1-bbd0-0080c76670c0"),
2252            ("ms-sql-vines", "94c56394-ccee-11d2-9993-0000f87a57d4"),
2253            ("ms-ds-az-last-imported-biz-rule-path", "665acb5c-bb92-4dbc-8c59-b3638eab09b3"),
2254            ("dns-notify-secondaries", "e0fa1e68-9b45-11d0-afdd-00c04fd930c9"),
2255            ("ms-sql-olapserver", "0c7e18ea-ccef-11d2-9993-0000f87a57d4"),
2256            ("ms-ds-assigned-authn-policy-silo-bl", "33140514-f57a-47d2-8ec4-04c4666600c7"),
2257            ("x500uniqueidentifier", "d07da11f-8a3d-42b6-b0aa-76c962be719a"),
2258            ("poss-superiors", "bf9679fa-0de6-11d0-a285-00aa003049e2"),
2259            ("ms-sql-appletalk", "8fda89f4-ccee-11d2-9993-0000f87a57d4"),
2260            ("ms-ds-az-generate-audits", "f90abab0-186c-4418-bb85-88447c87222a"),
2261            ("dns-host-name", "72e39547-7b18-11d1-adef-00c04fd8d5cd"),
2262            ("ms-spp-activation-object", "51a0e68c-0dc5-43ca-935d-c1c911bf2ee5"),
2263            ("ms-ds-assigned-authn-policy-silo", "b23fc141-0df5-4aea-b33d-6cf493077b3f"),
2264            ("x121-address", "bf967a7b-0de6-11d0-a285-00aa003049e2"),
2265            ("port-name", "281416c4-1968-11d0-a28f-00aa003049e2"),
2266            ("ms-sql-tcpip", "8ac263a6-ccee-11d2-9993-0000f87a57d4"),
2267            ("ms-ds-az-domain-timeout", "6448f56a-ca70-4e2e-b0af-d20e4ce653d0"),
2268            ("dns-allow-xfr", "e0fa1e66-9b45-11d0-afdd-00c04fd930c9"),
2269            ("ms-sql-sqlserver", "05f6c878-ccef-11d2-9993-0000f87a57d4"),
2270            ("ms-ds-service-tgt-lifetime", "5dfe3c20-ca29-407d-9bab-8421e55eb75c"),
2271            ("www-page-other", "9a9a0221-4a5b-11d1-a9c3-0000f80367c1"),
2272            ("policy-replication-flags", "19405b96-3cfa-11d1-a9c0-0000f80367c1"),
2273            ("ms-sql-spx", "86b08004-ccee-11d2-9993-0000f87a57d4"),
2274            ("ms-ds-az-class-id", "013a7277-5c2d-49ef-a7de-b765b36a3f6f"),
2275            ("dns-allow-dynamic", "e0fa1e65-9b45-11d0-afdd-00c04fd930c9"),
2276            ("ms-spp-activation-objects-container", "b72f862b-bb25-4d5d-aa51-62c59bdf90ae"),
2277            ("ms-ds-service-allowed-to-authenticate-from", "97da709a-3716-4966-b1d1-838ba53c3d89"),
2278            ("www-home-page", "bf967a7a-0de6-11d0-a285-00aa003049e2"),
2279            ("pkt-guid", "8447f9f0-1027-11d0-a05f-00aa006c33ed"),
2280            ("ms-sql-multiprotocol", "8157fa38-ccee-11d2-9993-0000f87a57d4"),
2281            ("ms-ds-az-biz-rule-language", "52994b56-0e6c-4e07-aa5c-ef9d7f5a0e25"),
2282            ("dn-reference-update", "2df90d86-009f-11d2-aa4c-00c04fd7d83a"),
2283            ("ms-pki-key-recovery-agent", "26ccf238-a08e-4b86-9a82-a8c9ac7ee5cb"),
2284            ("ms-ds-service-allowed-to-authenticate-to", "f2973131-9b4d-4820-b4de-0474ef3b849f"),
2285            ("winsock-addresses", "bf967a79-0de6-11d0-a285-00aa003049e2"),
2286            ("pkt", "8447f9f1-1027-11d0-a05f-00aa006c33ed"),
2287            ("ms-sql-namedpipe", "7b91c840-ccee-11d2-9993-0000f87a57d4"),
2288            ("ms-ds-az-biz-rule", "33d41ea8-c0c9-4c92-9494-f104878413fd"),
2289            ("dmd-name", "167757b9-47f3-11d1-a9c3-0000f80367c1"),
2290            ("ms-ds-resource-property-list", "72e3d47a-b342-4d45-8f56-baff803cabf9"),
2291            ("ms-ds-computer-tgt-lifetime", "2e937524-dfb9-4cac-a436-a5b7da64fd66"),
2292            ("when-created", "bf967a78-0de6-11d0-a285-00aa003049e2"),
2293            ("pki-overlap-period", "1219a3ec-3b9e-11d2-90cc-00c04fd91ab1"),
2294            ("ms-sql-clustered", "7778bd90-ccee-11d2-9993-0000f87a57d4"),
2295            ("ms-ds-az-application-version", "7184a120-3ac4-47ae-848f-fe0ab20784d4"),
2296            ("dmd-location", "f0f8ff8b-1191-11d0-a060-00aa006c33ed"),
2297            ("ms-pki-enterprise-oid", "37cfd85c-6719-4ad8-8f9e-8678ba627563"),
2298            ("ms-ds-computer-allowed-to-authenticate-to", "105babe9-077e-4793-b974-ef0410b62573"),
2299            ("when-changed", "bf967a77-0de6-11d0-a285-00aa003049e2"),
2300            ("pki-max-issuing-depth", "f0bfdefa-3b9d-11d2-90cc-00c04fd91ab1"),
2301            ("ms-sql-unicodesortorder", "72dc918a-ccee-11d2-9993-0000f87a57d4"),
2302            ("ms-ds-az-application-name", "db5b0728-6208-4876-83b7-95d3e5695275"),
2303            ("division", "fe6136a0-2073-11d0-a9c2-00aa006c33ed"),
2304            ("ms-ds-resource-property", "5b283d5e-8404-4195-9339-8450188c501a"),
2305            ("ms-ds-user-tgt-lifetime", "8521c983-f599-420f-b9ab-b1222bdf95c1"),
2306            ("well-known-objects", "05308983-7688-11d1-aded-00c04fd8d5cd"),
2307            ("pki-key-usage", "e9b0a87e-3b9d-11d2-90cc-00c04fd91ab1"),
2308            ("ms-sql-sortorder", "6ddc42c0-ccee-11d2-9993-0000f87a57d4"),
2309            ("ms-ds-az-application-data", "503fc3e8-1cc6-461a-99a3-9eee04f402a7"),
2310            ("dit-content-rules", "9a7ad946-ca53-11d1-bbd0-0080c76670c0"),
2311            ("ms-print-connectionpolicy", "a16f33c7-7fd6-4828-9364-435138fda08d"),
2312            ("ms-ds-user-allowed-to-authenticate-from", "2c4c9600-b0e1-447d-8dda-74902257bdb5"),
2313            ("wbem-path", "244b2970-5abd-11d0-afd2-00c04fd930c9"),
2314            ("pki-extended-key-usage", "18976af6-3b9e-11d2-90cc-00c04fd91ab1"),
2315            ("ms-sql-characterset", "696177a6-ccee-11d2-9993-0000f87a57d4"),
2316            ("ms-ds-authenticatedto-accountlist", "e8b2c971-a6df-47bc-8d6f-62770d527aa5"),
2317            ("ipprotocolnumber", "ebf5c6eb-0e2d-4415-9670-1081993b4211"),
2318            ("print-form-name", "281416cb-1968-11d0-a28f-00aa003049e2"),
2319            ("ms-sql-lastbackupdate", "f2b6abca-ccee-11d2-9993-0000f87a57d4"),
2320            ("ms-ds-default-quota", "6818f726-674b-441b-8a3a-f40596374cea"),
2321            ("domain-replica", "bf96795e-0de6-11d0-a285-00aa003049e2"),
2322            ("ms-ds-group-managed-service-account", "7b8b558a-93a5-4af7-adca-c017e67f1057"),
2323            ("ms-ds-key-principal", "bd61253b-9401-4139-a693-356fc400f3ea"),
2324            ("ipserviceprotocol", "cd96ec0b-1ed6-43b4-b26b-f170b645883f"),
2325            ("print-end-time", "281416ca-1968-11d0-a28f-00aa003049e2"),
2326            ("ms-sql-creationdate", "ede14754-ccee-11d2-9993-0000f87a57d4"),
2327            ("ms-ds-date-time", "234fcbd8-fb52-4908-a328-fd9f6e58e403"),
2328            ("domain-policy-reference", "80a67e2a-9f22-11d0-afdd-00c04fd930c9"),
2329            ("ms-wmi-intsetparam", "292f0d9a-cf76-42b0-841f-b650f331df62"),
2330            ("ms-ds-key-usage", "de71b44c-29ba-4597-9eca-c3348ace1917"),
2331            ("ipserviceport", "ff2daebf-f463-495a-8405-3e483641eaa2"),
2332            ("print-duplex-supported", "281416cc-1968-11d0-a28f-00aa003049e2"),
2333            ("ms-sql-size", "e9098084-ccee-11d2-9993-0000f87a57d4"),
2334            ("ms-ds-creator-sid", "c5e60132-1480-11d3-91c1-0000f87a57d4"),
2335            ("domain-policy-object", "bf96795d-0de6-11d0-a285-00aa003049e2"),
2336            ("ms-kds-prov-rootkey", "aa02fd41-17e0-4f18-8687-b2239649736b"),
2337            ("ms-ds-key-material", "a12e0e9f-dedb-4f31-8f21-1311b958182f"),
2338            ("nisnetgrouptriple", "a8032e74-30ef-4ff5-affc-0fc217783fec"),
2339            ("print-color", "281416d3-1968-11d0-a28f-00aa003049e2"),
2340            ("ms-sql-alias", "e0c6baae-ccee-11d2-9993-0000f87a57d4"),
2341            ("ms-ds-consistency-child-count", "178b7bc2-b63a-11d2-90e1-00c04fd91ab1"),
2342            ("domain-identifier", "7f561278-5301-11d1-a9c5-0000f80367c1"),
2343            ("ms-wmi-intrangeparam", "50ca5d7d-5c8b-4ef3-b9df-5b66d491e526"),
2344            ("ms-ds-key-id", "c294f84b-2fad-4b71-be4c-9fc5701f60ba"),
2345            ("membernisnetgroup", "0f6a17dc-53e5-4be8-9442-8f3ce2f9012a"),
2346            ("print-collate", "281416d2-1968-11d0-a28f-00aa003049e2"),
2347            ("ms-sql-allowanonymoussubscription", "db77be4a-ccee-11d2-9993-0000f87a57d4"),
2348            ("ms-ds-consistency-guid", "23773dc2-b63a-11d2-90e1-00c04fd91ab1"),
2349            ("domain-id", "963d2734-48be-11d1-a9c3-0000f80367c1"),
2350            ("ms-kds-prov-serverconfiguration", "5ef243a8-2a25-45a6-8b73-08a71ae677ce"),
2351            ("ms-ds-is-compliant", "59527d0f-b7c0-4ce2-a1dd-71cef6963292"),
2352            ("memberuid", "03dab236-672e-4f61-ab64-f77d2dc2ffab"),
2353            ("print-bin-names", "281416cd-1968-11d0-a28f-00aa003049e2"),
2354            ("ms-sql-database", "d5a0dbdc-ccee-11d2-9993-0000f87a57d4"),
2355            ("ms-ds-cached-membership-time-stamp", "3566bf1f-beee-4dcb-8abe-ef89fcfec6c1"),
2356            ("domain-cross-ref", "b000ea7b-a086-11d0-afdd-00c04fd930c9"),
2357            ("ms-tapi-rt-person", "53ea1cb5-b704-4df9-818f-5cb4ec86cac1"),
2358            ("ms-ds-external-directory-object-id", "bd29bf90-66ad-40e1-887b-10df070419a6"),
2359            ("shadowflag", "8dfeb70d-c5db-46b6-b15e-a4389e6cee9b"),
2360            ("print-attributes", "281416d7-1968-11d0-a28f-00aa003049e2"),
2361            ("ms-sql-informationdirectory", "d0aedb2e-ccee-11d2-9993-0000f87a57d4"),
2362            ("ms-ds-cached-membership", "69cab008-cdd4-4bc9-bab8-0ff37efe1b20"),
2363            ("domain-component", "19195a55-6da0-11d0-afd3-00c04fd930c9"),
2364            ("ms-authz-central-access-policy", "a5679cb0-6f9d-432c-8b75-1e3e834f02aa"),
2365            ("ms-ds-device-mdmstatus", "f60a8f96-57c4-422c-a3ad-9e2fa09ce6f7"),
2366            ("shadowexpire", "75159a00-1fff-4cf4-8bff-4ef2695cf643"),
2367            ("primary-group-token", "c0ed8738-7efd-4481-84d9-66d2db8be369"),
2368            ("ms-sql-type", "ca48eba8-ccee-11d2-9993-0000f87a57d4"),
2369            ("ms-ds-byte-array", "f0d8972e-dd5b-40e5-a51d-044c7c17ece7"),
2370            ("domain-certificate-authorities", "7bfdcb7a-4807-11d1-a9c3-0000f80367c1"),
2371            ("ms-tapi-rt-conference", "ca7b9735-4b2a-4e49-89c3-99025334dc94"),
2372            ("ms-ds-authn-policy-silo-enforced", "f2f51102-6be0-493d-8726-1546cdbc8771"),
2373            ("shadowinactive", "86871d1f-3310-4312-8efd-af49dcfb2671"),
2374            ("primary-group-id", "bf967a00-0de6-11d0-a285-00aa003049e2"),
2375            ("ms-sql-description", "8386603c-ccef-11d2-9993-0000f87a57d4"),
2376            ("ms-ds-behavior-version", "d31a8757-2447-4545-8081-3bb610cacbf2"),
2377            ("documentversion", "94b3a8a9-d613-4cec-9aad-5fbcc1046b43"),
2378            ("ms-authz-central-access-rule", "5b4a06dc-251c-4edb-8813-0bdd71327226"),
2379            ("ms-ds-authn-policy-enforced", "7a560cc2-ec45-44ba-b2d7-21236ad59fd5"),
2380            ("shadowwarning", "7ae89c9c-2976-4a46-bb8a-340f88560117"),
2381            ("previous-parent-ca", "963d273d-48be-11d1-a9c3-0000f80367c1"),
2382            ("ms-sql-language", "c57f72f4-ccee-11d2-9993-0000f87a57d4"),
2383            ("ms-ds-az-generic-data", "b5f7e349-7a5b-407c-a334-a31c3f538b98"),
2384            ("documenttitle", "de265a9c-ff2c-47b9-91dc-6e6fe2c43062"),
2385            ("ms-sql-olapcube", "09f0506a-cd28-11d2-9993-0000f87a57d4"),
2386            ("ms-ds-assigned-authn-policy-bl", "2d131b3c-d39f-4aee-815e-8db4bc1ce7ac"),
2387            ("shadowmax", "f285c952-50dd-449e-9160-3b880d99988d"),
2388            ("previous-ca-certificates", "963d2739-48be-11d1-a9c3-0000f80367c1"),
2389            ("ms-sql-version", "c07cc1d0-ccee-11d2-9993-0000f87a57d4"),
2390            ("ms-ds-az-object-guid", "8491e548-6c38-4365-a732-af041569b02c"),
2391            ("documentpublisher", "170f09d7-eb69-448a-9a30-f1afecfd32d7"),
2392            ("ms-authz-central-access-rules", "99bb1b7a-606d-4f8b-800e-e15be554ca8d"),
2393            ("ms-ds-assigned-authn-policy", "b87a0ad8-54f7-49c1-84a0-e64d12853588"),
2394            ("shadowmin", "a76b8737-e5a1-4568-b057-dc12e04be4b2"),
2395            ("presentation-address", "a8df744b-c5ea-11d1-bbcb-0080c76670c0"),
2396            ("ms-sql-gpsheight", "bcdd4f0e-ccee-11d2-9993-0000f87a57d4"),
2397            ("ms-ds-az-task-is-role-definition", "7b078544-6c82-4fe9-872f-ff48ad2b2e26"),
2398            ("documentlocation", "b958b14e-ac6d-4ec4-8892-be70b69f7281"),
2399            ("ms-sql-olapdatabase", "20af031a-ccef-11d2-9993-0000f87a57d4"),
2400            ("ms-ds-service-authn-policy-bl", "2c1128ec-5aa2-42a3-b32d-f0979ca9fcd2"),
2401            ("shadowlastchange", "f8f2689c-29e8-4843-8177-e8b98e15eeac"),
2402            ("prefix-map", "52458022-ca6a-11d0-afff-0000f80367c1"),
2403            ("ms-sql-gpslongitude", "b7577c94-ccee-11d2-9993-0000f87a57d4"),
2404            ("ms-ds-az-script-timeout", "87d0fb41-2c8b-41f6-b972-11fdfd50d6b0"),
2405            ("documentidentifier", "0b21ce82-ff63-46d9-90fb-c8b9f24e97b9"),
2406            ("ms-authz-central-access-policies", "555c21c3-a136-455a-9397-796bbd358e25"),
2407            ("ms-ds-service-authn-policy", "2a6a6d95-28ce-49ee-bb24-6d1fc01e3111"),
2408            ("loginshell", "a553d12c-3231-4c5e-8adf-8d189697721e"),
2409            ("preferred-ou", "bf9679ff-0de6-11d0-a285-00aa003049e2"),
2410            ("ms-sql-gpslatitude", "b222ba0e-ccee-11d2-9993-0000f87a57d4"),
2411            ("ms-ds-az-script-engine-cache-max", "2629f66a-1f95-4bf3-a296-8e9d7b9e30c8"),
2412            ("documentauthor", "f18a8e19-af5f-4478-b096-6f35c27eb83f"),
2413            ("ms-sql-sqldatabase", "1d08694a-ccef-11d2-9993-0000f87a57d4"),
2414            ("ms-ds-computer-authn-policy-bl", "2bef6232-30a1-457e-8604-7af6dbf131b8"),
2415            ("unixhomedirectory", "bc2dba12-000f-464d-bf1d-0808465d8843"),
2416            ("preferredlanguage", "856be0d0-18e7-46e1-8f5f-7ee4d9020e0d"),
2417            ("ms-wmi-shadowobject", "f1e44bdf-8dd3-4235-9c86-f91f31f5b569"),
2418            ("ms-ds-object-soa", "34f6bdf5-2e79-4c3b-8e14-3d93b75aab89"),
2419            ("mssfu-30-search-attributes", "ef9a2df0-2e57-48c8-8950-0cc674004733"),
2420            ("print-notify", "ba305f6a-47e3-11d0-a1a6-00c04fd930c9"),
2421            ("ms-wmi-author", "6366c0c1-6972-4e66-b3a5-1d52ad0c0547"),
2422            ("ms-ds-host-service-account", "80641043-15a2-40e1-92a2-8ca866f70776"),
2423            ("employee-id", "bf967962-0de6-11d0-a285-00aa003049e2"),
2424            ("ms-ds-device-container", "7c9e8c58-901b-4ea8-b6ec-4eb9e9fc0e11"),
2425            ("ms-ds-source-anchor", "b002f407-1340-41eb-bca0-bd7d938e25a9"),
2426            ("mssfu-30-intra-field-separator", "95b2aef0-27e4-4cb9-880a-a2d9a9ea23b8"),
2427            ("print-network-address", "ba305f79-47e3-11d0-a1a6-00c04fd930c9"),
2428            ("ms-tapi-unique-identifier", "70a4e7ea-b3b9-4643-8918-e6dd2471bfd4"),
2429            ("ms-ds-has-master-ncs", "ae2de0e2-59d7-4d47-8d47-ed4dfe4357ad"),
2430            ("efspolicy", "8e4eb2ec-4712-11d0-a1a0-00c04fd930c9"),
2431            ("ms-wmi-rule", "3c7e6f83-dd0e-481b-a0c2-74cd96ef2a66"),
2432            ("ms-ds-strong-ntlm-policy", "aacd2170-482a-44c6-b66e-42c2f66a285c"),
2433            ("mssfu-30-field-separator", "a2e11a42-e781-4ca1-a7fa-ec307f62b6a1"),
2434            ("print-min-y-extent", "ba305f72-47e3-11d0-a1a6-00c04fd930c9"),
2435            ("ms-tapi-protocol-id", "89c1ebcf-7a5f-41fd-99ca-c900b32299ab"),
2436            ("ms-ds-has-domain-ncs", "6f17e347-a842-4498-b8b3-15e007da4fed"),
2437            ("e-mail-addresses", "bf967961-0de6-11d0-a285-00aa003049e2"),
2438            ("ms-ds-device-registration-service", "96bc3a1a-e3d2-49d3-af11-7b0df79d67f5"),
2439            ("ms-ds-service-allowed-ntlm-network-authentication", "278947b9-5222-435e-96b7-1503858c2b48"),
2440            ("mssfu-30-key-attributes", "32ecd698-ce9e-4894-a134-7ad76b082e83"),
2441            ("print-min-x-extent", "ba305f71-47e3-11d0-a1a6-00c04fd930c9"),
2442            ("ms-tapi-ip-address", "efd7d7f7-178e-4767-87fa-f8a16b840544"),
2443            ("ms-ds-has-instantiated-ncs", "11e9a5bc-4517-4049-af9c-51554fb0fc09"),
2444            ("dynamic-ldap-server", "52458021-ca6a-11d0-afff-0000f80367c1"),
2445            ("ms-wmi-realrangeparam", "6afe8fe2-70bc-4cce-b166-a96f7359c514"),
2446            ("ms-ds-user-allowed-ntlm-network-authentication", "7ece040f-9327-4cdc-aad3-037adfe62639"),
2447            ("mssfu-30-search-container", "27eebfa2-fbeb-4f8e-aad6-c50247994291"),
2448            ("print-memory", "ba305f74-47e3-11d0-a1a6-00c04fd930c9"),
2449            ("ms-tapi-conference-blob", "4cc4601e-7201-4141-abc8-3e529ae88863"),
2450            ("ms-ds-filter-containers", "fb00dcdf-ac37-483a-9c12-ac53a6603033"),
2451            ("dsa-signature", "167757bc-47f3-11d1-a9c3-0000f80367c1"),
2452            ("ms-ds-device-registration-service-container", "310b55ce-3dcd-4392-a96d-c9e35397c24f"),
2453            ("ms-ds-expire-passwords-on-smart-card-only-accounts", "3417ab48-df24-4fb1-80b0-0fcb367e25e3"),
2454            ("nismapentry", "4a95216e-fcc0-402e-b57f-5971626148a9"),
2455            ("print-media-supported", "244b296f-5abd-11d0-afd2-00c04fd930c9"),
2456            ("ms-sql-thirdparty", "c4e311fc-d34b-11d2-999a-0000f87a57d4"),
2457            ("ms-ds-optional-feature-guid", "9b88bda8-dd82-4998-a91d-5f2d2baf1927"),
2458            ("ds-ui-shell-maximum", "fcca766a-6f91-11d2-9905-0000f87a57d4"),
2459            ("ms-wmi-rangeparam", "45fb5a57-5018-4d0f-9056-997c8c9122d9"),
2460            ("ms-ds-key-credential-link-bl", "938ad788-225f-4eee-93b9-ad24a159e1db"),
2461            ("nismapname", "969d3c79-0e9a-4d95-b0ac-bdde7ff8f3a1"),
2462            ("print-media-ready", "3bcbfcf5-4d3d-11d0-a1a6-00c04fd930c9"),
2463            ("ms-sql-allowsnapshotfilesftpdownloading", "c49b8be8-d34b-11d2-999a-0000f87a57d4"),
2464            ("ms-ds-external-store", "604877cd-9cdb-47c7-b03d-3daadb044910"),
2465            ("ds-ui-admin-notification", "f6ea0a94-6f91-11d2-9905-0000f87a57d4"),
2466            ("ms-ds-cloud-extensions", "641e87a4-8326-4771-ba2d-c706df35e35a"),
2467            ("bootfile", "e3f3cb4e-0f20-42eb-9703-d2ff26e52667"),
2468            ("print-max-y-extent", "ba305f70-47e3-11d0-a1a6-00c04fd930c9"),
2469            ("ms-sql-allowqueuedupdatingsubscription", "c458ca80-d34b-11d2-999a-0000f87a57d4"),
2470            ("ms-ds-external-key", "b92fd528-38ac-40d4-818d-0433380837c1"),
2471            ("ds-ui-admin-maximum", "ee8d0ae0-6f91-11d2-9905-0000f87a57d4"),
2472            ("ms-wmi-policytype", "595b2613-4109-4e77-9013-a3bb4ef277c7"),
2473            ("ms-ds-shadow-principal-sid", "1dcc0722-aab0-4fef-956f-276fe19de107"),
2474            ("bootparameter", "d72a0750-8c7c-416e-8714-e65f11e908be"),
2475            ("print-max-x-extent", "ba305f6f-47e3-11d0-a1a6-00c04fd930c9"),
2476            ("ms-sql-allowimmediateupdatingsubscription", "c4186b6e-d34b-11d2-999a-0000f87a57d4"),
2477            ("ms-ds-executescriptpassword", "9d054a5a-d187-46c1-9d85-42dfc44a56dd"),
2478            ("ds-heuristics", "f0f8ff86-1191-11d0-a060-00aa006c33ed"),
2479            ("ms-ds-claims-transformation-policies", "c8fca9b1-7d88-bb4f-827a-448927710762"),
2480            ("ms-ds-device-trust-type", "c4a46807-6adc-4bbb-97de-6bed181a1bfe"),
2481            ("macaddress", "e6a522dd-9770-43e1-89de-1de5044328f7"),
2482            ("print-max-resolution-supported", "281416cf-1968-11d0-a28f-00aa003049e2"),
2483            ("ms-sql-allowknownpullsubscription", "c3bb7054-d34b-11d2-999a-0000f87a57d4"),
2484            ("ms-ds-entry-time-to-die", "e1e9bad7-c6dd-4101-a843-794cec85b038"),
2485            ("ds-core-propagation-data", "d167aa4b-8b08-11d2-9939-0000f87a57d4"),
2486            ("ms-wmi-policytemplate", "e2bc80f1-244a-4d59-acc6-ca5c4f82e6e1"),
2487            ("ms-ds-key-approximate-last-logon-time-stamp", "649ac98d-9b9a-4d41-af6b-f616f2a62e4a"),
2488            ("ipnetmasknumber", "6ff64fcd-462e-4f62-b44a-9a5347659eb9"),
2489            ("print-max-copies", "281416d1-1968-11d0-a28f-00aa003049e2"),
2490            ("ms-sql-publisher", "c1676858-d34b-11d2-999a-0000f87a57d4"),
2491            ("ms-ds-enabled-feature-bl", "ce5b01bc-17c6-44b8-9dc1-a9668b00901b"),
2492            ("driver-version", "ba305f6e-47e3-11d0-a1a6-00c04fd930c9"),
2493            ("ms-ds-claims-transformation-policy-type", "2eeb62b3-1373-fe45-8101-387f1676edc7"),
2494            ("ms-ds-custom-key-information", "b6e5e988-e5e4-4c86-a2ae-0dacb970a0e1"),
2495            ("ipnetworknumber", "4e3854f4-3087-42a4-a813-bb0c528958d3"),
2496            ("print-mac-address", "ba305f7a-47e3-11d0-a1a6-00c04fd930c9"),
2497            ("ms-sql-keywords", "01e9a98a-ccef-11d2-9993-0000f87a57d4"),
2498            ("ms-ds-enabled-feature", "5706aeaf-b940-4fb2-bcfc-5268683ad9fe"),
2499            ("driver-name", "281416c5-1968-11d0-a28f-00aa003049e2"),
2500            ("ms-wmi-objectencoding", "55dd81c9-c312-41f9-a84d-c6adbdf1e8e1"),
2501            ("ms-ds-computer-sid", "dffbd720-0872-402e-9940-fcd78db049ba"),
2502            ("iphostnumber", "de8bb721-85dc-4fde-b687-9657688e667e"),
2503            ("print-language", "281416d6-1968-11d0-a28f-00aa003049e2"),
2504            ("ms-sql-applications", "fbcda2ea-ccee-11d2-9993-0000f87a57d4"),
2505            ("ms-ds-dnsrootalias", "2143acca-eead-4d29-b591-85fa49ce9173"),
2506            ("drink", "1a1aa5b5-262e-4df6-af04-2cf6b0d80048"),
2507            ("ms-ds-value-type", "e3c27fdf-b01d-4f4e-87e7-056eef0eb922"),
2508            ("ms-ds-device-dn", "642c1129-3899-4721-8e21-4839e3988ce5"),
2509            ("oncrpcnumber", "966825f5-01d9-4a5c-a011-d15ae84efa55"),
2510            ("print-keep-printed-jobs", "ba305f6d-47e3-11d0-a1a6-00c04fd930c9"),
2511            ("ms-sql-lastdiagnosticdate", "f6d6dd88-ccee-11d2-9993-0000f87a57d4"),
2512            ("ms-ds-deleted-object-lifetime", "a9b38cb6-189a-4def-8a70-0fcfa158148e"),
2513            ("domain-wide-policy", "80a67e29-9f22-11d0-afdd-00c04fd930c9"),
2514            ("ms-wmi-mergeablepolicytemplate", "07502414-fdca-4851-b04a-13645b11d226"),
2515            ("ms-ds-key-principal-bl", "d1328fbc-8574-4150-881d-0b1088827878"),
2516            ("ms-ds-password-history-length", "fed81bb7-768c-4c2f-9641-2245de34794d"),
2517            ("force-logoff", "bf967977-0de6-11d0-a285-00aa003049e2"),
2518            ("ms-ds-shadow-principal", "770f4cb3-1643-469c-b766-edd77aa75e14"),
2519            ("application-entity", "3fdfee4f-47f4-11d1-a9c3-0000f80367c1"),
2520            ("mssfu-30-posix-member-of", "7bd76b92-3244-438a-ada6-24f5ea34381e"),
2521            ("prior-value", "bf967a02-0de6-11d0-a285-00aa003049e2"),
2522            ("ms-wmi-int8default", "f4d8085a-8c5b-4785-959b-dc585566e445"),
2523            ("ms-ds-oidtogroup-link-bl", "1a3d0d20-5844-4199-ad25-0f5039a76ada"),
2524            ("flat-name", "b7b13117-b82e-11d0-afee-0000f80367c1"),
2525            ("ms-wmi-wmigpo", "05630000-3927-4ede-bf27-ca91f275c26f"),
2526            ("mssfu-30-posix-member", "c875d82d-2848-4cec-bb50-3c5486d09d57"),
2527            ("prior-set-time", "bf967a01-0de6-11d0-a285-00aa003049e2"),
2528            ("ms-wmi-intvalidvalues", "6af565f6-a749-4b72-9634-3c5d47e6b4e0"),
2529            ("ms-ds-oidtogroup-link", "f9c9a57c-3941-438d-bebf-0edaf2aca187"),
2530            ("flags", "bf967976-0de6-11d0-a285-00aa003049e2"),
2531            ("ms-ds-shadow-principal-container", "11f95545-d712-4c50-b847-d2781537c633"),
2532            ("address-template", "5fd4250a-1262-11d0-a060-00aa006c33ed"),
2533            ("mssfu-30-nsmap-field-position", "585c9d5e-f599-4f07-9cf9-4373af4b89d3"),
2534            ("printer-name", "244b296e-5abd-11d0-afd2-00c04fd930c9"),
2535            ("ms-wmi-intmin", "68c2e3ba-9837-4c70-98e0-f0c33695d023"),
2536            ("ms-ds-minimum-password-length", "b21b3439-4c3a-441c-bb5f-08f20e9b315e"),
2537            ("file-ext-priority", "d9e18315-8939-11d1-aebc-0000f80367c1"),
2538            ("ms-wmi-unknownrangeparam", "b82ac26b-c6db-4098-92c6-49c18a3336e1"),
2539            ("mssfu-30-max-uid-number", "ec998437-d944-4a28-8500-217588adfc75"),
2540            ("print-status", "ba305f6b-47e3-11d0-a1a6-00c04fd930c9"),
2541            ("ms-wmi-intmax", "fb920c2c-f294-4426-8ac1-d24b42aa2bce"),
2542            ("ms-ds-minimum-password-age", "2a74f878-4d9c-49f9-97b3-6767d1cbd9a3"),
2543            ("facsimile-telephone-number", "bf967974-0de6-11d0-a285-00aa003049e2"),
2544            ("ms-ds-key-credential", "ee1f5543-7c2e-476a-8b3f-e11f4af6c498"),
2545            ("address-book-container", "3e74f60f-3e73-11d1-a9c0-0000f80367c1"),
2546            ("mssfu-30-max-gid-number", "04ee6aa6-f83b-469a-bf5a-3c00d3634669"),
2547            ("print-start-time", "281416c9-1968-11d0-a28f-00aa003049e2"),
2548            ("ms-wmi-intflags4", "bd74a7ac-c493-4c9c-bdfa-5c7b119ca6b2"),
2549            ("ms-ds-maximum-password-age", "fdd337f5-4999-4fce-b252-8ff9c9b43875"),
2550            ("extra-columns", "d24e2846-1dd9-4bcf-99d7-a6227cc86da7"),
2551            ("ms-wmi-uintsetparam", "8f4beb31-4e19-46f5-932e-5fa03c339b1d"),
2552            ("mssfu-30-yp-servers", "084a944b-e150-4bfe-9345-40e1aedaebba"),
2553            ("print-stapling-supported", "ba305f73-47e3-11d0-a1a6-00c04fd930c9"),
2554            ("ms-wmi-intflags3", "f29fa736-de09-4be4-b23a-e734c124bacc"),
2555            ("ms-ds-mastered-by", "60234769-4819-4615-a1b2-49d2f119acb5"),
2556            ("extension-name", "bf967972-0de6-11d0-a285-00aa003049e2"),
2557            ("ms-ds-authn-policy", "ab6a1156-4dc7-40f5-9180-8e4ce42fe5cd"),
2558            ("acs-subnet", "7f561289-5301-11d1-a9c5-0000f80367c1"),
2559            ("mssfu-30-domains", "93095ed3-6f30-4bdd-b734-65d569f5f7c9"),
2560            ("print-spooling", "ba305f6c-47e3-11d0-a1a6-00c04fd930c9"),
2561            ("ms-wmi-intflags2", "075a42c9-c55a-45b1-ac93-eb086b31f610"),
2562            ("ms-ds-logon-time-sync-interval", "ad7940f8-e43a-4a42-83bc-d688e59ea605"),
2563            ("extended-class-info", "9a7ad948-ca53-11d1-bbd0-0080c76670c0"),
2564            ("ms-wmi-uintrangeparam", "d9a799b2-cef3-48b3-b5ad-fb85f8dd3214"),
2565            ("mssfu-30-nis-domain", "9ee3b2e3-c7f3-45f8-8c9f-1382be4984d2"),
2566            ("print-share-name", "ba305f68-47e3-11d0-a1a6-00c04fd930c9"),
2567            ("ms-wmi-intflags1", "18e006b9-6445-48e3-9dcf-b5ecfbc4df8e"),
2568            ("ms-ds-keyversionnumber", "c523e9c0-33b5-4ac8-8923-b57b927f42f6"),
2569            ("extended-chars-allowed", "bf967966-0de6-11d0-a285-00aa003049e2"),
2570            ("ms-ds-authn-policy-silo", "f9f0461e-697d-4689-9299-37e61d617b0d"),
2571            ("acs-resource-limits", "2e899b04-2834-11d3-91d4-0000f87a57d4"),
2572            ("mssfu-30-key-values", "37830235-e5e9-46f2-922b-d8d44f03e7ae"),
2573            ("print-separator-file", "281416c6-1968-11d0-a28f-00aa003049e2"),
2574            ("ms-wmi-intdefault", "1b0c07f8-76dd-4060-a1e1-70084619dc90"),
2575            ("ms-ds-last-known-rdn", "8ab15858-683e-466d-877f-d640e1f9a611"),
2576            ("extended-attribute-info", "9a7ad947-ca53-11d1-bbd0-0080c76670c0"),
2577            ("ms-wmi-stringsetparam", "0bc579a2-1da7-4cea-b699-807f3b9d63a4"),
2578            ("mssfu-30-aliases", "20ebf171-c69a-4c31-b29d-dcb837d8912d"),
2579            ("print-rate-unit", "ba305f78-47e3-11d0-a1a6-00c04fd930c9"),
2580            ("ms-wmi-id", "9339a803-94b8-47f7-9123-a853b9ff7e45"),
2581            ("ms-ds-isrodc", "a8e8aa23-3e67-4af1-9d7a-2f1a1d633ac9"),
2582            ("entry-ttl", "d213decc-d81a-4384-aac2-dcfcfd631cf8"),
2583            ("ms-ds-authn-policies", "3a9adf5d-7b97-4f7e-abb4-e5b55c1c06b4"),
2584            ("acs-policy", "7f561288-5301-11d1-a9c5-0000f80367c1"),
2585            ("mssfu-30-name", "16c5d1d3-35c2-4061-a870-a5cefda804f0"),
2586            ("print-rate", "ba305f77-47e3-11d0-a1a6-00c04fd930c9"),
2587            ("ms-wmi-genus", "50c8673a-8f56-4614-9308-9e1340fb9af3"),
2588            ("ms-ds-isgc", "1df5cf33-0fe5-499e-90e1-e94b42718a46"),
2589            ("enrollment-providers", "2a39c5b3-8960-11d1-aebc-0000f80367c1"),
2590            ("ms-wmi-som", "ab857078-0142-4406-945b-34c9b6b13372"),
2591            ("mssfu-30-order-number", "02625f05-d1ee-4f9f-b366-55266becb95c"),
2592            ("print-pages-per-minute", "19405b97-3cfa-11d1-a9c0-0000f80367c1"),
2593            ("ms-wmi-creationdate", "748b0a2e-3351-4b3f-b171-2f17414ea779"),
2594            ("ms-ds-is-possible-values-present", "6fabdcda-8c53-204f-b1a4-9df0c67c1eb4"),
2595            ("enabled-connection", "bf967963-0de6-11d0-a285-00aa003049e2"),
2596            ("ms-ds-authn-policy-silos", "d2b1470a-8f84-491e-a752-b401ee00fe5c"),
2597            ("class-schema", "bf967a83-0de6-11d0-a285-00aa003049e2"),
2598            ("mssfu-30-master-server-name", "4cc908a2-9e18-410e-8459-f17cc422020a"),
2599            ("print-owner", "ba305f69-47e3-11d0-a1a6-00c04fd930c9"),
2600            ("ms-wmi-classdefinition", "2b9c0ebc-c272-45cb-99d2-4d0e691632e0"),
2601            ("ms-ds-intid", "bc60096a-1b47-4b30-8877-602c93f56532"),
2602            ("enabled", "a8df73f2-c5ea-11d1-bbcb-0080c76670c0"),
2603            ("ms-wmi-simplepolicytemplate", "6cc8b2b5-12df-44f6-8307-e74f5cdee369"),
2604            ("account", "2628a46a-a6ad-4ae0-b854-2b12d9fe6f9e"),
2605            ("mssfu-30-map-filter", "b7b16e01-024f-4e23-ad0d-71f1a406b684"),
2606            ("print-orientations-supported", "281416d0-1968-11d0-a28f-00aa003049e2"),
2607            ("ms-wmi-class", "90c1925f-4a24-4b07-b202-be32eb3c8b74"),
2608            ("ms-ds-integer", "7bc64cea-c04e-4318-b102-3e0729371a65"),
2609            ("employee-type", "a8df73f0-c5ea-11d1-bbcb-0080c76670c0"),
2610            ("ms-ds-device", "5df2b673-6d41-4774-b3e8-d52e8ee9ff99"),
2611            ("mssfu-30-result-attributes", "e167b0b6-4045-4433-ac35-53f972d45cba"),
2612            ("print-number-up", "3bcbfcf4-4d3d-11d0-a1a6-00c04fd930c9"),
2613            ("ms-wmi-changedate", "f9cdf7a0-ec44-4937-a79b-cd91522b3aa8"),
2614            ("ms-ds-host-service-account-bl", "79abe4eb-88f3-48e7-89d6-f4bc7e98c331"),
2615            ("employee-number", "a8df73ef-c5ea-11d1-bbcb-0080c76670c0"),
2616            ("ms-ts-max-idle-time", "ff739e9c-6bb7-460e-b221-e250f3de0f95"),
2617            ("proxy-lifetime", "bf967a07-0de6-11d0-a285-00aa003049e2"),
2618            ("ms-wmi-query", "65fff93e-35e3-45a3-85ae-876c6718297f"),
2619            ("ms-ds-required-forest-behavior-version", "4beca2e8-a653-41b2-8fee-721575474bec"),
2620            ("frs-ds-poll", "1be8f177-a9ff-11d0-afe2-00c04fd930c9"),
2621            ("msmq-queue", "9a0dc343-c100-11d1-bbc5-0080c76670c0"),
2622            ("builtin-domain", "bf967a81-0de6-11d0-a285-00aa003049e2"),
2623            ("ms-ts-max-connection-time", "1d960ee2-6464-4e95-a781-e3b5cd5f9588"),
2624            ("proxy-generation-enabled", "5fd424d6-1262-11d0-a060-00aa006c33ed"),
2625            ("ms-wmi-propertyname", "ab920883-e7f8-4d72-b4a0-c0449897509d"),
2626            ("ms-ds-required-domain-behavior-version", "eadd3dfe-ae0e-4cc2-b9b9-5fe5b6ed2dd2"),
2627            ("frs-directory-filter", "1be8f171-a9ff-11d0-afe2-00c04fd930c9"),
2628            ("ms-ts-max-disconnection-time", "326f7089-53d8-4784-b814-46d8535110d2"),
2629            ("proxy-addresses", "bf967a06-0de6-11d0-a285-00aa003049e2"),
2630            ("ms-wmi-parm4", "3800d5a3-f1ce-4b82-a59a-1528ea795f59"),
2631            ("ms-ds-pso-applied", "5e6cf031-bda8-43c8-aca4-8fee4127005b"),
2632            ("frs-control-outbound-backlog", "2a13257c-9373-11d1-aebc-0000f80367c1"),
2633            ("msmq-migrated-user", "50776997-3c3d-11d2-90cc-00c04fd91ab1"),
2634            ("ms-ts-remote-control", "15177226-8642-468b-8c48-03ddfd004982"),
2635            ("proxied-object-name", "e1aea402-cd5b-11d0-afff-0000f80367c1"),
2636            ("ms-wmi-parm3", "45958fb6-52bd-48ce-9f9f-c2712d9f2bfc"),
2637            ("ms-ds-pso-applies-to", "64c80f48-cdd2-4881-a86d-4e97b6f561fc"),
2638            ("frs-control-inbound-backlog", "2a13257b-9373-11d1-aebc-0000f80367c1"),
2639            ("application-version", "ddc790ac-af4d-442a-8f0f-a1d4caa7dd92"),
2640            ("ms-ts-allow-logon", "3a0cd464-bc54-40e7-93ae-a646a6ecc4b4"),
2641            ("profile-path", "bf967a05-0de6-11d0-a285-00aa003049e2"),
2642            ("ms-wmi-parm2", "0003508e-9c42-4a76-a8f4-38bf64bab0de"),
2643            ("ms-ds-lockout-threshold", "b8c8c35e-4a19-4a95-99d0-69fe4446286f"),
2644            ("frs-control-data-creation", "2a13257a-9373-11d1-aebc-0000f80367c1"),
2645            ("msmq-group", "46b27aac-aafa-4ffb-b773-e5bf621ee87b"),
2646            ("ms-ts-home-drive", "5f0a24d9-dffa-4cd9-acbf-a0680c03731e"),
2647            ("product-code", "d9e18317-8939-11d1-aebc-0000f80367c1"),
2648            ("ms-wmi-parm1", "27e81485-b1b0-4a8b-bedd-ce19a837e26e"),
2649            ("ms-ds-lockout-duration", "421f889a-472e-4fe4-8eb9-e1d0bc6071b2"),
2650            ("frs-computer-reference-bl", "2a132579-9373-11d1-aebc-0000f80367c1"),
2651            ("application-site-settings", "19195a5c-6da0-11d0-afd3-00c04fd930c9"),
2652            ("ms-ts-home-directory", "5d3510f0-c4e7-4122-b91f-a20add90e246"),
2653            ("privilege-value", "19405b99-3cfa-11d1-a9c0-0000f80367c1"),
2654            ("ms-wmi-normalizedclass", "eaba628f-eb8e-4fe9-83fc-693be695559b"),
2655            ("ms-ds-lockout-observation-window", "b05bda89-76af-468a-b892-1be55558ecc8"),
2656            ("frs-computer-reference", "2a132578-9373-11d1-aebc-0000f80367c1"),
2657            ("msmq-enterprise-settings", "9a0dc345-c100-11d1-bbc5-0080c76670c0"),
2658            ("ms-ts-profile-path", "e65c30db-316c-4060-a3a0-387b083f09cd"),
2659            ("privilege-holder", "19405b9b-3cfa-11d1-a9c0-0000f80367c1"),
2660            ("ms-wmi-name", "c6c8ace5-7e81-42af-ad72-77412c5941c4"),
2661            ("ms-ds-local-effective-recycle-time", "4ad6016b-b0d2-4c9b-93b6-5964b17b968c"),
2662            ("from-server", "bf967979-0de6-11d0-a285-00aa003049e2"),
2663            ("dns-zone-scope", "696f8a61-2d3f-40ce-a4b3-e275dfcc49c5"),
2664            ("application-settings", "f780acc1-56f0-11d1-a9c6-0000f80367c1"),
2665            ("mssfu-30-crypt-method", "4503d2a3-3d70-41b8-b077-dff123c15865"),
2666            ("privilege-display-name", "19405b98-3cfa-11d1-a9c0-0000f80367c1"),
2667            ("ms-wmi-mof", "6736809f-2064-443e-a145-81262b1f1366"),
2668            ("ms-ds-local-effective-deletion-time", "94f2800c-531f-4aeb-975d-48ac39fd8ca4"),
2669            ("from-entry", "9a7ad949-ca53-11d1-bbd0-0080c76670c0"),
2670            ("msmq-custom-recipient", "876d6817-35cc-436c-acea-5ef7174dd9be"),
2671            ("mssfu-30-is-valid-container", "0dea42f5-278d-4157-b4a7-49b59664915b"),
2672            ("privilege-attributes", "19405b9a-3cfa-11d1-a9c0-0000f80367c1"),
2673            ("ms-wmi-int8validvalues", "103519a9-c002-441b-981a-b0b3e012c803"),
2674            ("ms-ds-password-reversible-encryption-enabled", "75ccdd8f-af6c-4487-bb4b-69e4d38a959c"),
2675            ("friendly-names", "7bfdcb88-4807-11d1-a9c3-0000f80367c1"),
2676            ("dns-zone-scope-container", "f2699093-f25a-4220-9deb-03df4cc4a9c5"),
2677            ("application-process", "5fd4250b-1262-11d0-a060-00aa006c33ed"),
2678            ("mssfu-30-netgroup-user-at-domain", "a9e84eed-e630-4b67-b4b3-cad2a82d345e"),
2679            ("private-key", "bf967a03-0de6-11d0-a285-00aa003049e2"),
2680            ("ms-wmi-int8min", "ed1489d1-54cc-4066-b368-a00daa2664f1"),
2681            ("ms-ds-password-complexity-enabled", "db68054b-c9c3-4bf0-b15b-0fb52552a610"),
2682            ("foreign-identifier", "3e97891e-8c01-11d0-afda-00c04fd930c9"),
2683            ("msmq-configuration", "9a0dc344-c100-11d1-bbc5-0080c76670c0"),
2684            ("mssfu-30-netgroup-host-at-domain", "97d2bf65-0466-4852-a25a-ec20f57ee36c"),
2685            ("priority", "281416c7-1968-11d0-a28f-00aa003049e2"),
2686            ("ms-wmi-int8max", "e3d8b547-003d-4946-a32b-dc7cedc96b74"),
2687        ];
2688
2689        values.iter().map(|&(k, v)| (k.to_string(), v.to_string())).collect::<HashMap<String, String>>()
2690    };
2691}