// Token: 0x06001052 RID: 4178 RVA: 0x0004EFA2 File Offset: 0x0004D1A2
 internal bool IsScopeTypeSmallerOrEqualThan(ScopeType scopeType)
 {
     return(scopeType == this.scopeType || RbacScope.IsScopeTypeSmaller(this.scopeType, scopeType));
 }
 // Token: 0x06001054 RID: 4180 RVA: 0x0004EFC5 File Offset: 0x0004D1C5
 internal bool IsScopeTypeSmallerThan(ScopeType scopeType, bool hiddenFromGAL)
 {
     return(RbacScope.IsScopeTypeSmaller(this.scopeType, scopeType, hiddenFromGAL));
 }
 // Token: 0x06001050 RID: 4176 RVA: 0x0004EEF3 File Offset: 0x0004D0F3
 internal static bool IsScopeTypeSmaller(ScopeType a, ScopeType b)
 {
     return(RbacScope.IsScopeTypeSmaller(a, b, false));
 }