public class java.io.BufferedReader extends java.io.Reader
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.BufferedReader
  super_class: java.io.Reader
{
  private java.io.Reader in;
    descriptor: Ljava/io/Reader;
    flags: (0x0002) ACC_PRIVATE

  private char[] cb;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

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

  private static final int INVALIDATED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -2

  private static final int UNMARKED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

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

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

  private boolean skipLF;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean markedSkipLF;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private static int defaultCharBufferSize;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private static int defaultExpectedLineLength;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 80
            sipush 8192
            putstatic java.io.BufferedReader.defaultCharBufferSize:I
         1: .line 81
            bipush 80
            putstatic java.io.BufferedReader.defaultExpectedLineLength:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.io.Reader, int);
    descriptor: (Ljava/io/Reader;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.BufferedReader this
        start local 1 // java.io.Reader in
        start local 2 // int sz
         0: .line 93
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.Reader.<init>:(Ljava/lang/Object;)V
         1: .line 71
            aload 0 /* this */
            iconst_m1
            putfield java.io.BufferedReader.markedChar:I
         2: .line 72
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.readAheadLimit:I
         3: .line 75
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.skipLF:Z
         4: .line 78
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.markedSkipLF:Z
         5: .line 94
            iload 2 /* sz */
            ifgt 7
         6: .line 95
            new java.lang.IllegalArgumentException
            dup
            ldc "Buffer size <= 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 96
      StackMap locals: java.io.BufferedReader java.io.Reader int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            putfield java.io.BufferedReader.in:Ljava/io/Reader;
         8: .line 97
            aload 0 /* this */
            iload 2 /* sz */
            newarray 5
            putfield java.io.BufferedReader.cb:[C
         9: .line 98
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield java.io.BufferedReader.nChars:I
            putfield java.io.BufferedReader.nextChar:I
        10: .line 99
            return
        end local 2 // int sz
        end local 1 // java.io.Reader in
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/io/BufferedReader;
            0   11     1    in  Ljava/io/Reader;
            0   11     2    sz  I
    MethodParameters:
      Name  Flags
      in    
      sz    

  public void <init>(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.BufferedReader this
        start local 1 // java.io.Reader in
         0: .line 108
            aload 0 /* this */
            aload 1 /* in */
            getstatic java.io.BufferedReader.defaultCharBufferSize:I
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;I)V
         1: .line 109
            return
        end local 1 // java.io.Reader in
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/BufferedReader;
            0    2     1    in  Ljava/io/Reader;
    MethodParameters:
      Name  Flags
      in    

  private void ensureOpen();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 113
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            ifnonnull 2
         1: .line 114
            new java.io.IOException
            dup
            ldc "Stream closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 115
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/BufferedReader;
    Exceptions:
      throws java.io.IOException

  private void fill();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 122
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            iconst_m1
            if_icmpgt 3
         1: .line 124
            iconst_0
            istore 1 /* dst */
        start local 1 // int dst
         2: .line 125
            goto 20
        end local 1 // int dst
         3: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            isub
            istore 2 /* delta */
        start local 2 // int delta
         4: .line 128
            iload 2 /* delta */
            aload 0 /* this */
            getfield java.io.BufferedReader.readAheadLimit:I
            if_icmplt 9
         5: .line 130
            aload 0 /* this */
            bipush -2
            putfield java.io.BufferedReader.markedChar:I
         6: .line 131
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.readAheadLimit:I
         7: .line 132
            iconst_0
            istore 1 /* dst */
        start local 1 // int dst
         8: .line 133
            goto 20
        end local 1 // int dst
         9: .line 134
      StackMap locals: java.io.BufferedReader top int
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.readAheadLimit:I
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            arraylength
            if_icmpgt 14
        10: .line 136
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            iconst_0
            iload 2 /* delta */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 137
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.markedChar:I
        12: .line 138
            iload 2 /* delta */
            istore 1 /* dst */
        start local 1 // int dst
        13: .line 139
            goto 19
        end local 1 // int dst
        14: .line 141
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.readAheadLimit:I
            newarray 5
            astore 3 /* ncb */
        start local 3 // char[] ncb
        15: .line 142
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            aload 3 /* ncb */
            iconst_0
            iload 2 /* delta */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        16: .line 143
            aload 0 /* this */
            aload 3 /* ncb */
            putfield java.io.BufferedReader.cb:[C
        17: .line 144
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.markedChar:I
        18: .line 145
            iload 2 /* delta */
            istore 1 /* dst */
        end local 3 // char[] ncb
        start local 1 // int dst
        19: .line 147
      StackMap locals: java.io.BufferedReader int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* delta */
            dup_x1
            putfield java.io.BufferedReader.nChars:I
            putfield java.io.BufferedReader.nextChar:I
        end local 2 // int delta
        20: .line 153
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            iload 1 /* dst */
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            arraylength
            iload 1 /* dst */
            isub
            invokevirtual java.io.Reader.read:([CII)I
            istore 2 /* n */
        start local 2 // int n
        21: .line 154
            iload 2 /* n */
            ifeq 20
        22: .line 155
            iload 2 /* n */
            ifle 25
        23: .line 156
            aload 0 /* this */
            iload 1 /* dst */
            iload 2 /* n */
            iadd
            putfield java.io.BufferedReader.nChars:I
        24: .line 157
            aload 0 /* this */
            iload 1 /* dst */
            putfield java.io.BufferedReader.nextChar:I
        25: .line 159
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int n
        end local 1 // int dst
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   26     0   this  Ljava/io/BufferedReader;
            2    3     1    dst  I
            8    9     1    dst  I
           13   14     1    dst  I
           19   26     1    dst  I
            4   20     2  delta  I
           15   19     3    ncb  [C
           21   26     2      n  I
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 170
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 171
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.ensureOpen:()V
         2: .line 173
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 7
         3: .line 174
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.fill:()V
         4: .line 175
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 7
         5: .line 176
            aload 1
            monitorexit
         6: iconst_m1
            ireturn
         7: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.skipLF:Z
            ifeq 12
         8: .line 179
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.skipLF:Z
         9: .line 180
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            caload
            bipush 10
            if_icmpne 12
        10: .line 181
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.BufferedReader.nextChar:I
        11: .line 182
            goto 2
        12: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            dup_x1
            iconst_1
            iadd
            putfield java.io.BufferedReader.nextChar:I
            caload
            aload 1
            monitorexit
        13: ireturn
        14: .line 170
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        15: athrow
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Ljava/io/BufferedReader;
      Exception table:
        from    to  target  type
           1     6      14  any
           7    13      14  any
          14    15      14  any
    Exceptions:
      throws java.io.IOException

  private int read1(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // java.io.BufferedReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 195
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 4
         1: .line 201
            iload 3 /* len */
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            arraylength
            if_icmplt 3
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            iconst_m1
            if_icmpgt 3
            aload 0 /* this */
            getfield java.io.BufferedReader.skipLF:Z
            ifne 3
         2: .line 202
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.Reader.read:([CII)I
            ireturn
         3: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.fill:()V
         4: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 5
            iconst_m1
            ireturn
         5: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.skipLF:Z
            ifeq 13
         6: .line 208
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.skipLF:Z
         7: .line 209
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            caload
            bipush 10
            if_icmpne 13
         8: .line 210
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.BufferedReader.nextChar:I
         9: .line 211
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 11
        10: .line 212
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.fill:()V
        11: .line 213
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 13
        12: .line 214
            iconst_m1
            ireturn
        13: .line 217
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            isub
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* n */
        start local 4 // int n
        14: .line 218
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 4 /* n */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 219
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            iload 4 /* n */
            iadd
            putfield java.io.BufferedReader.nextChar:I
        16: .line 220
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Ljava/io/BufferedReader;
            0   17     1  cbuf  [C
            0   17     2   off  I
            0   17     3   len  I
           14   17     4     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public int read(char[], int, int);
    descriptor: ([CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // java.io.BufferedReader this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 269
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 270
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.ensureOpen:()V
         2: .line 271
            iload 2 /* off */
            iflt 4
            iload 2 /* off */
            aload 1 /* cbuf */
            arraylength
            if_icmpgt 4
            iload 3 /* len */
            iflt 4
         3: .line 272
            iload 2 /* off */
            iload 3 /* len */
            iadd
            aload 1 /* cbuf */
            arraylength
            if_icmpgt 4
            iload 2 /* off */
            iload 3 /* len */
            iadd
            ifge 5
         4: .line 273
      StackMap locals: java.lang.Object
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         5: .line 274
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifne 8
         6: .line 275
            aload 4
            monitorexit
         7: iconst_0
            ireturn
         8: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.BufferedReader.read1:([CII)I
            istore 5 /* n */
        start local 5 // int n
         9: .line 279
            iload 5 /* n */
            ifgt 14
            iload 5 /* n */
            aload 4
            monitorexit
        10: ireturn
        11: .line 281
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* off */
            iload 5 /* n */
            iadd
            iload 3 /* len */
            iload 5 /* n */
            isub
            invokevirtual java.io.BufferedReader.read1:([CII)I
            istore 6 /* n1 */
        start local 6 // int n1
        12: .line 282
            iload 6 /* n1 */
            ifgt 13
            goto 15
        13: .line 283
      StackMap locals: int
      StackMap stack:
            iload 5 /* n */
            iload 6 /* n1 */
            iadd
            istore 5 /* n */
        end local 6 // int n1
        14: .line 280
      StackMap locals:
      StackMap stack:
            iload 5 /* n */
            iload 3 /* len */
            if_icmpge 15
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.ready:()Z
            ifne 11
        15: .line 285
      StackMap locals:
      StackMap stack:
            iload 5 /* n */
            aload 4
            monitorexit
        16: ireturn
        end local 5 // int n
        17: .line 269
      StackMap locals: java.io.BufferedReader char[] int int java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
        18: athrow
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Ljava/io/BufferedReader;
            0   19     1  cbuf  [C
            0   19     2   off  I
            0   19     3   len  I
            9   17     5     n  I
           12   14     6    n1  I
      Exception table:
        from    to  target  type
           1     7      17  any
           8    10      17  any
          11    16      17  any
          17    18      17  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  java.lang.String readLine(boolean);
    descriptor: (Z)Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // java.io.BufferedReader this
        start local 1 // boolean ignoreLF
         0: .line 305
            aconst_null
            astore 2 /* s */
        start local 2 // java.lang.StringBuffer s
         1: .line 308
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         2: .line 309
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.ensureOpen:()V
         3: .line 310
            iload 1 /* ignoreLF */
            ifne 4
            aload 0 /* this */
            getfield java.io.BufferedReader.skipLF:Z
            ifne 4
            iconst_0
            goto 5
      StackMap locals: java.io.BufferedReader int java.lang.StringBuffer top java.lang.Object
      StackMap stack:
         4: iconst_1
      StackMap locals:
      StackMap stack: int
         5: istore 5 /* omitLF */
        start local 5 // boolean omitLF
         6: .line 315
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 8
         7: .line 316
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.fill:()V
         8: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 14
         9: .line 318
            aload 2 /* s */
            ifnull 12
            aload 2 /* s */
            invokevirtual java.lang.StringBuffer.length:()I
            ifle 12
        10: .line 319
            aload 2 /* s */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            aload 4
            monitorexit
        11: areturn
        12: .line 321
      StackMap locals:
      StackMap stack:
            aload 4
            monitorexit
        13: aconst_null
            areturn
        14: .line 323
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 6 /* eol */
        start local 6 // boolean eol
        15: .line 324
            iconst_0
            istore 7 /* c */
        start local 7 // char c
        16: .line 328
            iload 5 /* omitLF */
            ifeq 18
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            caload
            bipush 10
            if_icmpne 18
        17: .line 329
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.BufferedReader.nextChar:I
        18: .line 330
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.skipLF:Z
        19: .line 331
            iconst_0
            istore 5 /* omitLF */
        20: .line 334
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            istore 8 /* i */
        start local 8 // int i
        21: goto 27
        22: .line 335
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            iload 8 /* i */
            caload
            istore 7 /* c */
        23: .line 336
            iload 7 /* c */
            bipush 10
            if_icmpeq 24
            iload 7 /* c */
            bipush 13
            if_icmpne 26
        24: .line 337
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 6 /* eol */
        25: .line 338
            goto 28
        26: .line 334
      StackMap locals:
      StackMap stack:
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        27: iload 8 /* i */
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 22
        28: .line 342
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            istore 3 /* startChar */
        start local 3 // int startChar
        29: .line 343
            aload 0 /* this */
            iload 8 /* i */
            putfield java.io.BufferedReader.nextChar:I
        30: .line 345
            iload 6 /* eol */
            ifeq 41
        31: .line 347
            aload 2 /* s */
            ifnonnull 34
        32: .line 348
            new java.lang.String
            dup
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            iload 3 /* startChar */
            iload 8 /* i */
            iload 3 /* startChar */
            isub
            invokespecial java.lang.String.<init>:([CII)V
            astore 9 /* str */
        start local 9 // java.lang.String str
        33: .line 349
            goto 36
        end local 9 // java.lang.String str
        34: .line 350
      StackMap locals: java.io.BufferedReader int java.lang.StringBuffer int java.lang.Object int int int int
      StackMap stack:
            aload 2 /* s */
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            iload 3 /* startChar */
            iload 8 /* i */
            iload 3 /* startChar */
            isub
            invokevirtual java.lang.StringBuffer.append:([CII)Ljava/lang/StringBuffer;
            pop
        35: .line 351
            aload 2 /* s */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            astore 9 /* str */
        start local 9 // java.lang.String str
        36: .line 353
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.BufferedReader.nextChar:I
        37: .line 354
            iload 7 /* c */
            bipush 13
            if_icmpne 39
        38: .line 355
            aload 0 /* this */
            iconst_1
            putfield java.io.BufferedReader.skipLF:Z
        39: .line 357
      StackMap locals:
      StackMap stack:
            aload 9 /* str */
            aload 4
            monitorexit
        40: areturn
        end local 9 // java.lang.String str
        41: .line 360
      StackMap locals:
      StackMap stack:
            aload 2 /* s */
            ifnonnull 43
        42: .line 361
            new java.lang.StringBuffer
            dup
            getstatic java.io.BufferedReader.defaultExpectedLineLength:I
            invokespecial java.lang.StringBuffer.<init>:(I)V
            astore 2 /* s */
        43: .line 362
      StackMap locals:
      StackMap stack:
            aload 2 /* s */
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            iload 3 /* startChar */
            iload 8 /* i */
            iload 3 /* startChar */
            isub
            invokevirtual java.lang.StringBuffer.append:([CII)Ljava/lang/StringBuffer;
            pop
        end local 8 // int i
        end local 7 // char c
        end local 6 // boolean eol
        end local 3 // int startChar
        44: .line 313
            goto 6
        end local 5 // boolean omitLF
        45: .line 308
      StackMap locals: java.io.BufferedReader int java.lang.StringBuffer top java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
        46: athrow
        end local 2 // java.lang.StringBuffer s
        end local 1 // boolean ignoreLF
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   47     0       this  Ljava/io/BufferedReader;
            0   47     1   ignoreLF  Z
            1   47     2          s  Ljava/lang/StringBuffer;
           29   44     3  startChar  I
            6   45     5     omitLF  Z
           15   44     6        eol  Z
           16   44     7          c  C
           21   44     8          i  I
           33   34     9        str  Ljava/lang/String;
           36   41     9        str  Ljava/lang/String;
      Exception table:
        from    to  target  type
           2    11      45  any
          12    13      45  any
          14    40      45  any
          41    46      45  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      ignoreLF  

  public java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 379
            aload 0 /* this */
            iconst_0
            invokevirtual java.io.BufferedReader.readLine:(Z)Ljava/lang/String;
            areturn
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/BufferedReader;
    Exceptions:
      throws java.io.IOException

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // java.io.BufferedReader this
        start local 1 // long n
         0: .line 393
            lload 1 /* n */
            lconst_0
            lcmp
            ifge 2
         1: .line 394
            new java.lang.IllegalArgumentException
            dup
            ldc "skip value is negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         3: .line 397
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.ensureOpen:()V
         4: .line 398
            lload 1 /* n */
            lstore 4 /* r */
        start local 4 // long r
         5: .line 399
            goto 21
         6: .line 400
      StackMap locals: java.lang.Object long
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 8
         7: .line 401
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.fill:()V
         8: .line 402
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 10
         9: .line 403
            goto 22
        10: .line 404
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.skipLF:Z
            ifeq 14
        11: .line 405
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.skipLF:Z
        12: .line 406
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            caload
            bipush 10
            if_icmpne 14
        13: .line 407
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.BufferedReader.nextChar:I
        14: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            isub
            i2l
            lstore 6 /* d */
        start local 6 // long d
        15: .line 411
            lload 4 /* r */
            lload 6 /* d */
            lcmp
            ifgt 19
        16: .line 412
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            i2l
            lload 4 /* r */
            ladd
            l2i
            putfield java.io.BufferedReader.nextChar:I
        17: .line 413
            lconst_0
            lstore 4 /* r */
        18: .line 414
            goto 22
        19: .line 417
      StackMap locals: long
      StackMap stack:
            lload 4 /* r */
            lload 6 /* d */
            lsub
            lstore 4 /* r */
        20: .line 418
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            putfield java.io.BufferedReader.nextChar:I
        end local 6 // long d
        21: .line 399
      StackMap locals:
      StackMap stack:
            lload 4 /* r */
            lconst_0
            lcmp
            ifgt 6
        22: .line 421
      StackMap locals:
      StackMap stack:
            lload 1 /* n */
            lload 4 /* r */
            lsub
            aload 3
            monitorexit
        23: lreturn
        end local 4 // long r
        24: .line 396
      StackMap locals: java.io.BufferedReader long java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        25: athrow
        end local 1 // long n
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   26     0  this  Ljava/io/BufferedReader;
            0   26     1     n  J
            5   24     4     r  J
           15   21     6     d  J
      Exception table:
        from    to  target  type
           3    23      24  any
          24    25      24  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public boolean ready();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 433
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 434
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.ensureOpen:()V
         2: .line 440
            aload 0 /* this */
            getfield java.io.BufferedReader.skipLF:Z
            ifeq 9
         3: .line 444
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 5
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.ready:()Z
            ifeq 5
         4: .line 445
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.fill:()V
         5: .line 447
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmpge 9
         6: .line 448
            aload 0 /* this */
            getfield java.io.BufferedReader.cb:[C
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            caload
            bipush 10
            if_icmpne 8
         7: .line 449
            aload 0 /* this */
            dup
            getfield java.io.BufferedReader.nextChar:I
            iconst_1
            iadd
            putfield java.io.BufferedReader.nextChar:I
         8: .line 450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield java.io.BufferedReader.skipLF:Z
         9: .line 453
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            aload 0 /* this */
            getfield java.io.BufferedReader.nChars:I
            if_icmplt 10
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.ready:()Z
            ifne 10
            iconst_0
            goto 11
      StackMap locals:
      StackMap stack:
        10: iconst_1
      StackMap locals:
      StackMap stack: int
        11: aload 1
            monitorexit
        12: ireturn
        13: .line 433
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        14: athrow
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Ljava/io/BufferedReader;
      Exception table:
        from    to  target  type
           1    12      13  any
          13    14      13  any
    Exceptions:
      throws java.io.IOException

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 461
            iconst_1
            ireturn
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/BufferedReader;

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.io.BufferedReader this
        start local 1 // int readAheadLimit
         0: .line 481
            iload 1 /* readAheadLimit */
            ifge 2
         1: .line 482
            new java.lang.IllegalArgumentException
            dup
            ldc "Read-ahead limit < 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         3: .line 485
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.ensureOpen:()V
         4: .line 486
            aload 0 /* this */
            iload 1 /* readAheadLimit */
            putfield java.io.BufferedReader.readAheadLimit:I
         5: .line 487
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.BufferedReader.nextChar:I
            putfield java.io.BufferedReader.markedChar:I
         6: .line 488
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.BufferedReader.skipLF:Z
            putfield java.io.BufferedReader.markedSkipLF:Z
         7: .line 484
            aload 2
            monitorexit
         8: goto 11
      StackMap locals: java.io.BufferedReader int java.lang.Object
      StackMap stack: java.lang.Throwable
         9: aload 2
            monitorexit
        10: athrow
        11: .line 490
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int readAheadLimit
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   12     0            this  Ljava/io/BufferedReader;
            0   12     1  readAheadLimit  I
      Exception table:
        from    to  target  type
           3     8       9  any
           9    10       9  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                Name  Flags
      readAheadLimit  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 499
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 500
            aload 0 /* this */
            invokevirtual java.io.BufferedReader.ensureOpen:()V
         2: .line 501
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            ifge 7
         3: .line 502
            new java.io.IOException
            dup
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            bipush -2
            if_icmpne 5
         4: .line 503
            ldc "Mark invalid"
            goto 6
         5: .line 504
      StackMap locals: java.io.BufferedReader java.lang.Object
      StackMap stack: new 3 new 3
            ldc "Stream not marked"
         6: .line 502
      StackMap locals: java.io.BufferedReader java.lang.Object
      StackMap stack: new 3 new 3 java.lang.String
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 505
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.BufferedReader.markedChar:I
            putfield java.io.BufferedReader.nextChar:I
         8: .line 506
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.BufferedReader.markedSkipLF:Z
            putfield java.io.BufferedReader.skipLF:Z
         9: .line 499
            aload 1
            monitorexit
        10: goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: aload 1
            monitorexit
        12: athrow
        13: .line 508
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Ljava/io/BufferedReader;
      Exception table:
        from    to  target  type
           1    10      11  any
          11    12      11  any
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.io.BufferedReader this
         0: .line 511
            aload 0 /* this */
            getfield java.io.BufferedReader.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 512
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            ifnonnull 4
         2: .line 513
            aload 1
            monitorexit
         3: return
         4: .line 514
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.io.BufferedReader.in:Ljava/io/Reader;
            invokevirtual java.io.Reader.close:()V
         5: .line 515
            aload 0 /* this */
            aconst_null
            putfield java.io.BufferedReader.in:Ljava/io/Reader;
         6: .line 516
            aload 0 /* this */
            aconst_null
            putfield java.io.BufferedReader.cb:[C
         7: .line 511
            aload 1
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 518
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.BufferedReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljava/io/BufferedReader;
      Exception table:
        from    to  target  type
           1     3       9  any
           4     8       9  any
           9    10       9  any
    Exceptions:
      throws java.io.IOException
}
SourceFile: "BufferedReader.java"