public class java.util.zip.Inflater
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.util.zip.Inflater
  super_class: java.lang.Object
{
  private final java.util.zip.ZStreamRef zsRef;
    descriptor: Ljava/util/zip/ZStreamRef;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

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

  private long bytesRead;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long bytesWritten;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private static final byte[] defaultBuf;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 74
            ldc Ljava/util/zip/Inflater;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic java.util.zip.Inflater.$assertionsDisabled:Z
         3: .line 84
            iconst_0
            newarray 8
            putstatic java.util.zip.Inflater.defaultBuf:[B
         4: .line 88
            invokestatic java.util.zip.Inflater.initIDs:()V
         5: .line 89
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.util.zip.Inflater this
        start local 1 // boolean nowrap
         0: .line 102
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 77
            aload 0 /* this */
            getstatic java.util.zip.Inflater.defaultBuf:[B
            putfield java.util.zip.Inflater.buf:[B
         2: .line 103
            aload 0 /* this */
            new java.util.zip.ZStreamRef
            dup
            iload 1 /* nowrap */
            invokestatic java.util.zip.Inflater.init:(Z)J
            invokespecial java.util.zip.ZStreamRef.<init>:(J)V
            putfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
         3: .line 104
            return
        end local 1 // boolean nowrap
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljava/util/zip/Inflater;
            0    4     1  nowrap  Z
    MethodParameters:
        Name  Flags
      nowrap  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 110
            aload 0 /* this */
            iconst_0
            invokespecial java.util.zip.Inflater.<init>:(Z)V
         1: .line 111
            return
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/zip/Inflater;

  public void setInput(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // java.util.zip.Inflater this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 123
            aload 1 /* b */
            ifnonnull 2
         1: .line 124
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 126
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 3
            iload 3 /* len */
            iflt 3
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            iload 3 /* len */
            isub
            if_icmple 4
         3: .line 127
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 4
            monitorenter
         5: .line 130
            aload 0 /* this */
            aload 1 /* b */
            putfield java.util.zip.Inflater.buf:[B
         6: .line 131
            aload 0 /* this */
            iload 2 /* off */
            putfield java.util.zip.Inflater.off:I
         7: .line 132
            aload 0 /* this */
            iload 3 /* len */
            putfield java.util.zip.Inflater.len:I
         8: .line 129
            aload 4
            monitorexit
         9: goto 12
      StackMap locals: java.util.zip.Inflater byte[] int int java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
        10: aload 4
            monitorexit
        11: athrow
        12: .line 134
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljava/util/zip/Inflater;
            0   13     1     b  [B
            0   13     2   off  I
            0   13     3   len  I
      Exception table:
        from    to  target  type
           5     9      10  any
          10    11      10  any
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void setInput(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.zip.Inflater this
        start local 1 // byte[] b
         0: .line 144
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual java.util.zip.Inflater.setInput:([BII)V
         1: .line 145
            return
        end local 1 // byte[] b
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/zip/Inflater;
            0    2     1     b  [B
    MethodParameters:
      Name  Flags
      b     

  public void setDictionary(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // java.util.zip.Inflater this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 159
            aload 1 /* b */
            ifnonnull 2
         1: .line 160
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 162
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 3
            iload 3 /* len */
            iflt 3
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            iload 3 /* len */
            isub
            if_icmple 4
         3: .line 163
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 4
            monitorenter
         5: .line 166
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.ensureOpen:()V
         6: .line 167
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.address:()J
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokestatic java.util.zip.Inflater.setDictionary:(J[BII)V
         7: .line 168
            aload 0 /* this */
            iconst_0
            putfield java.util.zip.Inflater.needDict:Z
         8: .line 165
            aload 4
            monitorexit
         9: goto 12
      StackMap locals: java.util.zip.Inflater byte[] int int java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
        10: aload 4
            monitorexit
        11: athrow
        12: .line 170
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljava/util/zip/Inflater;
            0   13     1     b  [B
            0   13     2   off  I
            0   13     3   len  I
      Exception table:
        from    to  target  type
           5     9      10  any
          10    11      10  any
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void setDictionary(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.zip.Inflater this
        start local 1 // byte[] b
         0: .line 182
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual java.util.zip.Inflater.setDictionary:([BII)V
         1: .line 183
            return
        end local 1 // byte[] b
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/zip/Inflater;
            0    2     1     b  [B
    MethodParameters:
      Name  Flags
      b     

  public int getRemaining();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 192
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 193
            aload 0 /* this */
            getfield java.util.zip.Inflater.len:I
            aload 1
            monitorexit
         2: ireturn
         3: .line 192
      StackMap locals: java.util.zip.Inflater java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public boolean needsInput();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 204
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 205
            aload 0 /* this */
            getfield java.util.zip.Inflater.len:I
            ifgt 2
            iconst_1
            goto 3
      StackMap locals: java.util.zip.ZStreamRef
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: aload 1
            monitorexit
         4: ireturn
         5: .line 204
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  public boolean needsDictionary();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 215
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 216
            aload 0 /* this */
            getfield java.util.zip.Inflater.needDict:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 215
      StackMap locals: java.util.zip.Inflater java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public boolean finished();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 227
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 228
            aload 0 /* this */
            getfield java.util.zip.Inflater.finished:Z
            aload 1
            monitorexit
         2: ireturn
         3: .line 227
      StackMap locals: java.util.zip.Inflater java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         4: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     2       3  any
           3     4       3  any

  public int inflate(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // java.util.zip.Inflater this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 250
            aload 1 /* b */
            ifnonnull 2
         1: .line 251
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 253
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iflt 3
            iload 3 /* len */
            iflt 3
            iload 2 /* off */
            aload 1 /* b */
            arraylength
            iload 3 /* len */
            isub
            if_icmple 4
         3: .line 254
      StackMap locals:
      StackMap stack:
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 4
            monitorenter
         5: .line 257
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.ensureOpen:()V
         6: .line 258
            aload 0 /* this */
            getfield java.util.zip.Inflater.len:I
            istore 5 /* thisLen */
        start local 5 // int thisLen
         7: .line 259
            aload 0 /* this */
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.address:()J
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.util.zip.Inflater.inflateBytes:(J[BII)I
            istore 6 /* n */
        start local 6 // int n
         8: .line 260
            aload 0 /* this */
            dup
            getfield java.util.zip.Inflater.bytesWritten:J
            iload 6 /* n */
            i2l
            ladd
            putfield java.util.zip.Inflater.bytesWritten:J
         9: .line 261
            aload 0 /* this */
            dup
            getfield java.util.zip.Inflater.bytesRead:J
            iload 5 /* thisLen */
            aload 0 /* this */
            getfield java.util.zip.Inflater.len:I
            isub
            i2l
            ladd
            putfield java.util.zip.Inflater.bytesRead:J
        10: .line 262
            iload 6 /* n */
            aload 4
            monitorexit
        11: ireturn
        end local 6 // int n
        end local 5 // int thisLen
        12: .line 256
      StackMap locals: java.util.zip.Inflater byte[] int int java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
        13: athrow
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Ljava/util/zip/Inflater;
            0   14     1        b  [B
            0   14     2      off  I
            0   14     3      len  I
            7   12     5  thisLen  I
            8   12     6        n  I
      Exception table:
        from    to  target  type
           5    11      12  any
          12    13      12  any
    Exceptions:
      throws java.util.zip.DataFormatException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int inflate(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.zip.Inflater this
        start local 1 // byte[] b
         0: .line 280
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual java.util.zip.Inflater.inflate:([BII)I
            ireturn
        end local 1 // byte[] b
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/zip/Inflater;
            0    1     1     b  [B
    Exceptions:
      throws java.util.zip.DataFormatException
    MethodParameters:
      Name  Flags
      b     

  public int getAdler();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 288
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 289
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.ensureOpen:()V
         2: .line 290
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.address:()J
            invokestatic java.util.zip.Inflater.getAdler:(J)I
            aload 1
            monitorexit
         3: ireturn
         4: .line 288
      StackMap locals: java.util.zip.Inflater java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         5: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  public int getTotalIn();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 304
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.getBytesRead:()J
            l2i
            ireturn
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/zip/Inflater;

  public long getBytesRead();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 314
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 315
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.ensureOpen:()V
         2: .line 316
            aload 0 /* this */
            getfield java.util.zip.Inflater.bytesRead:J
            aload 1
            monitorexit
         3: lreturn
         4: .line 314
      StackMap locals: java.util.zip.Inflater java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         5: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  public int getTotalOut();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 330
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.getBytesWritten:()J
            l2i
            ireturn
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/zip/Inflater;

  public long getBytesWritten();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 340
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 341
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.ensureOpen:()V
         2: .line 342
            aload 0 /* this */
            getfield java.util.zip.Inflater.bytesWritten:J
            aload 1
            monitorexit
         3: lreturn
         4: .line 340
      StackMap locals: java.util.zip.Inflater java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         5: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 350
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 351
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.ensureOpen:()V
         2: .line 352
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.address:()J
            invokestatic java.util.zip.Inflater.reset:(J)V
         3: .line 353
            aload 0 /* this */
            getstatic java.util.zip.Inflater.defaultBuf:[B
            putfield java.util.zip.Inflater.buf:[B
         4: .line 354
            aload 0 /* this */
            iconst_0
            putfield java.util.zip.Inflater.finished:Z
         5: .line 355
            aload 0 /* this */
            iconst_0
            putfield java.util.zip.Inflater.needDict:Z
         6: .line 356
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield java.util.zip.Inflater.len:I
            putfield java.util.zip.Inflater.off:I
         7: .line 357
            aload 0 /* this */
            aload 0 /* this */
            lconst_0
            dup2_x1
            putfield java.util.zip.Inflater.bytesWritten:J
            putfield java.util.zip.Inflater.bytesRead:J
         8: .line 350
            aload 1
            monitorexit
         9: goto 12
      StackMap locals: java.util.zip.Inflater java.util.zip.ZStreamRef
      StackMap stack: java.lang.Throwable
        10: aload 1
            monitorexit
        11: athrow
        12: .line 359
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any

  public void end();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 369
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 370
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.address:()J
            lstore 2 /* addr */
        start local 2 // long addr
         2: .line 371
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.clear:()V
         3: .line 372
            lload 2 /* addr */
            lconst_0
            lcmp
            ifeq 6
         4: .line 373
            lload 2 /* addr */
            invokestatic java.util.zip.Inflater.end:(J)V
         5: .line 374
            aload 0 /* this */
            aconst_null
            putfield java.util.zip.Inflater.buf:[B
        end local 2 // long addr
         6: .line 369
      StackMap locals: java.util.zip.ZStreamRef
      StackMap stack:
            aload 1
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 1
            monitorexit
         9: athrow
        10: .line 377
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/util/zip/Inflater;
            2    6     2  addr  J
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 383
            aload 0 /* this */
            invokevirtual java.util.zip.Inflater.end:()V
         1: .line 384
            return
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/zip/Inflater;

  private void ensureOpen();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 387
            getstatic java.util.zip.Inflater.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 388
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.address:()J
            lconst_0
            lcmp
            ifne 3
         2: .line 389
            new java.lang.NullPointerException
            dup
            ldc "Inflater has been closed"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 390
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/zip/Inflater;

  boolean ended();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.zip.Inflater this
         0: .line 393
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            dup
            astore 1
            monitorenter
         1: .line 394
            aload 0 /* this */
            getfield java.util.zip.Inflater.zsRef:Ljava/util/zip/ZStreamRef;
            invokevirtual java.util.zip.ZStreamRef.address:()J
            lconst_0
            lcmp
            ifne 2
            iconst_1
            goto 3
      StackMap locals: java.util.zip.ZStreamRef
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: aload 1
            monitorexit
         4: ireturn
         5: .line 393
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // java.util.zip.Inflater this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/util/zip/Inflater;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  private static native void initIDs();
    descriptor: ()V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE

  private static native long init(boolean);
    descriptor: (Z)J
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
        Name  Flags
      nowrap  

  private static native void setDictionary(long, byte[], int, int);
    descriptor: (J[BII)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      addr  
      b     
      off   
      len   

  private native int inflateBytes(long, byte[], int, int);
    descriptor: (J[BII)I
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    Exceptions:
      throws java.util.zip.DataFormatException
    MethodParameters:
      Name  Flags
      addr  
      b     
      off   
      len   

  private static native int getAdler(long);
    descriptor: (J)I
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      addr  

  private static native void reset(long);
    descriptor: (J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      addr  

  private static native void end(long);
    descriptor: (J)V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
    MethodParameters:
      Name  Flags
      addr  
}
SourceFile: "Inflater.java"