public final class com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data extends com.sun.xml.internal.bind.v2.runtime.output.Pcdata
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data
  super_class: com.sun.xml.internal.bind.v2.runtime.output.Pcdata
{
  private javax.activation.DataHandler dataHandler;
    descriptor: Ljavax/activation/DataHandler;
    flags: (0x0002) ACC_PRIVATE

  private byte[] data;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

  private java.lang.String mimeType;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    RuntimeInvisibleAnnotations: 
      com.sun.istack.internal.Nullable()

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 64
            ldc Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 64
            aload 0 /* this */
            invokespecial com.sun.xml.internal.bind.v2.runtime.output.Pcdata.<init>:()V
            return
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;

  public void set(byte[], int, java.lang.String);
    descriptor: ([BILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // byte[] data
        start local 2 // int len
        start local 3 // java.lang.String mimeType
         0: .line 89
            aload 0 /* this */
            aload 1 /* data */
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
         1: .line 90
            aload 0 /* this */
            iload 2 /* len */
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
         2: .line 91
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
         3: .line 92
            aload 0 /* this */
            aload 3 /* mimeType */
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.mimeType:Ljava/lang/String;
         4: .line 93
            return
        end local 3 // java.lang.String mimeType
        end local 2 // int len
        end local 1 // byte[] data
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0    5     1      data  [B
            0    5     2       len  I
            0    5     3  mimeType  Ljava/lang/String;
    RuntimeInvisibleParameterAnnotations: 
      0:
      1:
      2:
        com.sun.istack.internal.Nullable()
    MethodParameters:
          Name  Flags
      data      
      len       
      mimeType  

  public void set(byte[], java.lang.String);
    descriptor: ([BLjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // byte[] data
        start local 2 // java.lang.String mimeType
         0: .line 102
            aload 0 /* this */
            aload 1 /* data */
            aload 1 /* data */
            arraylength
            aload 2 /* mimeType */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.set:([BILjava/lang/String;)V
         1: .line 103
            return
        end local 2 // java.lang.String mimeType
        end local 1 // byte[] data
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0    2     1      data  [B
            0    2     2  mimeType  Ljava/lang/String;
    RuntimeInvisibleParameterAnnotations: 
      0:
      1:
        com.sun.istack.internal.Nullable()
    MethodParameters:
          Name  Flags
      data      
      mimeType  

  public void set(javax.activation.DataHandler);
    descriptor: (Ljavax/activation/DataHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // javax.activation.DataHandler data
         0: .line 109
            getstatic com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.$assertionsDisabled:Z
            ifne 1
            aload 1 /* data */
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
         2: .line 111
            aload 0 /* this */
            aconst_null
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
         3: .line 112
            return
        end local 1 // javax.activation.DataHandler data
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0    4     1  data  Ljavax/activation/DataHandler;
    MethodParameters:
      Name  Flags
      data  

  public javax.activation.DataHandler getDataHandler();
    descriptor: ()Ljavax/activation/DataHandler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 118
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
            ifnonnull 2
         1: .line 119
            aload 0 /* this */
            new javax.activation.DataHandler
            dup
            new com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data$1
            dup
            aload 0 /* this */
            invokespecial com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data$1.<init>:(Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;)V
            invokespecial javax.activation.DataHandler.<init>:(Ljavax/activation/DataSource;)V
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
         2: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
            areturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;

  public byte[] getExact();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 146
            aload 0 /* this */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.get:()[B
            pop
         1: .line 147
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            arraylength
            if_icmpeq 5
         2: .line 148
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            newarray 8
            astore 1 /* buf */
        start local 1 // byte[] buf
         3: .line 149
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iconst_0
            aload 1 /* buf */
            iconst_0
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 150
            aload 0 /* this */
            aload 1 /* buf */
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
        end local 1 // byte[] buf
         5: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            areturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            3    5     1   buf  [B

  public java.io.InputStream getInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 159
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
            ifnull 2
         1: .line 160
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
            invokevirtual javax.activation.DataHandler.getInputStream:()Ljava/io/InputStream;
            areturn
         2: .line 162
      StackMap locals:
      StackMap stack:
            new java.io.ByteArrayInputStream
            dup
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            invokespecial java.io.ByteArrayInputStream.<init>:([BII)V
            areturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
    Exceptions:
      throws java.io.IOException

  public boolean hasData();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 171
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;

  public byte[] get();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 178
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            ifnonnull 10
         1: .line 180
            new com.sun.xml.internal.bind.v2.util.ByteArrayOutputStreamEx
            dup
            sipush 1024
            invokespecial com.sun.xml.internal.bind.v2.util.ByteArrayOutputStreamEx.<init>:(I)V
            astore 1 /* baos */
        start local 1 // com.sun.xml.internal.bind.v2.util.ByteArrayOutputStreamEx baos
         2: .line 181
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataHandler:Ljavax/activation/DataHandler;
            invokevirtual javax.activation.DataHandler.getDataSource:()Ljavax/activation/DataSource;
            invokeinterface javax.activation.DataSource.getInputStream:()Ljava/io/InputStream;
            astore 2 /* is */
        start local 2 // java.io.InputStream is
         3: .line 182
            aload 1 /* baos */
            aload 2 /* is */
            invokevirtual com.sun.xml.internal.bind.v2.util.ByteArrayOutputStreamEx.readFrom:(Ljava/io/InputStream;)V
         4: .line 183
            aload 2 /* is */
            invokevirtual java.io.InputStream.close:()V
         5: .line 184
            aload 0 /* this */
            aload 1 /* baos */
            invokevirtual com.sun.xml.internal.bind.v2.util.ByteArrayOutputStreamEx.getBuffer:()[B
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
         6: .line 185
            aload 0 /* this */
            aload 1 /* baos */
            invokevirtual com.sun.xml.internal.bind.v2.util.ByteArrayOutputStreamEx.size:()I
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
        end local 2 // java.io.InputStream is
        end local 1 // com.sun.xml.internal.bind.v2.util.ByteArrayOutputStreamEx baos
         7: .line 186
            goto 10
      StackMap locals:
      StackMap stack: java.io.IOException
         8: pop
         9: .line 188
            aload 0 /* this */
            iconst_0
            putfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
        10: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            areturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            2    7     1  baos  Lcom/sun/xml/internal/bind/v2/util/ByteArrayOutputStreamEx;
            3    7     2    is  Ljava/io/InputStream;
      Exception table:
        from    to  target  type
           1     7       8  Class java.io.IOException

  public int getDataLen();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 195
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            ireturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;

  public java.lang.String getMimeType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 199
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.mimeType:Ljava/lang/String;
            ifnonnull 2
         1: .line 200
            ldc "application/octet-stream"
            areturn
         2: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.mimeType:Ljava/lang/String;
            areturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 212
            aload 0 /* this */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.get:()[B
            pop
         1: .line 213
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            iconst_2
            iadd
            iconst_3
            idiv
            iconst_4
            imul
            ireturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;

  public char charAt(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // int index
         0: .line 225
            iload 1 /* index */
            iconst_4
            irem
            istore 2 /* offset */
        start local 2 // int offset
         1: .line 226
            iload 1 /* index */
            iconst_4
            idiv
            iconst_3
            imul
            istore 3 /* base */
        start local 3 // int base
         2: .line 230
            iload 2 /* offset */
            tableswitch { // 0 - 3
                    0: 3
                    1: 4
                    2: 12
                    3: 23
              default: 26
          }
         3: .line 232
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iload 3 /* base */
            baload
            iconst_2
            ishr
            invokestatic com.sun.xml.internal.bind.DatatypeConverterImpl.encode:(I)C
            ireturn
         4: .line 234
      StackMap locals:
      StackMap stack:
            iload 3 /* base */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            if_icmpge 7
         5: .line 235
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iload 3 /* base */
            iconst_1
            iadd
            baload
            istore 4 /* b1 */
        start local 4 // byte b1
         6: .line 236
            goto 8
        end local 4 // byte b1
         7: .line 237
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* b1 */
        start local 4 // byte b1
         8: .line 240
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iload 3 /* base */
            baload
            iconst_3
            iand
            iconst_4
            ishl
         9: .line 241
            iload 4 /* b1 */
            iconst_4
            ishr
            bipush 15
            iand
        10: .line 240
            ior
        11: .line 239
            invokestatic com.sun.xml.internal.bind.DatatypeConverterImpl.encode:(I)C
            ireturn
        end local 4 // byte b1
        12: .line 243
      StackMap locals:
      StackMap stack:
            iload 3 /* base */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            if_icmpge 22
        13: .line 244
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iload 3 /* base */
            iconst_1
            iadd
            baload
            istore 4 /* b1 */
        start local 4 // byte b1
        14: .line 245
            iload 3 /* base */
            iconst_2
            iadd
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            if_icmpge 17
        15: .line 246
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iload 3 /* base */
            iconst_2
            iadd
            baload
            istore 5 /* b2 */
        start local 5 // byte b2
        16: .line 247
            goto 18
        end local 5 // byte b2
        17: .line 248
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 5 /* b2 */
        start local 5 // byte b2
        18: .line 252
      StackMap locals: int
      StackMap stack:
            iload 4 /* b1 */
            bipush 15
            iand
            iconst_2
            ishl
        19: .line 253
            iload 5 /* b2 */
            bipush 6
            ishr
            iconst_3
            iand
        20: .line 252
            ior
        21: .line 251
            invokestatic com.sun.xml.internal.bind.DatatypeConverterImpl.encode:(I)C
            ireturn
        end local 5 // byte b2
        end local 4 // byte b1
        22: .line 255
      StackMap locals:
      StackMap stack:
            bipush 61
            ireturn
        23: .line 258
      StackMap locals:
      StackMap stack:
            iload 3 /* base */
            iconst_2
            iadd
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            if_icmpge 25
        24: .line 259
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iload 3 /* base */
            iconst_2
            iadd
            baload
            bipush 63
            iand
            invokestatic com.sun.xml.internal.bind.DatatypeConverterImpl.encode:(I)C
            ireturn
        25: .line 261
      StackMap locals:
      StackMap stack:
            bipush 61
            ireturn
        26: .line 265
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
        end local 3 // int base
        end local 2 // int offset
        end local 1 // int index
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   27     0    this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0   27     1   index  I
            1   27     2  offset  I
            2   27     3    base  I
            6    7     4      b1  B
            8   12     4      b1  B
           14   22     4      b1  B
           16   17     5      b2  B
           18   22     5      b2  B
    MethodParameters:
       Name  Flags
      index  

  public java.lang.CharSequence subSequence(int, int);
    descriptor: (II)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // int start
        start local 2 // int end
         0: .line 274
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 3 /* buf */
        start local 3 // java.lang.StringBuilder buf
         1: .line 275
            aload 0 /* this */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.get:()[B
            pop
         2: .line 276
            iload 1 /* start */
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 277
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 3 /* buf */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.charAt:(I)C
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         5: .line 276
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            iload 2 /* end */
            if_icmplt 4
        end local 4 // int i
         7: .line 279
            aload 3 /* buf */
            areturn
        end local 3 // java.lang.StringBuilder buf
        end local 2 // int end
        end local 1 // int start
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0    8     1  start  I
            0    8     2    end  I
            1    8     3    buf  Ljava/lang/StringBuilder;
            3    7     4      i  I
    MethodParameters:
       Name  Flags
      start  
      end    

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
         0: .line 286
            aload 0 /* this */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.get:()[B
            pop
         1: .line 287
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            invokestatic com.sun.xml.internal.bind.DatatypeConverterImpl._printBase64Binary:([BII)Ljava/lang/String;
            areturn
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;

  public void writeTo(char[], int);
    descriptor: ([CI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // char[] buf
        start local 2 // int start
         0: .line 292
            aload 0 /* this */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.get:()[B
            pop
         1: .line 293
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            aload 1 /* buf */
            iload 2 /* start */
            invokestatic com.sun.xml.internal.bind.DatatypeConverterImpl._printBase64Binary:([BII[CI)I
            pop
         2: .line 294
            return
        end local 2 // int start
        end local 1 // char[] buf
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0    3     1    buf  [C
            0    3     2  start  I
    MethodParameters:
       Name  Flags
      buf    
      start  

  public void writeTo(com.sun.xml.internal.bind.v2.runtime.output.UTF8XmlOutput);
    descriptor: (Lcom/sun/xml/internal/bind/v2/runtime/output/UTF8XmlOutput;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // com.sun.xml.internal.bind.v2.runtime.output.UTF8XmlOutput output
         0: .line 298
            aload 0 /* this */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.get:()[B
            pop
         1: .line 299
            aload 1 /* output */
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            invokevirtual com.sun.xml.internal.bind.v2.runtime.output.UTF8XmlOutput.text:([BI)V
         2: .line 300
            return
        end local 1 // com.sun.xml.internal.bind.v2.runtime.output.UTF8XmlOutput output
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0    3     1  output  Lcom/sun/xml/internal/bind/v2/runtime/output/UTF8XmlOutput;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      output  

  public void writeTo(javax.xml.stream.XMLStreamWriter);
    descriptor: (Ljavax/xml/stream/XMLStreamWriter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
        start local 1 // javax.xml.stream.XMLStreamWriter output
         0: .line 303
            aload 0 /* this */
            invokevirtual com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.get:()[B
            pop
         1: .line 304
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.data:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data.dataLen:I
            aload 1 /* output */
            invokestatic com.sun.xml.internal.bind.DatatypeConverterImpl._printBase64Binary:([BIILjavax/xml/stream/XMLStreamWriter;)V
         2: .line 305
            return
        end local 1 // javax.xml.stream.XMLStreamWriter output
        end local 0 // com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/xml/internal/bind/v2/runtime/unmarshaller/Base64Data;
            0    3     1  output  Ljavax/xml/stream/XMLStreamWriter;
    Exceptions:
      throws java.io.IOException, javax.xml.stream.XMLStreamException
    MethodParameters:
        Name  Flags
      output  
}
SourceFile: "Base64Data.java"
NestMembers:
  com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data$1
InnerClasses:
  com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data$1