public class com.fasterxml.aalto.async.AsyncByteBufferScanner extends com.fasterxml.aalto.async.AsyncByteScanner implements com.fasterxml.aalto.AsyncByteBufferFeeder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.fasterxml.aalto.async.AsyncByteBufferScanner
  super_class: com.fasterxml.aalto.async.AsyncByteScanner
{
  protected java.nio.ByteBuffer _inputBuffer;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0004) ACC_PROTECTED

  protected int _origBufferLen;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>(com.fasterxml.aalto.in.ReaderConfig);
    descriptor: (Lcom/fasterxml/aalto/in/ReaderConfig;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // com.fasterxml.aalto.in.ReaderConfig cfg
         0: .line 64
            aload 0 /* this */
            aload 1 /* cfg */
            invokespecial com.fasterxml.aalto.async.AsyncByteScanner.<init>:(Lcom/fasterxml/aalto/in/ReaderConfig;)V
         1: .line 66
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
         2: .line 67
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
         3: .line 68
            return
        end local 1 // com.fasterxml.aalto.in.ReaderConfig cfg
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0    4     1   cfg  Lcom/fasterxml/aalto/in/ReaderConfig;
    MethodParameters:
      Name  Flags
      cfg   

  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.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 72
            new java.lang.StringBuilder
            dup
            ldc "asyncScanner; curr="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " next="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", state = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;

  protected final byte _currentByte();
    descriptor: ()B
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 83
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final byte _nextByte();
    descriptor: ()B
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 88
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final byte _prevByte();
    descriptor: ()B
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 93
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            invokevirtual java.nio.ByteBuffer.get:(I)B
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int parseCommentContents();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 105
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 4
         1: .line 106
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleCommentPending:()I
            istore 1 /* result */
        start local 1 // int result
         2: .line 108
            iload 1 /* result */
            ifeq 4
         3: .line 109
            iload 1 /* result */
            ireturn
        end local 1 // int result
         4: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getBufferWithoutReset:()[C
            astore 1 /* outputBuffer */
        start local 1 // char[] outputBuffer
         5: .line 115
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getCurrentLength:()I
            istore 2 /* outPtr */
        start local 2 // int outPtr
         6: .line 117
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.OTHER_CHARS:[I
            astore 3 /* TYPES */
        start local 3 // int[] TYPES
         7: .line 118
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            astore 4 /* inputBuffer */
        start local 4 // java.nio.ByteBuffer inputBuffer
         8: .line 126
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 10
         9: .line 127
            goto 82
        10: .line 129
      StackMap locals:
      StackMap stack:
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 13
        11: .line 130
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        12: .line 131
            iconst_0
            istore 2 /* outPtr */
        13: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 6 /* max */
        start local 6 // int max
        14: .line 135
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 1 /* outputBuffer */
            arraylength
            iload 2 /* outPtr */
            isub
            iadd
            istore 7 /* max2 */
        start local 7 // int max2
        15: .line 136
            iload 7 /* max2 */
            iload 6 /* max */
            if_icmpge 22
        16: .line 137
            iload 7 /* max2 */
            istore 6 /* max */
        end local 7 // int max2
        17: .line 140
            goto 22
        18: .line 141
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 4 /* inputBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* c */
        start local 5 // int c
        19: .line 142
            aload 3 /* TYPES */
            iload 5 /* c */
            iaload
            ifeq 21
        20: .line 143
            goto 24
        21: .line 145
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer int int
      StackMap stack:
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        22: .line 140
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iload 6 /* max */
            if_icmplt 18
        end local 6 // int max
        23: .line 125
            goto 8
        start local 5 // int c
        24: .line 149
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer int
      StackMap stack:
            aload 3 /* TYPES */
            iload 5 /* c */
            iaload
            tableswitch { // 1 - 13
                    1: 25
                    2: 26
                    3: 34
                    4: 65
                    5: 36
                    6: 41
                    7: 49
                    8: 80
                    9: 80
                   10: 80
                   11: 80
                   12: 80
                   13: 66
              default: 80
          }
        25: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 5 /* c */
        26: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 29
        27: .line 155
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        28: .line 156
            goto 82
        29: .line 158
      StackMap locals:
      StackMap stack:
            aload 4 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 31
        30: .line 159
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        31: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        32: .line 163
            bipush 10
            istore 5 /* c */
        33: .line 164
            goto 80
        34: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        35: .line 167
            goto 80
        36: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 39
        37: .line 170
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        38: .line 171
            goto 82
        39: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 5 /* c */
        40: .line 174
            goto 80
        41: .line 176
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 47
        42: .line 177
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 45
        43: .line 178
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        44: .line 179
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        45: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        46: .line 182
            goto 82
        47: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 5 /* c */
        48: .line 185
            goto 80
        49: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 58
        50: .line 188
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 56
        51: .line 189
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        52: .line 190
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        53: .line 191
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 56
        54: .line 192
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        55: .line 193
            iload 5 /* c */
            iload 6 /* d */
            bipush 16
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        56: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        57: .line 197
            goto 82
        58: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 5 /* c */
        59: .line 201
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            ldc 55296
            iload 5 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        60: .line 202
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 63
        61: .line 203
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        62: .line 204
            iconst_0
            istore 2 /* outPtr */
        63: .line 206
      StackMap locals:
      StackMap stack:
            ldc 56320
            iload 5 /* c */
            sipush 1023
            iand
            ior
            istore 5 /* c */
        64: .line 208
            goto 80
        65: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        66: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 69
        67: .line 213
            aload 0 /* this */
            bipush -20
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        68: .line 214
            goto 82
        69: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 45
            if_icmpne 80
        70: .line 217
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        71: .line 218
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 74
        72: .line 219
            aload 0 /* this */
            bipush -21
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        73: .line 220
            goto 82
        74: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 62
            if_icmpeq 76
        75: .line 223
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportDoubleHyphenInComments:()V
        76: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        77: .line 226
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        78: .line 227
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        79: .line 228
            iconst_5
            ireturn
        80: .line 236
      StackMap locals:
      StackMap stack:
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        81: .line 121
            goto 8
        82: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        83: .line 240
            sipush 257
            ireturn
        end local 4 // java.nio.ByteBuffer inputBuffer
        end local 3 // int[] TYPES
        end local 2 // int outPtr
        end local 1 // char[] outputBuffer
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   84     0          this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            2    4     1        result  I
            5   84     1  outputBuffer  [C
            6   84     2        outPtr  I
            7   84     3         TYPES  [I
            8   84     4   inputBuffer  Ljava/nio/ByteBuffer;
           19   22     5             c  I
           24   81     5             c  I
           14   23     6           max  I
           15   17     7          max2  I
           44   45     6             d  I
           52   56     6             d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int handleCommentPending();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 251
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 2
         1: .line 252
            sipush 257
            ireturn
         2: .line 254
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -20
            if_icmpne 11
         3: .line 255
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 45
            if_icmpeq 7
         4: .line 257
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         5: .line 258
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            ldc "-"
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(Ljava/lang/String;)V
         6: .line 259
            iconst_0
            ireturn
         7: .line 261
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         8: .line 262
            aload 0 /* this */
            bipush -21
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         9: .line 263
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 11
        10: .line 264
            sipush 257
            ireturn
        11: .line 268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -21
            if_icmpne 19
        12: .line 269
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        13: .line 270
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        14: .line 271
            iload 1 /* b */
            bipush 62
            if_icmpeq 16
        15: .line 272
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportDoubleHyphenInComments:()V
        16: .line 274
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        17: .line 275
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        18: .line 276
            iconst_5
            ireturn
        end local 1 // byte b
        19: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAndAppendPending:()Z
            ifeq 20
            iconst_0
            goto 21
      StackMap locals:
      StackMap stack:
        20: sipush 257
      StackMap locals:
      StackMap stack: int
        21: ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
           14   19     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int parsePIData();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 291
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 4
         1: .line 292
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePIPending:()I
            istore 1 /* result */
        start local 1 // int result
         2: .line 294
            iload 1 /* result */
            ifeq 4
         3: .line 295
            iload 1 /* result */
            ireturn
        end local 1 // int result
         4: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getBufferWithoutReset:()[C
            astore 1 /* outputBuffer */
        start local 1 // char[] outputBuffer
         5: .line 301
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getCurrentLength:()I
            istore 2 /* outPtr */
        start local 2 // int outPtr
         6: .line 303
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.OTHER_CHARS:[I
            astore 3 /* TYPES */
        start local 3 // int[] TYPES
         7: .line 304
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            astore 4 /* inputBuffer */
        start local 4 // java.nio.ByteBuffer inputBuffer
         8: .line 312
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 10
         9: .line 313
            goto 77
        10: .line 315
      StackMap locals:
      StackMap stack:
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 13
        11: .line 316
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        12: .line 317
            iconst_0
            istore 2 /* outPtr */
        13: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 6 /* max */
        start local 6 // int max
        14: .line 321
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 1 /* outputBuffer */
            arraylength
            iload 2 /* outPtr */
            isub
            iadd
            istore 7 /* max2 */
        start local 7 // int max2
        15: .line 322
            iload 7 /* max2 */
            iload 6 /* max */
            if_icmpge 22
        16: .line 323
            iload 7 /* max2 */
            istore 6 /* max */
        end local 7 // int max2
        17: .line 326
            goto 22
        18: .line 327
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 4 /* inputBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* c */
        start local 5 // int c
        19: .line 328
            aload 3 /* TYPES */
            iload 5 /* c */
            iaload
            ifeq 21
        20: .line 329
            goto 24
        21: .line 331
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer int int
      StackMap stack:
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        22: .line 326
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iload 6 /* max */
            if_icmplt 18
        end local 6 // int max
        23: .line 311
            goto 8
        start local 5 // int c
        24: .line 335
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer int
      StackMap stack:
            aload 3 /* TYPES */
            iload 5 /* c */
            iaload
            tableswitch { // 1 - 12
                    1: 25
                    2: 26
                    3: 34
                    4: 65
                    5: 36
                    6: 41
                    7: 49
                    8: 75
                    9: 75
                   10: 75
                   11: 75
                   12: 66
              default: 75
          }
        25: .line 337
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 5 /* c */
        26: .line 340
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 29
        27: .line 341
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        28: .line 342
            goto 77
        29: .line 344
      StackMap locals:
      StackMap stack:
            aload 4 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 31
        30: .line 345
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        31: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        32: .line 349
            bipush 10
            istore 5 /* c */
        33: .line 350
            goto 75
        34: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        35: .line 353
            goto 75
        36: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 39
        37: .line 356
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        38: .line 357
            goto 77
        39: .line 359
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 5 /* c */
        40: .line 360
            goto 75
        41: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 47
        42: .line 363
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 45
        43: .line 364
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        44: .line 365
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        45: .line 367
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        46: .line 368
            goto 77
        47: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 5 /* c */
        48: .line 371
            goto 75
        49: .line 373
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 58
        50: .line 374
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 56
        51: .line 375
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        52: .line 376
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        53: .line 377
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 56
        54: .line 378
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        55: .line 379
            iload 5 /* c */
            iload 6 /* d */
            bipush 16
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        56: .line 382
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        57: .line 383
            goto 77
        58: .line 385
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 5 /* c */
        59: .line 387
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            ldc 55296
            iload 5 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        60: .line 388
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 63
        61: .line 389
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        62: .line 390
            iconst_0
            istore 2 /* outPtr */
        63: .line 392
      StackMap locals:
      StackMap stack:
            ldc 56320
            iload 5 /* c */
            sipush 1023
            iand
            ior
            istore 5 /* c */
        64: .line 394
            goto 75
        65: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        66: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 69
        67: .line 400
            aload 0 /* this */
            bipush -15
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        68: .line 401
            goto 77
        69: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 62
            if_icmpne 75
        70: .line 404
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        71: .line 405
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        72: .line 406
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        73: .line 407
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        74: .line 408
            iconst_3
            ireturn
        75: .line 417
      StackMap locals:
      StackMap stack:
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        76: .line 307
            goto 8
        77: .line 419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        78: .line 420
            sipush 257
            ireturn
        end local 4 // java.nio.ByteBuffer inputBuffer
        end local 3 // int[] TYPES
        end local 2 // int outPtr
        end local 1 // char[] outputBuffer
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   79     0          this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            2    4     1        result  I
            5   79     1  outputBuffer  [C
            6   79     2        outPtr  I
            7   79     3         TYPES  [I
            8   79     4   inputBuffer  Ljava/nio/ByteBuffer;
           19   22     5             c  I
           24   76     5             c  I
           14   23     6           max  I
           15   17     7          max2  I
           44   45     6             d  I
           52   56     6             d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int handlePIPending();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 432
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -15
            if_icmpne 12
         1: .line 433
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 3
         2: .line 434
            sipush 257
            ireturn
         3: .line 436
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
         4: .line 437
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         5: .line 438
            iload 1 /* b */
            bipush 62
            if_icmpeq 8
         6: .line 440
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            bipush 63
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
         7: .line 441
            iconst_0
            ireturn
         8: .line 443
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         9: .line 444
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        10: .line 445
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        11: .line 446
            iconst_3
            ireturn
        end local 1 // byte b
        12: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAndAppendPending:()Z
            ifeq 13
            iconst_0
            goto 14
      StackMap locals:
      StackMap stack:
        13: sipush 257
      StackMap locals:
      StackMap stack: int
        14: ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            4   12     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final boolean handleDTDInternalSubset(boolean);
    descriptor: (Z)Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // boolean init
         0: .line 464
            iload 1 /* init */
            ifeq 6
         1: .line 465
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithEmpty:()[C
            astore 2 /* outputBuffer */
        start local 2 // char[] outputBuffer
         2: .line 466
            iconst_0
            istore 3 /* outPtr */
        start local 3 // int outPtr
         3: .line 467
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
         4: .line 468
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inDtdDeclaration:Z
         5: .line 469
            goto 11
        end local 3 // int outPtr
        end local 2 // char[] outputBuffer
         6: .line 470
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 9
         7: .line 471
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAndAppendPending:()Z
            ifne 9
         8: .line 472
            iconst_0
            ireturn
         9: .line 475
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getBufferWithoutReset:()[C
            astore 2 /* outputBuffer */
        start local 2 // char[] outputBuffer
        10: .line 476
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getCurrentLength:()I
            istore 3 /* outPtr */
        start local 3 // int outPtr
        11: .line 479
      StackMap locals: char[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.DTD_CHARS:[I
            astore 4 /* TYPES */
        start local 4 // int[] TYPES
        12: .line 480
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            astore 5 /* inputBuffer */
        start local 5 // java.nio.ByteBuffer inputBuffer
        13: .line 488
      StackMap locals: int[] java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 15
        14: .line 489
            goto 88
        15: .line 491
      StackMap locals:
      StackMap stack:
            iload 3 /* outPtr */
            aload 2 /* outputBuffer */
            arraylength
            if_icmplt 18
        16: .line 492
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 2 /* outputBuffer */
        17: .line 493
            iconst_0
            istore 3 /* outPtr */
        18: .line 495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 7 /* max */
        start local 7 // int max
        19: .line 497
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 2 /* outputBuffer */
            arraylength
            iload 3 /* outPtr */
            isub
            iadd
            istore 8 /* max2 */
        start local 8 // int max2
        20: .line 498
            iload 8 /* max2 */
            iload 7 /* max */
            if_icmpge 27
        21: .line 499
            iload 8 /* max2 */
            istore 7 /* max */
        end local 8 // int max2
        22: .line 502
            goto 27
        23: .line 503
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 5 /* inputBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* c */
        start local 6 // int c
        24: .line 504
            aload 4 /* TYPES */
            iload 6 /* c */
            iaload
            ifeq 26
        25: .line 505
            goto 29
        26: .line 507
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int char[] int int[] java.nio.ByteBuffer int int
      StackMap stack:
            aload 2 /* outputBuffer */
            iload 3 /* outPtr */
            iinc 3 /* outPtr */ 1
            iload 6 /* c */
            i2c
            castore
        end local 6 // int c
        27: .line 502
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iload 7 /* max */
            if_icmplt 23
        end local 7 // int max
        28: .line 487
            goto 13
        start local 6 // int c
        29: .line 511
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int char[] int int[] java.nio.ByteBuffer int
      StackMap stack:
            aload 4 /* TYPES */
            iload 6 /* c */
            iaload
            tableswitch { // 1 - 11
                    1: 30
                    2: 31
                    3: 39
                    4: 70
                    5: 41
                    6: 46
                    7: 54
                    8: 71
                    9: 77
                   10: 80
                   11: 83
              default: 86
          }
        30: .line 513
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 6 /* c */
        31: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 34
        32: .line 516
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        33: .line 517
            goto 88
        34: .line 519
      StackMap locals:
      StackMap stack:
            aload 5 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 36
        35: .line 520
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        36: .line 522
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        37: .line 523
            bipush 10
            istore 6 /* c */
        38: .line 524
            goto 86
        39: .line 526
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        40: .line 527
            goto 86
        41: .line 529
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 44
        42: .line 530
            aload 0 /* this */
            iload 6 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        43: .line 531
            goto 88
        44: .line 533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 6 /* c */
        45: .line 534
            goto 86
        46: .line 536
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 52
        47: .line 537
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 50
        48: .line 538
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 7 /* d */
        start local 7 // int d
        49: .line 539
            iload 6 /* c */
            iload 7 /* d */
            bipush 8
            ishl
            ior
            istore 6 /* c */
        end local 7 // int d
        50: .line 541
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        51: .line 542
            goto 88
        52: .line 544
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 6 /* c */
        53: .line 545
            goto 86
        54: .line 547
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 63
        55: .line 548
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 61
        56: .line 549
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 7 /* d */
        start local 7 // int d
        57: .line 550
            iload 6 /* c */
            iload 7 /* d */
            bipush 8
            ishl
            ior
            istore 6 /* c */
        58: .line 551
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 61
        59: .line 552
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 7 /* d */
        60: .line 553
            iload 6 /* c */
            iload 7 /* d */
            bipush 16
            ishl
            ior
            istore 6 /* c */
        end local 7 // int d
        61: .line 556
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        62: .line 557
            goto 88
        63: .line 559
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 6 /* c */
        64: .line 561
            aload 2 /* outputBuffer */
            iload 3 /* outPtr */
            iinc 3 /* outPtr */ 1
            ldc 55296
            iload 6 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        65: .line 562
            iload 3 /* outPtr */
            aload 2 /* outputBuffer */
            arraylength
            if_icmplt 68
        66: .line 563
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 2 /* outputBuffer */
        67: .line 564
            iconst_0
            istore 3 /* outPtr */
        68: .line 566
      StackMap locals:
      StackMap stack:
            ldc 56320
            iload 6 /* c */
            sipush 1023
            iand
            ior
            istore 6 /* c */
        69: .line 568
            goto 86
        70: .line 570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        71: .line 573
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
            ifne 74
        72: .line 574
            aload 0 /* this */
            iload 6 /* c */
            i2b
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
        73: .line 575
            goto 86
        74: .line 576
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
            iload 6 /* c */
            if_icmpne 86
        75: .line 577
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
        76: .line 580
            goto 86
        77: .line 583
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inDtdDeclaration:Z
            ifne 86
        78: .line 584
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inDtdDeclaration:Z
        79: .line 586
            goto 86
        80: .line 588
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
            ifne 86
        81: .line 589
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inDtdDeclaration:Z
        82: .line 591
            goto 86
        83: .line 593
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inDtdDeclaration:Z
            ifne 86
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
            ifne 86
        84: .line 594
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 3 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        85: .line 595
            iconst_1
            ireturn
        86: .line 602
      StackMap locals:
      StackMap stack:
            aload 2 /* outputBuffer */
            iload 3 /* outPtr */
            iinc 3 /* outPtr */ 1
            iload 6 /* c */
            i2c
            castore
        end local 6 // int c
        87: .line 483
            goto 13
        88: .line 604
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 3 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        89: .line 605
            iconst_0
            ireturn
        end local 5 // java.nio.ByteBuffer inputBuffer
        end local 4 // int[] TYPES
        end local 3 // int outPtr
        end local 2 // char[] outputBuffer
        end local 1 // boolean init
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   90     0          this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   90     1          init  Z
            2    6     2  outputBuffer  [C
           10   90     2  outputBuffer  [C
            3    6     3        outPtr  I
           11   90     3        outPtr  I
           12   90     4         TYPES  [I
           13   90     5   inputBuffer  Ljava/nio/ByteBuffer;
           24   27     6             c  I
           29   87     6             c  I
           19   28     7           max  I
           20   22     8          max2  I
           49   50     7             d  I
           57   61     7             d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      init  

  protected final int parseCDataContents();
    descriptor: ()I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 617
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 4
         1: .line 618
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleCDataPending:()I
            istore 1 /* result */
        start local 1 // int result
         2: .line 620
            iload 1 /* result */
            ifeq 4
         3: .line 621
            iload 1 /* result */
            ireturn
        end local 1 // int result
         4: .line 625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getBufferWithoutReset:()[C
            astore 1 /* outputBuffer */
        start local 1 // char[] outputBuffer
         5: .line 626
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getCurrentLength:()I
            istore 2 /* outPtr */
        start local 2 // int outPtr
         6: .line 628
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.OTHER_CHARS:[I
            astore 3 /* TYPES */
        start local 3 // int[] TYPES
         7: .line 629
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            astore 4 /* inputBuffer */
        start local 4 // java.nio.ByteBuffer inputBuffer
         8: .line 637
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 10
         9: .line 638
            goto 95
        10: .line 640
      StackMap locals:
      StackMap stack:
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 13
        11: .line 641
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        12: .line 642
            iconst_0
            istore 2 /* outPtr */
        13: .line 644
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 6 /* max */
        start local 6 // int max
        14: .line 646
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 1 /* outputBuffer */
            arraylength
            iload 2 /* outPtr */
            isub
            iadd
            istore 7 /* max2 */
        start local 7 // int max2
        15: .line 647
            iload 7 /* max2 */
            iload 6 /* max */
            if_icmpge 22
        16: .line 648
            iload 7 /* max2 */
            istore 6 /* max */
        end local 7 // int max2
        17: .line 651
            goto 22
        18: .line 652
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 4 /* inputBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* c */
        start local 5 // int c
        19: .line 653
            aload 3 /* TYPES */
            iload 5 /* c */
            iaload
            ifeq 21
        20: .line 654
            goto 24
        21: .line 656
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer int int
      StackMap stack:
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        22: .line 651
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iload 6 /* max */
            if_icmplt 18
        end local 6 // int max
        23: .line 636
            goto 8
        start local 5 // int c
        24: .line 660
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int int[] java.nio.ByteBuffer int
      StackMap stack:
            aload 3 /* TYPES */
            iload 5 /* c */
            iaload
            tableswitch { // 1 - 11
                    1: 25
                    2: 26
                    3: 34
                    4: 65
                    5: 36
                    6: 41
                    7: 49
                    8: 93
                    9: 93
                   10: 93
                   11: 66
              default: 93
          }
        25: .line 662
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 5 /* c */
        26: .line 665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 29
        27: .line 666
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        28: .line 667
            goto 95
        29: .line 669
      StackMap locals:
      StackMap stack:
            aload 4 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 31
        30: .line 670
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        31: .line 672
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        32: .line 674
            bipush 10
            istore 5 /* c */
        33: .line 675
            goto 93
        34: .line 677
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        35: .line 678
            goto 93
        36: .line 680
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 39
        37: .line 681
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        38: .line 682
            goto 95
        39: .line 684
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 5 /* c */
        40: .line 685
            goto 93
        41: .line 687
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 47
        42: .line 688
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 45
        43: .line 689
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        44: .line 690
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        45: .line 692
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        46: .line 693
            goto 95
        47: .line 695
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 5 /* c */
        48: .line 696
            goto 93
        49: .line 698
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 58
        50: .line 699
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 56
        51: .line 700
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        52: .line 701
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        53: .line 702
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 56
        54: .line 703
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        55: .line 704
            iload 5 /* c */
            iload 6 /* d */
            bipush 16
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        56: .line 707
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        57: .line 708
            goto 95
        58: .line 710
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 5 /* c */
        59: .line 712
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            ldc 55296
            iload 5 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        60: .line 713
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 63
        61: .line 714
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        62: .line 715
            iconst_0
            istore 2 /* outPtr */
        63: .line 717
      StackMap locals:
      StackMap stack:
            ldc 56320
            iload 5 /* c */
            sipush 1023
            iand
            ior
            istore 5 /* c */
        64: .line 719
            goto 93
        65: .line 721
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        66: .line 723
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 69
        67: .line 724
            aload 0 /* this */
            bipush -30
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        68: .line 725
            goto 95
        69: .line 728
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 93
            if_icmpne 93
        70: .line 729
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        71: .line 731
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 74
        72: .line 732
            aload 0 /* this */
            bipush -31
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        73: .line 733
            goto 95
        74: .line 735
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 62
            if_icmpne 80
        75: .line 736
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        76: .line 737
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        77: .line 738
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        78: .line 739
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        79: .line 740
            bipush 12
            ireturn
        80: .line 742
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 93
            if_icmpeq 87
        81: .line 743
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            bipush 93
            castore
        82: .line 744
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 85
        83: .line 745
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        84: .line 746
            iconst_0
            istore 2 /* outPtr */
        85: .line 748
      StackMap locals:
      StackMap stack:
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            bipush 93
            castore
        86: .line 749
            goto 8
        87: .line 752
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        88: .line 753
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            bipush 93
            castore
        89: .line 754
            iload 2 /* outPtr */
            aload 1 /* outputBuffer */
            arraylength
            if_icmplt 71
        90: .line 755
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 1 /* outputBuffer */
        91: .line 756
            iconst_0
            istore 2 /* outPtr */
        92: .line 730
            goto 71
        93: .line 766
      StackMap locals:
      StackMap stack:
            aload 1 /* outputBuffer */
            iload 2 /* outPtr */
            iinc 2 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        94: .line 632
            goto 8
        95: .line 769
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
        96: .line 770
            sipush 257
            ireturn
        end local 4 // java.nio.ByteBuffer inputBuffer
        end local 3 // int[] TYPES
        end local 2 // int outPtr
        end local 1 // char[] outputBuffer
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   97     0          this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            2    4     1        result  I
            5   97     1  outputBuffer  [C
            6   97     2        outPtr  I
            7   97     3         TYPES  [I
            8   97     4   inputBuffer  Ljava/nio/ByteBuffer;
           19   22     5             c  I
           24   94     5             c  I
           14   23     6           max  I
           15   17     7          max2  I
           44   45     6             d  I
           52   56     6             d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final int handleCDataPending();
    descriptor: ()I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 781
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -30
            if_icmpne 23
         1: .line 782
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 3
         2: .line 783
            sipush 257
            ireturn
         3: .line 785
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 93
            if_icmpeq 6
         4: .line 787
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            bipush 93
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
         5: .line 788
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ireturn
         6: .line 790
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         7: .line 791
            aload 0 /* this */
            bipush -31
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         8: .line 792
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 23
         9: .line 793
            sipush 257
            ireturn
        10: .line 798
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 12
        11: .line 799
            sipush 257
            ireturn
        12: .line 801
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        13: .line 802
            iload 1 /* b */
            bipush 62
            if_icmpne 18
        14: .line 803
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        15: .line 804
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        16: .line 805
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        17: .line 806
            bipush 12
            ireturn
        18: .line 808
      StackMap locals: int
      StackMap stack:
            iload 1 /* b */
            bipush 93
            if_icmpeq 22
        19: .line 809
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        20: .line 810
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            ldc "]]"
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(Ljava/lang/String;)V
        21: .line 811
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ireturn
        22: .line 813
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            bipush 93
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
        end local 1 // byte b
        23: .line 797
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -31
            if_icmpeq 10
        24: .line 816
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAndAppendPending:()Z
            ifeq 25
            iconst_0
            goto 26
      StackMap locals:
      StackMap stack:
        25: sipush 257
      StackMap locals:
      StackMap stack: int
        26: ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   27     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
           13   23     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int startCharactersPending();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 828
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 2
         1: .line 829
            sipush 257
            ireturn
         2: .line 833
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            istore 1 /* c */
        start local 1 // int c
         3: .line 834
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         4: .line 837
            iload 1 /* c */
            iconst_m1
            if_icmpne 10
         5: .line 838
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 7
         6: .line 839
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         7: .line 841
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
         8: .line 842
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            bipush 10
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithChar:(C)V
         9: .line 843
            goto 50
        10: .line 847
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.TEXT_CHARS:[I
            iload 1 /* c */
            sipush 255
            iand
            iaload
            tableswitch { // 5 - 7
                    5: 11
                    6: 13
                    7: 25
              default: 49
          }
        11: .line 850
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithChar:(C)V
        12: .line 851
            goto 50
        13: .line 855
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
        14: .line 856
            iload 1 /* c */
            bipush 8
            ishr
            istore 3 /* c2 */
        start local 3 // int c2
        15: .line 857
            iload 3 /* c2 */
            ifne 22
        16: .line 858
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 19
        17: .line 859
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        18: .line 860
            sipush 257
            ireturn
        19: .line 862
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        20: .line 863
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            istore 1 /* c */
        end local 4 // int c3
        21: .line 864
            goto 23
        22: .line 865
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            istore 1 /* c */
        23: .line 867
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 1 /* c */
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithChar:(C)V
        end local 3 // int c2
        end local 2 // int next
        24: .line 869
            goto 50
        25: .line 872
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
        26: .line 874
            iload 1 /* c */
            bipush 8
            ishr
            ifne 37
        27: .line 875
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 30
        28: .line 876
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        29: .line 877
            sipush 257
            ireturn
        30: .line 879
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        31: .line 880
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 34
        32: .line 881
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            iload 3 /* c2 */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        33: .line 882
            sipush 257
            ireturn
        34: .line 884
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        35: .line 885
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 3 /* c2 */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        end local 4 // int c3
        end local 3 // int c2
        36: .line 886
            goto 47
        37: .line 887
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 8
            ishr
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        38: .line 888
            iload 1 /* c */
            bipush 16
            ishr
            istore 4 /* c3 */
        start local 4 // int c3
        39: .line 890
            iload 4 /* c3 */
            ifne 46
        40: .line 891
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 43
        41: .line 892
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        42: .line 893
            sipush 257
            ireturn
        43: .line 895
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        44: .line 896
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        45: .line 897
            goto 47
        46: .line 898
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 4 /* c3 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        end local 4 // int c3
        end local 3 // int c2
        end local 2 // int next
        47: .line 903
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 1 /* c */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithSurrogate:(I)V
        48: .line 904
            aload 0 /* this */
            iconst_4
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        49: .line 906
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        50: .line 911
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgCoalescing:Z
            ifeq 52
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifne 52
        51: .line 913
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharactersCoalescing:()I
            ireturn
        52: .line 915
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
        53: .line 916
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifeq 56
        54: .line 917
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenIncomplete:Z
        55: .line 918
            goto 57
        56: .line 919
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharacters:()V
        57: .line 921
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   58     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            3   58     1     c  I
           14   24     2  next  I
           15   24     3    c2  I
           20   21     4    c3  I
           26   47     2  next  I
           31   36     3    c2  I
           35   36     4    c3  I
           38   47     3    c2  I
           39   47     4    c3  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final int finishCharactersCoalescing();
    descriptor: ()I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 930
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 3
         1: .line 931
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAndAppendPending:()Z
            ifne 3
         2: .line 932
            sipush 257
            ireturn
         3: .line 935
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  public final boolean needMoreInput();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 948
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 1
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._endOfInput:Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;

  public void feedInput(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 955
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmpge 2
         1: .line 956
            new javax.xml.stream.XMLStreamException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Still have "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " unread bytes"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.xml.stream.XMLStreamException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 959
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._endOfInput:Z
            ifeq 4
         3: .line 960
            new javax.xml.stream.XMLStreamException
            dup
            ldc "Already closed, can not feed more input"
            invokespecial javax.xml.stream.XMLStreamException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 963
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pastBytesOrChars:J
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._origBufferLen:I
            i2l
            ladd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pastBytesOrChars:J
         5: .line 964
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._rowStartOffset:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._origBufferLen:I
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._rowStartOffset:I
         6: .line 966
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 2 /* start */
        start local 2 // int start
         7: .line 967
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 3 /* end */
        start local 3 // int end
         8: .line 970
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
         9: .line 971
            aload 0 /* this */
            iload 2 /* start */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        10: .line 972
            aload 0 /* this */
            iload 3 /* end */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
        11: .line 973
            aload 0 /* this */
            iload 3 /* end */
            iload 2 /* start */
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._origBufferLen:I
        12: .line 974
            return
        end local 3 // int end
        end local 2 // int start
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   13     1  buffer  Ljava/nio/ByteBuffer;
            7   13     2   start  I
            8   13     3     end  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
        Name  Flags
      buffer  

  public int nextFromTree();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 986
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            sipush 257
            if_icmpeq 17
         1: .line 990
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            iconst_1
            if_icmpne 5
         2: .line 991
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._isEmptyTag:Z
            ifeq 10
         3: .line 992
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._depth:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._depth:I
         4: .line 994
            aload 0 /* this */
            iconst_2
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
         5: .line 996
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            iconst_2
            if_icmpne 10
         6: .line 997
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currElem:Lcom/fasterxml/aalto/in/ElementScope;
            invokevirtual com.fasterxml.aalto.in.ElementScope.getParent:()Lcom/fasterxml/aalto/in/ElementScope;
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currElem:Lcom/fasterxml/aalto/in/ElementScope;
         7: .line 999
            goto 9
         8: .line 1000
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._lastNsDecl:Lcom/fasterxml/aalto/in/NsDeclaration;
            invokevirtual com.fasterxml.aalto.in.NsDeclaration.unbind:()Lcom/fasterxml/aalto/in/NsDeclaration;
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._lastNsDecl:Lcom/fasterxml/aalto/in/NsDeclaration;
         9: .line 999
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._lastNsDecl:Lcom/fasterxml/aalto/in/NsDeclaration;
            ifnull 10
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._lastNsDecl:Lcom/fasterxml/aalto/in/NsDeclaration;
            invokevirtual com.fasterxml.aalto.in.NsDeclaration.getLevel:()I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._depth:I
            if_icmpge 8
        10: .line 1005
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.setStartLocation:()V
        11: .line 1012
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenIncomplete:Z
            ifeq 15
        12: .line 1013
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.skipCharacters:()Z
            ifne 14
        13: .line 1014
            sipush 257
            ireturn
        14: .line 1016
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenIncomplete:Z
        15: .line 1018
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            sipush 257
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
        16: .line 1019
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        17: .line 1023
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
            sipush 257
            if_icmpne 68
        18: .line 1024
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            ifne 33
        19: .line 1028
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 22
        20: .line 1029
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        21: .line 1030
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.startCharactersPending:()I
            ireturn
        22: .line 1032
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 24
        23: .line 1033
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        24: .line 1035
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        25: .line 1036
            iload 1 /* b */
            bipush 60
            if_icmpne 28
        26: .line 1037
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        27: .line 1038
            goto 33
      StackMap locals: int
      StackMap stack:
        28: iload 1 /* b */
            bipush 38
            if_icmpne 31
        29: .line 1039
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        30: .line 1040
            goto 33
        31: .line 1041
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        32: .line 1042
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.startCharacters:(B)I
            ireturn
        end local 1 // byte b
        33: .line 1046
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 35
        34: .line 1047
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        35: .line 1049
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_1
            if_icmpne 47
        36: .line 1051
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        37: .line 1052
            iload 1 /* b */
            bipush 33
            if_icmpne 40
        38: .line 1053
            aload 0 /* this */
            iconst_3
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        39: .line 1054
            goto 53
      StackMap locals: int
      StackMap stack:
        40: iload 1 /* b */
            bipush 63
            if_icmpne 44
        41: .line 1055
            aload 0 /* this */
            iconst_3
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        42: .line 1056
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        43: .line 1057
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePI:()I
            ireturn
        44: .line 1058
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 47
            if_icmpne 46
        45: .line 1059
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleEndElementStart:()I
            ireturn
        46: .line 1062
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleStartElementStart:(B)I
            ireturn
        end local 1 // byte b
        47: .line 1064
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_2
            if_icmpne 49
        48: .line 1065
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleEntityStartingToken:()I
            ireturn
        49: .line 1066
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            bipush 6
            if_icmpne 51
        50: .line 1067
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleNamedEntityStartingToken:()I
            ireturn
        51: .line 1068
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_5
            if_icmpne 53
        52: .line 1069
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleNumericEntityStartingToken:()I
            ireturn
        53: .line 1072
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_3
            if_icmpne 67
        54: .line 1073
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 56
        55: .line 1074
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        56: .line 1076
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        57: .line 1078
            iload 1 /* b */
            bipush 45
            if_icmpne 61
        58: .line 1079
            aload 0 /* this */
            iconst_5
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        59: .line 1080
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        60: .line 1081
            goto 68
      StackMap locals: int
      StackMap stack:
        61: iload 1 /* b */
            bipush 91
            if_icmpne 65
        62: .line 1082
            aload 0 /* this */
            bipush 12
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        63: .line 1083
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        64: .line 1084
            goto 68
        65: .line 1085
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected either '-' for COMMENT or '[CDATA[' for CDATA section)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
        end local 1 // byte b
        66: .line 1087
            goto 68
        67: .line 1088
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        68: .line 1095
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
            tableswitch { // 1 - 12
                    1: 69
                    2: 70
                    3: 71
                    4: 74
                    5: 72
                    6: 80
                    7: 80
                    8: 80
                    9: 80
                   10: 80
                   11: 80
                   12: 73
              default: 80
          }
        69: .line 1097
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleStartElement:()I
            ireturn
        70: .line 1099
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleEndElement:()I
            ireturn
        71: .line 1101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePI:()I
            ireturn
        72: .line 1103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleComment:()I
            ireturn
        73: .line 1105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleCData:()I
            ireturn
        74: .line 1107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifne 77
        75: .line 1109
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgCoalescing:Z
            ifeq 77
        76: .line 1110
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharactersCoalescing:()I
            ireturn
        77: .line 1113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 79
        78: .line 1114
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.startCharactersPending:()I
            ireturn
        79: .line 1117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        80: .line 1120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   81     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
           25   33     1     b  B
           37   47     1     b  B
           57   66     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private int handleCData();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1131
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_1
            if_icmpne 2
         1: .line 1132
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseCDataContents:()I
            ireturn
         2: .line 1134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 4
         3: .line 1135
            sipush 257
            ireturn
         4: .line 1137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleCDataStartMarker:(B)I
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private int handleCDataStartMarker(byte);
    descriptor: (B)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // byte b
         0: .line 1142
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            tableswitch { // 0 - 6
                    0: 1
                    1: 38
                    2: 7
                    3: 13
                    4: 19
                    5: 25
                    6: 31
              default: 38
          }
         1: .line 1144
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 67
            if_icmpeq 3
         2: .line 1145
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected 'C' for CDATA)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
         3: .line 1147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
         4: .line 1148
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 6
         5: .line 1149
            sipush 257
            ireturn
         6: .line 1151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
         7: .line 1154
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 68
            if_icmpeq 9
         8: .line 1155
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected 'D' for CDATA)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
         9: .line 1157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_3
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        10: .line 1158
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 12
        11: .line 1159
            sipush 257
            ireturn
        12: .line 1161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        13: .line 1164
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 65
            if_icmpeq 15
        14: .line 1165
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected 'A' for CDATA)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
        15: .line 1167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        16: .line 1168
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 18
        17: .line 1169
            sipush 257
            ireturn
        18: .line 1171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        19: .line 1174
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 84
            if_icmpeq 21
        20: .line 1175
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected 'T' for CDATA)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
        21: .line 1177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_5
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        22: .line 1178
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 24
        23: .line 1179
            sipush 257
            ireturn
        24: .line 1181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        25: .line 1184
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 65
            if_icmpeq 27
        26: .line 1185
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected 'A' for CDATA)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
        27: .line 1187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 6
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        28: .line 1188
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 30
        29: .line 1189
            sipush 257
            ireturn
        30: .line 1191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        31: .line 1194
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 91
            if_icmpeq 33
        32: .line 1195
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected '[' for CDATA)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
        33: .line 1197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithEmpty:()[C
            pop
        34: .line 1198
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        35: .line 1199
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 37
        36: .line 1200
            sipush 257
            ireturn
        37: .line 1202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseCDataContents:()I
            ireturn
        38: .line 1204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            ireturn
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   39     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   39     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      b     

  protected int handlePI();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1217
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_5
            if_icmpne 2
         1: .line 1218
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parsePIData:()I
            ireturn
         2: .line 1223
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 4
         3: .line 1224
            sipush 257
            ireturn
         4: .line 1226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            tableswitch { // 0 - 4
                    0: 5
                    1: 13
                    2: 34
                    3: 39
                    4: 43
              default: 49
          }
         5: .line 1228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewName:(B)Lcom/fasterxml/aalto/in/PName;
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
         6: .line 1229
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            ifnonnull 9
         7: .line 1230
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
         8: .line 1231
            sipush 257
            ireturn
         9: .line 1233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        10: .line 1234
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.checkPITargetName:(Lcom/fasterxml/aalto/in/PName;)V
        11: .line 1235
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 13
        12: .line 1236
            sipush 257
            ireturn
        13: .line 1242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        14: .line 1243
            iload 1 /* b */
            bipush 63
            if_icmpne 20
        15: .line 1245
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmpge 18
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 62
            if_icmpne 18
        16: .line 1246
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        17: .line 1247
            goto 50
        18: .line 1250
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_3
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        19: .line 1251
            goto 2
        20: .line 1253
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 32
            if_icmpeq 22
            iload 1 /* b */
            bipush 13
            if_icmpeq 22
        21: .line 1254
            iload 1 /* b */
            bipush 10
            if_icmpeq 22
            iload 1 /* b */
            bipush 9
            if_icmpne 33
        22: .line 1255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.asyncSkipSpace:()Z
            ifne 25
        23: .line 1256
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        24: .line 1257
            sipush 257
            ireturn
        25: .line 1259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithEmpty:()[C
            pop
        26: .line 1261
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmpge 31
        27: .line 1262
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 63
            if_icmpne 31
        28: .line 1263
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 62
            if_icmpne 31
        29: .line 1264
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_2
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        30: .line 1265
            goto 50
        31: .line 1268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_5
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        32: .line 1269
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parsePIData:()I
            ireturn
        33: .line 1272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportMissingPISpace:(I)V
        end local 1 // byte b
        34: .line 1276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.asyncSkipSpace:()Z
            ifne 36
        35: .line 1277
            sipush 257
            ireturn
        36: .line 1280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_5
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        37: .line 1281
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithEmpty:()[C
            pop
        38: .line 1282
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parsePIData:()I
            ireturn
        39: .line 1286
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        40: .line 1288
            iload 1 /* b */
            bipush 62
            if_icmpeq 50
        41: .line 1289
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportMissingPISpace:(I)V
        end local 1 // byte b
        42: .line 1293
            goto 50
        43: .line 1295
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parsePName:()Lcom/fasterxml/aalto/in/PName;
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        44: .line 1296
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            ifnonnull 46
        45: .line 1297
            sipush 257
            ireturn
        46: .line 1299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.checkPITargetName:(Lcom/fasterxml/aalto/in/PName;)V
        47: .line 1300
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        48: .line 1301
            goto 2
        49: .line 1304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            ireturn
        50: .line 1308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        51: .line 1309
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        52: .line 1310
            iconst_3
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   53     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
           14   34     1     b  B
           40   42     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final int handleComment();
    descriptor: ()I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1316
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_1
            if_icmpne 2
         1: .line 1317
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseCommentContents:()I
            ireturn
         2: .line 1319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 4
         3: .line 1320
            sipush 257
            ireturn
         4: .line 1322
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
         5: .line 1324
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            ifne 11
         6: .line 1325
            iload 1 /* b */
            bipush 45
            if_icmpeq 8
         7: .line 1326
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " (expected '-' for COMMENT)"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportTreeUnexpChar:(ILjava/lang/String;)V
         8: .line 1328
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
         9: .line 1329
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithEmpty:()[C
            pop
        10: .line 1330
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseCommentContents:()I
            ireturn
        11: .line 1332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_3
            if_icmpne 17
        12: .line 1334
            iload 1 /* b */
            bipush 62
            if_icmpeq 14
        13: .line 1335
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportDoubleHyphenInComments:()V
        14: .line 1337
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        15: .line 1338
            aload 0 /* this */
            sipush 257
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        16: .line 1339
            iconst_5
            ireturn
        17: .line 1341
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            ireturn
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            5   18     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected boolean asyncSkipSpace();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1362
            goto 21
         1: .line 1363
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
         2: .line 1364
            iload 1 /* b */
            sipush 255
            iand
            bipush 32
            if_icmple 7
         3: .line 1366
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            iconst_m1
            if_icmpne 6
         4: .line 1367
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
         5: .line 1368
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         6: .line 1370
      StackMap locals: int
      StackMap stack:
            iconst_1
            ireturn
         7: .line 1372
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         8: .line 1373
            iload 1 /* b */
            bipush 10
            if_icmpne 11
         9: .line 1374
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        10: .line 1375
            goto 21
      StackMap locals:
      StackMap stack:
        11: iload 1 /* b */
            bipush 13
            if_icmpne 19
        12: .line 1376
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 15
        13: .line 1377
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        14: .line 1378
            goto 22
        15: .line 1380
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 17
        16: .line 1381
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        17: .line 1383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        18: .line 1384
            goto 21
      StackMap locals:
      StackMap stack:
        19: iload 1 /* b */
            bipush 32
            if_icmpeq 21
            iload 1 /* b */
            bipush 9
            if_icmpeq 21
        20: .line 1385
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInvalidSpace:(I)V
        end local 1 // byte b
        21: .line 1362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 1
        22: .line 1388
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   23     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            2   21     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int handleEntityStartingToken();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1399
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithEmpty:()[C
            pop
         1: .line 1400
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
         2: .line 1401
            iload 1 /* b */
            bipush 35
            if_icmpne 9
         3: .line 1402
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithEmpty:()[C
            pop
         4: .line 1403
            aload 0 /* this */
            iconst_5
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
         5: .line 1404
            aload 0 /* this */
            bipush -70
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         6: .line 1405
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 8
         7: .line 1406
            sipush 257
            ireturn
         8: .line 1408
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleNumericEntityStartingToken:()I
            ireturn
         9: .line 1410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewEntityName:(B)Lcom/fasterxml/aalto/in/PName;
            astore 2 /* n */
        start local 2 // com.fasterxml.aalto.in.PName n
        10: .line 1412
            aload 2 /* n */
            ifnonnull 13
        11: .line 1414
            aload 0 /* this */
            bipush 6
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        12: .line 1415
            sipush 257
            ireturn
        13: .line 1417
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 2 /* n */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 3 /* ch */
        start local 3 // int ch
        14: .line 1418
            iload 3 /* ch */
            ifne 17
        15: .line 1419
            aload 0 /* this */
            aload 2 /* n */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        16: .line 1420
            aload 0 /* this */
            aload 0 /* this */
            bipush 9
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
            ireturn
        17: .line 1423
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 3 /* ch */
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithChar:(C)V
        18: .line 1424
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        19: .line 1425
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
        20: .line 1426
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifeq 23
        21: .line 1427
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenIncomplete:Z
        22: .line 1428
            goto 24
        23: .line 1429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharacters:()V
        24: .line 1431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 3 // int ch
        end local 2 // com.fasterxml.aalto.in.PName n
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   25     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            2   25     1     b  B
           10   25     2     n  Lcom/fasterxml/aalto/in/PName;
           14   25     3    ch  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int handleNamedEntityStartingToken();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1440
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseEntityName:()Lcom/fasterxml/aalto/in/PName;
            astore 1 /* n */
        start local 1 // com.fasterxml.aalto.in.PName n
         1: .line 1442
            aload 1 /* n */
            ifnonnull 3
         2: .line 1443
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
            ireturn
         3: .line 1445
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 1 /* n */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 2 /* ch */
        start local 2 // int ch
         4: .line 1446
            iload 2 /* ch */
            ifne 7
         5: .line 1447
            aload 0 /* this */
            aload 1 /* n */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
         6: .line 1448
            aload 0 /* this */
            bipush 9
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
         7: .line 1451
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* ch */
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithChar:(C)V
         8: .line 1452
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
         9: .line 1453
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
        10: .line 1454
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifeq 13
        11: .line 1455
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenIncomplete:Z
        12: .line 1456
            goto 14
        13: .line 1457
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharacters:()V
        14: .line 1459
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 2 // int ch
        end local 1 // com.fasterxml.aalto.in.PName n
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   15     1     n  Lcom/fasterxml/aalto/in/PName;
            4   15     2    ch  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int handleNumericEntityStartingToken();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1469
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -70
            if_icmpne 8
         1: .line 1470
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
         2: .line 1471
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
         3: .line 1472
            iload 1 /* b */
            bipush 120
            if_icmpne 7
         4: .line 1473
            aload 0 /* this */
            bipush -73
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         5: .line 1474
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 8
         6: .line 1475
            sipush 257
            ireturn
         7: .line 1478
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            bipush -72
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        end local 1 // byte b
         8: .line 1482
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -73
            if_icmpne 11
         9: .line 1483
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeHexEntity:()Z
            ifne 13
        10: .line 1484
            sipush 257
            ireturn
        11: .line 1487
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeDecEntity:()Z
            ifne 13
        12: .line 1488
            sipush 257
            ireturn
        13: .line 1492
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.verifyAndAppendEntityCharacter:(I)V
        14: .line 1493
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
        15: .line 1494
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifeq 18
        16: .line 1495
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenIncomplete:Z
        17: .line 1496
            goto 19
        18: .line 1497
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharacters:()V
        19: .line 1499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        20: .line 1500
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   21     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            2    8     1     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final boolean decodeHexEntity();
    descriptor: ()Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1509
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            istore 1 /* value */
        start local 1 // int value
         1: .line 1510
            goto 21
         2: .line 1511
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         3: .line 1512
            iload 2 /* b */
            bipush 59
            if_icmpne 6
         4: .line 1513
            aload 0 /* this */
            iload 1 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
         5: .line 1514
            iconst_1
            ireturn
         6: .line 1516
      StackMap locals: int
      StackMap stack:
            iload 2 /* b */
            istore 3 /* ch */
        start local 3 // int ch
         7: .line 1517
            iload 3 /* ch */
            bipush 57
            if_icmpgt 10
            iload 3 /* ch */
            bipush 48
            if_icmplt 10
         8: .line 1518
            iinc 3 /* ch */ -48
         9: .line 1519
            goto 17
      StackMap locals: int
      StackMap stack:
        10: iload 3 /* ch */
            bipush 70
            if_icmpgt 13
            iload 3 /* ch */
            bipush 65
            if_icmplt 13
        11: .line 1520
            bipush 10
            iload 3 /* ch */
            bipush 65
            isub
            iadd
            istore 3 /* ch */
        12: .line 1521
            goto 17
      StackMap locals:
      StackMap stack:
        13: iload 3 /* ch */
            bipush 102
            if_icmpgt 16
            iload 3 /* ch */
            bipush 97
            if_icmplt 16
        14: .line 1522
            bipush 10
            iload 3 /* ch */
            bipush 97
            isub
            iadd
            istore 3 /* ch */
        15: .line 1523
            goto 17
        16: .line 1524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a hex digit (0-9a-fA-F) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        17: .line 1526
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            iconst_4
            ishl
            iload 3 /* ch */
            iadd
            istore 1 /* value */
        18: .line 1527
            iload 1 /* value */
            ldc 1114111
            if_icmple 21
        19: .line 1528
            aload 0 /* this */
            iload 1 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        20: .line 1529
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportEntityOverflow:()V
        end local 3 // int ch
        end local 2 // byte b
        21: .line 1510
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 2
        22: .line 1532
            aload 0 /* this */
            iload 1 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        23: .line 1533
            iconst_0
            ireturn
        end local 1 // int value
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   24     0   this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   24     1  value  I
            3   21     2      b  B
            7   21     3     ch  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final boolean decodeDecEntity();
    descriptor: ()Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1542
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            istore 1 /* value */
        start local 1 // int value
         1: .line 1543
            goto 13
         2: .line 1544
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         3: .line 1545
            iload 2 /* b */
            bipush 59
            if_icmpne 6
         4: .line 1546
            aload 0 /* this */
            iload 1 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
         5: .line 1547
            iconst_1
            ireturn
         6: .line 1549
      StackMap locals: int
      StackMap stack:
            iload 2 /* b */
            bipush 48
            isub
            istore 3 /* ch */
        start local 3 // int ch
         7: .line 1550
            iload 3 /* ch */
            iflt 8
            iload 3 /* ch */
            bipush 9
            if_icmple 9
         8: .line 1551
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a digit (0 - 9) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
         9: .line 1553
      StackMap locals:
      StackMap stack:
            iload 1 /* value */
            bipush 10
            imul
            iload 3 /* ch */
            iadd
            istore 1 /* value */
        10: .line 1554
            iload 1 /* value */
            ldc 1114111
            if_icmple 13
        11: .line 1555
            aload 0 /* this */
            iload 1 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        12: .line 1556
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportEntityOverflow:()V
        end local 3 // int ch
        end local 2 // byte b
        13: .line 1543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 2
        14: .line 1559
            aload 0 /* this */
            iload 1 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        15: .line 1560
            iconst_0
            ireturn
        end local 1 // int value
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   16     1  value  I
            3   13     2      b  B
            7   13     3     ch  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final int decodeGeneralEntity(com.fasterxml.aalto.in.PName);
    descriptor: (Lcom/fasterxml/aalto/in/PName;)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // com.fasterxml.aalto.in.PName entityName
         0: .line 1574
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         1: .line 1575
            iload 2 /* b */
            bipush 59
            if_icmpeq 3
         2: .line 1576
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            new java.lang.StringBuilder
            dup
            ldc " expected ';' following entity name (\""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* entityName */
            invokevirtual com.fasterxml.aalto.in.PName.getPrefixedName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
         3: .line 1579
      StackMap locals: int
      StackMap stack:
            aload 1 /* entityName */
            invokevirtual com.fasterxml.aalto.in.PName.getPrefixedName:()Ljava/lang/String;
            astore 3 /* name */
        start local 3 // java.lang.String name
         4: .line 1580
            aload 3 /* name */
            ldc "amp"
            if_acmpne 6
         5: .line 1581
            bipush 38
            ireturn
         6: .line 1583
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* name */
            ldc "lt"
            if_acmpne 8
         7: .line 1584
            bipush 60
            ireturn
         8: .line 1586
      StackMap locals:
      StackMap stack:
            aload 3 /* name */
            ldc "apos"
            if_acmpne 10
         9: .line 1587
            bipush 39
            ireturn
        10: .line 1589
      StackMap locals:
      StackMap stack:
            aload 3 /* name */
            ldc "quot"
            if_acmpne 12
        11: .line 1590
            bipush 34
            ireturn
        12: .line 1592
      StackMap locals:
      StackMap stack:
            aload 3 /* name */
            ldc "gt"
            if_acmpne 14
        13: .line 1593
            bipush 62
            ireturn
        14: .line 1595
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // java.lang.String name
        end local 2 // byte b
        end local 1 // com.fasterxml.aalto.in.PName entityName
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   15     1  entityName  Lcom/fasterxml/aalto/in/PName;
            1   15     2           b  B
            4   15     3        name  Ljava/lang/String;
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
            Name  Flags
      entityName  

  protected int handleStartElementStart(byte);
    descriptor: (B)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // byte b
         0: .line 1605
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewName:(B)Lcom/fasterxml/aalto/in/PName;
            astore 2 /* elemName */
        start local 2 // com.fasterxml.aalto.in.PName elemName
         1: .line 1606
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
         2: .line 1607
            aload 2 /* elemName */
            ifnonnull 5
         3: .line 1608
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
         4: .line 1609
            sipush 257
            ireturn
         5: .line 1611
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 2 /* elemName */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.initStartElement:(Lcom/fasterxml/aalto/in/PName;)V
         6: .line 1612
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleStartElement:()I
            ireturn
        end local 2 // com.fasterxml.aalto.in.PName elemName
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0    7     1         b  B
            1    7     2  elemName  Lcom/fasterxml/aalto/in/PName;
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      b     

  protected int handleStartElement();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1620
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 2
         1: .line 1621
            sipush 257
            ireturn
         2: .line 1627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            tableswitch { // 1 - 9
                    1: 3
                    2: 9
                    3: 38
                    4: 86
                    5: 38
                    6: 38
                    7: 92
                    8: 96
                    9: 100
              default: 104
          }
         3: .line 1630
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parsePName:()Lcom/fasterxml/aalto/in/PName;
            astore 3 /* elemName */
        start local 3 // com.fasterxml.aalto.in.PName elemName
         4: .line 1631
            aload 3 /* elemName */
            ifnonnull 6
         5: .line 1632
            sipush 257
            ireturn
         6: .line 1634
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner top top com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 3 /* elemName */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.initStartElement:(Lcom/fasterxml/aalto/in/PName;)V
        end local 3 // com.fasterxml.aalto.in.PName elemName
         7: .line 1636
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 9
         8: .line 1637
            sipush 257
            ireturn
         9: .line 1642
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 12
        10: .line 1643
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePartialCR:()Z
            ifne 35
        11: .line 1644
            sipush 257
            ireturn
        12: .line 1648
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        13: .line 1649
            iload 1 /* b */
            sipush 255
            iand
            istore 2 /* c */
        start local 2 // int c
        14: .line 1651
            iload 2 /* c */
            bipush 32
            if_icmpgt 29
        15: .line 1652
            iload 2 /* c */
            bipush 10
            if_icmpne 18
        16: .line 1653
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        17: .line 1654
            goto 35
      StackMap locals: int int
      StackMap stack:
        18: iload 2 /* c */
            bipush 13
            if_icmpne 26
        19: .line 1655
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 22
        20: .line 1656
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        21: .line 1657
            sipush 257
            ireturn
        22: .line 1659
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 24
        23: .line 1660
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        24: .line 1662
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        25: .line 1663
            goto 35
      StackMap locals:
      StackMap stack:
        26: iload 2 /* c */
            bipush 32
            if_icmpeq 35
            iload 2 /* c */
            bipush 9
            if_icmpeq 35
        27: .line 1664
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInvalidSpace:(I)V
        28: .line 1666
            goto 35
      StackMap locals:
      StackMap stack:
        29: iload 2 /* c */
            bipush 62
            if_icmpne 31
        30: .line 1667
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishStartElement:(Z)I
            ireturn
        31: .line 1668
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            bipush 47
            if_icmpne 34
        32: .line 1669
            aload 0 /* this */
            bipush 9
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        33: .line 1670
            goto 0
        34: .line 1672
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected space, or '>' or \"/>\""
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        end local 2 // int c
        end local 1 // byte b
        35: .line 1675
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_3
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        36: .line 1676
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 38
        37: .line 1677
            sipush 257
            ireturn
        38: .line 1686
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 43
        39: .line 1687
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePartialCR:()Z
            ifne 41
        40: .line 1688
            sipush 257
            ireturn
        41: .line 1690
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 43
        42: .line 1691
            sipush 257
            ireturn
        43: .line 1694
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        44: .line 1695
            iload 1 /* b */
            sipush 255
            iand
            istore 2 /* c */
        start local 2 // int c
        45: .line 1697
            goto 63
        46: .line 1698
      StackMap locals: int int
      StackMap stack:
            iload 2 /* c */
            bipush 10
            if_icmpne 49
        47: .line 1699
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        48: .line 1700
            goto 59
      StackMap locals:
      StackMap stack:
        49: iload 2 /* c */
            bipush 13
            if_icmpne 57
        50: .line 1701
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 53
        51: .line 1702
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        52: .line 1703
            sipush 257
            ireturn
        53: .line 1705
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 55
        54: .line 1706
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        55: .line 1708
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        56: .line 1709
            goto 59
      StackMap locals:
      StackMap stack:
        57: iload 2 /* c */
            bipush 32
            if_icmpeq 59
            iload 2 /* c */
            bipush 9
            if_icmpeq 59
        58: .line 1710
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInvalidSpace:(I)V
        59: .line 1712
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 61
        60: .line 1713
            sipush 257
            ireturn
        61: .line 1715
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        62: .line 1716
            iload 1 /* b */
            sipush 255
            iand
            istore 2 /* c */
        63: .line 1697
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            bipush 32
            if_icmple 46
        64: .line 1719
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            tableswitch { // 3 - 6
                    3: 65
                    4: 85
                    5: 77
                    6: 81
              default: 85
          }
        65: .line 1721
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 47
            if_icmpne 68
        66: .line 1722
            aload 0 /* this */
            bipush 9
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        67: .line 1723
            goto 0
        68: .line 1725
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 62
            if_icmpne 70
        69: .line 1726
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishStartElement:(Z)I
            ireturn
        70: .line 1729
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewName:(B)Lcom/fasterxml/aalto/in/PName;
            astore 3 /* n */
        start local 3 // com.fasterxml.aalto.in.PName n
        71: .line 1730
            aload 3 /* n */
            ifnonnull 74
        72: .line 1731
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        73: .line 1732
            sipush 257
            ireturn
        74: .line 1734
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            iconst_5
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        75: .line 1735
            aload 0 /* this */
            aload 3 /* n */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
        end local 3 // com.fasterxml.aalto.in.PName n
        76: .line 1737
            goto 0
        77: .line 1740
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 61
            if_icmpeq 79
        78: .line 1741
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected '='"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        79: .line 1743
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 6
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        80: .line 1744
            goto 0
        81: .line 1747
      StackMap locals:
      StackMap stack:
            iload 1 /* b */
            bipush 34
            if_icmpeq 83
            iload 1 /* b */
            bipush 39
            if_icmpeq 83
        82: .line 1748
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " Expected a quote"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        83: .line 1750
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.initAttribute:(B)V
        84: .line 1751
            goto 0
        85: .line 1753
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        end local 2 // int c
        end local 1 // byte b
        86: .line 1758
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parsePName:()Lcom/fasterxml/aalto/in/PName;
            astore 3 /* n */
        start local 3 // com.fasterxml.aalto.in.PName n
        87: .line 1759
            aload 3 /* n */
            ifnonnull 89
        88: .line 1760
            sipush 257
            ireturn
        89: .line 1762
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner top top com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 3 /* n */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
        90: .line 1763
            aload 0 /* this */
            iconst_5
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        end local 3 // com.fasterxml.aalto.in.PName n
        91: .line 1765
            goto 0
        92: .line 1768
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAttrValue:()Z
            ifne 94
        93: .line 1769
            sipush 257
            ireturn
        94: .line 1771
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        95: .line 1772
            goto 0
        96: .line 1775
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleNsDecl:()Z
            ifne 98
        97: .line 1776
            sipush 257
            ireturn
        98: .line 1778
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        99: .line 1779
            goto 0
       100: .line 1783
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
       101: .line 1784
            iload 1 /* b */
            bipush 62
            if_icmpeq 103
       102: .line 1785
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected '>'"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
       103: .line 1787
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishStartElement:(Z)I
            ireturn
        end local 1 // byte b
       104: .line 1790
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
       105: .line 1619
            goto 0
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0  106     0      this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
           13   35     1         b  B
           44   86     1         b  B
          101  104     1         b  B
           14   35     2         c  I
           45   86     2         c  I
            4    7     3  elemName  Lcom/fasterxml/aalto/in/PName;
           71   76     3         n  Lcom/fasterxml/aalto/in/PName;
           87   91     3         n  Lcom/fasterxml/aalto/in/PName;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private void initStartElement(com.fasterxml.aalto.in.PName);
    descriptor: (Lcom/fasterxml/aalto/in/PName;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // com.fasterxml.aalto.in.PName elemName
         0: .line 1797
            aload 1 /* elemName */
            invokevirtual com.fasterxml.aalto.in.PName.getPrefix:()Ljava/lang/String;
            astore 2 /* prefix */
        start local 2 // java.lang.String prefix
         1: .line 1798
            aload 2 /* prefix */
            ifnonnull 4
         2: .line 1799
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAllNsBound:Z
         3: .line 1800
            goto 6
         4: .line 1801
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* elemName */
            aload 2 /* prefix */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.bindName:(Lcom/fasterxml/aalto/in/PName;Ljava/lang/String;)Lcom/fasterxml/aalto/in/PName;
            astore 1 /* elemName */
         5: .line 1802
            aload 0 /* this */
            aload 1 /* elemName */
            invokevirtual com.fasterxml.aalto.in.PName.isBound:()Z
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAllNsBound:Z
         6: .line 1804
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* elemName */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
         7: .line 1805
            aload 0 /* this */
            new com.fasterxml.aalto.in.ElementScope
            dup
            aload 1 /* elemName */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currElem:Lcom/fasterxml/aalto/in/ElementScope;
            invokespecial com.fasterxml.aalto.in.ElementScope.<init>:(Lcom/fasterxml/aalto/in/PName;Lcom/fasterxml/aalto/in/ElementScope;)V
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currElem:Lcom/fasterxml/aalto/in/ElementScope;
         8: .line 1806
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCount:I
         9: .line 1807
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currNsCount:I
        10: .line 1808
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
        11: .line 1809
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        12: .line 1810
            return
        end local 2 // java.lang.String prefix
        end local 1 // com.fasterxml.aalto.in.PName elemName
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   13     1  elemName  Lcom/fasterxml/aalto/in/PName;
            1   13     2    prefix  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      elemName  

  private void initAttribute(byte);
    descriptor: (B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // byte quoteChar
         0: .line 1814
            aload 0 /* this */
            iload 1 /* quoteChar */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
         1: .line 1816
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            astore 2 /* attrName */
        start local 2 // com.fasterxml.aalto.in.PName attrName
         2: .line 1817
            aload 2 /* attrName */
            invokevirtual com.fasterxml.aalto.in.PName.getPrefix:()Ljava/lang/String;
            astore 3 /* prefix */
        start local 3 // java.lang.String prefix
         3: .line 1820
            aload 3 /* prefix */
            ifnonnull 8
         4: .line 1821
            aload 2 /* attrName */
            invokevirtual com.fasterxml.aalto.in.PName.getLocalName:()Ljava/lang/String;
            ldc "xmlns"
            if_acmpne 5
            iconst_1
            goto 6
      StackMap locals: com.fasterxml.aalto.in.PName java.lang.String
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 4 /* nsDecl */
        start local 4 // boolean nsDecl
         7: .line 1822
            goto 15
        end local 4 // boolean nsDecl
         8: .line 1824
      StackMap locals:
      StackMap stack:
            aload 3 /* prefix */
            ldc "xmlns"
            if_acmpne 11
         9: .line 1825
            iconst_1
            istore 4 /* nsDecl */
        start local 4 // boolean nsDecl
        10: .line 1826
            goto 15
        end local 4 // boolean nsDecl
        11: .line 1827
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* attrName */
            aload 3 /* prefix */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.bindName:(Lcom/fasterxml/aalto/in/PName;Ljava/lang/String;)Lcom/fasterxml/aalto/in/PName;
            astore 2 /* attrName */
        12: .line 1828
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAllNsBound:Z
            ifeq 14
        13: .line 1829
            aload 0 /* this */
            aload 2 /* attrName */
            invokevirtual com.fasterxml.aalto.in.PName.isBound:()Z
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAllNsBound:Z
        14: .line 1831
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* nsDecl */
        start local 4 // boolean nsDecl
        15: .line 1835
      StackMap locals: int
      StackMap stack:
            iload 4 /* nsDecl */
            ifeq 20
        16: .line 1836
            aload 0 /* this */
            bipush 8
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        17: .line 1838
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
        18: .line 1839
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currNsCount:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currNsCount:I
        19: .line 1840
            goto 22
        20: .line 1841
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 7
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        21: .line 1843
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            aload 2 /* attrName */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.startNewValue:(Lcom/fasterxml/aalto/in/PName;I)[C
            pop
        22: .line 1845
      StackMap locals:
      StackMap stack:
            return
        end local 4 // boolean nsDecl
        end local 3 // java.lang.String prefix
        end local 2 // com.fasterxml.aalto.in.PName attrName
        end local 1 // byte quoteChar
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   23     1  quoteChar  B
            2   23     2   attrName  Lcom/fasterxml/aalto/in/PName;
            3   23     3     prefix  Ljava/lang/String;
            7    8     4     nsDecl  Z
           10   11     4     nsDecl  Z
           15   23     4     nsDecl  Z
    MethodParameters:
           Name  Flags
      quoteChar  

  private int finishStartElement(boolean);
    descriptor: (Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // boolean emptyTag
         0: .line 1853
            aload 0 /* this */
            iload 1 /* emptyTag */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._isEmptyTag:Z
         1: .line 1856
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.finishLastValue:(I)I
            istore 2 /* act */
        start local 2 // int act
         2: .line 1857
            iload 2 /* act */
            ifge 5
         3: .line 1858
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.getCount:()I
            istore 2 /* act */
         4: .line 1859
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.getErrorMsg:()Ljava/lang/String;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInputProblem:(Ljava/lang/String;)V
         5: .line 1861
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* act */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCount:I
         6: .line 1862
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._depth:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._depth:I
         7: .line 1868
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAllNsBound:Z
            ifne 18
         8: .line 1869
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            invokevirtual com.fasterxml.aalto.in.PName.isBound:()Z
            ifne 10
         9: .line 1870
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnboundPrefix:(Lcom/fasterxml/aalto/in/PName;Z)V
        10: .line 1872
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        11: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCount:I
            istore 4 /* len */
        start local 4 // int len
        12: goto 17
        13: .line 1873
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            iload 3 /* i */
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.getName:(I)Lcom/fasterxml/aalto/in/PName;
            astore 5 /* attrName */
        start local 5 // com.fasterxml.aalto.in.PName attrName
        14: .line 1874
            aload 5 /* attrName */
            invokevirtual com.fasterxml.aalto.in.PName.isBound:()Z
            ifne 16
        15: .line 1875
            aload 0 /* this */
            aload 5 /* attrName */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnboundPrefix:(Lcom/fasterxml/aalto/in/PName;Z)V
        end local 5 // com.fasterxml.aalto.in.PName attrName
        16: .line 1872
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 3 /* i */
            iload 4 /* len */
            if_icmplt 13
        end local 4 // int len
        end local 3 // int i
        18: .line 1880
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 2 // int act
        end local 1 // boolean emptyTag
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   19     1  emptyTag  Z
            2   19     2       act  I
           11   18     3         i  I
           12   18     4       len  I
           14   16     5  attrName  Lcom/fasterxml/aalto/in/PName;
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
          Name  Flags
      emptyTag  

  private int handleEndElementStart();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1885
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._depth:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._depth:I
         1: .line 1886
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currElem:Lcom/fasterxml/aalto/in/ElementScope;
            invokevirtual com.fasterxml.aalto.in.ElementScope.getName:()Lcom/fasterxml/aalto/in/PName;
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
         2: .line 1892
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            invokevirtual com.fasterxml.aalto.in.PName.sizeInQuads:()I
            istore 1 /* size */
        start local 1 // int size
         3: .line 1893
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iload 1 /* size */
            iconst_2
            ishl
            iconst_1
            iadd
            if_icmpge 8
         4: .line 1894
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
         5: .line 1895
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
         6: .line 1896
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
         7: .line 1900
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleEndElement:()I
            ireturn
         8: .line 1902
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            astore 2 /* buf */
        start local 2 // java.nio.ByteBuffer buf
         9: .line 1905
            iinc 1 /* size */ -1
        10: .line 1906
            iconst_0
            istore 3 /* qix */
        start local 3 // int qix
        11: goto 24
        12: .line 1907
      StackMap locals: java.nio.ByteBuffer int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            istore 4 /* ptr */
        start local 4 // int ptr
        13: .line 1908
            aload 2 /* buf */
            iload 4 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 24
            ishl
        14: .line 1909
            aload 2 /* buf */
            iload 4 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            bipush 16
            ishl
        15: .line 1908
            ior
        16: .line 1910
            aload 2 /* buf */
            iload 4 /* ptr */
            iconst_2
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            bipush 8
            ishl
        17: .line 1908
            ior
        18: .line 1911
            aload 2 /* buf */
            iload 4 /* ptr */
            iconst_3
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
        19: .line 1908
            ior
            istore 5 /* q */
        start local 5 // int q
        20: .line 1913
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_4
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        21: .line 1915
            iload 5 /* q */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            iload 3 /* qix */
            invokevirtual com.fasterxml.aalto.in.PName.getQuad:(I)I
            if_icmpeq 23
        22: .line 1916
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            invokevirtual com.fasterxml.aalto.in.PName.getPrefixedName:()Ljava/lang/String;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpectedEndTag:(Ljava/lang/String;)V
        end local 5 // int q
        end local 4 // int ptr
        23: .line 1906
      StackMap locals:
      StackMap stack:
            iinc 3 /* qix */ 1
      StackMap locals:
      StackMap stack:
        24: iload 3 /* qix */
            iload 1 /* size */
            if_icmplt 12
        end local 3 // int qix
        25: .line 1923
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            iload 1 /* size */
            invokevirtual com.fasterxml.aalto.in.PName.getQuad:(I)I
            istore 3 /* lastQ */
        start local 3 // int lastQ
        26: .line 1924
            aload 2 /* buf */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* q */
        start local 4 // int q
        27: .line 1925
            iload 4 /* q */
            iload 3 /* lastQ */
            if_icmpeq 35
        28: .line 1926
            iload 4 /* q */
            bipush 8
            ishl
            aload 2 /* buf */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            ior
            istore 4 /* q */
        29: .line 1927
            iload 4 /* q */
            iload 3 /* lastQ */
            if_icmpeq 35
        30: .line 1928
            iload 4 /* q */
            bipush 8
            ishl
            aload 2 /* buf */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            ior
            istore 4 /* q */
        31: .line 1929
            iload 4 /* q */
            iload 3 /* lastQ */
            if_icmpeq 35
        32: .line 1930
            iload 4 /* q */
            bipush 8
            ishl
            aload 2 /* buf */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            ior
            istore 4 /* q */
        33: .line 1931
            iload 4 /* q */
            iload 3 /* lastQ */
            if_icmpeq 35
        34: .line 1932
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            invokevirtual com.fasterxml.aalto.in.PName.getPrefixedName:()Ljava/lang/String;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpectedEndTag:(Ljava/lang/String;)V
        35: .line 1938
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* i2 */
        start local 5 // int i2
        36: .line 1939
            goto 57
        37: .line 1940
      StackMap locals: int
      StackMap stack:
            iload 5 /* i2 */
            bipush 10
            if_icmpne 40
        38: .line 1941
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        39: .line 1942
            goto 52
      StackMap locals:
      StackMap stack:
        40: iload 5 /* i2 */
            bipush 13
            if_icmpne 50
        41: .line 1943
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 46
        42: .line 1944
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        43: .line 1945
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        44: .line 1946
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        45: .line 1947
            sipush 257
            ireturn
        46: .line 1949
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 48
        47: .line 1950
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        48: .line 1952
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        49: .line 1953
            goto 52
      StackMap locals:
      StackMap stack:
        50: iload 5 /* i2 */
            bipush 32
            if_icmpeq 52
            iload 5 /* i2 */
            bipush 9
            if_icmpeq 52
        51: .line 1954
            aload 0 /* this */
            iload 5 /* i2 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInvalidSpace:(I)V
        52: .line 1956
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 56
        53: .line 1957
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        54: .line 1958
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        55: .line 1959
            sipush 257
            ireturn
        56: .line 1961
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* i2 */
        57: .line 1939
      StackMap locals:
      StackMap stack:
            iload 5 /* i2 */
            bipush 32
            if_icmple 37
        58: .line 1963
            iload 5 /* i2 */
            bipush 62
            if_icmpeq 60
        59: .line 1964
            aload 0 /* this */
            aload 0 /* this */
            iload 5 /* i2 */
            i2b
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected space or closing '>'"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        60: .line 1966
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 5 // int i2
        end local 4 // int q
        end local 3 // int lastQ
        end local 2 // java.nio.ByteBuffer buf
        end local 1 // int size
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   61     0   this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            3   61     1   size  I
            9   61     2    buf  Ljava/nio/ByteBuffer;
           11   25     3    qix  I
           13   23     4    ptr  I
           20   23     5      q  I
           26   61     3  lastQ  I
           27   61     4      q  I
           36   61     5     i2  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private int handleEndElement();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=5, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 1975
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            ifne 26
         1: .line 1976
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
            astore 1 /* elemName */
        start local 1 // com.fasterxml.aalto.in.PName elemName
         2: .line 1977
            aload 1 /* elemName */
            invokevirtual com.fasterxml.aalto.in.PName.sizeInQuads:()I
            iconst_1
            isub
            istore 2 /* quadSize */
        start local 2 // int quadSize
         3: .line 1978
            goto 13
         4: .line 1980
      StackMap locals: com.fasterxml.aalto.in.PName int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 6
         5: .line 1981
            sipush 257
            ireturn
         6: .line 1983
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
            bipush 8
            ishl
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
         7: .line 1979
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            iconst_4
            if_icmplt 4
         9: .line 1986
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
            aload 1 /* elemName */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            invokevirtual com.fasterxml.aalto.in.PName.getQuad:(I)I
            if_icmpeq 11
        10: .line 1987
            aload 0 /* this */
            aload 1 /* elemName */
            invokevirtual com.fasterxml.aalto.in.PName.getPrefixedName:()Ljava/lang/String;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpectedEndTag:(Ljava/lang/String;)V
        11: .line 1989
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        12: .line 1978
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
      StackMap locals:
      StackMap stack:
        13: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            iload 2 /* quadSize */
            if_icmplt 8
        14: .line 1992
            aload 1 /* elemName */
            invokevirtual com.fasterxml.aalto.in.PName.getLastQuad:()I
            istore 3 /* lastQ */
        start local 3 // int lastQ
        15: .line 1995
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 17
        16: .line 1996
            sipush 257
            ireturn
        17: .line 1998
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
            bipush 8
            ishl
            istore 4 /* q */
        start local 4 // int q
        18: .line 1999
            iload 4 /* q */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            ior
            istore 4 /* q */
        19: .line 2000
            aload 0 /* this */
            iload 4 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        20: .line 2001
            iload 4 /* q */
            iload 3 /* lastQ */
            if_icmpne 22
        21: .line 2002
            goto 24
        22: .line 2004
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            iconst_1
            iadd
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            iconst_3
            if_icmple 15
        23: .line 2005
            aload 0 /* this */
            aload 1 /* elemName */
            invokevirtual com.fasterxml.aalto.in.PName.getPrefixedName:()Ljava/lang/String;
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpectedEndTag:(Ljava/lang/String;)V
        end local 4 // int q
        24: .line 2010
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
        end local 3 // int lastQ
        end local 2 // int quadSize
        end local 1 // com.fasterxml.aalto.in.PName elemName
        25: .line 2011
            goto 28
      StackMap locals:
      StackMap stack:
        26: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._state:I
            iconst_1
            if_icmpeq 28
        27: .line 2012
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        28: .line 2015
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 31
        29: .line 2016
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePartialCR:()Z
            ifne 31
        30: .line 2017
            sipush 257
            ireturn
        31: .line 2024
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 33
        32: .line 2025
            sipush 257
            ireturn
        33: .line 2027
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 1 /* i2 */
        start local 1 // int i2
        34: .line 2028
            iload 1 /* i2 */
            bipush 32
            if_icmpgt 49
        35: .line 2029
            iload 1 /* i2 */
            bipush 10
            if_icmpne 38
        36: .line 2030
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        37: .line 2031
            goto 31
      StackMap locals: int
      StackMap stack:
        38: iload 1 /* i2 */
            bipush 13
            if_icmpne 46
        39: .line 2032
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 42
        40: .line 2033
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        41: .line 2034
            sipush 257
            ireturn
        42: .line 2036
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 44
        43: .line 2037
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        44: .line 2039
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        45: .line 2040
            goto 31
      StackMap locals:
      StackMap stack:
        46: iload 1 /* i2 */
            bipush 32
            if_icmpeq 31
            iload 1 /* i2 */
            bipush 9
            if_icmpeq 31
        47: .line 2041
            aload 0 /* this */
            iload 1 /* i2 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInvalidSpace:(I)V
        48: .line 2043
            goto 31
        49: .line 2046
      StackMap locals:
      StackMap stack:
            iload 1 /* i2 */
            bipush 62
            if_icmpeq 51
        50: .line 2047
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* i2 */
            i2b
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected space or closing '>'"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        51: .line 2050
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            dup_x1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 1 // int i2
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   52     0      this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            2   25     1  elemName  Lcom/fasterxml/aalto/in/PName;
            3   25     2  quadSize  I
           15   25     3     lastQ  I
           18   24     4         q  I
           34   52     1        i2  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final int startCharacters(byte);
    descriptor: (B)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // byte b
         0: .line 2065
            iload 1 /* b */
            sipush 255
            iand
            istore 2 /* c */
        start local 2 // int c
         1: .line 2066
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.TEXT_CHARS:[I
            iload 2 /* c */
            iaload
            tableswitch { // 1 - 11
                    1: 2
                    2: 3
                    3: 11
                    4: 38
                    5: 13
                    6: 18
                    7: 26
                    8: 42
                    9: 40
                   10: 40
                   11: 42
              default: 42
          }
         2: .line 2068
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 2 /* c */
         3: .line 2073
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 6
         4: .line 2074
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         5: .line 2075
            sipush 257
            ireturn
         6: .line 2077
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 8
         7: .line 2078
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         8: .line 2080
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
         9: .line 2081
            bipush 10
            istore 2 /* c */
        10: .line 2082
            goto 42
        11: .line 2084
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        12: .line 2085
            goto 42
        13: .line 2087
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 16
        14: .line 2088
            aload 0 /* this */
            iload 2 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        15: .line 2089
            sipush 257
            ireturn
        16: .line 2091
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 2 /* c */
        17: .line 2092
            goto 42
        18: .line 2094
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 24
        19: .line 2095
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 22
        20: .line 2096
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* d */
        start local 3 // int d
        21: .line 2097
            iload 2 /* c */
            iload 3 /* d */
            bipush 8
            ishl
            ior
            istore 2 /* c */
        end local 3 // int d
        22: .line 2099
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        23: .line 2100
            sipush 257
            ireturn
        24: .line 2102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 2 /* c */
        25: .line 2103
            goto 42
        26: .line 2105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 35
        27: .line 2106
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 33
        28: .line 2107
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* d */
        start local 3 // int d
        29: .line 2108
            iload 2 /* c */
            iload 3 /* d */
            bipush 8
            ishl
            ior
            istore 2 /* c */
        30: .line 2109
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 33
        31: .line 2110
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* d */
        32: .line 2111
            iload 2 /* c */
            iload 3 /* d */
            bipush 16
            ishl
            ior
            istore 2 /* c */
        end local 3 // int d
        33: .line 2114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        34: .line 2115
            sipush 257
            ireturn
        35: .line 2117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 2 /* c */
        36: .line 2119
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithSurrogate:(I)V
        37: .line 2120
            goto 43
        38: .line 2123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        39: .line 2124
            goto 42
        40: .line 2127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        41: .line 2128
            goto 42
        42: .line 2136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 2 /* c */
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetWithChar:(C)V
        end local 2 // int c
        43: .line 2139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgCoalescing:Z
            ifeq 45
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifne 45
        44: .line 2141
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharactersCoalescing:()I
            ireturn
        45: .line 2143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
        46: .line 2144
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._cfgLazyParsing:Z
            ifeq 49
        47: .line 2145
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenIncomplete:Z
        48: .line 2146
            goto 50
        49: .line 2147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.finishCharacters:()V
        50: .line 2149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currToken:I
            ireturn
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   51     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   51     1     b  B
            1   43     2     c  I
           21   22     3     d  I
           29   33     3     d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      b     

  protected final void finishCharacters();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=9, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2166
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 2
         1: .line 2168
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
         2: .line 2171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.TEXT_CHARS:[I
            astore 1 /* TYPES */
        start local 1 // int[] TYPES
         3: .line 2172
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            astore 2 /* inputBuffer */
        start local 2 // java.nio.ByteBuffer inputBuffer
         4: .line 2173
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getBufferWithoutReset:()[C
            astore 3 /* outputBuffer */
        start local 3 // char[] outputBuffer
         5: .line 2175
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.getCurrentLength:()I
            istore 4 /* outPtr */
        start local 4 // int outPtr
         6: .line 2183
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] java.nio.ByteBuffer char[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            istore 6 /* ptr */
        start local 6 // int ptr
         7: .line 2184
            iload 6 /* ptr */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 9
         8: .line 2185
            goto 100
         9: .line 2187
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] java.nio.ByteBuffer char[] int top int
      StackMap stack:
            iload 4 /* outPtr */
            aload 3 /* outputBuffer */
            arraylength
            if_icmplt 12
        10: .line 2188
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 3 /* outputBuffer */
        11: .line 2189
            iconst_0
            istore 4 /* outPtr */
        12: .line 2191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 7 /* max */
        start local 7 // int max
        13: .line 2193
            iload 6 /* ptr */
            aload 3 /* outputBuffer */
            arraylength
            iload 4 /* outPtr */
            isub
            iadd
            istore 8 /* max2 */
        start local 8 // int max2
        14: .line 2194
            iload 8 /* max2 */
            iload 7 /* max */
            if_icmpge 22
        15: .line 2195
            iload 8 /* max2 */
            istore 7 /* max */
        end local 8 // int max2
        16: .line 2198
            goto 22
        17: .line 2199
      StackMap locals: int
      StackMap stack:
            aload 2 /* inputBuffer */
            iload 6 /* ptr */
            iinc 6 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* c */
        start local 5 // int c
        18: .line 2200
            aload 1 /* TYPES */
            iload 5 /* c */
            iaload
            ifeq 21
        19: .line 2201
            aload 0 /* this */
            iload 6 /* ptr */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        20: .line 2202
            goto 25
        21: .line 2204
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] java.nio.ByteBuffer char[] int int int int
      StackMap stack:
            aload 3 /* outputBuffer */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        22: .line 2198
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] java.nio.ByteBuffer char[] int top int int
      StackMap stack:
            iload 6 /* ptr */
            iload 7 /* max */
            if_icmplt 17
        23: .line 2206
            aload 0 /* this */
            iload 6 /* ptr */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        end local 7 // int max
        end local 6 // int ptr
        24: .line 2182
            goto 6
        start local 5 // int c
        25: .line 2209
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] java.nio.ByteBuffer char[] int int
      StackMap stack:
            aload 1 /* TYPES */
            iload 5 /* c */
            iaload
            tableswitch { // 1 - 11
                    1: 26
                    2: 27
                    3: 35
                    4: 66
                    5: 37
                    6: 42
                    7: 50
                    8: 98
                    9: 67
                   10: 69
                   11: 81
              default: 98
          }
        26: .line 2211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 5 /* c */
        27: .line 2214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 30
        28: .line 2215
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        29: .line 2216
            goto 100
        30: .line 2218
      StackMap locals:
      StackMap stack:
            aload 2 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 32
        31: .line 2219
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        32: .line 2221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        33: .line 2223
            bipush 10
            istore 5 /* c */
        34: .line 2224
            goto 98
        35: .line 2226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        36: .line 2227
            goto 98
        37: .line 2229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 40
        38: .line 2230
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        39: .line 2231
            goto 100
        40: .line 2233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 5 /* c */
        41: .line 2234
            goto 98
        42: .line 2236
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 48
        43: .line 2237
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 46
        44: .line 2238
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        45: .line 2239
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        46: .line 2241
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        47: .line 2242
            goto 100
        48: .line 2244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 5 /* c */
        49: .line 2245
            goto 98
        50: .line 2247
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 59
        51: .line 2248
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 57
        52: .line 2249
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        start local 6 // int d
        53: .line 2250
            iload 5 /* c */
            iload 6 /* d */
            bipush 8
            ishl
            ior
            istore 5 /* c */
        54: .line 2251
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 57
        55: .line 2252
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 6 /* d */
        56: .line 2253
            iload 5 /* c */
            iload 6 /* d */
            bipush 16
            ishl
            ior
            istore 5 /* c */
        end local 6 // int d
        57: .line 2256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        58: .line 2257
            goto 100
        59: .line 2259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 5 /* c */
        60: .line 2261
            aload 3 /* outputBuffer */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            ldc 55296
            iload 5 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        61: .line 2262
            iload 4 /* outPtr */
            aload 3 /* outputBuffer */
            arraylength
            if_icmplt 64
        62: .line 2263
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 3 /* outputBuffer */
        63: .line 2264
            iconst_0
            istore 4 /* outPtr */
        64: .line 2266
      StackMap locals:
      StackMap stack:
            ldc 56320
            iload 5 /* c */
            sipush 1023
            iand
            ior
            istore 5 /* c */
        65: .line 2268
            goto 98
        66: .line 2270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        67: .line 2272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        68: .line 2273
            goto 100
        69: .line 2275
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleEntityInCharacters:()I
            istore 5 /* c */
        70: .line 2276
            iload 5 /* c */
            ifne 73
        71: .line 2278
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        72: .line 2279
            goto 100
        73: .line 2282
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            bipush 16
            ishr
            ifeq 98
        74: .line 2283
            iload 5 /* c */
            ldc 65536
            isub
            istore 5 /* c */
        75: .line 2284
            aload 3 /* outputBuffer */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            ldc 55296
            iload 5 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        76: .line 2286
            iload 4 /* outPtr */
            aload 3 /* outputBuffer */
            arraylength
            if_icmplt 79
        77: .line 2287
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 3 /* outputBuffer */
        78: .line 2288
            iconst_0
            istore 4 /* outPtr */
        79: .line 2290
      StackMap locals:
      StackMap stack:
            ldc 56320
            iload 5 /* c */
            sipush 1023
            iand
            ior
            istore 5 /* c */
        80: .line 2292
            goto 98
        81: .line 2301
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 6 /* count */
        start local 6 // int count
        82: .line 2302
            iconst_0
            istore 7 /* b */
        start local 7 // byte b
        83: .line 2303
            goto 89
        84: .line 2304
      StackMap locals: int int
      StackMap stack:
            aload 2 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 7 /* b */
        85: .line 2305
            iload 7 /* b */
            bipush 93
            if_icmpeq 87
        86: .line 2306
            goto 90
        87: .line 2308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        88: .line 2309
            iinc 6 /* count */ 1
        89: .line 2303
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 84
        90: .line 2311
      StackMap locals:
      StackMap stack:
            iload 7 /* b */
            bipush 62
            if_icmpne 97
            iload 6 /* count */
            iconst_1
            if_icmple 97
        91: .line 2312
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportIllegalCDataEnd:()V
        92: .line 2316
            goto 97
        93: .line 2317
      StackMap locals:
      StackMap stack:
            aload 3 /* outputBuffer */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            bipush 93
            castore
        94: .line 2319
            iload 4 /* outPtr */
            aload 3 /* outputBuffer */
            arraylength
            if_icmplt 97
        95: .line 2320
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            invokevirtual com.fasterxml.aalto.util.TextBuilder.finishCurrentSegment:()[C
            astore 3 /* outputBuffer */
        96: .line 2321
            iconst_0
            istore 4 /* outPtr */
        97: .line 2316
      StackMap locals:
      StackMap stack:
            iinc 6 /* count */ -1
            iload 6 /* count */
            ifgt 93
        end local 7 // byte b
        end local 6 // int count
        98: .line 2332
      StackMap locals:
      StackMap stack:
            aload 3 /* outputBuffer */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            iload 5 /* c */
            i2c
            castore
        end local 5 // int c
        99: .line 2178
            goto 6
       100: .line 2334
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 4 /* outPtr */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.setCurrentLength:(I)V
       101: .line 2335
            return
        end local 4 // int outPtr
        end local 3 // char[] outputBuffer
        end local 2 // java.nio.ByteBuffer inputBuffer
        end local 1 // int[] TYPES
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0  102     0          this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            3  102     1         TYPES  [I
            4  102     2   inputBuffer  Ljava/nio/ByteBuffer;
            5  102     3  outputBuffer  [C
            6  102     4        outPtr  I
           18   22     5             c  I
           25   99     5             c  I
            7   24     6           ptr  I
           13   24     7           max  I
           14   16     8          max2  I
           45   46     6             d  I
           53   57     6             d  I
           82   98     6         count  I
           83   98     7             b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int handleEntityInCharacters();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2354
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            istore 1 /* ptr */
        start local 1 // int ptr
         1: .line 2355
            iload 1 /* ptr */
            iconst_3
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmpgt 40
         2: .line 2356
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         3: .line 2357
            iload 2 /* b */
            bipush 35
            if_icmpne 7
         4: .line 2358
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 6
         5: .line 2359
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInCharacters:(I)I
            ireturn
         6: .line 2361
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* ptr */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInCharacters:(I)I
            ireturn
         7: .line 2364
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 97
            if_icmpne 22
         8: .line 2365
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
         9: .line 2366
            iload 2 /* b */
            bipush 109
            if_icmpne 15
        10: .line 2367
            iload 1 /* ptr */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmpge 40
        11: .line 2368
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 112
            if_icmpne 40
        12: .line 2369
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        13: .line 2370
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_2
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        14: .line 2371
            bipush 38
            ireturn
        15: .line 2373
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 112
            if_icmpne 40
        16: .line 2374
            iload 1 /* ptr */
            iconst_2
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmpge 40
        17: .line 2375
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 111
            if_icmpne 40
        18: .line 2376
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 115
            if_icmpne 40
        19: .line 2377
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_2
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        20: .line 2378
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_3
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        21: .line 2379
            bipush 39
            ireturn
        22: .line 2382
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 103
            if_icmpne 27
        23: .line 2383
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 116
            if_icmpne 40
        24: .line 2384
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        25: .line 2385
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_2
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        26: .line 2386
            bipush 62
            ireturn
        27: .line 2388
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 108
            if_icmpne 32
        28: .line 2389
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 116
            if_icmpne 40
        29: .line 2390
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        30: .line 2391
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_2
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        31: .line 2392
            bipush 60
            ireturn
        32: .line 2394
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 113
            if_icmpne 40
        33: .line 2395
            iload 1 /* ptr */
            iconst_3
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmpge 40
        34: .line 2396
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 117
            if_icmpne 40
        35: .line 2397
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 111
            if_icmpne 40
        36: .line 2398
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_2
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 116
            if_icmpne 40
        37: .line 2399
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_3
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        38: .line 2400
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_4
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        39: .line 2401
            bipush 39
            ireturn
        end local 2 // byte b
        40: .line 2406
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int ptr
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   41     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   41     1   ptr  I
            3   40     2     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected int handleDecEntityInCharacters(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int ptr
         0: .line 2411
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         1: .line 2412
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 3 /* end */
        start local 3 // int end
         2: .line 2413
            iconst_0
            istore 4 /* value */
        start local 4 // int value
         3: .line 2415
      StackMap locals: int int int
      StackMap stack:
            iload 2 /* b */
            istore 5 /* ch */
        start local 5 // int ch
         4: .line 2416
            iload 5 /* ch */
            bipush 57
            if_icmpgt 5
            iload 5 /* ch */
            bipush 48
            if_icmpge 6
         5: .line 2417
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a digit (0 - 9) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
         6: .line 2419
      StackMap locals:
      StackMap stack:
            iload 4 /* value */
            bipush 10
            imul
            iload 5 /* ch */
            bipush 48
            isub
            iadd
            istore 4 /* value */
         7: .line 2420
            iload 4 /* value */
            ldc 1114111
            if_icmple 9
         8: .line 2421
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportEntityOverflow:()V
         9: .line 2423
      StackMap locals:
      StackMap stack:
            iload 1 /* ptr */
            iload 3 /* end */
            if_icmplt 11
        10: .line 2424
            iconst_0
            ireturn
        11: .line 2426
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        end local 5 // int ch
        12: .line 2427
            iload 2 /* b */
            bipush 59
            if_icmpne 3
        13: .line 2428
            aload 0 /* this */
            iload 1 /* ptr */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        14: .line 2429
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.verifyXmlChar:(I)V
        15: .line 2430
            iload 4 /* value */
            ireturn
        end local 4 // int value
        end local 3 // int end
        end local 2 // byte b
        end local 1 // int ptr
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   16     1    ptr  I
            1   16     2      b  B
            2   16     3    end  I
            3   16     4  value  I
            4   12     5     ch  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      ptr   

  protected int handleHexEntityInCharacters(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int ptr
         0: .line 2435
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         1: .line 2436
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 3 /* end */
        start local 3 // int end
         2: .line 2437
            iconst_0
            istore 4 /* value */
        start local 4 // int value
         3: .line 2439
      StackMap locals: int int int
      StackMap stack:
            iload 2 /* b */
            istore 5 /* ch */
        start local 5 // int ch
         4: .line 2440
            iload 5 /* ch */
            bipush 57
            if_icmpgt 7
            iload 5 /* ch */
            bipush 48
            if_icmplt 7
         5: .line 2441
            iinc 5 /* ch */ -48
         6: .line 2442
            goto 14
      StackMap locals: int
      StackMap stack:
         7: iload 5 /* ch */
            bipush 70
            if_icmpgt 10
            iload 5 /* ch */
            bipush 65
            if_icmplt 10
         8: .line 2443
            bipush 10
            iload 5 /* ch */
            bipush 65
            isub
            iadd
            istore 5 /* ch */
         9: .line 2444
            goto 14
      StackMap locals:
      StackMap stack:
        10: iload 5 /* ch */
            bipush 102
            if_icmpgt 13
            iload 5 /* ch */
            bipush 97
            if_icmplt 13
        11: .line 2445
            bipush 10
            iload 5 /* ch */
            bipush 97
            isub
            iadd
            istore 5 /* ch */
        12: .line 2446
            goto 14
        13: .line 2447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a hex digit (0-9a-fA-F) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        14: .line 2449
      StackMap locals:
      StackMap stack:
            iload 4 /* value */
            iconst_4
            ishl
            iload 5 /* ch */
            iadd
            istore 4 /* value */
        15: .line 2450
            iload 4 /* value */
            ldc 1114111
            if_icmple 17
        16: .line 2451
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportEntityOverflow:()V
        17: .line 2453
      StackMap locals:
      StackMap stack:
            iload 1 /* ptr */
            iload 3 /* end */
            if_icmplt 19
        18: .line 2454
            iconst_0
            ireturn
        19: .line 2456
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        end local 5 // int ch
        20: .line 2457
            iload 2 /* b */
            bipush 59
            if_icmpne 3
        21: .line 2458
            aload 0 /* this */
            iload 1 /* ptr */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        22: .line 2459
            aload 0 /* this */
            iload 4 /* value */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.verifyXmlChar:(I)V
        23: .line 2460
            iload 4 /* value */
            ireturn
        end local 4 // int value
        end local 3 // int end
        end local 2 // byte b
        end local 1 // int ptr
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   24     0   this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   24     1    ptr  I
            1   24     2      b  B
            2   24     3    end  I
            3   24     4  value  I
            4   20     5     ch  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      ptr   

  private final boolean handleAndAppendPending();
    descriptor: ()Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2473
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 2
         1: .line 2474
            iconst_0
            ireturn
         2: .line 2476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            istore 1 /* c */
        start local 1 // int c
         3: .line 2477
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         4: .line 2480
            iload 1 /* c */
            ifge 12
         5: .line 2481
            iload 1 /* c */
            iconst_m1
            if_icmpne 11
         6: .line 2482
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 8
         7: .line 2483
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         8: .line 2485
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
         9: .line 2486
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            bipush 10
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
        10: .line 2487
            iconst_1
            ireturn
        11: .line 2489
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        12: .line 2494
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.TEXT_CHARS:[I
            iload 1 /* c */
            sipush 255
            iand
            iaload
            tableswitch { // 5 - 7
                    5: 13
                    6: 15
                    7: 27
              default: 51
          }
        13: .line 2497
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
        14: .line 2498
            goto 52
        15: .line 2503
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
        16: .line 2504
            iload 1 /* c */
            bipush 8
            ishr
            istore 3 /* c2 */
        start local 3 // int c2
        17: .line 2505
            iload 3 /* c2 */
            ifne 24
        18: .line 2506
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 21
        19: .line 2507
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        20: .line 2508
            iconst_0
            ireturn
        21: .line 2510
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        22: .line 2511
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            istore 1 /* c */
        end local 4 // int c3
        23: .line 2512
            goto 25
        24: .line 2513
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            istore 1 /* c */
        25: .line 2515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 1 /* c */
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
        end local 3 // int c2
        end local 2 // int next
        26: .line 2517
            goto 52
        27: .line 2520
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
        28: .line 2522
            iload 1 /* c */
            bipush 8
            ishr
            ifne 39
        29: .line 2523
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 32
        30: .line 2524
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        31: .line 2525
            iconst_0
            ireturn
        32: .line 2527
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        33: .line 2528
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 36
        34: .line 2529
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            iload 3 /* c2 */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        35: .line 2530
            iconst_0
            ireturn
        36: .line 2532
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        37: .line 2533
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 3 /* c2 */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        end local 4 // int c3
        end local 3 // int c2
        38: .line 2534
            goto 49
        39: .line 2535
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 8
            ishr
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        40: .line 2536
            iload 1 /* c */
            bipush 16
            ishr
            istore 4 /* c3 */
        start local 4 // int c3
        41: .line 2538
            iload 4 /* c3 */
            ifne 48
        42: .line 2539
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 45
        43: .line 2540
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        44: .line 2541
            iconst_0
            ireturn
        45: .line 2543
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        46: .line 2544
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        47: .line 2545
            goto 49
        48: .line 2546
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 4 /* c3 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        end local 4 // int c3
        end local 3 // int c2
        end local 2 // int next
        49: .line 2551
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._textBuilder:Lcom/fasterxml/aalto/util/TextBuilder;
            iload 1 /* c */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.appendSurrogate:(I)V
        50: .line 2552
            goto 52
        51: .line 2554
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        52: .line 2556
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   53     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            3   53     1     c  I
           16   26     2  next  I
           17   26     3    c2  I
           22   23     4    c3  I
           28   49     2  next  I
           33   38     3    c2  I
           37   38     4    c3  I
           40   49     3    c2  I
           41   49     4    c3  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected boolean skipCharacters();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2578
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 3
         1: .line 2579
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.skipPending:()Z
            ifne 3
         2: .line 2580
            iconst_0
            ireturn
         3: .line 2584
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.TEXT_CHARS:[I
            astore 1 /* TYPES */
        start local 1 // int[] TYPES
         4: .line 2585
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            astore 2 /* inputBuffer */
        start local 2 // java.nio.ByteBuffer inputBuffer
         5: .line 2593
      StackMap locals: int[] java.nio.ByteBuffer
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            istore 4 /* ptr */
        start local 4 // int ptr
         6: .line 2594
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 5 /* max */
        start local 5 // int max
         7: .line 2595
            iload 4 /* ptr */
            iload 5 /* max */
            if_icmplt 13
         8: .line 2596
            goto 73
         9: .line 2599
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] java.nio.ByteBuffer top int int
      StackMap stack:
            aload 2 /* inputBuffer */
            iload 4 /* ptr */
            iinc 4 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* c */
        start local 3 // int c
        10: .line 2600
            aload 1 /* TYPES */
            iload 3 /* c */
            iaload
            ifeq 13
        11: .line 2601
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        12: .line 2602
            goto 16
        end local 3 // int c
        13: .line 2598
      StackMap locals:
      StackMap stack:
            iload 4 /* ptr */
            iload 5 /* max */
            if_icmplt 9
        14: .line 2605
            aload 0 /* this */
            iload 4 /* ptr */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        end local 5 // int max
        end local 4 // int ptr
        15: .line 2592
            goto 5
        start local 3 // int c
        16: .line 2608
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] java.nio.ByteBuffer int
      StackMap stack:
            aload 1 /* TYPES */
            iload 3 /* c */
            iaload
            tableswitch { // 1 - 11
                    1: 17
                    2: 18
                    3: 25
                    4: 51
                    5: 27
                    6: 32
                    7: 40
                    8: 72
                    9: 52
                   10: 54
                   11: 61
              default: 72
          }
        17: .line 2610
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 3 /* c */
        18: .line 2613
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 21
        19: .line 2614
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        20: .line 2615
            goto 73
        21: .line 2617
      StackMap locals:
      StackMap stack:
            aload 2 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 23
        22: .line 2618
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        23: .line 2620
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        24: .line 2622
            goto 5
        25: .line 2624
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        26: .line 2625
            goto 5
        27: .line 2627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 30
        28: .line 2628
            aload 0 /* this */
            iload 3 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        29: .line 2629
            goto 73
        30: .line 2631
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.skipUtf8_2:(I)V
        31: .line 2632
            goto 5
        32: .line 2634
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 38
        33: .line 2635
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 36
        34: .line 2636
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* d */
        start local 4 // int d
        35: .line 2637
            iload 3 /* c */
            iload 4 /* d */
            bipush 8
            ishl
            ior
            istore 3 /* c */
        end local 4 // int d
        36: .line 2639
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        37: .line 2640
            goto 73
        38: .line 2642
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            pop
        39: .line 2643
            goto 5
        40: .line 2645
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 49
        41: .line 2646
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 47
        42: .line 2647
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* d */
        start local 4 // int d
        43: .line 2648
            iload 3 /* c */
            iload 4 /* d */
            bipush 8
            ishl
            ior
            istore 3 /* c */
        44: .line 2649
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 47
        45: .line 2650
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* d */
        46: .line 2651
            iload 3 /* c */
            iload 4 /* d */
            bipush 16
            ishl
            ior
            istore 3 /* c */
        end local 4 // int d
        47: .line 2654
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        48: .line 2655
            goto 73
        49: .line 2657
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            pop
        50: .line 2658
            goto 5
        51: .line 2660
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        52: .line 2662
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        53: .line 2663
            iconst_1
            ireturn
        54: .line 2665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.skipEntityInCharacters:()I
            istore 3 /* c */
        55: .line 2666
            iload 3 /* c */
            ifne 5
        56: .line 2667
            aload 0 /* this */
            bipush -80
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        57: .line 2669
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmpge 60
        58: .line 2670
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.skipPending:()Z
            ifeq 60
        59: .line 2671
            iconst_1
            ireturn
        60: .line 2674
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        61: .line 2685
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 4 /* count */
        start local 4 // int count
        62: .line 2686
            iconst_0
            istore 5 /* b */
        start local 5 // byte b
        63: .line 2687
            goto 69
        64: .line 2688
      StackMap locals: int int
      StackMap stack:
            aload 2 /* inputBuffer */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 5 /* b */
        65: .line 2689
            iload 5 /* b */
            bipush 93
            if_icmpeq 67
        66: .line 2690
            goto 70
        67: .line 2692
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        68: .line 2693
            iinc 4 /* count */ 1
        69: .line 2687
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 64
        70: .line 2695
      StackMap locals:
      StackMap stack:
            iload 5 /* b */
            bipush 62
            if_icmpne 5
            iload 4 /* count */
            iconst_1
            if_icmple 5
        71: .line 2696
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportIllegalCDataEnd:()V
        end local 5 // byte b
        end local 4 // int count
        end local 3 // int c
        72: .line 2588
      StackMap locals:
      StackMap stack:
            goto 5
        73: .line 2707
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // java.nio.ByteBuffer inputBuffer
        end local 1 // int[] TYPES
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   74     0         this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            4   74     1        TYPES  [I
            5   74     2  inputBuffer  Ljava/nio/ByteBuffer;
           10   13     3            c  I
           16   72     3            c  I
            6   15     4          ptr  I
            7   15     5          max  I
           35   36     4            d  I
           43   47     4            d  I
           62   72     4        count  I
           63   72     5            b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private final boolean skipPending();
    descriptor: ()Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2713
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 2
         1: .line 2714
            iconst_0
            ireturn
         2: .line 2718
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifge 71
         3: .line 2720
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            lookupswitch { // 8
                  -86: 59
                  -85: 53
                  -84: 44
                  -83: 40
                  -82: 36
                  -81: 23
                  -80: 9
                   -1: 4
              default: 68
          }
         4: .line 2722
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         5: .line 2723
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 7
         6: .line 2724
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         7: .line 2726
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
         8: .line 2727
            iconst_1
            ireturn
         9: .line 2730
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        10: .line 2731
            iload 1 /* b */
            bipush 35
            if_icmpne 13
        11: .line 2732
            aload 0 /* this */
            bipush -81
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        12: .line 2733
            goto 69
        13: .line 2735
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewEntityName:(B)Lcom/fasterxml/aalto/in/PName;
            astore 2 /* n */
        start local 2 // com.fasterxml.aalto.in.PName n
        14: .line 2736
            aload 2 /* n */
            ifnonnull 17
        15: .line 2737
            aload 0 /* this */
            bipush -84
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        16: .line 2738
            iconst_0
            ireturn
        17: .line 2740
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 2 /* n */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 3 /* ch */
        start local 3 // int ch
        18: .line 2741
            iload 3 /* ch */
            ifne 21
        19: .line 2742
            aload 0 /* this */
            aload 2 /* n */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        20: .line 2743
            aload 0 /* this */
            bipush 9
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        end local 3 // int ch
        end local 2 // com.fasterxml.aalto.in.PName n
        end local 1 // byte b
        21: .line 2746
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        22: .line 2747
            iconst_1
            ireturn
        23: .line 2749
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        24: .line 2750
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 31
        25: .line 2751
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        26: .line 2752
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeHexEntity:()Z
            ifeq 29
        27: .line 2753
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        28: .line 2754
            iconst_1
            ireturn
        29: .line 2756
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -83
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        30: .line 2757
            iconst_0
            ireturn
        31: .line 2759
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeDecEntity:()Z
            ifeq 34
        32: .line 2760
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        33: .line 2761
            iconst_1
            ireturn
        34: .line 2763
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -82
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        35: .line 2764
            iconst_0
            ireturn
        36: .line 2767
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeDecEntity:()Z
            ifeq 39
        37: .line 2768
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        38: .line 2769
            iconst_1
            ireturn
        39: .line 2771
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        40: .line 2774
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeHexEntity:()Z
            ifeq 43
        41: .line 2775
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        42: .line 2776
            iconst_1
            ireturn
        43: .line 2778
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        44: .line 2782
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseEntityName:()Lcom/fasterxml/aalto/in/PName;
            astore 1 /* n */
        start local 1 // com.fasterxml.aalto.in.PName n
        45: .line 2783
            aload 1 /* n */
            ifnonnull 47
        46: .line 2784
            iconst_0
            ireturn
        47: .line 2786
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 1 /* n */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 2 /* ch */
        start local 2 // int ch
        48: .line 2787
            iload 2 /* ch */
            ifne 51
        49: .line 2788
            aload 0 /* this */
            aload 1 /* n */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        50: .line 2789
            aload 0 /* this */
            bipush 9
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nextEvent:I
        end local 2 // int ch
        end local 1 // com.fasterxml.aalto.in.PName n
        51: .line 2792
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        52: .line 2793
            iconst_1
            ireturn
        53: .line 2796
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 93
            if_icmpeq 56
        54: .line 2797
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        55: .line 2798
            iconst_1
            ireturn
        56: .line 2800
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        57: .line 2801
            aload 0 /* this */
            bipush -86
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        58: .line 2802
            goto 69
        59: .line 2807
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
        60: .line 2808
            iload 1 /* b */
            bipush 93
            if_icmpne 63
        61: .line 2809
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        62: .line 2810
            goto 69
        63: .line 2812
      StackMap locals: int
      StackMap stack:
            iload 1 /* b */
            bipush 62
            if_icmpne 66
        64: .line 2813
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        65: .line 2814
            aload 0 /* this */
            ldc "Encountered ']]>' in text segment"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInputProblem:(Ljava/lang/String;)V
        end local 1 // byte b
        66: .line 2818
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        67: .line 2819
            iconst_1
            ireturn
        68: .line 2821
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        69: .line 2824
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 3
        70: .line 2825
            iconst_0
            ireturn
        71: .line 2832
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            istore 1 /* c */
        start local 1 // int c
        72: .line 2833
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.TEXT_CHARS:[I
            iload 1 /* c */
            sipush 255
            iand
            iaload
            tableswitch { // 5 - 7
                    5: 73
                    6: 75
                    7: 86
              default: 109
          }
        73: .line 2836
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.skipUtf8_2:(I)V
        74: .line 2837
            goto 110
        75: .line 2842
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
        76: .line 2843
            iload 1 /* c */
            bipush 8
            ishr
            istore 3 /* c2 */
        start local 3 // int c2
        77: .line 2844
            iload 3 /* c2 */
            ifne 84
        78: .line 2845
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 81
        79: .line 2846
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        80: .line 2847
            iconst_0
            ireturn
        81: .line 2849
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        82: .line 2850
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            pop
        end local 4 // int c3
        83: .line 2851
            goto 110
        84: .line 2852
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            pop
        end local 3 // int c2
        end local 2 // int next
        85: .line 2855
            goto 110
        86: .line 2858
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
        87: .line 2860
            iload 1 /* c */
            bipush 8
            ishr
            ifne 98
        88: .line 2861
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 91
        89: .line 2862
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        90: .line 2863
            iconst_0
            ireturn
        91: .line 2865
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        92: .line 2866
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 95
        93: .line 2867
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            iload 3 /* c2 */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        94: .line 2868
            iconst_0
            ireturn
        95: .line 2870
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        96: .line 2871
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 3 /* c2 */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            pop
        end local 4 // int c3
        end local 3 // int c2
        97: .line 2872
            goto 110
        98: .line 2873
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 8
            ishr
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        99: .line 2874
            iload 1 /* c */
            bipush 16
            ishr
            istore 4 /* c3 */
        start local 4 // int c3
       100: .line 2876
            iload 4 /* c3 */
            ifne 107
       101: .line 2877
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 104
       102: .line 2878
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
       103: .line 2879
            iconst_0
            ireturn
       104: .line 2881
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
       105: .line 2882
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            pop
       106: .line 2883
            goto 110
       107: .line 2884
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 4 /* c3 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            pop
        end local 4 // int c3
        end local 3 // int c2
        end local 2 // int next
       108: .line 2888
            goto 110
       109: .line 2890
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
       110: .line 2892
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
       111: .line 2893
            iconst_1
            ireturn
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0  112     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
           10   21     1     b  B
           14   21     2     n  Lcom/fasterxml/aalto/in/PName;
           18   21     3    ch  I
           45   51     1     n  Lcom/fasterxml/aalto/in/PName;
           48   51     2    ch  I
           60   66     1     b  B
           72  112     1     c  I
           76   85     2  next  I
           77   85     3    c2  I
           82   83     4    c3  I
           87  108     2  next  I
           92   97     3    c2  I
           96   97     4    c3  I
           99  108     3    c2  I
          100  108     4    c3  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private int skipEntityInCharacters();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2910
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            istore 1 /* ptr */
        start local 1 // int ptr
         1: .line 2911
            iload 1 /* ptr */
            iconst_3
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmpgt 40
         2: .line 2912
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         3: .line 2913
            iload 2 /* b */
            bipush 35
            if_icmpne 7
         4: .line 2914
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 6
         5: .line 2915
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInCharacters:(I)I
            ireturn
         6: .line 2917
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* ptr */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInCharacters:(I)I
            ireturn
         7: .line 2920
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 97
            if_icmpne 22
         8: .line 2921
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iinc 1 /* ptr */ 1
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
         9: .line 2922
            iload 2 /* b */
            bipush 109
            if_icmpne 15
        10: .line 2923
            iload 1 /* ptr */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmpge 40
        11: .line 2924
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 112
            if_icmpne 40
        12: .line 2925
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        13: .line 2926
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_2
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        14: .line 2927
            bipush 38
            ireturn
        15: .line 2929
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 112
            if_icmpne 40
        16: .line 2930
            iload 1 /* ptr */
            iconst_2
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmpge 40
        17: .line 2931
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 111
            if_icmpne 40
        18: .line 2932
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 115
            if_icmpne 40
        19: .line 2933
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_2
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        20: .line 2934
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_3
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        21: .line 2935
            bipush 39
            ireturn
        22: .line 2938
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 103
            if_icmpne 27
        23: .line 2939
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 116
            if_icmpne 40
        24: .line 2940
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        25: .line 2941
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_2
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        26: .line 2942
            bipush 62
            ireturn
        27: .line 2944
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 108
            if_icmpne 32
        28: .line 2945
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 116
            if_icmpne 40
        29: .line 2946
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        30: .line 2947
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_2
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        31: .line 2948
            bipush 60
            ireturn
        32: .line 2950
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 113
            if_icmpne 40
        33: .line 2951
            iload 1 /* ptr */
            iconst_3
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmpge 40
        34: .line 2952
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 117
            if_icmpne 40
        35: .line 2953
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_1
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 111
            if_icmpne 40
        36: .line 2954
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_2
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 116
            if_icmpne 40
        37: .line 2955
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            iload 1 /* ptr */
            iconst_3
            iadd
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 59
            if_icmpne 40
        38: .line 2956
            aload 0 /* this */
            iload 1 /* ptr */
            iconst_4
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        39: .line 2957
            bipush 39
            ireturn
        end local 2 // byte b
        40: .line 2962
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int ptr
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   41     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   41     1   ptr  I
            3   40     2     b  B
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected boolean skipCoalescedText();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2973
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
         1: .line 2974
            iconst_0
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected boolean handleAttrValue();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 2992
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 4
         1: .line 2993
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAttrValuePending:()Z
            ifne 3
         2: .line 2994
            iconst_0
            ireturn
         3: .line 2996
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         4: .line 2999
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.continueValue:()[C
            astore 1 /* attrBuffer */
        start local 1 // char[] attrBuffer
         5: .line 3000
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.ATTR_CHARS:[I
            astore 2 /* TYPES */
        start local 2 // int[] TYPES
         6: .line 3001
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
            istore 3 /* quoteChar */
        start local 3 // int quoteChar
         7: .line 3009
      StackMap locals: char[] int[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 9
         8: .line 3010
            iconst_0
            ireturn
         9: .line 3012
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            aload 1 /* attrBuffer */
            arraylength
            if_icmplt 11
        10: .line 3013
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.valueBufferFull:()[C
            astore 1 /* attrBuffer */
        11: .line 3015
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 5 /* max */
        start local 5 // int max
        12: .line 3017
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 1 /* attrBuffer */
            arraylength
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            isub
            iadd
            istore 6 /* max2 */
        start local 6 // int max2
        13: .line 3018
            iload 6 /* max2 */
            iload 5 /* max */
            if_icmpge 20
        14: .line 3019
            iload 6 /* max2 */
            istore 5 /* max */
        end local 6 // int max2
        15: .line 3022
            goto 20
        16: .line 3023
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int[] int top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c */
        start local 4 // int c
        17: .line 3024
            aload 2 /* TYPES */
            iload 4 /* c */
            iaload
            ifeq 19
        18: .line 3025
            goto 22
        19: .line 3027
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int[] int int int
      StackMap stack:
            aload 1 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            iload 4 /* c */
            i2c
            castore
        end local 4 // int c
        20: .line 3022
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int[] int top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iload 5 /* max */
            if_icmplt 16
        end local 5 // int max
        21: .line 3008
            goto 7
        start local 4 // int c
        22: .line 3031
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner char[] int[] int int
      StackMap stack:
            aload 2 /* TYPES */
            iload 4 /* c */
            iaload
            tableswitch { // 1 - 14
                    1: 23
                    2: 24
                    3: 29
                    4: 60
                    5: 32
                    6: 37
                    7: 45
                    8: 30
                    9: 61
                   10: 62
                   11: 76
                   12: 76
                   13: 76
                   14: 74
              default: 76
          }
        23: .line 3033
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 4 /* c */
        24: .line 3035
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 27
        25: .line 3036
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        26: .line 3037
            iconst_0
            ireturn
        27: .line 3039
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 29
        28: .line 3040
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        29: .line 3044
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        30: .line 3048
      StackMap locals:
      StackMap stack:
            bipush 32
            istore 4 /* c */
        31: .line 3049
            goto 76
        32: .line 3051
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 35
        33: .line 3052
            aload 0 /* this */
            iload 4 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        34: .line 3053
            iconst_0
            ireturn
        35: .line 3055
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 4 /* c */
        36: .line 3056
            goto 76
        37: .line 3058
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 43
        38: .line 3059
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 41
        39: .line 3060
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* d */
        start local 5 // int d
        40: .line 3061
            iload 4 /* c */
            iload 5 /* d */
            bipush 8
            ishl
            ior
            istore 4 /* c */
        end local 5 // int d
        41: .line 3063
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        42: .line 3064
            iconst_0
            ireturn
        43: .line 3066
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 4 /* c */
        44: .line 3067
            goto 76
        45: .line 3069
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 54
        46: .line 3070
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 52
        47: .line 3071
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* d */
        start local 5 // int d
        48: .line 3072
            iload 4 /* c */
            iload 5 /* d */
            bipush 8
            ishl
            ior
            istore 4 /* c */
        49: .line 3073
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 52
        50: .line 3074
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* d */
        51: .line 3075
            iload 4 /* c */
            iload 5 /* d */
            bipush 16
            ishl
            ior
            istore 4 /* c */
        end local 5 // int d
        52: .line 3078
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        53: .line 3079
            iconst_0
            ireturn
        54: .line 3081
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 4 /* c */
        55: .line 3083
            aload 1 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            ldc 55296
            iload 4 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        56: .line 3084
            ldc 56320
            iload 4 /* c */
            sipush 1023
            iand
            ior
            istore 4 /* c */
        57: .line 3085
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            aload 1 /* attrBuffer */
            arraylength
            if_icmplt 76
        58: .line 3086
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.valueBufferFull:()[C
            astore 1 /* attrBuffer */
        59: .line 3088
            goto 76
        60: .line 3090
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        61: .line 3092
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            ldc "'<' not allowed in attribute value"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        62: .line 3094
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleEntityInAttributeValue:()I
            istore 4 /* c */
        63: .line 3095
            iload 4 /* c */
            ifgt 67
        64: .line 3096
            iload 4 /* c */
            ifge 66
        65: .line 3097
            iconst_0
            ireturn
        66: .line 3099
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpandedEntityInAttr:(Lcom/fasterxml/aalto/in/PName;Z)V
        67: .line 3102
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            bipush 16
            ishr
            ifeq 76
        68: .line 3103
            iload 4 /* c */
            ldc 65536
            isub
            istore 4 /* c */
        69: .line 3104
            aload 1 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            ldc 55296
            iload 4 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        70: .line 3105
            ldc 56320
            iload 4 /* c */
            sipush 1023
            iand
            ior
            istore 4 /* c */
        71: .line 3106
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            aload 1 /* attrBuffer */
            arraylength
            if_icmplt 76
        72: .line 3107
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.valueBufferFull:()[C
            astore 1 /* attrBuffer */
        73: .line 3110
            goto 76
        74: .line 3112
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            iload 3 /* quoteChar */
            if_icmpne 76
        75: .line 3113
            goto 78
        76: .line 3120
      StackMap locals:
      StackMap stack:
            aload 1 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            iload 4 /* c */
            i2c
            castore
        end local 4 // int c
        77: .line 3004
            goto 7
        78: .line 3123
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // int quoteChar
        end local 2 // int[] TYPES
        end local 1 // char[] attrBuffer
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   79     0        this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            5   79     1  attrBuffer  [C
            6   79     2       TYPES  [I
            7   79     3   quoteChar  I
           17   20     4           c  I
           22   77     4           c  I
           12   21     5         max  I
           13   15     6        max2  I
           40   41     5           d  I
           48   52     5           d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private final boolean handleAttrValuePending();
    descriptor: ()Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3132
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            iconst_m1
            if_icmpne 8
         1: .line 3133
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePartialCR:()Z
            ifne 3
         2: .line 3134
            iconst_0
            ireturn
         3: .line 3136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.continueValue:()[C
            astore 1 /* attrBuffer */
        start local 1 // char[] attrBuffer
         4: .line 3137
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            aload 1 /* attrBuffer */
            arraylength
            if_icmplt 6
         5: .line 3138
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.valueBufferFull:()[C
            astore 1 /* attrBuffer */
         6: .line 3141
      StackMap locals: char[]
      StackMap stack:
            aload 1 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            bipush 32
            castore
         7: .line 3142
            iconst_1
            ireturn
        end local 1 // char[] attrBuffer
         8: .line 3145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 10
         9: .line 3146
            iconst_0
            ireturn
        10: .line 3150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -60
            if_icmpne 34
        11: .line 3151
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
        12: .line 3152
            iload 2 /* b */
            bipush 35
            if_icmpne 25
        13: .line 3153
            aload 0 /* this */
            bipush -61
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        14: .line 3154
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 16
        15: .line 3155
            iconst_0
            ireturn
        16: .line 3157
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 23
        17: .line 3158
            aload 0 /* this */
            bipush -62
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        18: .line 3159
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        19: .line 3160
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 21
        20: .line 3161
            iconst_0
            ireturn
        21: .line 3163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        22: .line 3164
            goto 63
        end local 1 // int ch
        23: .line 3165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        24: .line 3167
            goto 63
        end local 1 // int ch
        25: .line 3168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewEntityName:(B)Lcom/fasterxml/aalto/in/PName;
            astore 3 /* entityName */
        start local 3 // com.fasterxml.aalto.in.PName entityName
        26: .line 3169
            aload 3 /* entityName */
            ifnonnull 29
        27: .line 3170
            aload 0 /* this */
            bipush -63
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        28: .line 3171
            iconst_0
            ireturn
        29: .line 3173
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 3 /* entityName */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 1 /* ch */
        start local 1 // int ch
        30: .line 3174
            iload 1 /* ch */
            ifne 63
        31: .line 3175
            aload 0 /* this */
            aload 3 /* entityName */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        32: .line 3176
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpandedEntityInAttr:(Lcom/fasterxml/aalto/in/PName;Z)V
        end local 3 // com.fasterxml.aalto.in.PName entityName
        end local 2 // byte b
        33: .line 3179
            goto 63
        end local 1 // int ch
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner
      StackMap stack:
        34: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -61
            if_icmpne 44
        35: .line 3180
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 42
        36: .line 3181
            aload 0 /* this */
            bipush -62
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        37: .line 3182
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        38: .line 3183
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 40
        39: .line 3184
            iconst_0
            ireturn
        40: .line 3186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        41: .line 3187
            goto 63
        end local 1 // int ch
        42: .line 3188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        43: .line 3190
            goto 63
        end local 1 // int ch
      StackMap locals:
      StackMap stack:
        44: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -62
            if_icmpne 47
        45: .line 3191
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        46: .line 3192
            goto 63
        end local 1 // int ch
      StackMap locals:
      StackMap stack:
        47: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -63
            if_icmpne 56
        48: .line 3193
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseEntityName:()Lcom/fasterxml/aalto/in/PName;
            astore 2 /* entityName */
        start local 2 // com.fasterxml.aalto.in.PName entityName
        49: .line 3194
            aload 2 /* entityName */
            ifnonnull 51
        50: .line 3195
            iconst_0
            ireturn
        51: .line 3197
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner top com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 2 /* entityName */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 1 /* ch */
        start local 1 // int ch
        52: .line 3198
            iload 1 /* ch */
            ifne 63
        53: .line 3199
            aload 0 /* this */
            aload 2 /* entityName */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        54: .line 3200
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpandedEntityInAttr:(Lcom/fasterxml/aalto/in/PName;Z)V
        end local 2 // com.fasterxml.aalto.in.PName entityName
        55: .line 3202
            goto 63
        end local 1 // int ch
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner
      StackMap stack:
        56: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -64
            if_icmpne 59
        57: .line 3203
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        58: .line 3204
            goto 63
        end local 1 // int ch
      StackMap locals:
      StackMap stack:
        59: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -65
            if_icmpne 62
        60: .line 3205
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        61: .line 3206
            goto 63
        end local 1 // int ch
        62: .line 3209
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAttrValuePendingUTF8:()I
            istore 1 /* ch */
        start local 1 // int ch
        63: .line 3211
      StackMap locals: int
      StackMap stack:
            iload 1 /* ch */
            ifne 65
        64: .line 3212
            iconst_0
            ireturn
        65: .line 3215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.continueValue:()[C
            astore 2 /* attrBuffer */
        start local 2 // char[] attrBuffer
        66: .line 3217
            iload 1 /* ch */
            bipush 16
            ishr
            ifeq 72
        67: .line 3218
            iload 1 /* ch */
            ldc 65536
            isub
            istore 1 /* ch */
        68: .line 3219
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            aload 2 /* attrBuffer */
            arraylength
            if_icmplt 70
        69: .line 3220
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.valueBufferFull:()[C
            astore 2 /* attrBuffer */
        70: .line 3222
      StackMap locals: char[]
      StackMap stack:
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            ldc 55296
            iload 1 /* ch */
            bipush 10
            ishr
            ior
            i2c
            castore
        71: .line 3223
            ldc 56320
            iload 1 /* ch */
            sipush 1023
            iand
            ior
            istore 1 /* ch */
        72: .line 3225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            aload 2 /* attrBuffer */
            arraylength
            if_icmplt 74
        73: .line 3226
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._attrCollector:Lcom/fasterxml/aalto/in/AttributeCollector;
            invokevirtual com.fasterxml.aalto.in.AttributeCollector.valueBufferFull:()[C
            astore 2 /* attrBuffer */
        74: .line 3228
      StackMap locals:
      StackMap stack:
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrPtr:I
            iload 1 /* ch */
            i2c
            castore
        75: .line 3229
            iconst_1
            ireturn
        end local 2 // char[] attrBuffer
        end local 1 // int ch
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   76     0        this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            4    8     1  attrBuffer  [C
           22   23     1          ch  I
           24   25     1          ch  I
           30   34     1          ch  I
           41   42     1          ch  I
           43   44     1          ch  I
           46   47     1          ch  I
           52   56     1          ch  I
           58   59     1          ch  I
           61   62     1          ch  I
           63   76     1          ch  I
           12   33     2           b  B
           26   33     3  entityName  Lcom/fasterxml/aalto/in/PName;
           49   55     2  entityName  Lcom/fasterxml/aalto/in/PName;
           66   76     2  attrBuffer  [C
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private final int handleAttrValuePendingUTF8();
    descriptor: ()I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3235
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            istore 1 /* c */
        start local 1 // int c
         1: .line 3236
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         2: .line 3239
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.TEXT_CHARS:[I
            iload 1 /* c */
            sipush 255
            iand
            iaload
            tableswitch { // 5 - 7
                    5: 3
                    6: 4
                    7: 15
              default: 38
          }
         3: .line 3242
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            ireturn
         4: .line 3246
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
         5: .line 3247
            iload 1 /* c */
            bipush 8
            ishr
            istore 3 /* c2 */
        start local 3 // int c2
         6: .line 3248
            iload 3 /* c2 */
            ifne 13
         7: .line 3249
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 10
         8: .line 3250
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         9: .line 3251
            iconst_0
            ireturn
        10: .line 3253
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        11: .line 3254
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            istore 1 /* c */
        end local 4 // int c3
        12: .line 3255
            goto 14
        13: .line 3256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(III)I
            istore 1 /* c */
        14: .line 3258
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            ireturn
        end local 3 // int c2
        end local 2 // int next
        15: .line 3262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* next */
        start local 2 // int next
        16: .line 3264
            iload 1 /* c */
            bipush 8
            ishr
            ifne 27
        17: .line 3265
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 20
        18: .line 3266
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        19: .line 3267
            iconst_0
            ireturn
        20: .line 3269
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        21: .line 3270
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 24
        22: .line 3271
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 8
            ishl
            ior
            iload 3 /* c2 */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        23: .line 3272
            iconst_0
            ireturn
        24: .line 3274
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        start local 4 // int c3
        25: .line 3275
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            iload 3 /* c2 */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        end local 4 // int c3
        end local 3 // int c2
        26: .line 3276
            goto 37
        27: .line 3277
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 8
            ishr
            sipush 255
            iand
            istore 3 /* c2 */
        start local 3 // int c2
        28: .line 3278
            iload 1 /* c */
            bipush 16
            ishr
            istore 4 /* c3 */
        start local 4 // int c3
        29: .line 3280
            iload 4 /* c3 */
            ifne 36
        30: .line 3281
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 33
        31: .line 3282
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* next */
            bipush 16
            ishl
            ior
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        32: .line 3283
            iconst_0
            ireturn
        33: .line 3285
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c3 */
        34: .line 3286
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 2 /* next */
            iload 4 /* c3 */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        35: .line 3287
            goto 37
        36: .line 3288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            sipush 255
            iand
            iload 3 /* c2 */
            iload 4 /* c3 */
            iload 2 /* next */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(IIII)I
            istore 1 /* c */
        end local 4 // int c3
        end local 3 // int c2
        37: .line 3291
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            ireturn
        end local 2 // int next
        38: .line 3294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
        39: .line 3295
            iconst_0
            ireturn
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   40     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   40     1     c  I
            5   15     2  next  I
            6   15     3    c2  I
           11   12     4    c3  I
           16   38     2  next  I
           21   26     3    c2  I
           25   26     4    c3  I
           28   37     3    c2  I
           29   37     4    c3  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private final int handleDecEntityInAttribute(boolean);
    descriptor: (Z)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // boolean starting
         0: .line 3301
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         1: .line 3302
            iload 1 /* starting */
            ifeq 21
         2: .line 3303
            iload 2 /* b */
            istore 3 /* ch */
        start local 3 // int ch
         3: .line 3304
            iload 3 /* ch */
            bipush 48
            if_icmplt 4
            iload 3 /* ch */
            bipush 57
            if_icmple 5
         4: .line 3305
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a digit (0 - 9) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
         5: .line 3307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -64
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         6: .line 3308
            aload 0 /* this */
            iload 3 /* ch */
            bipush 48
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
         7: .line 3309
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 9
         8: .line 3310
            iconst_0
            ireturn
         9: .line 3312
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        end local 3 // int ch
        10: .line 3314
            goto 21
        11: .line 3315
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 48
            isub
            istore 3 /* ch */
        start local 3 // int ch
        12: .line 3316
            iload 3 /* ch */
            iflt 13
            iload 3 /* ch */
            bipush 9
            if_icmple 14
        13: .line 3317
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a digit (0 - 9) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        14: .line 3319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            bipush 10
            imul
            iload 3 /* ch */
            iadd
            istore 4 /* value */
        start local 4 // int value
        15: .line 3320
            aload 0 /* this */
            iload 4 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        16: .line 3321
            iload 4 /* value */
            ldc 1114111
            if_icmple 18
        17: .line 3322
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportEntityOverflow:()V
        18: .line 3324
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 20
        19: .line 3325
            iconst_0
            ireturn
        20: .line 3327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        end local 4 // int value
        end local 3 // int ch
        21: .line 3314
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 59
            if_icmpne 11
        22: .line 3329
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.verifyXmlChar:(I)V
        23: .line 3330
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        24: .line 3331
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            ireturn
        end local 2 // byte b
        end local 1 // boolean starting
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   25     0      this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   25     1  starting  Z
            1   25     2         b  B
            3   10     3        ch  I
           12   21     3        ch  I
           15   21     4     value  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
          Name  Flags
      starting  

  private final int handleHexEntityInAttribute(boolean);
    descriptor: (Z)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // boolean starting
         0: .line 3337
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
         1: .line 3338
            iload 1 /* starting */
            ifeq 37
         2: .line 3339
            iload 2 /* b */
            istore 3 /* ch */
        start local 3 // int ch
         3: .line 3340
            iload 3 /* ch */
            bipush 57
            if_icmpgt 6
            iload 3 /* ch */
            bipush 48
            if_icmplt 6
         4: .line 3341
            iinc 3 /* ch */ -48
         5: .line 3342
            goto 13
      StackMap locals: int int
      StackMap stack:
         6: iload 3 /* ch */
            bipush 70
            if_icmpgt 9
            iload 3 /* ch */
            bipush 65
            if_icmplt 9
         7: .line 3343
            bipush 10
            iload 3 /* ch */
            bipush 65
            isub
            iadd
            istore 3 /* ch */
         8: .line 3344
            goto 13
      StackMap locals:
      StackMap stack:
         9: iload 3 /* ch */
            bipush 102
            if_icmpgt 12
            iload 3 /* ch */
            bipush 97
            if_icmplt 12
        10: .line 3345
            bipush 10
            iload 3 /* ch */
            bipush 97
            isub
            iadd
            istore 3 /* ch */
        11: .line 3346
            goto 13
        12: .line 3347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a hex digit (0-9a-fA-F) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        13: .line 3349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush -65
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        14: .line 3350
            aload 0 /* this */
            iload 3 /* ch */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        15: .line 3351
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 17
        16: .line 3352
            iconst_0
            ireturn
        17: .line 3354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        end local 3 // int ch
        18: .line 3356
            goto 37
        19: .line 3357
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            istore 3 /* ch */
        start local 3 // int ch
        20: .line 3358
            iload 3 /* ch */
            bipush 57
            if_icmpgt 23
            iload 3 /* ch */
            bipush 48
            if_icmplt 23
        21: .line 3359
            iinc 3 /* ch */ -48
        22: .line 3360
            goto 30
      StackMap locals: int
      StackMap stack:
        23: iload 3 /* ch */
            bipush 70
            if_icmpgt 26
            iload 3 /* ch */
            bipush 65
            if_icmplt 26
        24: .line 3361
            bipush 10
            iload 3 /* ch */
            bipush 65
            isub
            iadd
            istore 3 /* ch */
        25: .line 3362
            goto 30
      StackMap locals:
      StackMap stack:
        26: iload 3 /* ch */
            bipush 102
            if_icmpgt 29
            iload 3 /* ch */
            bipush 97
            if_icmplt 29
        27: .line 3363
            bipush 10
            iload 3 /* ch */
            bipush 97
            isub
            iadd
            istore 3 /* ch */
        28: .line 3364
            goto 30
        29: .line 3365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeCharForError:(B)I
            ldc " expected a hex digit (0-9a-fA-F) for character entity"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        30: .line 3367
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            iconst_4
            ishl
            iload 3 /* ch */
            iadd
            istore 4 /* value */
        start local 4 // int value
        31: .line 3368
            aload 0 /* this */
            iload 4 /* value */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
        32: .line 3369
            iload 4 /* value */
            ldc 1114111
            if_icmple 34
        33: .line 3370
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportEntityOverflow:()V
        34: .line 3372
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 36
        35: .line 3373
            iconst_0
            ireturn
        36: .line 3375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        end local 4 // int value
        end local 3 // int ch
        37: .line 3356
      StackMap locals:
      StackMap stack:
            iload 2 /* b */
            bipush 59
            if_icmpne 19
        38: .line 3377
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.verifyXmlChar:(I)V
        39: .line 3378
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        40: .line 3379
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._entityValue:I
            ireturn
        end local 2 // byte b
        end local 1 // boolean starting
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   41     0      this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   41     1  starting  Z
            1   41     2         b  B
            3   18     3        ch  I
           20   37     3        ch  I
           31   37     4     value  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
          Name  Flags
      starting  

  protected int handleEntityInAttributeValue();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3390
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 3
         1: .line 3391
            aload 0 /* this */
            bipush -60
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         2: .line 3392
            iconst_m1
            ireturn
         3: .line 3394
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 1 /* b */
        start local 1 // byte b
         4: .line 3395
            iload 1 /* b */
            bipush 35
            if_icmpne 19
         5: .line 3396
            aload 0 /* this */
            bipush -61
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         6: .line 3397
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 8
         7: .line 3398
            iconst_m1
            ireturn
         8: .line 3401
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 15
         9: .line 3402
            aload 0 /* this */
            bipush -62
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        10: .line 3403
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        11: .line 3404
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 13
        12: .line 3405
            iconst_m1
            ireturn
        13: .line 3407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 2 /* ch */
        start local 2 // int ch
        14: .line 3408
            goto 16
        end local 2 // int ch
        15: .line 3409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInAttribute:(Z)I
            istore 2 /* ch */
        start local 2 // int ch
        16: .line 3411
      StackMap locals: int
      StackMap stack:
            iload 2 /* ch */
            ifne 18
        17: .line 3412
            iconst_m1
            ireturn
        18: .line 3414
      StackMap locals:
      StackMap stack:
            iload 2 /* ch */
            ireturn
        end local 2 // int ch
        19: .line 3416
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewEntityName:(B)Lcom/fasterxml/aalto/in/PName;
            astore 2 /* entityName */
        start local 2 // com.fasterxml.aalto.in.PName entityName
        20: .line 3417
            aload 2 /* entityName */
            ifnonnull 23
        21: .line 3418
            aload 0 /* this */
            bipush -63
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        22: .line 3419
            iconst_m1
            ireturn
        23: .line 3421
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 2 /* entityName */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 3 /* ch */
        start local 3 // int ch
        24: .line 3422
            iload 3 /* ch */
            ifeq 26
        25: .line 3423
            iload 3 /* ch */
            ireturn
        26: .line 3425
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* entityName */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        27: .line 3426
            iconst_0
            ireturn
        end local 3 // int ch
        end local 2 // com.fasterxml.aalto.in.PName entityName
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   28     0        this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            4   28     1           b  B
           14   15     2          ch  I
           16   19     2          ch  I
           20   28     2  entityName  Lcom/fasterxml/aalto/in/PName;
           24   28     3          ch  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected boolean handleNsDecl();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3432
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._charTypes:Lcom/fasterxml/aalto/util/XmlCharTypes;
            getfield com.fasterxml.aalto.util.XmlCharTypes.ATTR_CHARS:[I
            astore 1 /* TYPES */
        start local 1 // int[] TYPES
         1: .line 3433
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
            astore 2 /* attrBuffer */
        start local 2 // char[] attrBuffer
         2: .line 3434
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrQuote:B
            istore 3 /* quoteChar */
        start local 3 // int quoteChar
         3: .line 3437
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            ifeq 7
         4: .line 3438
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleNsValuePending:()Z
            ifne 6
         5: .line 3439
            iconst_0
            ireturn
         6: .line 3441
      StackMap locals: int[] char[] int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         7: .line 3450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 9
         8: .line 3451
            iconst_0
            ireturn
         9: .line 3453
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            aload 2 /* attrBuffer */
            arraylength
            if_icmplt 11
        10: .line 3454
            aload 0 /* this */
            aload 2 /* attrBuffer */
            aload 2 /* attrBuffer */
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([CI)[C
            dup
            astore 2 /* attrBuffer */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
        11: .line 3456
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            istore 5 /* max */
        start local 5 // int max
        12: .line 3458
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 2 /* attrBuffer */
            arraylength
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            isub
            iadd
            istore 6 /* max2 */
        start local 6 // int max2
        13: .line 3459
            iload 6 /* max2 */
            iload 5 /* max */
            if_icmpge 20
        14: .line 3460
            iload 6 /* max2 */
            istore 5 /* max */
        end local 6 // int max2
        15: .line 3463
            goto 20
        16: .line 3464
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] char[] int top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 4 /* c */
        start local 4 // int c
        17: .line 3465
            aload 1 /* TYPES */
            iload 4 /* c */
            iaload
            ifeq 19
        18: .line 3466
            goto 22
        19: .line 3468
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] char[] int int int
      StackMap stack:
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            iload 4 /* c */
            i2c
            castore
        end local 4 // int c
        20: .line 3463
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] char[] int top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iload 5 /* max */
            if_icmplt 16
        end local 5 // int max
        21: .line 3449
            goto 7
        start local 4 // int c
        22: .line 3472
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner int[] char[] int int
      StackMap stack:
            aload 1 /* TYPES */
            iload 4 /* c */
            iaload
            tableswitch { // 1 - 14
                    1: 23
                    2: 24
                    3: 29
                    4: 60
                    5: 32
                    6: 37
                    7: 45
                    8: 30
                    9: 61
                   10: 62
                   11: 76
                   12: 76
                   13: 76
                   14: 74
              default: 76
          }
        23: .line 3474
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 4 /* c */
        24: .line 3476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 27
        25: .line 3477
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        26: .line 3478
            iconst_0
            ireturn
        27: .line 3480
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 29
        28: .line 3481
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        29: .line 3485
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.markLF:()V
        30: .line 3489
      StackMap locals:
      StackMap stack:
            bipush 32
            istore 4 /* c */
        31: .line 3490
            goto 76
        32: .line 3492
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 35
        33: .line 3493
            aload 0 /* this */
            iload 4 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        34: .line 3494
            iconst_0
            ireturn
        35: .line 3496
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_2:(I)I
            istore 4 /* c */
        36: .line 3497
            goto 76
        37: .line 3499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_2
            if_icmpge 43
        38: .line 3500
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 41
        39: .line 3501
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* d */
        start local 5 // int d
        40: .line 3502
            iload 4 /* c */
            iload 5 /* d */
            bipush 8
            ishl
            ior
            istore 4 /* c */
        end local 5 // int d
        41: .line 3504
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        42: .line 3505
            iconst_0
            ireturn
        43: .line 3507
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_3:(I)I
            istore 4 /* c */
        44: .line 3508
            goto 76
        45: .line 3510
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            isub
            iconst_3
            if_icmpge 54
        46: .line 3511
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 52
        47: .line 3512
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* d */
        start local 5 // int d
        48: .line 3513
            iload 4 /* c */
            iload 5 /* d */
            bipush 8
            ishl
            ior
            istore 4 /* c */
        49: .line 3514
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            if_icmple 52
        50: .line 3515
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 5 /* d */
        51: .line 3516
            iload 4 /* c */
            iload 5 /* d */
            bipush 16
            ishl
            ior
            istore 4 /* c */
        end local 5 // int d
        52: .line 3519
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        53: .line 3520
            iconst_0
            ireturn
        54: .line 3522
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeUtf8_4:(I)I
            istore 4 /* c */
        55: .line 3524
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            ldc 55296
            iload 4 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        56: .line 3525
            ldc 56320
            iload 4 /* c */
            sipush 1023
            iand
            ior
            istore 4 /* c */
        57: .line 3526
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            aload 2 /* attrBuffer */
            arraylength
            if_icmplt 76
        58: .line 3527
            aload 0 /* this */
            aload 2 /* attrBuffer */
            aload 2 /* attrBuffer */
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([CI)[C
            dup
            astore 2 /* attrBuffer */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
        59: .line 3529
            goto 76
        60: .line 3531
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidInitial:(I)V
        61: .line 3533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            ldc "'<' not allowed in attribute value"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
        62: .line 3535
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleEntityInAttributeValue:()I
            istore 4 /* c */
        63: .line 3536
            iload 4 /* c */
            ifgt 67
        64: .line 3537
            iload 4 /* c */
            ifge 66
        65: .line 3538
            iconst_0
            ireturn
        66: .line 3540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpandedEntityInAttr:(Lcom/fasterxml/aalto/in/PName;Z)V
        67: .line 3543
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            bipush 16
            ishr
            ifeq 76
        68: .line 3544
            iload 4 /* c */
            ldc 65536
            isub
            istore 4 /* c */
        69: .line 3545
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            ldc 55296
            iload 4 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        70: .line 3546
            ldc 56320
            iload 4 /* c */
            sipush 1023
            iand
            ior
            istore 4 /* c */
        71: .line 3547
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            aload 2 /* attrBuffer */
            arraylength
            if_icmplt 76
        72: .line 3548
            aload 0 /* this */
            aload 2 /* attrBuffer */
            aload 2 /* attrBuffer */
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([CI)[C
            dup
            astore 2 /* attrBuffer */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
        73: .line 3551
            goto 76
        74: .line 3553
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            iload 3 /* quoteChar */
            if_icmpne 76
        75: .line 3554
            goto 78
        76: .line 3561
      StackMap locals:
      StackMap stack:
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            iload 4 /* c */
            i2c
            castore
        end local 4 // int c
        77: .line 3445
            goto 7
        78: .line 3568
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            istore 4 /* attrPtr */
        start local 4 // int attrPtr
        79: .line 3569
            iload 4 /* attrPtr */
            ifne 82
        80: .line 3570
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            ldc ""
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.bindNs:(Lcom/fasterxml/aalto/in/PName;Ljava/lang/String;)V
        81: .line 3571
            goto 84
        82: .line 3572
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._config:Lcom/fasterxml/aalto/in/ReaderConfig;
            aload 2 /* attrBuffer */
            iload 4 /* attrPtr */
            invokevirtual com.fasterxml.aalto.in.ReaderConfig.canonicalizeURI:([CI)Ljava/lang/String;
            astore 5 /* uri */
        start local 5 // java.lang.String uri
        83: .line 3573
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            aload 5 /* uri */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.bindNs:(Lcom/fasterxml/aalto/in/PName;Ljava/lang/String;)V
        end local 5 // java.lang.String uri
        84: .line 3575
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 4 // int attrPtr
        end local 3 // int quoteChar
        end local 2 // char[] attrBuffer
        end local 1 // int[] TYPES
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   85     0        this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   85     1       TYPES  [I
            2   85     2  attrBuffer  [C
            3   85     3   quoteChar  I
           17   20     4           c  I
           22   77     4           c  I
           12   21     5         max  I
           13   15     6        max2  I
           40   41     5           d  I
           48   52     5           d  I
           79   85     4     attrPtr  I
           83   84     5         uri  Ljava/lang/String;
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  private final boolean handleNsValuePending();
    descriptor: ()Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3584
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            iconst_m1
            if_icmpne 8
         1: .line 3585
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handlePartialCR:()Z
            ifne 3
         2: .line 3586
            iconst_0
            ireturn
         3: .line 3588
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
            astore 1 /* attrBuffer */
        start local 1 // char[] attrBuffer
         4: .line 3589
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            aload 1 /* attrBuffer */
            arraylength
            if_icmplt 6
         5: .line 3590
            aload 0 /* this */
            aload 1 /* attrBuffer */
            aload 1 /* attrBuffer */
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([CI)[C
            dup
            astore 1 /* attrBuffer */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
         6: .line 3593
      StackMap locals: char[]
      StackMap stack:
            aload 1 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            bipush 32
            castore
         7: .line 3594
            iconst_1
            ireturn
        end local 1 // char[] attrBuffer
         8: .line 3598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 10
         9: .line 3599
            iconst_0
            ireturn
        10: .line 3604
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -60
            if_icmpne 34
        11: .line 3605
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // byte b
        12: .line 3606
            iload 2 /* b */
            bipush 35
            if_icmpne 25
        13: .line 3607
            aload 0 /* this */
            bipush -61
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        14: .line 3608
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 16
        15: .line 3609
            iconst_0
            ireturn
        16: .line 3611
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner top int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 23
        17: .line 3612
            aload 0 /* this */
            bipush -62
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        18: .line 3613
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        19: .line 3614
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 21
        20: .line 3615
            iconst_0
            ireturn
        21: .line 3617
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        22: .line 3618
            goto 63
        end local 1 // int ch
        23: .line 3619
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        24: .line 3621
            goto 63
        end local 1 // int ch
        25: .line 3622
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* b */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseNewEntityName:(B)Lcom/fasterxml/aalto/in/PName;
            astore 3 /* entityName */
        start local 3 // com.fasterxml.aalto.in.PName entityName
        26: .line 3623
            aload 3 /* entityName */
            ifnonnull 29
        27: .line 3624
            aload 0 /* this */
            bipush -63
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        28: .line 3625
            iconst_0
            ireturn
        29: .line 3627
      StackMap locals: com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 3 /* entityName */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 1 /* ch */
        start local 1 // int ch
        30: .line 3628
            iload 1 /* ch */
            ifne 63
        31: .line 3629
            aload 0 /* this */
            aload 3 /* entityName */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        32: .line 3630
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpandedEntityInAttr:(Lcom/fasterxml/aalto/in/PName;Z)V
        end local 3 // com.fasterxml.aalto.in.PName entityName
        end local 2 // byte b
        33: .line 3633
            goto 63
        end local 1 // int ch
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner
      StackMap stack:
        34: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -61
            if_icmpne 44
        35: .line 3634
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 120
            if_icmpne 42
        36: .line 3635
            aload 0 /* this */
            bipush -62
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
        37: .line 3636
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        38: .line 3637
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 40
        39: .line 3638
            iconst_0
            ireturn
        40: .line 3640
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        41: .line 3641
            goto 63
        end local 1 // int ch
        42: .line 3642
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        43: .line 3644
            goto 63
        end local 1 // int ch
      StackMap locals:
      StackMap stack:
        44: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -62
            if_icmpne 47
        45: .line 3645
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        46: .line 3646
            goto 63
        end local 1 // int ch
      StackMap locals:
      StackMap stack:
        47: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -63
            if_icmpne 56
        48: .line 3647
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseEntityName:()Lcom/fasterxml/aalto/in/PName;
            astore 2 /* entityName */
        start local 2 // com.fasterxml.aalto.in.PName entityName
        49: .line 3648
            aload 2 /* entityName */
            ifnonnull 51
        50: .line 3649
            iconst_0
            ireturn
        51: .line 3651
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner top com.fasterxml.aalto.in.PName
      StackMap stack:
            aload 0 /* this */
            aload 2 /* entityName */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.decodeGeneralEntity:(Lcom/fasterxml/aalto/in/PName;)I
            istore 1 /* ch */
        start local 1 // int ch
        52: .line 3652
            iload 1 /* ch */
            ifne 63
        53: .line 3653
            aload 0 /* this */
            aload 2 /* entityName */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._tokenName:Lcom/fasterxml/aalto/in/PName;
        54: .line 3654
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemAttrName:Lcom/fasterxml/aalto/in/PName;
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportUnexpandedEntityInAttr:(Lcom/fasterxml/aalto/in/PName;Z)V
        end local 2 // com.fasterxml.aalto.in.PName entityName
        55: .line 3656
            goto 63
        end local 1 // int ch
      StackMap locals: com.fasterxml.aalto.async.AsyncByteBufferScanner
      StackMap stack:
        56: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -64
            if_icmpne 59
        57: .line 3657
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleDecEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        58: .line 3658
            goto 63
        end local 1 // int ch
      StackMap locals:
      StackMap stack:
        59: aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            bipush -65
            if_icmpne 62
        60: .line 3659
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleHexEntityInAttribute:(Z)I
            istore 1 /* ch */
        start local 1 // int ch
        61: .line 3660
            goto 63
        end local 1 // int ch
        62: .line 3662
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleAttrValuePendingUTF8:()I
            istore 1 /* ch */
        start local 1 // int ch
        63: .line 3664
      StackMap locals: int
      StackMap stack:
            iload 1 /* ch */
            ifne 65
        64: .line 3665
            iconst_0
            ireturn
        65: .line 3668
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
            astore 2 /* attrBuffer */
        start local 2 // char[] attrBuffer
        66: .line 3670
            iload 1 /* ch */
            bipush 16
            ishr
            ifeq 72
        67: .line 3671
            iload 1 /* ch */
            ldc 65536
            isub
            istore 1 /* ch */
        68: .line 3672
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            aload 2 /* attrBuffer */
            arraylength
            if_icmplt 70
        69: .line 3673
            aload 0 /* this */
            aload 2 /* attrBuffer */
            aload 2 /* attrBuffer */
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([CI)[C
            dup
            astore 2 /* attrBuffer */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
        70: .line 3675
      StackMap locals: char[]
      StackMap stack:
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            ldc 55296
            iload 1 /* ch */
            bipush 10
            ishr
            ior
            i2c
            castore
        71: .line 3676
            ldc 56320
            iload 1 /* ch */
            sipush 1023
            iand
            ior
            istore 1 /* ch */
        72: .line 3678
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            aload 2 /* attrBuffer */
            arraylength
            if_icmplt 74
        73: .line 3679
            aload 0 /* this */
            aload 2 /* attrBuffer */
            aload 2 /* attrBuffer */
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([CI)[C
            dup
            astore 2 /* attrBuffer */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._nameBuffer:[C
        74: .line 3681
      StackMap locals:
      StackMap stack:
            aload 2 /* attrBuffer */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._elemNsPtr:I
            iload 1 /* ch */
            i2c
            castore
        75: .line 3682
            iconst_1
            ireturn
        end local 2 // char[] attrBuffer
        end local 1 // int ch
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   76     0        this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            4    8     1  attrBuffer  [C
           22   23     1          ch  I
           24   25     1          ch  I
           30   34     1          ch  I
           41   42     1          ch  I
           43   44     1          ch  I
           46   47     1          ch  I
           52   56     1          ch  I
           58   59     1          ch  I
           61   62     1          ch  I
           63   76     1          ch  I
           12   33     2           b  B
           26   33     3  entityName  Lcom/fasterxml/aalto/in/PName;
           49   55     2  entityName  Lcom/fasterxml/aalto/in/PName;
           66   76     2  attrBuffer  [C
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final com.fasterxml.aalto.in.PName parseNewName(byte);
    descriptor: (B)Lcom/fasterxml/aalto/in/PName;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // byte b
         0: .line 3694
            iload 1 /* b */
            sipush 255
            iand
            istore 2 /* q */
        start local 2 // int q
         1: .line 3699
            iload 2 /* q */
            bipush 65
            if_icmpge 3
         2: .line 3700
            aload 0 /* this */
            iload 2 /* q */
            ldc "; expected a name start character"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
         3: .line 3702
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
         4: .line 3703
            aload 0 /* this */
            iload 2 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
         5: .line 3704
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
         6: .line 3705
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parsePName:()Lcom/fasterxml/aalto/in/PName;
            areturn
        end local 2 // int q
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0    7     1     b  B
            1    7     2     q  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      b     

  protected final com.fasterxml.aalto.in.PName parsePName();
    descriptor: ()Lcom/fasterxml/aalto/in/PName;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3723
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
            istore 1 /* q */
        start local 1 // int q
         1: .line 3728
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            tableswitch { // 0 - 3
                    0: 2
                    1: 8
                    2: 17
                    3: 26
              default: 35
          }
         2: .line 3730
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 4
         3: .line 3731
            aconst_null
            areturn
         4: .line 3733
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 1 /* q */
         5: .line 3740
            iload 1 /* q */
            bipush 65
            if_icmpge 8
         6: .line 3742
            iload 1 /* q */
            bipush 45
            if_icmplt 7
            iload 1 /* q */
            bipush 58
            if_icmpgt 7
            iload 1 /* q */
            bipush 47
            if_icmpne 8
         7: .line 3744
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
         8: .line 3750
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 12
         9: .line 3751
            aload 0 /* this */
            iload 1 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        10: .line 3752
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        11: .line 3753
            aconst_null
            areturn
        12: .line 3755
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* i */
        start local 2 // int i
        13: .line 3756
            iload 2 /* i */
            bipush 65
            if_icmpge 16
        14: .line 3757
            iload 2 /* i */
            bipush 45
            if_icmplt 15
            iload 2 /* i */
            bipush 58
            if_icmpgt 15
            iload 2 /* i */
            bipush 47
            if_icmpne 16
        15: .line 3758
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
        16: .line 3761
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            bipush 8
            ishl
            iload 2 /* i */
            ior
            istore 1 /* q */
        end local 2 // int i
        17: .line 3765
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 21
        18: .line 3766
            aload 0 /* this */
            iload 1 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        19: .line 3767
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        20: .line 3768
            aconst_null
            areturn
        21: .line 3770
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* i */
        start local 2 // int i
        22: .line 3771
            iload 2 /* i */
            bipush 65
            if_icmpge 25
        23: .line 3772
            iload 2 /* i */
            bipush 45
            if_icmplt 24
            iload 2 /* i */
            bipush 58
            if_icmpgt 24
            iload 2 /* i */
            bipush 47
            if_icmpne 25
        24: .line 3773
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_2
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
        25: .line 3776
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            bipush 8
            ishl
            iload 2 /* i */
            ior
            istore 1 /* q */
        end local 2 // int i
        26: .line 3780
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 30
        27: .line 3781
            aload 0 /* this */
            iload 1 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        28: .line 3782
            aload 0 /* this */
            iconst_3
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        29: .line 3783
            aconst_null
            areturn
        30: .line 3785
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* i */
        start local 2 // int i
        31: .line 3786
            iload 2 /* i */
            bipush 65
            if_icmpge 34
        32: .line 3787
            iload 2 /* i */
            bipush 45
            if_icmplt 33
            iload 2 /* i */
            bipush 58
            if_icmpgt 33
            iload 2 /* i */
            bipush 47
            if_icmpne 34
        33: .line 3788
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_3
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
        34: .line 3791
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            bipush 8
            ishl
            iload 2 /* i */
            ior
            istore 1 /* q */
        end local 2 // int i
        35: .line 3795
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            ifne 39
        36: .line 3796
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            iconst_0
            iload 1 /* q */
            iastore
        37: .line 3797
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
        38: .line 3798
            goto 42
        39: .line 3799
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            arraylength
            if_icmplt 41
        40: .line 3800
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([II)[I
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
        41: .line 3802
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            iload 1 /* q */
            iastore
        42: .line 3804
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        43: .line 3725
            goto 1
        end local 1 // int q
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   44     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   44     1     q  I
           13   17     2     i  I
           22   26     2     i  I
           31   35     2     i  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final com.fasterxml.aalto.in.PName parseNewEntityName(byte);
    descriptor: (B)Lcom/fasterxml/aalto/in/PName;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // byte b
         0: .line 3810
            iload 1 /* b */
            sipush 255
            iand
            istore 2 /* q */
        start local 2 // int q
         1: .line 3811
            iload 2 /* q */
            bipush 65
            if_icmpge 3
         2: .line 3812
            aload 0 /* this */
            iload 2 /* q */
            ldc "; expected a name start character"
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwUnexpectedChar:(ILjava/lang/String;)V
         3: .line 3814
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
         4: .line 3815
            aload 0 /* this */
            iload 2 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
         5: .line 3816
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
         6: .line 3817
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.parseEntityName:()Lcom/fasterxml/aalto/in/PName;
            areturn
        end local 2 // int q
        end local 1 // byte b
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0    7     1     b  B
            1    7     2     q  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      b     

  protected final com.fasterxml.aalto.in.PName parseEntityName();
    descriptor: ()Lcom/fasterxml/aalto/in/PName;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3822
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
            istore 1 /* q */
        start local 1 // int q
         1: .line 3827
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
            tableswitch { // 0 - 3
                    0: 2
                    1: 16
                    2: 25
                    3: 41
              default: 54
          }
         2: .line 3829
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 4
         3: .line 3830
            aconst_null
            areturn
         4: .line 3832
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 1 /* q */
         5: .line 3839
            iload 1 /* q */
            bipush 65
            if_icmpge 16
         6: .line 3841
            iload 1 /* q */
            bipush 45
            if_icmplt 7
            iload 1 /* q */
            bipush 58
            if_icmpgt 7
            iload 1 /* q */
            bipush 47
            if_icmpne 16
         7: .line 3843
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            iconst_1
            if_icmpne 15
         8: .line 3844
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            iconst_0
            iaload
            istore 1 /* q */
         9: .line 3845
            iload 1 /* q */
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_APOS_QUAD:I
            if_icmpne 12
        10: .line 3846
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        11: .line 3847
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_APOS:Lcom/fasterxml/aalto/in/PNameC;
            areturn
        12: .line 3849
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_QUOT_QUAD:I
            if_icmpne 15
        13: .line 3850
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        14: .line 3851
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_QUOT:Lcom/fasterxml/aalto/in/PNameC;
            areturn
        15: .line 3855
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_0
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
        16: .line 3861
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 20
        17: .line 3862
            aload 0 /* this */
            iload 1 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        18: .line 3863
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        19: .line 3864
            aconst_null
            areturn
        20: .line 3866
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* i */
        start local 2 // int i
        21: .line 3867
            iload 2 /* i */
            bipush 65
            if_icmpge 24
        22: .line 3868
            iload 2 /* i */
            bipush 45
            if_icmplt 23
            iload 2 /* i */
            bipush 58
            if_icmpgt 23
            iload 2 /* i */
            bipush 47
            if_icmpne 24
        23: .line 3869
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_1
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
        24: .line 3872
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            bipush 8
            ishl
            iload 2 /* i */
            ior
            istore 1 /* q */
        end local 2 // int i
        25: .line 3876
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 29
        26: .line 3877
            aload 0 /* this */
            iload 1 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        27: .line 3878
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        28: .line 3879
            aconst_null
            areturn
        29: .line 3881
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* i */
        start local 2 // int i
        30: .line 3882
            iload 2 /* i */
            bipush 65
            if_icmpge 40
        31: .line 3883
            iload 2 /* i */
            bipush 45
            if_icmplt 32
            iload 2 /* i */
            bipush 58
            if_icmpgt 32
            iload 2 /* i */
            bipush 47
            if_icmpne 40
        32: .line 3885
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            ifne 39
        33: .line 3886
            iload 1 /* q */
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_GT_QUAD:I
            if_icmpne 36
        34: .line 3887
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        35: .line 3888
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_GT:Lcom/fasterxml/aalto/in/PNameC;
            areturn
        36: .line 3890
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_LT_QUAD:I
            if_icmpne 39
        37: .line 3891
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        38: .line 3892
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_LT:Lcom/fasterxml/aalto/in/PNameC;
            areturn
        39: .line 3895
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_2
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
        40: .line 3898
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            bipush 8
            ishl
            iload 2 /* i */
            ior
            istore 1 /* q */
        end local 2 // int i
        41: .line 3902
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 45
        42: .line 3903
            aload 0 /* this */
            iload 1 /* q */
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuad:I
        43: .line 3904
            aload 0 /* this */
            iconst_3
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        44: .line 3905
            aconst_null
            areturn
        45: .line 3907
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            sipush 255
            iand
            istore 2 /* i */
        start local 2 // int i
        46: .line 3908
            iload 2 /* i */
            bipush 65
            if_icmpge 53
        47: .line 3909
            iload 2 /* i */
            bipush 45
            if_icmplt 48
            iload 2 /* i */
            bipush 58
            if_icmpgt 48
            iload 2 /* i */
            bipush 47
            if_icmpne 53
        48: .line 3911
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            ifne 52
        49: .line 3912
            iload 1 /* q */
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_AMP_QUAD:I
            if_icmpne 52
        50: .line 3913
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
        51: .line 3914
            getstatic com.fasterxml.aalto.in.EntityNames.ENTITY_AMP:Lcom/fasterxml/aalto/in/PNameC;
            areturn
        52: .line 3917
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* q */
            iconst_3
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.findPName:(II)Lcom/fasterxml/aalto/in/PName;
            areturn
        53: .line 3920
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            bipush 8
            ishl
            iload 2 /* i */
            ior
            istore 1 /* q */
        end local 2 // int i
        54: .line 3926
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            ifne 58
        55: .line 3927
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            iconst_0
            iload 1 /* q */
            iastore
        56: .line 3928
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
        57: .line 3929
            goto 61
        58: .line 3930
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            arraylength
            if_icmplt 60
        59: .line 3931
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            arraylength
            invokestatic com.fasterxml.aalto.util.DataUtil.growArrayBy:([II)[I
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
        60: .line 3933
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadBuffer:[I
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._quadCount:I
            iload 1 /* q */
            iastore
        61: .line 3935
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currQuadBytes:I
        62: .line 3824
            goto 1
        end local 1 // int q
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   63     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            1   63     1     q  I
           21   25     2     i  I
           30   41     2     i  I
           46   54     2     i  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException

  protected final boolean handlePartialCR();
    descriptor: ()Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
         0: .line 3957
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
            iconst_m1
            if_icmpeq 2
         1: .line 3958
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.throwInternal:()I
            pop
         2: .line 3960
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputEnd:I
            if_icmplt 4
         3: .line 3961
            iconst_0
            ireturn
         4: .line 3963
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._pendingInput:I
         5: .line 3964
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            bipush 10
            if_icmpne 7
         6: .line 3965
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
         7: .line 3967
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currRow:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._currRow:I
         8: .line 3968
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._rowStartOffset:I
         9: .line 3969
            iconst_1
            ireturn
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;

  protected final int decodeUtf8_2(int);
    descriptor: (I)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int c
         0: .line 3985
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* d */
        start local 2 // int d
         1: .line 3986
            iload 2 /* d */
            sipush 192
            iand
            sipush 128
            if_icmpeq 3
         2: .line 3987
            aload 0 /* this */
            iload 2 /* d */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         3: .line 3989
      StackMap locals: int
      StackMap stack:
            iload 1 /* c */
            bipush 31
            iand
            bipush 6
            ishl
            iload 2 /* d */
            bipush 63
            iand
            ior
            ireturn
        end local 2 // int d
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0    4     1     c  I
            1    4     2     d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      c     

  protected final void skipUtf8_2(int);
    descriptor: (I)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int c
         0: .line 3994
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* d */
        start local 2 // int d
         1: .line 3995
            iload 2 /* d */
            sipush 192
            iand
            sipush 128
            if_icmpeq 3
         2: .line 3996
            aload 0 /* this */
            iload 2 /* d */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         3: .line 3998
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int d
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0    4     1     c  I
            1    4     2     d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      c     

  protected final int decodeUtf8_3(int);
    descriptor: (I)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int c1
         0: .line 4008
            iload 1 /* c1 */
            bipush 15
            iand
            istore 1 /* c1 */
         1: .line 4009
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* d */
        start local 2 // int d
         2: .line 4010
            iload 2 /* d */
            sipush 192
            iand
            sipush 128
            if_icmpeq 4
         3: .line 4011
            aload 0 /* this */
            iload 2 /* d */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         4: .line 4013
      StackMap locals: int
      StackMap stack:
            iload 1 /* c1 */
            bipush 6
            ishl
            iload 2 /* d */
            bipush 63
            iand
            ior
            istore 3 /* c */
        start local 3 // int c
         5: .line 4014
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* d */
         6: .line 4015
            iload 2 /* d */
            sipush 192
            iand
            sipush 128
            if_icmpeq 8
         7: .line 4016
            aload 0 /* this */
            iload 2 /* d */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         8: .line 4018
      StackMap locals: int
      StackMap stack:
            iload 3 /* c */
            bipush 6
            ishl
            iload 2 /* d */
            bipush 63
            iand
            ior
            istore 3 /* c */
         9: .line 4019
            iload 1 /* c1 */
            bipush 13
            if_icmplt 13
        10: .line 4020
            iload 3 /* c */
            ldc 55296
            if_icmplt 13
        11: .line 4021
            iload 3 /* c */
            ldc 57344
            if_icmplt 12
            iload 3 /* c */
            ldc 65534
            if_icmplt 13
            iload 3 /* c */
            ldc 65535
            if_icmpgt 13
        12: .line 4022
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 3 /* c */
        13: .line 4026
      StackMap locals:
      StackMap stack:
            iload 3 /* c */
            ireturn
        end local 3 // int c
        end local 2 // int d
        end local 1 // int c1
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   14     1    c1  I
            2   14     2     d  I
            5   14     3     c  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      c1    

  protected final int decodeUtf8_3(int, int, int);
    descriptor: (III)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int c1
        start local 2 // int c2
        start local 3 // int c3
         0: .line 4032
            iload 2 /* c2 */
            sipush 192
            iand
            sipush 128
            if_icmpeq 2
         1: .line 4033
            aload 0 /* this */
            iload 2 /* c2 */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         2: .line 4035
      StackMap locals:
      StackMap stack:
            iload 3 /* c3 */
            sipush 192
            iand
            sipush 128
            if_icmpeq 4
         3: .line 4036
            aload 0 /* this */
            iload 3 /* c3 */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         4: .line 4038
      StackMap locals:
      StackMap stack:
            iload 1 /* c1 */
            bipush 15
            iand
            bipush 12
            ishl
            iload 2 /* c2 */
            bipush 63
            iand
            bipush 6
            ishl
            ior
            iload 3 /* c3 */
            bipush 63
            iand
            ior
            istore 4 /* c */
        start local 4 // int c
         5: .line 4039
            iload 1 /* c1 */
            bipush 13
            if_icmplt 9
         6: .line 4040
            iload 4 /* c */
            ldc 55296
            if_icmplt 9
         7: .line 4041
            iload 4 /* c */
            ldc 57344
            if_icmplt 8
            iload 4 /* c */
            ldc 65534
            if_icmplt 9
            iload 4 /* c */
            ldc 65535
            if_icmpgt 9
         8: .line 4042
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* c */
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.handleInvalidXmlChar:(I)C
            istore 4 /* c */
         9: .line 4046
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            ireturn
        end local 4 // int c
        end local 3 // int c3
        end local 2 // int c2
        end local 1 // int c1
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   10     1    c1  I
            0   10     2    c2  I
            0   10     3    c3  I
            5   10     4     c  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      c1    
      c2    
      c3    

  protected final int decodeUtf8_4(int);
    descriptor: (I)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int c
         0: .line 4052
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* d */
        start local 2 // int d
         1: .line 4053
            iload 2 /* d */
            sipush 192
            iand
            sipush 128
            if_icmpeq 3
         2: .line 4054
            aload 0 /* this */
            iload 2 /* d */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         3: .line 4056
      StackMap locals: int
      StackMap stack:
            iload 1 /* c */
            bipush 7
            iand
            bipush 6
            ishl
            iload 2 /* d */
            bipush 63
            iand
            ior
            istore 1 /* c */
         4: .line 4057
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* d */
         5: .line 4058
            iload 2 /* d */
            sipush 192
            iand
            sipush 128
            if_icmpeq 7
         6: .line 4059
            aload 0 /* this */
            iload 2 /* d */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         7: .line 4061
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 6
            ishl
            iload 2 /* d */
            bipush 63
            iand
            ior
            istore 1 /* c */
         8: .line 4062
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputBuffer:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* d */
         9: .line 4063
            iload 2 /* d */
            sipush 192
            iand
            sipush 128
            if_icmpeq 11
        10: .line 4064
            aload 0 /* this */
            iload 2 /* d */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
        11: .line 4069
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 6
            ishl
            iload 2 /* d */
            bipush 63
            iand
            ior
            ldc 65536
            isub
            ireturn
        end local 2 // int d
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0   12     1     c  I
            1   12     2     d  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      c     

  protected final int decodeUtf8_4(int, int, int, int);
    descriptor: (IIII)I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=6, args_size=5
        start local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
        start local 1 // int c1
        start local 2 // int c2
        start local 3 // int c3
        start local 4 // int c4
         0: .line 4081
            iload 2 /* c2 */
            sipush 192
            iand
            sipush 128
            if_icmpeq 2
         1: .line 4082
            aload 0 /* this */
            iload 2 /* c2 */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_2
            isub
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         2: .line 4084
      StackMap locals:
      StackMap stack:
            iload 1 /* c1 */
            bipush 7
            iand
            bipush 6
            ishl
            iload 2 /* c2 */
            bipush 63
            iand
            ior
            istore 5 /* c */
        start local 5 // int c
         3: .line 4085
            iload 3 /* c3 */
            sipush 192
            iand
            sipush 128
            if_icmpeq 5
         4: .line 4086
            aload 0 /* this */
            iload 3 /* c3 */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            iconst_1
            isub
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         5: .line 4088
      StackMap locals: int
      StackMap stack:
            iload 5 /* c */
            bipush 6
            ishl
            iload 3 /* c3 */
            bipush 63
            iand
            ior
            istore 5 /* c */
         6: .line 4089
            iload 4 /* c4 */
            sipush 192
            iand
            sipush 128
            if_icmpeq 8
         7: .line 4090
            aload 0 /* this */
            iload 4 /* c4 */
            sipush 255
            iand
            aload 0 /* this */
            getfield com.fasterxml.aalto.async.AsyncByteBufferScanner._inputPtr:I
            invokevirtual com.fasterxml.aalto.async.AsyncByteBufferScanner.reportInvalidOther:(II)V
         8: .line 4092
      StackMap locals:
      StackMap stack:
            iload 5 /* c */
            bipush 6
            ishl
            iload 4 /* c4 */
            bipush 63
            iand
            ior
            ldc 65536
            isub
            ireturn
        end local 5 // int c
        end local 4 // int c4
        end local 3 // int c3
        end local 2 // int c2
        end local 1 // int c1
        end local 0 // com.fasterxml.aalto.async.AsyncByteBufferScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/aalto/async/AsyncByteBufferScanner;
            0    9     1    c1  I
            0    9     2    c2  I
            0    9     3    c3  I
            0    9     4    c4  I
            3    9     5     c  I
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
      Name  Flags
      c1    
      c2    
      c3    
      c4    
}
SourceFile: "AsyncByteBufferScanner.java"