public class org.bouncycastle.asn1.DERApplicationSpecific extends org.bouncycastle.asn1.ASN1Object
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.asn1.DERApplicationSpecific
  super_class: org.bouncycastle.asn1.ASN1Object
{
  private final boolean isConstructed;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int tag;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  void <init>(boolean, int, byte[]);
    descriptor: (ZI[B)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // boolean isConstructed
        start local 2 // int tag
        start local 3 // byte[] octets
         0: .line 18
            aload 0 /* this */
            invokespecial org.bouncycastle.asn1.ASN1Object.<init>:()V
         1: .line 23
            aload 0 /* this */
            iload 1 /* isConstructed */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
         2: .line 24
            aload 0 /* this */
            iload 2 /* tag */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
         3: .line 25
            aload 0 /* this */
            aload 3 /* octets */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
         4: .line 26
            return
        end local 3 // byte[] octets
        end local 2 // int tag
        end local 1 // boolean isConstructed
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0    5     1  isConstructed  Z
            0    5     2            tag  I
            0    5     3         octets  [B
    MethodParameters:
               Name  Flags
      isConstructed  
      tag            
      octets         

  public void <init>(int, byte[]);
    descriptor: (I[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // int tag
        start local 2 // byte[] octets
         0: .line 32
            aload 0 /* this */
            iconst_0
            iload 1 /* tag */
            aload 2 /* octets */
            invokespecial org.bouncycastle.asn1.DERApplicationSpecific.<init>:(ZI[B)V
         1: .line 33
            return
        end local 2 // byte[] octets
        end local 1 // int tag
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0    2     1     tag  I
            0    2     2  octets  [B
    MethodParameters:
        Name  Flags
      tag     
      octets  

  public void <init>(int, org.bouncycastle.asn1.DEREncodable);
    descriptor: (ILorg/bouncycastle/asn1/DEREncodable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // int tag
        start local 2 // org.bouncycastle.asn1.DEREncodable object
         0: .line 40
            aload 0 /* this */
            iconst_1
            iload 1 /* tag */
            aload 2 /* object */
            invokespecial org.bouncycastle.asn1.DERApplicationSpecific.<init>:(ZILorg/bouncycastle/asn1/DEREncodable;)V
         1: .line 41
            return
        end local 2 // org.bouncycastle.asn1.DEREncodable object
        end local 1 // int tag
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0    2     1     tag  I
            0    2     2  object  Lorg/bouncycastle/asn1/DEREncodable;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      tag     
      object  

  public void <init>(boolean, int, org.bouncycastle.asn1.DEREncodable);
    descriptor: (ZILorg/bouncycastle/asn1/DEREncodable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // boolean explicit
        start local 2 // int tag
        start local 3 // org.bouncycastle.asn1.DEREncodable object
         0: .line 43
            aload 0 /* this */
            invokespecial org.bouncycastle.asn1.ASN1Object.<init>:()V
         1: .line 49
            aload 3 /* object */
            invokeinterface org.bouncycastle.asn1.DEREncodable.getDERObject:()Lorg/bouncycastle/asn1/DERObject;
            invokevirtual org.bouncycastle.asn1.DERObject.getDEREncoded:()[B
            astore 4 /* data */
        start local 4 // byte[] data
         2: .line 51
            aload 0 /* this */
            iload 1 /* explicit */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
         3: .line 52
            aload 0 /* this */
            iload 2 /* tag */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
         4: .line 54
            iload 1 /* explicit */
            ifeq 7
         5: .line 56
            aload 0 /* this */
            aload 4 /* data */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
         6: .line 57
            goto 11
         7: .line 60
      StackMap locals: org.bouncycastle.asn1.DERApplicationSpecific int int org.bouncycastle.asn1.DEREncodable byte[]
      StackMap stack:
            aload 0 /* this */
            aload 4 /* data */
            invokevirtual org.bouncycastle.asn1.DERApplicationSpecific.getLengthOfLength:([B)I
            istore 5 /* lenBytes */
        start local 5 // int lenBytes
         8: .line 61
            aload 4 /* data */
            arraylength
            iload 5 /* lenBytes */
            isub
            newarray 8
            astore 6 /* tmp */
        start local 6 // byte[] tmp
         9: .line 62
            aload 4 /* data */
            iload 5 /* lenBytes */
            aload 6 /* tmp */
            iconst_0
            aload 6 /* tmp */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 63
            aload 0 /* this */
            aload 6 /* tmp */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
        end local 6 // byte[] tmp
        end local 5 // int lenBytes
        11: .line 65
      StackMap locals:
      StackMap stack:
            return
        end local 4 // byte[] data
        end local 3 // org.bouncycastle.asn1.DEREncodable object
        end local 2 // int tag
        end local 1 // boolean explicit
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0   12     1  explicit  Z
            0   12     2       tag  I
            0   12     3    object  Lorg/bouncycastle/asn1/DEREncodable;
            2   12     4      data  [B
            8   11     5  lenBytes  I
            9   11     6       tmp  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      explicit  
      tag       
      object    

  public void <init>(int, org.bouncycastle.asn1.ASN1EncodableVector);
    descriptor: (ILorg/bouncycastle/asn1/ASN1EncodableVector;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // int tagNo
        start local 2 // org.bouncycastle.asn1.ASN1EncodableVector vec
         0: .line 67
            aload 0 /* this */
            invokespecial org.bouncycastle.asn1.ASN1Object.<init>:()V
         1: .line 69
            aload 0 /* this */
            iload 1 /* tagNo */
            putfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
         2: .line 70
            aload 0 /* this */
            iconst_1
            putfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
         3: .line 71
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            astore 3 /* bOut */
        start local 3 // java.io.ByteArrayOutputStream bOut
         4: .line 73
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 11
         6: .line 77
      StackMap locals: org.bouncycastle.asn1.DERApplicationSpecific int org.bouncycastle.asn1.ASN1EncodableVector java.io.ByteArrayOutputStream int
      StackMap stack:
            aload 3 /* bOut */
            aload 2 /* vec */
            iload 4 /* i */
            invokevirtual org.bouncycastle.asn1.ASN1EncodableVector.get:(I)Lorg/bouncycastle/asn1/DEREncodable;
            checkcast org.bouncycastle.asn1.ASN1Encodable
            invokevirtual org.bouncycastle.asn1.ASN1Encodable.getEncoded:()[B
            invokevirtual java.io.ByteArrayOutputStream.write:([B)V
         7: .line 78
            goto 10
         8: .line 79
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
         9: .line 81
            new org.bouncycastle.asn1.ASN1ParsingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "malformed object: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* e */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 5 /* e */
            invokespecial org.bouncycastle.asn1.ASN1ParsingException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException e
        10: .line 73
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 4 /* i */
            aload 2 /* vec */
            invokevirtual org.bouncycastle.asn1.ASN1EncodableVector.size:()I
            if_icmpne 6
        end local 4 // int i
        12: .line 84
            aload 0 /* this */
            aload 3 /* bOut */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            putfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
        13: .line 85
            return
        end local 3 // java.io.ByteArrayOutputStream bOut
        end local 2 // org.bouncycastle.asn1.ASN1EncodableVector vec
        end local 1 // int tagNo
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0   14     1  tagNo  I
            0   14     2    vec  Lorg/bouncycastle/asn1/ASN1EncodableVector;
            4   14     3   bOut  Ljava/io/ByteArrayOutputStream;
            5   12     4      i  I
            9   10     5      e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           6     7       8  Class java.io.IOException
    MethodParameters:
       Name  Flags
      tagNo  
      vec    

  private int getLengthOfLength(byte[]);
    descriptor: ([B)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // byte[] data
         0: .line 89
            iconst_2
            istore 2 /* count */
        start local 2 // int count
         1: .line 91
            goto 3
         2: .line 93
      StackMap locals: int
      StackMap stack:
            iinc 2 /* count */ 1
         3: .line 91
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            iload 2 /* count */
            iconst_1
            isub
            baload
            sipush 128
            iand
            ifne 2
         4: .line 96
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // byte[] data
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0    5     1   data  [B
            1    5     2  count  I
    MethodParameters:
      Name  Flags
      data  

  public boolean isConstructed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
         0: .line 101
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
            ireturn
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/DERApplicationSpecific;

  public byte[] getContents();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
         0: .line 106
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
            areturn
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/DERApplicationSpecific;

  public int getApplicationTag();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
         0: .line 111
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
            ireturn
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/DERApplicationSpecific;

  public org.bouncycastle.asn1.DERObject getObject();
    descriptor: ()Lorg/bouncycastle/asn1/DERObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
         0: .line 123
            new org.bouncycastle.asn1.ASN1InputStream
            dup
            aload 0 /* this */
            invokevirtual org.bouncycastle.asn1.DERApplicationSpecific.getContents:()[B
            invokespecial org.bouncycastle.asn1.ASN1InputStream.<init>:([B)V
            invokevirtual org.bouncycastle.asn1.ASN1InputStream.readObject:()Lorg/bouncycastle/asn1/DERObject;
            areturn
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
    Exceptions:
      throws java.io.IOException

  public org.bouncycastle.asn1.DERObject getObject(int);
    descriptor: (I)Lorg/bouncycastle/asn1/DERObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // int derTagNo
         0: .line 136
            iload 1 /* derTagNo */
            bipush 31
            if_icmplt 2
         1: .line 138
            new java.io.IOException
            dup
            ldc "unsupported tag number"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 141
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bouncycastle.asn1.DERApplicationSpecific.getEncoded:()[B
            astore 2 /* orig */
        start local 2 // byte[] orig
         3: .line 142
            aload 0 /* this */
            iload 1 /* derTagNo */
            aload 2 /* orig */
            invokevirtual org.bouncycastle.asn1.DERApplicationSpecific.replaceTagNumber:(I[B)[B
            astore 3 /* tmp */
        start local 3 // byte[] tmp
         4: .line 144
            aload 2 /* orig */
            iconst_0
            baload
            bipush 32
            iand
            ifeq 6
         5: .line 146
            aload 3 /* tmp */
            iconst_0
            dup2
            baload
            bipush 32
            ior
            i2b
            bastore
         6: .line 149
      StackMap locals: byte[] byte[]
      StackMap stack:
            new org.bouncycastle.asn1.ASN1InputStream
            dup
            aload 3 /* tmp */
            invokespecial org.bouncycastle.asn1.ASN1InputStream.<init>:([B)V
            invokevirtual org.bouncycastle.asn1.ASN1InputStream.readObject:()Lorg/bouncycastle/asn1/DERObject;
            areturn
        end local 3 // byte[] tmp
        end local 2 // byte[] orig
        end local 1 // int derTagNo
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0    7     1  derTagNo  I
            3    7     2      orig  [B
            4    7     3       tmp  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      derTagNo  

  void encode(org.bouncycastle.asn1.DEROutputStream);
    descriptor: (Lorg/bouncycastle/asn1/DEROutputStream;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // org.bouncycastle.asn1.DEROutputStream out
         0: .line 157
            bipush 64
            istore 2 /* classBits */
        start local 2 // int classBits
         1: .line 158
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
            ifeq 3
         2: .line 160
            iload 2 /* classBits */
            bipush 32
            ior
            istore 2 /* classBits */
         3: .line 163
      StackMap locals: int
      StackMap stack:
            aload 1 /* out */
            iload 2 /* classBits */
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
            invokevirtual org.bouncycastle.asn1.DEROutputStream.writeEncoded:(II[B)V
         4: .line 164
            return
        end local 2 // int classBits
        end local 1 // org.bouncycastle.asn1.DEROutputStream out
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0    5     1        out  Lorg/bouncycastle/asn1/DEROutputStream;
            1    5     2  classBits  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  boolean asn1Equals(org.bouncycastle.asn1.DERObject);
    descriptor: (Lorg/bouncycastle/asn1/DERObject;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // org.bouncycastle.asn1.DERObject o
         0: .line 169
            aload 1 /* o */
            instanceof org.bouncycastle.asn1.DERApplicationSpecific
            ifne 2
         1: .line 171
            iconst_0
            ireturn
         2: .line 174
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.bouncycastle.asn1.DERApplicationSpecific
            astore 2 /* other */
        start local 2 // org.bouncycastle.asn1.DERApplicationSpecific other
         3: .line 176
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
            aload 2 /* other */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
            if_icmpne 7
         4: .line 177
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
            aload 2 /* other */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
            if_icmpne 7
         5: .line 178
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
            aload 2 /* other */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
            invokestatic org.bouncycastle.util.Arrays.areEqual:([B[B)Z
            ifeq 7
         6: .line 176
            iconst_1
            ireturn
      StackMap locals: org.bouncycastle.asn1.DERApplicationSpecific
      StackMap stack:
         7: iconst_0
            ireturn
        end local 2 // org.bouncycastle.asn1.DERApplicationSpecific other
        end local 1 // org.bouncycastle.asn1.DERObject o
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0    8     1      o  Lorg/bouncycastle/asn1/DERObject;
            3    8     2  other  Lorg/bouncycastle/asn1/DERApplicationSpecific;
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
         0: .line 183
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.isConstructed:Z
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.tag:I
            ixor
            aload 0 /* this */
            getfield org.bouncycastle.asn1.DERApplicationSpecific.octets:[B
            invokestatic org.bouncycastle.util.Arrays.hashCode:([B)I
            ixor
            ireturn
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bouncycastle/asn1/DERApplicationSpecific;

  private byte[] replaceTagNumber(int, byte[]);
    descriptor: (I[B)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=3
        start local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
        start local 1 // int newTag
        start local 2 // byte[] input
         0: .line 189
            aload 2 /* input */
            iconst_0
            baload
            bipush 31
            iand
            istore 3 /* tagNo */
        start local 3 // int tagNo
         1: .line 190
            iconst_1
            istore 4 /* index */
        start local 4 // int index
         2: .line 194
            iload 3 /* tagNo */
            bipush 31
            if_icmpne 12
         3: .line 196
            iconst_0
            istore 3 /* tagNo */
         4: .line 198
            aload 2 /* input */
            iload 4 /* index */
            iinc 4 /* index */ 1
            baload
            sipush 255
            iand
            istore 5 /* b */
        start local 5 // int b
         5: .line 202
            iload 5 /* b */
            bipush 127
            iand
            ifne 10
         6: .line 204
            new org.bouncycastle.asn1.ASN1ParsingException
            dup
            ldc "corrupted stream - invalid high tag number found"
            invokespecial org.bouncycastle.asn1.ASN1ParsingException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 209
      StackMap locals: int int int
      StackMap stack:
            iload 3 /* tagNo */
            iload 5 /* b */
            bipush 127
            iand
            ior
            istore 3 /* tagNo */
         8: .line 210
            iload 3 /* tagNo */
            bipush 7
            ishl
            istore 3 /* tagNo */
         9: .line 211
            aload 2 /* input */
            iload 4 /* index */
            iinc 4 /* index */ 1
            baload
            sipush 255
            iand
            istore 5 /* b */
        10: .line 207
      StackMap locals:
      StackMap stack:
            iload 5 /* b */
            iflt 11
            iload 5 /* b */
            sipush 128
            iand
            ifne 7
        11: .line 214
      StackMap locals:
      StackMap stack:
            iload 3 /* tagNo */
            iload 5 /* b */
            bipush 127
            iand
            ior
            istore 3 /* tagNo */
        end local 5 // int b
        12: .line 217
      StackMap locals:
      StackMap stack:
            aload 2 /* input */
            arraylength
            iload 4 /* index */
            isub
            iconst_1
            iadd
            newarray 8
            astore 5 /* tmp */
        start local 5 // byte[] tmp
        13: .line 219
            aload 2 /* input */
            iload 4 /* index */
            aload 5 /* tmp */
            iconst_1
            aload 5 /* tmp */
            arraylength
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 221
            aload 5 /* tmp */
            iconst_0
            iload 1 /* newTag */
            i2b
            bastore
        15: .line 223
            aload 5 /* tmp */
            areturn
        end local 5 // byte[] tmp
        end local 4 // int index
        end local 3 // int tagNo
        end local 2 // byte[] input
        end local 1 // int newTag
        end local 0 // org.bouncycastle.asn1.DERApplicationSpecific this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lorg/bouncycastle/asn1/DERApplicationSpecific;
            0   16     1  newTag  I
            0   16     2   input  [B
            1   16     3   tagNo  I
            2   16     4   index  I
            5   12     5       b  I
           13   16     5     tmp  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      newTag  
      input   
}
SourceFile: "DERApplicationSpecific.java"