public abstract class com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl extends com.fasterxml.jackson.dataformat.avro.AvroParser
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl
  super_class: com.fasterxml.jackson.dataformat.avro.AvroParser
{
  protected int _branchIndex;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

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

  protected float _numberFloat;
    descriptor: F
    flags: (0x0004) ACC_PROTECTED

  protected void <init>(com.fasterxml.jackson.core.io.IOContext, int, int, com.fasterxml.jackson.core.ObjectCodec);
    descriptor: (Lcom/fasterxml/jackson/core/io/IOContext;IILcom/fasterxml/jackson/core/ObjectCodec;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        start local 2 // int parserFeatures
        start local 3 // int avroFeatures
        start local 4 // com.fasterxml.jackson.core.ObjectCodec codec
         0: .line 59
            aload 0 /* this */
            aload 1 /* ctxt */
            iload 2 /* parserFeatures */
            iload 3 /* avroFeatures */
            aload 4 /* codec */
            invokespecial com.fasterxml.jackson.dataformat.avro.AvroParser.<init>:(Lcom/fasterxml/jackson/core/io/IOContext;IILcom/fasterxml/jackson/core/ObjectCodec;)V
         1: .line 60
            return
        end local 4 // com.fasterxml.jackson.core.ObjectCodec codec
        end local 3 // int avroFeatures
        end local 2 // int parserFeatures
        end local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1            ctxt  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     2  parserFeatures  I
            0    2     3    avroFeatures  I
            0    2     4           codec  Lcom/fasterxml/jackson/core/ObjectCodec;
    MethodParameters:
                Name  Flags
      ctxt            
      parserFeatures  
      avroFeatures    
      codec           

  public final com.fasterxml.jackson.core.JsonParser overrideFormatFeatures(int, int);
    descriptor: (II)Lcom/fasterxml/jackson/core/JsonParser;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // int values
        start local 2 // int mask
         0: .line 64
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._formatFeatures:I
            istore 3 /* oldF */
        start local 3 // int oldF
         1: .line 65
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._formatFeatures:I
            iload 2 /* mask */
            iconst_m1
            ixor
            iand
            iload 1 /* values */
            iload 2 /* mask */
            iand
            ior
            istore 4 /* newF */
        start local 4 // int newF
         2: .line 67
            iload 3 /* oldF */
            iload 4 /* newF */
            if_icmpeq 4
         3: .line 68
            aload 0 /* this */
            iload 4 /* newF */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._formatFeatures:I
         4: .line 72
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 4 // int newF
        end local 3 // int oldF
        end local 2 // int mask
        end local 1 // int values
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    5     1  values  I
            0    5     2    mask  I
            1    5     3    oldF  I
            2    5     4    newF  I
    MethodParameters:
        Name  Flags
      values  
      mask    

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 78
            aload 0 /* this */
            getstatic com.fasterxml.jackson.dataformat.avro.deser.MissingReader.closedInstance:Lcom/fasterxml/jackson/dataformat/avro/deser/MissingReader;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
         1: .line 79
            aload 0 /* this */
            invokespecial com.fasterxml.jackson.dataformat.avro.AvroParser.close:()V
         2: .line 80
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public com.fasterxml.jackson.core.JsonToken nextToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 92
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         1: .line 93
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currInputProcessed:J
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._inputPtr:I
            i2l
            ladd
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._tokenInputTotal:J
         2: .line 94
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._branchIndex:I
         3: .line 95
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._enumIndex:I
         4: .line 96
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         5: .line 97
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.nextToken:()Lcom/fasterxml/jackson/core/JsonToken;
            astore 1 /* t */
        start local 1 // com.fasterxml.jackson.core.JsonToken t
         6: .line 98
            aload 0 /* this */
            aload 1 /* t */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         7: .line 99
            aload 1 /* t */
            areturn
        end local 1 // com.fasterxml.jackson.core.JsonToken t
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            6    8     1     t  Lcom/fasterxml/jackson/core/JsonToken;
    Exceptions:
      throws java.io.IOException

  public java.lang.String nextFieldName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 106
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         1: .line 107
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currInputProcessed:J
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._inputPtr:I
            i2l
            ladd
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._tokenInputTotal:J
         2: .line 108
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         3: .line 109
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.nextFieldName:()Ljava/lang/String;
            astore 1 /* name */
        start local 1 // java.lang.String name
         4: .line 110
            aload 1 /* name */
            ifnonnull 7
         5: .line 111
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.getCurrentToken:()Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         6: .line 112
            aconst_null
            areturn
         7: .line 114
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonToken.FIELD_NAME:Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         8: .line 115
            aload 1 /* name */
            areturn
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            4    9     1  name  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException

  public boolean nextFieldName(com.fasterxml.jackson.core.SerializableString);
    descriptor: (Lcom/fasterxml/jackson/core/SerializableString;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.core.SerializableString sstr
         0: .line 122
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         1: .line 123
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currInputProcessed:J
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._inputPtr:I
            i2l
            ladd
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._tokenInputTotal:J
         2: .line 124
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         3: .line 125
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.nextFieldName:()Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         4: .line 126
            aload 2 /* name */
            ifnonnull 7
         5: .line 127
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.getCurrentToken:()Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         6: .line 128
            iconst_0
            ireturn
         7: .line 130
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            getstatic com.fasterxml.jackson.core.JsonToken.FIELD_NAME:Lcom/fasterxml/jackson/core/JsonToken;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
         8: .line 131
            aload 2 /* name */
            aload 1 /* sstr */
            invokeinterface com.fasterxml.jackson.core.SerializableString.getValue:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.String name
        end local 1 // com.fasterxml.jackson.core.SerializableString sstr
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    9     1  sstr  Lcom/fasterxml/jackson/core/SerializableString;
            4    9     2  name  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      sstr  

  public abstract java.lang.String nextTextValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public final void _initSchema(com.fasterxml.jackson.dataformat.avro.AvroSchema);
    descriptor: (Lcom/fasterxml/jackson/dataformat/avro/AvroSchema;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.dataformat.avro.AvroSchema schema
         0: .line 139
            aload 0 /* this */
            new com.fasterxml.jackson.dataformat.avro.deser.RootReader
            dup
            aload 0 /* this */
            aload 1 /* schema */
            invokevirtual com.fasterxml.jackson.dataformat.avro.AvroSchema.getReader:()Lcom/fasterxml/jackson/dataformat/avro/deser/AvroStructureReader;
            invokespecial com.fasterxml.jackson.dataformat.avro.deser.RootReader.<init>:(Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;Lcom/fasterxml/jackson/dataformat/avro/deser/AvroStructureReader;)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
         1: .line 140
            return
        end local 1 // com.fasterxml.jackson.dataformat.avro.AvroSchema schema
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1  schema  Lcom/fasterxml/jackson/dataformat/avro/AvroSchema;
    Exceptions:
      throws com.fasterxml.jackson.core.JsonProcessingException
    MethodParameters:
        Name  Flags
      schema  

  public final void skipValue();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 151
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.skipValue:(Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;)V
         1: .line 152
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public final boolean isNaN();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 162
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 9
         1: .line 163
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 5
         2: .line 165
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            dstore 1 /* d */
        start local 1 // double d
         3: .line 166
            dload 1 /* d */
            invokestatic java.lang.Double.isNaN:(D)Z
            ifne 4
            dload 1 /* d */
            invokestatic java.lang.Double.isInfinite:(D)Z
            ifne 4
            iconst_0
            ireturn
      StackMap locals: double
      StackMap stack:
         4: iconst_1
            ireturn
        end local 1 // double d
         5: .line 168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 9
         6: .line 169
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            fstore 1 /* f */
        start local 1 // float f
         7: .line 170
            fload 1 /* f */
            invokestatic java.lang.Float.isNaN:(F)Z
            ifne 8
            fload 1 /* f */
            invokestatic java.lang.Float.isInfinite:(F)Z
            ifne 8
            iconst_0
            ireturn
      StackMap locals: float
      StackMap stack:
         8: iconst_1
            ireturn
        end local 1 // float f
         9: .line 173
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            3    5     1     d  D
            7    9     1     f  F

  public final java.lang.Number getNumberValue();
    descriptor: ()Ljava/lang/Number;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 179
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            ifne 2
         1: .line 180
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._checkNumericValue:(I)V
         2: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 10
         3: .line 184
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 5
         4: .line 185
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
         5: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 7
         6: .line 188
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            areturn
         7: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         8: .line 191
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            areturn
         9: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            areturn
        10: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 12
        11: .line 200
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            areturn
        12: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 14
        13: .line 203
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
        14: .line 205
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifne 16
        15: .line 206
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            invokestatic java.lang.Float.valueOf:(F)Ljava/lang/Float;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public final java.lang.Number getNumberValueExact();
    descriptor: ()Ljava/lang/Number;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 213
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.getNumberValue:()Ljava/lang/Number;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public final com.fasterxml.jackson.core.JsonParser$NumberType getNumberType();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonParser$NumberType;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 219
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            ifne 2
         1: .line 220
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._checkNumericValue:(I)V
         2: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 8
         3: .line 223
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 5
         4: .line 224
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.INT:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
         5: .line 226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 7
         6: .line 227
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.LONG:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
         7: .line 229
      StackMap locals:
      StackMap stack:
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.BIG_INTEGER:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
         8: .line 235
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 10
         9: .line 236
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.BIG_DECIMAL:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
        10: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 12
        11: .line 239
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.DOUBLE:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
        12: .line 241
      StackMap locals:
      StackMap stack:
            getstatic com.fasterxml.jackson.core.JsonParser$NumberType.FLOAT:Lcom/fasterxml/jackson/core/JsonParser$NumberType;
            areturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public final float getFloatValue();
    descriptor: ()F
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 247
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifne 5
         1: .line 248
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            ifne 3
         2: .line 249
            aload 0 /* this */
            bipush 32
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._checkNumericValue:(I)V
         3: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifne 5
         4: .line 252
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.convertNumberToFloat:()V
         5: .line 261
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            freturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void _checkNumericValue(int);
    descriptor: (I)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // int expType
         0: .line 273
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpeq 1
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._currToken:Lcom/fasterxml/jackson/core/JsonToken;
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            if_acmpne 2
         1: .line 274
      StackMap locals:
      StackMap stack:
            return
         2: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Current token ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.getCurrentToken:()Lcom/fasterxml/jackson/core/JsonToken;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ") not numeric, can not use numeric value accessors"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._reportError:(Ljava/lang/String;)V
         3: .line 277
            return
        end local 1 // int expType
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    4     1  expType  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      expType  

  protected final void convertNumberToInt();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 283
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 6
         1: .line 285
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            l2i
            istore 1 /* result */
        start local 1 // int result
         2: .line 286
            iload 1 /* result */
            i2l
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            lcmp
            ifeq 4
         3: .line 287
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Numeric value ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.getText:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ") out of range of int"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._reportError:(Ljava/lang/String;)V
         4: .line 289
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* result */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        end local 1 // int result
         5: .line 290
            goto 29
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 12
         7: .line 291
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MIN_INT:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifgt 9
         8: .line 292
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MAX_INT:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifge 10
         9: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        10: .line 295
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.intValue:()I
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        11: .line 296
            goto 29
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 17
        13: .line 298
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc -2.147483648E9
            dcmpg
            iflt 14
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc 2.147483647E9
            dcmpl
            ifle 15
        14: .line 299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        15: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            d2i
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        16: .line 302
            goto 29
      StackMap locals:
      StackMap stack:
        17: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 22
        18: .line 303
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc -2.147483648E9
            dcmpg
            iflt 19
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc 2.147483647E9
            dcmpl
            ifle 20
        19: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        20: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2i
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        21: .line 307
            goto 29
      StackMap locals:
      StackMap stack:
        22: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 28
        23: .line 308
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MIN_INT:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifgt 25
        24: .line 309
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MAX_INT:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifge 26
        25: .line 310
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        26: .line 312
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.intValue:()I
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
        27: .line 313
            goto 29
        28: .line 314
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        29: .line 316
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        30: .line 317
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   31     0    this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            2    5     1  result  I
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToLong();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 322
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 3
         1: .line 323
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2l
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
         2: .line 324
            goto 26
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         4: .line 325
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MIN_LONG:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifgt 6
         5: .line 326
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BI_MAX_LONG:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifge 7
         6: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowLong:()V
         7: .line 329
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.longValue:()J
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
         8: .line 330
            goto 26
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 14
        10: .line 331
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc -9.223372036854776E18
            dcmpg
            iflt 11
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            ldc 9.223372036854776E18
            dcmpl
            ifle 12
        11: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowLong:()V
        12: .line 334
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            d2l
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
        13: .line 335
            goto 26
      StackMap locals:
      StackMap stack:
        14: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 19
        15: .line 336
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc -9.223372036854776E18
            dcmpg
            iflt 16
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            ldc 9.223372036854776E18
            dcmpl
            ifle 17
        16: .line 337
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowInt:()V
        17: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2l
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
        18: .line 340
            goto 26
      StackMap locals:
      StackMap stack:
        19: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 25
        20: .line 341
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MIN_LONG:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifgt 22
        21: .line 342
            getstatic com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.BD_MAX_LONG:Ljava/math/BigDecimal;
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.compareTo:(Ljava/math/BigDecimal;)I
            ifge 23
        22: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl.reportOverflowLong:()V
        23: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.longValue:()J
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
        24: .line 346
            goto 26
        25: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        26: .line 349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        27: .line 350
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   28     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToBigInteger();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 355
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 3
         1: .line 357
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.toBigInteger:()Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
         2: .line 358
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 6
         4: .line 359
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
         5: .line 360
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 9
         7: .line 361
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2l
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
         8: .line 362
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 12
        10: .line 363
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            invokestatic java.math.BigDecimal.valueOf:(D)Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.toBigInteger:()Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
        11: .line 364
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 15
        13: .line 365
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            invokestatic java.math.BigDecimal.valueOf:(D)Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.toBigInteger:()Ljava/math/BigInteger;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
        14: .line 366
            goto 16
        15: .line 367
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 369
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 370
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToFloat();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 376
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 3
         1: .line 377
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.floatValue:()F
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         2: .line 378
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 6
         4: .line 379
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.floatValue:()F
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         5: .line 380
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 9
         7: .line 381
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            d2f
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         8: .line 382
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 12
        10: .line 383
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            l2f
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
        11: .line 384
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 15
        13: .line 385
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2f
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
        14: .line 386
            goto 16
        15: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 389
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 390
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToDouble();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 397
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            iand
            ifeq 3
         1: .line 398
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
            invokevirtual java.math.BigDecimal.doubleValue:()D
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         2: .line 399
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 6
         4: .line 400
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         5: .line 401
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         7: .line 402
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.doubleValue:()D
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         8: .line 403
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 12
        10: .line 404
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            l2d
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
        11: .line 405
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 15
        13: .line 406
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2d
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
        14: .line 407
            goto 16
        15: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 411
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  protected final void convertNumberToBigDecimal();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 418
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 8
            iand
            ifeq 3
         1: .line 421
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
            invokespecial java.math.BigDecimal.<init>:(D)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
         2: .line 422
            goto 16
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 32
            iand
            ifeq 6
         4: .line 423
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
            f2d
            invokespecial java.math.BigDecimal.<init>:(D)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
         5: .line 424
            goto 16
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_4
            iand
            ifeq 9
         7: .line 425
            aload 0 /* this */
            new java.math.BigDecimal
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigInt:Ljava/math/BigInteger;
            invokespecial java.math.BigDecimal.<init>:(Ljava/math/BigInteger;)V
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
         8: .line 426
            goto 16
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_2
            iand
            ifeq 12
        10: .line 427
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
            invokestatic java.math.BigDecimal.valueOf:(J)Ljava/math/BigDecimal;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
        11: .line 428
            goto 16
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            iconst_1
            iand
            ifeq 15
        13: .line 429
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
            i2l
            invokestatic java.math.BigDecimal.valueOf:(J)Ljava/math/BigDecimal;
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberBigDecimal:Ljava/math/BigDecimal;
        14: .line 430
            goto 16
        15: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._throwInternal:()V
        16: .line 433
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
            bipush 16
            ior
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
        17: .line 434
            return
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
    Exceptions:
      throws java.io.IOException

  public abstract boolean checkInputEnd();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public long getRemainingElements();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 449
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            invokevirtual com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext.getRemainingElements:()J
            lreturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public abstract com.fasterxml.jackson.core.JsonToken decodeIntToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract int decodeInt();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipInt();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeLongToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeLong();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipLong();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeFloat();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipFloat();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeDouble();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipDouble();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeStringToken();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void decodeString();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipString();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeBytes();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipBytes();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeFixed(int);
    descriptor: (I)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      size  

  public abstract void skipFixed(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      size  

  public abstract long decodeArrayStart();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeArrayNext();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long skipArray();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract java.lang.String decodeMapKey();
    descriptor: ()Ljava/lang/String;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeMapStart();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long decodeMapNext();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract long skipMap();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract com.fasterxml.jackson.core.JsonToken decodeBoolean();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void skipBoolean();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract int decodeIndex();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract int decodeEnum();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public final int branchIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 576
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._branchIndex:I
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public final int enumIndex();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 580
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._enumIndex:I
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public final boolean isRecord();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
         0: .line 584
            aload 0 /* this */
            getfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
            instanceof com.fasterxml.jackson.dataformat.avro.deser.RecordReader
            ireturn
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;

  public final void setAvroContext(com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext);
    descriptor: (Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext ctxt
         0: .line 588
            aload 0 /* this */
            aload 1 /* ctxt */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._avroContext:Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
         1: .line 589
            return
        end local 1 // com.fasterxml.jackson.dataformat.avro.deser.AvroReadContext ctxt
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1  ctxt  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroReadContext;
    MethodParameters:
      Name  Flags
      ctxt  

  protected final com.fasterxml.jackson.core.JsonToken setBytes(byte[]);
    descriptor: ([B)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // byte[] b
         0: .line 599
            aload 0 /* this */
            aload 1 /* b */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._binaryValue:[B
         1: .line 600
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_EMBEDDED_OBJECT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // byte[] b
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    2     1     b  [B
    MethodParameters:
      Name  Flags
      b     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(int);
    descriptor: (I)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // int v
         0: .line 604
            aload 0 /* this */
            iload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberInt:I
         1: .line 605
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 606
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // int v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  I
    MethodParameters:
      Name  Flags
      v     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(long);
    descriptor: (J)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // long v
         0: .line 610
            aload 0 /* this */
            lload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberLong:J
         1: .line 611
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 612
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_INT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // long v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  J
    MethodParameters:
      Name  Flags
      v     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(float);
    descriptor: (F)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // float v
         0: .line 616
            aload 0 /* this */
            fload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberFloat:F
         1: .line 617
            aload 0 /* this */
            bipush 32
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 618
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // float v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  F
    MethodParameters:
      Name  Flags
      v     

  protected final com.fasterxml.jackson.core.JsonToken setNumber(double);
    descriptor: (D)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
        start local 1 // double v
         0: .line 622
            aload 0 /* this */
            dload 1 /* v */
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numberDouble:D
         1: .line 623
            aload 0 /* this */
            bipush 8
            putfield com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl._numTypesValid:I
         2: .line 624
            getstatic com.fasterxml.jackson.core.JsonToken.VALUE_NUMBER_FLOAT:Lcom/fasterxml/jackson/core/JsonToken;
            areturn
        end local 1 // double v
        end local 0 // com.fasterxml.jackson.dataformat.avro.deser.AvroParserImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/dataformat/avro/deser/AvroParserImpl;
            0    3     1     v  D
    MethodParameters:
      Name  Flags
      v     

  protected abstract com.fasterxml.jackson.core.JsonToken setString(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/fasterxml/jackson/core/JsonToken;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      str   
}
SourceFile: "AvroParserImpl.java"
InnerClasses:
  public final NumberType = com.fasterxml.jackson.core.JsonParser$NumberType of com.fasterxml.jackson.core.JsonParser