public class com.sun.jmx.snmp.BerDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.jmx.snmp.BerDecoder
  super_class: java.lang.Object
{
  public static final int BooleanTag;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int IntegerTag;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int OctetStringTag;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  public static final int NullTag;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5

  public static final int OidTag;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 6

  public static final int SequenceTag;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 48

  private final byte[] bytes;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int next;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final int[] stackBuf;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int stackTop;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // byte[] b
         0: .line 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 746
            aload 0 /* this */
            iconst_0
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         2: .line 754
            aload 0 /* this */
            sipush 200
            newarray 10
            putfield com.sun.jmx.snmp.BerDecoder.stackBuf:[I
         3: .line 755
            aload 0 /* this */
            iconst_0
            putfield com.sun.jmx.snmp.BerDecoder.stackTop:I
         4: .line 60
            aload 0 /* this */
            aload 1 /* b */
            putfield com.sun.jmx.snmp.BerDecoder.bytes:[B
         5: .line 61
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.reset:()V
         6: .line 62
            return
        end local 1 // byte[] b
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/jmx/snmp/BerDecoder;
            0    7     1     b  [B
    MethodParameters:
      Name  Flags
      b     

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 65
            aload 0 /* this */
            iconst_0
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         1: .line 66
            aload 0 /* this */
            iconst_0
            putfield com.sun.jmx.snmp.BerDecoder.stackTop:I
         2: .line 67
            return
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/jmx/snmp/BerDecoder;

  public int fetchInteger();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 78
            aload 0 /* this */
            iconst_2
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchInteger:(I)I
            ireturn
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/jmx/snmp/BerDecoder;
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public int fetchInteger(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // int tag
         0: .line 94
            iconst_0
            istore 2 /* result */
        start local 2 // int result
         1: .line 95
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 3 /* backup */
        start local 3 // int backup
         2: .line 97
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            iload 1 /* tag */
            if_icmpeq 4
         3: .line 98
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 100
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchIntegerValue:()I
            istore 2 /* result */
         5: .line 101
            goto 9
         6: .line 102
      StackMap locals:
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 4 /* e */
        start local 4 // com.sun.jmx.snmp.BerException e
         7: .line 103
            aload 0 /* this */
            iload 3 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         8: .line 104
            aload 4 /* e */
            athrow
        end local 4 // com.sun.jmx.snmp.BerException e
         9: .line 107
      StackMap locals:
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 3 // int backup
        end local 2 // int result
        end local 1 // int tag
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            0   10     1     tag  I
            1   10     2  result  I
            2   10     3  backup  I
            7    9     4       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2     5       6  Class com.sun.jmx.snmp.BerException
    Exceptions:
      throws com.sun.jmx.snmp.BerException
    MethodParameters:
      Name  Flags
      tag   

  public long fetchIntegerAsLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 121
            aload 0 /* this */
            iconst_2
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchIntegerAsLong:(I)J
            lreturn
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/jmx/snmp/BerDecoder;
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public long fetchIntegerAsLong(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // int tag
         0: .line 137
            lconst_0
            lstore 2 /* result */
        start local 2 // long result
         1: .line 138
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 4 /* backup */
        start local 4 // int backup
         2: .line 140
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            iload 1 /* tag */
            if_icmpeq 4
         3: .line 141
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 143
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchIntegerValueAsLong:()J
            lstore 2 /* result */
         5: .line 144
            goto 9
         6: .line 145
      StackMap locals:
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 5 /* e */
        start local 5 // com.sun.jmx.snmp.BerException e
         7: .line 146
            aload 0 /* this */
            iload 4 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         8: .line 147
            aload 5 /* e */
            athrow
        end local 5 // com.sun.jmx.snmp.BerException e
         9: .line 150
      StackMap locals:
      StackMap stack:
            lload 2 /* result */
            lreturn
        end local 4 // int backup
        end local 2 // long result
        end local 1 // int tag
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            0   10     1     tag  I
            1   10     2  result  J
            2   10     4  backup  I
            7    9     5       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2     5       6  Class com.sun.jmx.snmp.BerException
    Exceptions:
      throws com.sun.jmx.snmp.BerException
    MethodParameters:
      Name  Flags
      tag   

  public byte[] fetchOctetString();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 164
            aload 0 /* this */
            iconst_4
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchOctetString:(I)[B
            areturn
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/jmx/snmp/BerDecoder;
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public byte[] fetchOctetString(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // int tag
         0: .line 180
            aconst_null
            astore 2 /* result */
        start local 2 // byte[] result
         1: .line 181
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 3 /* backup */
        start local 3 // int backup
         2: .line 183
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            iload 1 /* tag */
            if_icmpeq 4
         3: .line 184
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 186
      StackMap locals: byte[] int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchStringValue:()[B
            astore 2 /* result */
         5: .line 187
            goto 9
         6: .line 188
      StackMap locals:
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 4 /* e */
        start local 4 // com.sun.jmx.snmp.BerException e
         7: .line 189
            aload 0 /* this */
            iload 3 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         8: .line 190
            aload 4 /* e */
            athrow
        end local 4 // com.sun.jmx.snmp.BerException e
         9: .line 193
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 3 // int backup
        end local 2 // byte[] result
        end local 1 // int tag
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            0   10     1     tag  I
            1   10     2  result  [B
            2   10     3  backup  I
            7    9     4       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2     5       6  Class com.sun.jmx.snmp.BerException
    Exceptions:
      throws com.sun.jmx.snmp.BerException
    MethodParameters:
      Name  Flags
      tag   

  public long[] fetchOid();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 204
            aload 0 /* this */
            bipush 6
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchOid:(I)[J
            areturn
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/jmx/snmp/BerDecoder;
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public long[] fetchOid(int);
    descriptor: (I)[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // int tag
         0: .line 220
            aconst_null
            astore 2 /* result */
        start local 2 // long[] result
         1: .line 221
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 3 /* backup */
        start local 3 // int backup
         2: .line 223
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            iload 1 /* tag */
            if_icmpeq 4
         3: .line 224
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 226
      StackMap locals: long[] int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchOidValue:()[J
            astore 2 /* result */
         5: .line 227
            goto 9
         6: .line 228
      StackMap locals:
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 4 /* e */
        start local 4 // com.sun.jmx.snmp.BerException e
         7: .line 229
            aload 0 /* this */
            iload 3 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         8: .line 230
            aload 4 /* e */
            athrow
        end local 4 // com.sun.jmx.snmp.BerException e
         9: .line 233
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 3 // int backup
        end local 2 // long[] result
        end local 1 // int tag
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            0   10     1     tag  I
            1   10     2  result  [J
            2   10     3  backup  I
            7    9     4       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2     5       6  Class com.sun.jmx.snmp.BerException
    Exceptions:
      throws com.sun.jmx.snmp.BerException
    MethodParameters:
      Name  Flags
      tag   

  public void fetchNull();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 244
            aload 0 /* this */
            iconst_5
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchNull:(I)V
         1: .line 245
            return
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/jmx/snmp/BerDecoder;
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public void fetchNull(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // int tag
         0: .line 258
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         1: .line 260
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            iload 1 /* tag */
            if_icmpeq 3
         2: .line 261
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         3: .line 263
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchLength:()I
            istore 3 /* length */
        start local 3 // int length
         4: .line 264
            iload 3 /* length */
            ifeq 8
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        end local 3 // int length
         5: .line 266
      StackMap locals:
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 3 /* e */
        start local 3 // com.sun.jmx.snmp.BerException e
         6: .line 267
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         7: .line 268
            aload 3 /* e */
            athrow
        end local 3 // com.sun.jmx.snmp.BerException e
         8: .line 270
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int backup
        end local 1 // int tag
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            0    9     1     tag  I
            1    9     2  backup  I
            4    5     3  length  I
            6    8     3       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           1     5       5  Class com.sun.jmx.snmp.BerException
    Exceptions:
      throws com.sun.jmx.snmp.BerException
    MethodParameters:
      Name  Flags
      tag   

  public byte[] fetchAny();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 284
            aconst_null
            astore 1 /* result */
        start local 1 // byte[] result
         1: .line 285
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         2: .line 287
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            pop
         3: .line 288
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchLength:()I
            istore 3 /* contentLength */
        start local 3 // int contentLength
         4: .line 289
            iload 3 /* contentLength */
            ifge 5
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         5: .line 290
      StackMap locals: byte[] int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 3 /* contentLength */
            iadd
            iload 2 /* backup */
            isub
            istore 4 /* tlvLength */
        start local 4 // int tlvLength
         6: .line 291
            iload 3 /* contentLength */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            isub
            if_icmple 8
         7: .line 292
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Decoded length exceeds buffer"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 293
      StackMap locals: int
      StackMap stack:
            iload 4 /* tlvLength */
            newarray 8
            astore 5 /* data */
        start local 5 // byte[] data
         9: .line 294
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            iload 2 /* backup */
            aload 5 /* data */
            iconst_0
            iload 4 /* tlvLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 298
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 3 /* contentLength */
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        11: .line 299
            aload 5 /* data */
            astore 1 /* result */
        end local 5 // byte[] data
        end local 4 // int tlvLength
        end local 3 // int contentLength
        12: .line 300
            goto 16
        13: .line 301
      StackMap locals: com.sun.jmx.snmp.BerDecoder byte[] int
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        14: .line 302
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        15: .line 303
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        16: .line 310
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 2 // int backup
        end local 1 // byte[] result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lcom/sun/jmx/snmp/BerDecoder;
            1   17     1         result  [B
            2   17     2         backup  I
            4   12     3  contentLength  I
            6   12     4      tlvLength  I
            9   12     5           data  [B
      Exception table:
        from    to  target  type
           2    12      13  Class java.lang.IndexOutOfBoundsException
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public byte[] fetchAny(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // int tag
         0: .line 325
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.getTag:()I
            iload 1 /* tag */
            if_icmpeq 2
         1: .line 326
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         2: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchAny:()[B
            areturn
        end local 1 // int tag
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/jmx/snmp/BerDecoder;
            0    3     1   tag  I
    Exceptions:
      throws com.sun.jmx.snmp.BerException
    MethodParameters:
      Name  Flags
      tag   

  public void openSequence();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 342
            aload 0 /* this */
            bipush 48
            invokevirtual com.sun.jmx.snmp.BerDecoder.openSequence:(I)V
         1: .line 343
            return
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/jmx/snmp/BerDecoder;
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public void openSequence(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.jmx.snmp.BerDecoder this
        start local 1 // int tag
         0: .line 356
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         1: .line 358
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            iload 1 /* tag */
            if_icmpeq 3
         2: .line 359
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         3: .line 361
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchLength:()I
            istore 3 /* l */
        start local 3 // int l
         4: .line 362
            iload 3 /* l */
            ifge 5
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         5: .line 363
      StackMap locals: int
      StackMap stack:
            iload 3 /* l */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            isub
            if_icmple 6
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         6: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.stackBuf:[I
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.stackTop:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.stackTop:I
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 3 /* l */
            iadd
            iastore
        end local 3 // int l
         7: .line 365
            goto 11
         8: .line 366
      StackMap locals: com.sun.jmx.snmp.BerDecoder int int
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 3 /* e */
        start local 3 // com.sun.jmx.snmp.BerException e
         9: .line 367
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        10: .line 368
            aload 3 /* e */
            athrow
        end local 3 // com.sun.jmx.snmp.BerException e
        11: .line 370
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int backup
        end local 1 // int tag
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            0   12     1     tag  I
            1   12     2  backup  I
            4    7     3       l  I
            9   11     3       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           1     7       8  Class com.sun.jmx.snmp.BerException
    Exceptions:
      throws com.sun.jmx.snmp.BerException
    MethodParameters:
      Name  Flags
      tag   

  public void closeSequence();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 383
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.stackBuf:[I
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.stackTop:I
            iconst_1
            isub
            iaload
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            if_icmpne 3
         1: .line 384
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.stackTop:I
            iconst_1
            isub
            putfield com.sun.jmx.snmp.BerDecoder.stackTop:I
         2: .line 385
            goto 4
         3: .line 387
      StackMap locals:
      StackMap stack:
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 389
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/jmx/snmp/BerDecoder;
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public boolean cannotCloseSequence();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 401
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.stackBuf:[I
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.stackTop:I
            iconst_1
            isub
            iaload
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/jmx/snmp/BerDecoder;

  public int getTag();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 413
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 414
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         2: .line 416
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchTag:()I
            istore 1 /* result */
         3: .line 417
            goto 7
         4: .line 418
      StackMap locals: com.sun.jmx.snmp.BerDecoder int int
      StackMap stack: java.lang.Throwable
            astore 3
         5: .line 419
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         6: .line 420
            aload 3
            athrow
         7: .line 419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         8: .line 422
            iload 1 /* result */
            ireturn
        end local 2 // int backup
        end local 1 // int result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            1    9     1  result  I
            2    9     2  backup  I
      Exception table:
        from    to  target  type
           2     4       4  any
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 428
            new java.lang.StringBuffer
            dup
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            iconst_2
            imul
            invokespecial java.lang.StringBuffer.<init>:(I)V
            astore 1 /* result */
        start local 1 // java.lang.StringBuffer result
         1: .line 429
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 13
         3: .line 430
      StackMap locals: java.lang.StringBuffer int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            iload 2 /* i */
            baload
            ifle 4
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            iload 2 /* i */
            baload
            goto 5
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            iload 2 /* i */
            baload
            sipush 256
            iadd
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* b */
        start local 3 // int b
         6: .line 431
            iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            if_icmpne 8
         7: .line 432
            aload 1 /* result */
            ldc "("
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         8: .line 434
      StackMap locals: int
      StackMap stack:
            aload 1 /* result */
            iload 3 /* b */
            bipush 16
            idiv
            bipush 16
            invokestatic java.lang.Character.forDigit:(II)C
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
         9: .line 435
            aload 1 /* result */
            iload 3 /* b */
            bipush 16
            irem
            bipush 16
            invokestatic java.lang.Character.forDigit:(II)C
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            pop
        10: .line 436
            iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            if_icmpne 12
        11: .line 437
            aload 1 /* result */
            ldc ")"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        end local 3 // int b
        12: .line 429
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            if_icmplt 3
        end local 2 // int i
        14: .line 440
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            if_icmpne 16
        15: .line 441
            aload 1 /* result */
            ldc "()"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        16: .line 444
      StackMap locals:
      StackMap stack:
            new java.lang.String
            dup
            aload 1 /* result */
            invokespecial java.lang.String.<init>:(Ljava/lang/StringBuffer;)V
            areturn
        end local 1 // java.lang.StringBuffer result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            1   17     1  result  Ljava/lang/StringBuffer;
            2   14     2       i  I
            6   12     3       b  I

  private final int fetchTag();
    descriptor: ()I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 472
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 473
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         2: .line 476
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 3 /* b0 */
        start local 3 // byte b0
         3: .line 477
            iload 3 /* b0 */
            iflt 4
            iload 3 /* b0 */
            goto 5
      StackMap locals: int int int
      StackMap stack:
         4: iload 3 /* b0 */
            sipush 256
            iadd
      StackMap locals:
      StackMap stack: int
         5: istore 1 /* result */
         6: .line 478
            iload 1 /* result */
            bipush 31
            iand
            bipush 31
            if_icmpne 15
         7: .line 479
            goto 10
         8: .line 480
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            bipush 7
            ishl
            istore 1 /* result */
         9: .line 481
            iload 1 /* result */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            bipush 127
            iand
            ior
            istore 1 /* result */
        10: .line 479
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            sipush 128
            iand
            ifne 8
        end local 3 // byte b0
        11: .line 484
            goto 15
        12: .line 485
      StackMap locals: com.sun.jmx.snmp.BerDecoder int int
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        13: .line 486
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        14: .line 487
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        15: .line 490
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 2 // int backup
        end local 1 // int result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            1   16     1  result  I
            2   16     2  backup  I
            3   11     3      b0  B
      Exception table:
        from    to  target  type
           2    11      12  Class java.lang.IndexOutOfBoundsException
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  private final int fetchLength();
    descriptor: ()I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 501
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 502
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         2: .line 505
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 3 /* b0 */
        start local 3 // byte b0
         3: .line 506
            iload 3 /* b0 */
            iflt 6
         4: .line 507
            iload 3 /* b0 */
            istore 1 /* result */
         5: .line 508
            goto 19
         6: .line 510
      StackMap locals: int int int
      StackMap stack:
            sipush 128
            iload 3 /* b0 */
            iadd
            istore 4 /* c */
        start local 4 // int c
         7: goto 14
         8: .line 511
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 5 /* bX */
        start local 5 // byte bX
         9: .line 512
            iload 1 /* result */
            bipush 8
            ishl
            istore 1 /* result */
        10: .line 513
            iload 1 /* result */
            iload 5 /* bX */
            iflt 11
            iload 5 /* bX */
            goto 12
      StackMap locals: com.sun.jmx.snmp.BerDecoder int int int int int
      StackMap stack: int
        11: iload 5 /* bX */
            sipush 256
            iadd
      StackMap locals: com.sun.jmx.snmp.BerDecoder int int int int int
      StackMap stack: int int
        12: ior
            istore 1 /* result */
        end local 5 // byte bX
        13: .line 510
            iinc 4 /* c */ -1
      StackMap locals:
      StackMap stack:
        14: iload 4 /* c */
            ifgt 8
        end local 4 // int c
        end local 3 // byte b0
        15: .line 516
            goto 19
        16: .line 517
      StackMap locals: com.sun.jmx.snmp.BerDecoder int int
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        17: .line 518
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        18: .line 519
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        19: .line 522
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 2 // int backup
        end local 1 // int result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   20     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            1   20     1  result  I
            2   20     2  backup  I
            3   15     3      b0  B
            7   15     4       c  I
            9   13     5      bX  B
      Exception table:
        from    to  target  type
           2    15      16  Class java.lang.IndexOutOfBoundsException
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  private int fetchIntegerValue();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 533
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 534
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         2: .line 537
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchLength:()I
            istore 3 /* length */
        start local 3 // int length
         3: .line 538
            iload 3 /* length */
            ifgt 4
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 539
      StackMap locals: int int int
      StackMap stack:
            iload 3 /* length */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            isub
            if_icmple 7
         5: .line 540
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Decoded length exceeds buffer"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
         6: .line 539
            athrow
         7: .line 541
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 3 /* length */
            iadd
            istore 4 /* end */
        start local 4 // int end
         8: .line 542
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 1 /* result */
         9: .line 543
            goto 15
        10: .line 544
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 5 /* b */
        start local 5 // byte b
        11: .line 545
            iload 5 /* b */
            ifge 14
        12: .line 546
            iload 1 /* result */
            bipush 8
            ishl
            sipush 256
            iload 5 /* b */
            iadd
            ior
            istore 1 /* result */
        13: .line 547
            goto 15
        14: .line 549
      StackMap locals: int
      StackMap stack:
            iload 1 /* result */
            bipush 8
            ishl
            iload 5 /* b */
            ior
            istore 1 /* result */
        end local 5 // byte b
        15: .line 543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 4 /* end */
            if_icmplt 10
        end local 4 // int end
        end local 3 // int length
        16: .line 552
            goto 26
        17: .line 553
      StackMap locals: com.sun.jmx.snmp.BerDecoder int int
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 3 /* e */
        start local 3 // com.sun.jmx.snmp.BerException e
        18: .line 554
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        19: .line 555
            aload 3 /* e */
            athrow
        end local 3 // com.sun.jmx.snmp.BerException e
        20: .line 557
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        21: .line 558
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        22: .line 559
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        23: .line 561
      StackMap locals:
      StackMap stack: java.lang.ArithmeticException
            pop
        24: .line 562
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        25: .line 563
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        26: .line 565
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 2 // int backup
        end local 1 // int result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   27     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            1   27     1  result  I
            2   27     2  backup  I
            3   16     3  length  I
            8   16     4     end  I
           11   15     5       b  B
           18   20     3       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2    16      17  Class com.sun.jmx.snmp.BerException
           2    16      20  Class java.lang.IndexOutOfBoundsException
           2    16      23  Class java.lang.ArithmeticException
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  private final long fetchIntegerValueAsLong();
    descriptor: ()J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 578
            lconst_0
            lstore 1 /* result */
        start local 1 // long result
         1: .line 579
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 3 /* backup */
        start local 3 // int backup
         2: .line 582
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchLength:()I
            istore 4 /* length */
        start local 4 // int length
         3: .line 583
            iload 4 /* length */
            ifgt 4
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 584
      StackMap locals: long int int
      StackMap stack:
            iload 4 /* length */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            isub
            if_icmple 7
         5: .line 585
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Decoded length exceeds buffer"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
         6: .line 584
            athrow
         7: .line 587
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 4 /* length */
            iadd
            istore 5 /* end */
        start local 5 // int end
         8: .line 588
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            i2l
            lstore 1 /* result */
         9: .line 589
            goto 15
        10: .line 590
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 6 /* b */
        start local 6 // byte b
        11: .line 591
            iload 6 /* b */
            ifge 14
        12: .line 592
            lload 1 /* result */
            bipush 8
            lshl
            sipush 256
            iload 6 /* b */
            iadd
            i2l
            lor
            lstore 1 /* result */
        13: .line 593
            goto 15
        14: .line 595
      StackMap locals: int
      StackMap stack:
            lload 1 /* result */
            bipush 8
            lshl
            iload 6 /* b */
            i2l
            lor
            lstore 1 /* result */
        end local 6 // byte b
        15: .line 589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 5 /* end */
            if_icmplt 10
        end local 5 // int end
        end local 4 // int length
        16: .line 598
            goto 26
        17: .line 599
      StackMap locals: com.sun.jmx.snmp.BerDecoder long int
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 4 /* e */
        start local 4 // com.sun.jmx.snmp.BerException e
        18: .line 600
            aload 0 /* this */
            iload 3 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        19: .line 601
            aload 4 /* e */
            athrow
        end local 4 // com.sun.jmx.snmp.BerException e
        20: .line 603
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        21: .line 604
            aload 0 /* this */
            iload 3 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        22: .line 605
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        23: .line 607
      StackMap locals:
      StackMap stack: java.lang.ArithmeticException
            pop
        24: .line 608
            aload 0 /* this */
            iload 3 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        25: .line 609
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        26: .line 611
      StackMap locals:
      StackMap stack:
            lload 1 /* result */
            lreturn
        end local 3 // int backup
        end local 1 // long result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   27     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            1   27     1  result  J
            2   27     3  backup  I
            3   16     4  length  I
            8   16     5     end  I
           11   15     6       b  B
           18   20     4       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2    16      17  Class com.sun.jmx.snmp.BerException
           2    16      20  Class java.lang.IndexOutOfBoundsException
           2    16      23  Class java.lang.ArithmeticException
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  private byte[] fetchStringValue();
    descriptor: ()[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 622
            aconst_null
            astore 1 /* result */
        start local 1 // byte[] result
         1: .line 623
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         2: .line 626
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchLength:()I
            istore 3 /* length */
        start local 3 // int length
         3: .line 627
            iload 3 /* length */
            ifge 4
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 628
      StackMap locals: byte[] int int
      StackMap stack:
            iload 3 /* length */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            isub
            if_icmple 6
         5: .line 629
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Decoded length exceeds buffer"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 630
      StackMap locals:
      StackMap stack:
            iload 3 /* length */
            newarray 8
            astore 4 /* data */
        start local 4 // byte[] data
         7: .line 631
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            aload 4 /* data */
            iconst_0
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 632
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 3 /* length */
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
         9: .line 637
            aload 4 /* data */
            astore 1 /* result */
        end local 4 // byte[] data
        end local 3 // int length
        10: .line 638
            goto 20
        11: .line 639
      StackMap locals: com.sun.jmx.snmp.BerDecoder byte[] int
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 3 /* e */
        start local 3 // com.sun.jmx.snmp.BerException e
        12: .line 640
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        13: .line 641
            aload 3 /* e */
            athrow
        end local 3 // com.sun.jmx.snmp.BerException e
        14: .line 643
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        15: .line 644
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        16: .line 645
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        17: .line 647
      StackMap locals:
      StackMap stack: java.lang.ArithmeticException
            pop
        18: .line 648
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        19: .line 649
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        20: .line 656
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 2 // int backup
        end local 1 // byte[] result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   21     0    this  Lcom/sun/jmx/snmp/BerDecoder;
            1   21     1  result  [B
            2   21     2  backup  I
            3   10     3  length  I
            7   10     4    data  [B
           12   14     3       e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2    10      11  Class com.sun.jmx.snmp.BerException
           2    10      14  Class java.lang.IndexOutOfBoundsException
           2    10      17  Class java.lang.ArithmeticException
    Exceptions:
      throws com.sun.jmx.snmp.BerException

  private final long[] fetchOidValue();
    descriptor: ()[J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=16, args_size=1
        start local 0 // com.sun.jmx.snmp.BerDecoder this
         0: .line 668
            aconst_null
            astore 1 /* result */
        start local 1 // long[] result
         1: .line 669
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            istore 2 /* backup */
        start local 2 // int backup
         2: .line 672
            aload 0 /* this */
            invokevirtual com.sun.jmx.snmp.BerDecoder.fetchLength:()I
            istore 3 /* length */
        start local 3 // int length
         3: .line 673
            iload 3 /* length */
            ifgt 4
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
         4: .line 674
      StackMap locals: long[] int int
      StackMap stack:
            iload 3 /* length */
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            isub
            if_icmple 6
         5: .line 675
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Decoded length exceeds buffer"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 678
      StackMap locals:
      StackMap stack:
            iconst_2
            istore 4 /* subidCount */
        start local 4 // int subidCount
         7: .line 679
            iconst_1
            istore 5 /* i */
        start local 5 // int i
         8: goto 12
         9: .line 680
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            iload 5 /* i */
            iadd
            baload
            sipush 128
            iand
            ifne 11
        10: .line 681
            iinc 4 /* subidCount */ 1
        11: .line 679
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* i */
            iload 3 /* length */
            if_icmplt 9
        end local 5 // int i
        13: .line 684
            iload 4 /* subidCount */
            istore 5 /* datalen */
        start local 5 // int datalen
        14: .line 685
            iload 5 /* datalen */
            newarray 11
            astore 6 /* data */
        start local 6 // long[] data
        15: .line 686
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 7 /* b0 */
        start local 7 // byte b0
        16: .line 690
            iload 7 /* b0 */
            ifge 17
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        17: .line 694
      StackMap locals: long[] int
      StackMap stack:
            iload 7 /* b0 */
            bipush 40
            idiv
            i2l
            lstore 8 /* lb0 */
        start local 8 // long lb0
        18: .line 695
            lload 8 /* lb0 */
            ldc 2
            lcmp
            ifle 19
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        19: .line 697
      StackMap locals: long
      StackMap stack:
            iload 7 /* b0 */
            bipush 40
            irem
            i2l
            lstore 10 /* lb1 */
        start local 10 // long lb1
        20: .line 698
            aload 6 /* data */
            iconst_0
            lload 8 /* lb0 */
            lastore
        21: .line 699
            aload 6 /* data */
            iconst_1
            lload 10 /* lb1 */
            lastore
        22: .line 700
            iconst_2
            istore 12 /* i */
        start local 12 // int i
        23: .line 701
            goto 34
        24: .line 702
      StackMap locals: long int
      StackMap stack:
            lconst_0
            lstore 13 /* subid */
        start local 13 // long subid
        25: .line 703
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 15 /* b */
        start local 15 // byte b
        26: .line 704
            goto 30
        27: .line 705
      StackMap locals: long int
      StackMap stack:
            lload 13 /* subid */
            bipush 7
            lshl
            iload 15 /* b */
            bipush 127
            iand
            i2l
            lor
            lstore 13 /* subid */
        28: .line 707
            lload 13 /* subid */
            lconst_0
            lcmp
            ifge 29
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        29: .line 708
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.jmx.snmp.BerDecoder.bytes:[B
            aload 0 /* this */
            dup
            getfield com.sun.jmx.snmp.BerDecoder.next:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.jmx.snmp.BerDecoder.next:I
            baload
            istore 15 /* b */
        30: .line 704
      StackMap locals:
      StackMap stack:
            iload 15 /* b */
            sipush 128
            iand
            ifne 27
        31: .line 710
            lload 13 /* subid */
            bipush 7
            lshl
            iload 15 /* b */
            i2l
            lor
            lstore 13 /* subid */
        32: .line 712
            lload 13 /* subid */
            lconst_0
            lcmp
            ifge 33
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        33: .line 713
      StackMap locals:
      StackMap stack:
            aload 6 /* data */
            iload 12 /* i */
            iinc 12 /* i */ 1
            lload 13 /* subid */
            lastore
        end local 15 // byte b
        end local 13 // long subid
        34: .line 701
      StackMap locals:
      StackMap stack:
            iload 12 /* i */
            iload 5 /* datalen */
            if_icmplt 24
        35: .line 715
            aload 6 /* data */
            astore 1 /* result */
        end local 12 // int i
        end local 10 // long lb1
        end local 8 // long lb0
        end local 7 // byte b0
        end local 6 // long[] data
        end local 5 // int datalen
        end local 4 // int subidCount
        end local 3 // int length
        36: .line 716
            goto 43
        37: .line 717
      StackMap locals: com.sun.jmx.snmp.BerDecoder long[] int
      StackMap stack: com.sun.jmx.snmp.BerException
            astore 3 /* e */
        start local 3 // com.sun.jmx.snmp.BerException e
        38: .line 718
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        39: .line 719
            aload 3 /* e */
            athrow
        end local 3 // com.sun.jmx.snmp.BerException e
        40: .line 721
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
            pop
        41: .line 722
            aload 0 /* this */
            iload 2 /* backup */
            putfield com.sun.jmx.snmp.BerDecoder.next:I
        42: .line 723
            new com.sun.jmx.snmp.BerException
            dup
            invokespecial com.sun.jmx.snmp.BerException.<init>:()V
            athrow
        43: .line 730
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 2 // int backup
        end local 1 // long[] result
        end local 0 // com.sun.jmx.snmp.BerDecoder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   44     0        this  Lcom/sun/jmx/snmp/BerDecoder;
            1   44     1      result  [J
            2   44     2      backup  I
            3   36     3      length  I
            7   36     4  subidCount  I
            8   13     5           i  I
           14   36     5     datalen  I
           15   36     6        data  [J
           16   36     7          b0  B
           18   36     8         lb0  J
           20   36    10         lb1  J
           23   36    12           i  I
           25   34    13       subid  J
           26   34    15           b  B
           38   40     3           e  Lcom/sun/jmx/snmp/BerException;
      Exception table:
        from    to  target  type
           2    36      37  Class com.sun.jmx.snmp.BerException
           2    36      40  Class java.lang.IndexOutOfBoundsException
    Exceptions:
      throws com.sun.jmx.snmp.BerException
}
SourceFile: "BerDecoder.java"