public class org.apache.tools.zip.ZipFile implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.tools.zip.ZipFile
  super_class: java.lang.Object
{
  private static final int HASH_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 509

  static final int NIBLET_MASK;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 15

  static final int BYTE_SHIFT;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 8

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

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

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

  private static final int POS_3;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private final java.util.List<org.apache.tools.zip.ZipEntry> entries;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/apache/tools/zip/ZipEntry;>;

  private final java.util.Map<java.lang.String, java.util.LinkedList<org.apache.tools.zip.ZipEntry>> nameMap;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/util/LinkedList<Lorg/apache/tools/zip/ZipEntry;>;>;

  private final java.lang.String encoding;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.tools.zip.ZipEncoding zipEncoding;
    descriptor: Lorg/apache/tools/zip/ZipEncoding;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String archiveName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.io.RandomAccessFile archive;
    descriptor: Ljava/io/RandomAccessFile;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean useUnicodeExtraFields;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile boolean closed;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final byte[] DWORD_BUF;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] WORD_BUF;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] CFH_BUF;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] SHORT_BUF;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final int CFH_LEN;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 42

  private static final long CFH_SIG;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int MIN_EOCD_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 22

  private static final int MAX_EOCD_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 65557

  private static final int CFD_LOCATOR_OFFSET;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  private static final int ZIP64_EOCDL_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  private static final int ZIP64_EOCDL_LOCATOR_OFFSET;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  private static final int ZIP64_EOCD_CFD_LOCATOR_OFFSET;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 48

  private static final long LFH_OFFSET_FOR_FILENAME_LENGTH;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 26

  private final java.util.Comparator<org.apache.tools.zip.ZipEntry> OFFSET_COMPARATOR;
    descriptor: Ljava/util/Comparator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Comparator<Lorg/apache/tools/zip/ZipEntry;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 444
            getstatic org.apache.tools.zip.ZipOutputStream.CFH_SIG:[B
            invokestatic org.apache.tools.zip.ZipLong.getValue:([B)J
         1: .line 443
            putstatic org.apache.tools.zip.ZipFile.CFH_SIG:J
         2: .line 852
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.io.File f
         0: .line 152
            aload 0 /* this */
            aload 1 /* f */
            aconst_null
            invokespecial org.apache.tools.zip.ZipFile.<init>:(Ljava/io/File;Ljava/lang/String;)V
         1: .line 153
            return
        end local 1 // java.io.File f
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/tools/zip/ZipFile;
            0    2     1     f  Ljava/io/File;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      f     final

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.lang.String name
         0: .line 164
            aload 0 /* this */
            new java.io.File
            dup
            aload 1 /* name */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            aconst_null
            invokespecial org.apache.tools.zip.ZipFile.<init>:(Ljava/io/File;Ljava/lang/String;)V
         1: .line 165
            return
        end local 1 // java.lang.String name
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/tools/zip/ZipFile;
            0    2     1  name  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  final

  public void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String encoding
         0: .line 178
            aload 0 /* this */
            new java.io.File
            dup
            aload 1 /* name */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            aload 2 /* encoding */
            iconst_1
            invokespecial org.apache.tools.zip.ZipFile.<init>:(Ljava/io/File;Ljava/lang/String;Z)V
         1: .line 179
            return
        end local 2 // java.lang.String encoding
        end local 1 // java.lang.String name
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/tools/zip/ZipFile;
            0    2     1      name  Ljava/lang/String;
            0    2     2  encoding  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      name      final
      encoding  final

  public void <init>(java.io.File, java.lang.String);
    descriptor: (Ljava/io/File;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.io.File f
        start local 2 // java.lang.String encoding
         0: .line 192
            aload 0 /* this */
            aload 1 /* f */
            aload 2 /* encoding */
            iconst_1
            invokespecial org.apache.tools.zip.ZipFile.<init>:(Ljava/io/File;Ljava/lang/String;Z)V
         1: .line 193
            return
        end local 2 // java.lang.String encoding
        end local 1 // java.io.File f
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/tools/zip/ZipFile;
            0    2     1         f  Ljava/io/File;
            0    2     2  encoding  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      f         final
      encoding  final

  public void <init>(java.io.File, java.lang.String, boolean);
    descriptor: (Ljava/io/File;Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.io.File f
        start local 2 // java.lang.String encoding
        start local 3 // boolean useUnicodeExtraFields
         0: .line 207
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 89
            aload 0 /* this */
            new java.util.LinkedList
            dup
            invokespecial java.util.LinkedList.<init>:()V
            putfield org.apache.tools.zip.ZipFile.entries:Ljava/util/List;
         2: .line 94
            aload 0 /* this */
         3: .line 95
            new java.util.HashMap
            dup
            sipush 509
            invokespecial java.util.HashMap.<init>:(I)V
            putfield org.apache.tools.zip.ZipFile.nameMap:Ljava/util/Map;
         4: .line 138
            aload 0 /* this */
            bipush 8
            newarray 8
            putfield org.apache.tools.zip.ZipFile.DWORD_BUF:[B
         5: .line 139
            aload 0 /* this */
            iconst_4
            newarray 8
            putfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
         6: .line 140
            aload 0 /* this */
            bipush 42
            newarray 8
            putfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
         7: .line 141
            aload 0 /* this */
            iconst_2
            newarray 8
            putfield org.apache.tools.zip.ZipFile.SHORT_BUF:[B
         8: .line 998
            aload 0 /* this */
            invokedynamic compare()Ljava/util/Comparator;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)I
                  org/apache/tools/zip/ZipFile.lambda$0(Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipEntry;)I (6)
                  (Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipEntry;)I
            putfield org.apache.tools.zip.ZipFile.OFFSET_COMPARATOR:Ljava/util/Comparator;
         9: .line 209
            aload 0 /* this */
            aload 1 /* f */
            invokevirtual java.io.File.getAbsolutePath:()Ljava/lang/String;
            putfield org.apache.tools.zip.ZipFile.archiveName:Ljava/lang/String;
        10: .line 210
            aload 0 /* this */
            aload 2 /* encoding */
            putfield org.apache.tools.zip.ZipFile.encoding:Ljava/lang/String;
        11: .line 211
            aload 0 /* this */
            aload 2 /* encoding */
            invokestatic org.apache.tools.zip.ZipEncodingHelper.getZipEncoding:(Ljava/lang/String;)Lorg/apache/tools/zip/ZipEncoding;
            putfield org.apache.tools.zip.ZipFile.zipEncoding:Lorg/apache/tools/zip/ZipEncoding;
        12: .line 212
            aload 0 /* this */
            iload 3 /* useUnicodeExtraFields */
            putfield org.apache.tools.zip.ZipFile.useUnicodeExtraFields:Z
        13: .line 213
            aload 0 /* this */
            new java.io.RandomAccessFile
            dup
            aload 1 /* f */
            ldc "r"
            invokespecial java.io.RandomAccessFile.<init>:(Ljava/io/File;Ljava/lang/String;)V
            putfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
        14: .line 214
            iconst_0
            istore 4 /* success */
        start local 4 // boolean success
        15: .line 217
            aload 0 /* this */
            invokevirtual org.apache.tools.zip.ZipFile.populateFromCentralDirectory:()Ljava/util/Map;
        16: .line 216
            astore 5 /* entriesWithoutUTF8Flag */
        start local 5 // java.util.Map entriesWithoutUTF8Flag
        17: .line 218
            aload 0 /* this */
            aload 5 /* entriesWithoutUTF8Flag */
            invokevirtual org.apache.tools.zip.ZipFile.resolveLocalFileHeaderData:(Ljava/util/Map;)V
        18: .line 219
            iconst_1
            istore 4 /* success */
        end local 5 // java.util.Map entriesWithoutUTF8Flag
        19: .line 220
            goto 29
      StackMap locals: org.apache.tools.zip.ZipFile java.io.File java.lang.String int int
      StackMap stack: java.lang.Throwable
        20: astore 6
        21: .line 221
            aload 0 /* this */
            iload 4 /* success */
            ifeq 22
            iconst_0
            goto 23
      StackMap locals: org.apache.tools.zip.ZipFile java.io.File java.lang.String int int top java.lang.Throwable
      StackMap stack: org.apache.tools.zip.ZipFile
        22: iconst_1
      StackMap locals: org.apache.tools.zip.ZipFile java.io.File java.lang.String int int top java.lang.Throwable
      StackMap stack: org.apache.tools.zip.ZipFile int
        23: putfield org.apache.tools.zip.ZipFile.closed:Z
        24: .line 222
            iload 4 /* success */
            ifne 28
        25: .line 224
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.close:()V
        26: .line 225
            goto 28
      StackMap locals:
      StackMap stack: java.io.IOException
        27: pop
        28: .line 229
      StackMap locals:
      StackMap stack:
            aload 6
            athrow
        29: .line 221
      StackMap locals: org.apache.tools.zip.ZipFile java.io.File java.lang.String int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* success */
            ifeq 30
            iconst_0
            goto 31
      StackMap locals:
      StackMap stack: org.apache.tools.zip.ZipFile
        30: iconst_1
      StackMap locals: org.apache.tools.zip.ZipFile java.io.File java.lang.String int int
      StackMap stack: org.apache.tools.zip.ZipFile int
        31: putfield org.apache.tools.zip.ZipFile.closed:Z
        32: .line 222
            iload 4 /* success */
            ifne 36
        33: .line 224
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.close:()V
        34: .line 225
            goto 36
      StackMap locals:
      StackMap stack: java.io.IOException
        35: pop
        36: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 4 // boolean success
        end local 3 // boolean useUnicodeExtraFields
        end local 2 // java.lang.String encoding
        end local 1 // java.io.File f
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   37     0                    this  Lorg/apache/tools/zip/ZipFile;
            0   37     1                       f  Ljava/io/File;
            0   37     2                encoding  Ljava/lang/String;
            0   37     3   useUnicodeExtraFields  Z
           15   37     4                 success  Z
           17   19     5  entriesWithoutUTF8Flag  Ljava/util/Map<Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$NameAndComment;>;
      Exception table:
        from    to  target  type
          15    20      20  any
          25    26      27  Class java.io.IOException
          33    34      35  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                       Name  Flags
      f                      final
      encoding               final
      useUnicodeExtraFields  final

  public java.lang.String getEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 238
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.encoding:Ljava/lang/String;
            areturn
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tools/zip/ZipFile;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 250
            aload 0 /* this */
            iconst_1
            putfield org.apache.tools.zip.ZipFile.closed:Z
         1: .line 252
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.close:()V
         2: .line 253
            return
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/tools/zip/ZipFile;
    Exceptions:
      throws java.io.IOException

  public static void closeQuietly(org.apache.tools.zip.ZipFile);
    descriptor: (Lorg/apache/tools/zip/ZipFile;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile zipfile
         0: .line 261
            aload 0 /* zipfile */
            ifnull 4
         1: .line 263
            aload 0 /* zipfile */
            invokevirtual org.apache.tools.zip.ZipFile.close:()V
         2: .line 264
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         3: pop
         4: .line 268
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.tools.zip.ZipFile zipfile
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0  zipfile  Lorg/apache/tools/zip/ZipFile;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException
    MethodParameters:
         Name  Flags
      zipfile  final

  public java.util.Enumeration<org.apache.tools.zip.ZipEntry> getEntries();
    descriptor: ()Ljava/util/Enumeration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 279
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.entries:Ljava/util/List;
            invokestatic java.util.Collections.enumeration:(Ljava/util/Collection;)Ljava/util/Enumeration;
            areturn
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tools/zip/ZipFile;
    Signature: ()Ljava/util/Enumeration<Lorg/apache/tools/zip/ZipEntry;>;

  public java.util.Enumeration<org.apache.tools.zip.ZipEntry> getEntriesInPhysicalOrder();
    descriptor: ()Ljava/util/Enumeration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 293
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.entries:Ljava/util/List;
            invokeinterface java.util.List.stream:()Ljava/util/stream/Stream;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.OFFSET_COMPARATOR:Ljava/util/Comparator;
            invokeinterface java.util.stream.Stream.sorted:(Ljava/util/Comparator;)Ljava/util/stream/Stream;
         1: .line 294
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  java/util/Collections.enumeration(Ljava/util/Collection;)Ljava/util/Enumeration; (6)
                  (Ljava/util/List;)Ljava/util/Enumeration;
            invokestatic java.util.stream.Collectors.collectingAndThen:(Ljava/util/stream/Collector;Ljava/util/function/Function;)Ljava/util/stream/Collector;
         2: .line 293
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.util.Enumeration
            areturn
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/tools/zip/ZipFile;
    Signature: ()Ljava/util/Enumeration<Lorg/apache/tools/zip/ZipEntry;>;

  public org.apache.tools.zip.ZipEntry getEntry(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/apache/tools/zip/ZipEntry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.lang.String name
         0: .line 310
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.nameMap:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedList
            astore 2 /* entriesOfThatName */
        start local 2 // java.util.LinkedList entriesOfThatName
         1: .line 311
            aload 2 /* entriesOfThatName */
            ifnull 2
            aload 2 /* entriesOfThatName */
            invokevirtual java.util.LinkedList.getFirst:()Ljava/lang/Object;
            checkcast org.apache.tools.zip.ZipEntry
            goto 3
      StackMap locals: java.util.LinkedList
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: org.apache.tools.zip.ZipEntry
         3: areturn
        end local 2 // java.util.LinkedList entriesOfThatName
        end local 1 // java.lang.String name
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/apache/tools/zip/ZipFile;
            0    4     1               name  Ljava/lang/String;
            1    4     2  entriesOfThatName  Ljava/util/LinkedList<Lorg/apache/tools/zip/ZipEntry;>;
    MethodParameters:
      Name  Flags
      name  final

  public java.lang.Iterable<org.apache.tools.zip.ZipEntry> getEntries(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.lang.String name
         0: .line 324
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.nameMap:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.List
            astore 2 /* entriesOfThatName */
        start local 2 // java.util.List entriesOfThatName
         1: .line 325
            aload 2 /* entriesOfThatName */
            ifnull 2
            aload 2 /* entriesOfThatName */
            goto 3
         2: .line 326
      StackMap locals: java.util.List
      StackMap stack:
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
         3: .line 325
      StackMap locals:
      StackMap stack: java.util.List
            areturn
        end local 2 // java.util.List entriesOfThatName
        end local 1 // java.lang.String name
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/apache/tools/zip/ZipFile;
            0    4     1               name  Ljava/lang/String;
            1    4     2  entriesOfThatName  Ljava/util/List<Lorg/apache/tools/zip/ZipEntry;>;
    Signature: (Ljava/lang/String;)Ljava/lang/Iterable<Lorg/apache/tools/zip/ZipEntry;>;
    MethodParameters:
      Name  Flags
      name  final

  public java.lang.Iterable<org.apache.tools.zip.ZipEntry> getEntriesInPhysicalOrder(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.lang.String name
         0: .line 339
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.nameMap:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 4
         1: .line 340
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.nameMap:Ljava/util/Map;
            aload 1 /* name */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.LinkedList
            invokevirtual java.util.LinkedList.stream:()Ljava/util/stream/Stream;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.OFFSET_COMPARATOR:Ljava/util/Comparator;
            invokeinterface java.util.stream.Stream.sorted:(Ljava/util/Comparator;)Ljava/util/stream/Stream;
         2: .line 341
            invokestatic java.util.stream.Collectors.toList:()Ljava/util/stream/Collector;
            invokeinterface java.util.stream.Stream.collect:(Ljava/util/stream/Collector;)Ljava/lang/Object;
            checkcast java.lang.Iterable
         3: .line 340
            areturn
         4: .line 343
      StackMap locals:
      StackMap stack:
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/tools/zip/ZipFile;
            0    5     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Ljava/lang/Iterable<Lorg/apache/tools/zip/ZipEntry;>;
    MethodParameters:
      Name  Flags
      name  final

  public boolean canReadEntryData(org.apache.tools.zip.ZipEntry);
    descriptor: (Lorg/apache/tools/zip/ZipEntry;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // org.apache.tools.zip.ZipEntry ze
         0: .line 356
            aload 1 /* ze */
            invokestatic org.apache.tools.zip.ZipUtil.canHandleEntryData:(Lorg/apache/tools/zip/ZipEntry;)Z
            ireturn
        end local 1 // org.apache.tools.zip.ZipEntry ze
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tools/zip/ZipFile;
            0    1     1    ze  Lorg/apache/tools/zip/ZipEntry;
    MethodParameters:
      Name  Flags
      ze    final

  public java.io.InputStream getInputStream(org.apache.tools.zip.ZipEntry);
    descriptor: (Lorg/apache/tools/zip/ZipEntry;)Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // org.apache.tools.zip.ZipEntry ze
         0: .line 369
            aload 1 /* ze */
            instanceof org.apache.tools.zip.ZipFile$Entry
            ifne 2
         1: .line 370
            aconst_null
            areturn
         2: .line 373
      StackMap locals:
      StackMap stack:
            aload 1 /* ze */
            checkcast org.apache.tools.zip.ZipFile$Entry
            invokevirtual org.apache.tools.zip.ZipFile$Entry.getOffsetEntry:()Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            astore 2 /* offsetEntry */
        start local 2 // org.apache.tools.zip.ZipFile$OffsetEntry offsetEntry
         3: .line 374
            aload 1 /* ze */
            invokestatic org.apache.tools.zip.ZipUtil.checkRequestedFeatures:(Lorg/apache/tools/zip/ZipEntry;)V
         4: .line 375
            aload 2 /* offsetEntry */
            getfield org.apache.tools.zip.ZipFile$OffsetEntry.dataOffset:J
            lstore 3 /* start */
        start local 3 // long start
         5: .line 379
            new org.apache.tools.zip.ZipFile$BoundedInputStream
            dup
            aload 0 /* this */
            lload 3 /* start */
            aload 1 /* ze */
            invokevirtual org.apache.tools.zip.ZipEntry.getCompressedSize:()J
            invokespecial org.apache.tools.zip.ZipFile$BoundedInputStream.<init>:(Lorg/apache/tools/zip/ZipFile;JJ)V
         6: .line 378
            astore 5 /* bis */
        start local 5 // org.apache.tools.zip.ZipFile$BoundedInputStream bis
         7: .line 380
            aload 1 /* ze */
            invokevirtual org.apache.tools.zip.ZipEntry.getMethod:()I
            lookupswitch { // 2
                    0: 8
                    8: 9
              default: 12
          }
         8: .line 382
      StackMap locals: org.apache.tools.zip.ZipFile$OffsetEntry long org.apache.tools.zip.ZipFile$BoundedInputStream
      StackMap stack:
            aload 5 /* bis */
            areturn
         9: .line 384
      StackMap locals:
      StackMap stack:
            aload 5 /* bis */
            invokevirtual org.apache.tools.zip.ZipFile$BoundedInputStream.addDummy:()V
        10: .line 385
            new java.util.zip.Inflater
            dup
            iconst_1
            invokespecial java.util.zip.Inflater.<init>:(Z)V
            astore 6 /* inflater */
        start local 6 // java.util.zip.Inflater inflater
        11: .line 386
            new org.apache.tools.zip.ZipFile$1
            dup
            aload 0 /* this */
            aload 5 /* bis */
            aload 6 /* inflater */
            aload 6 /* inflater */
            invokespecial org.apache.tools.zip.ZipFile$1.<init>:(Lorg/apache/tools/zip/ZipFile;Ljava/io/InputStream;Ljava/util/zip/Inflater;Ljava/util/zip/Inflater;)V
            areturn
        end local 6 // java.util.zip.Inflater inflater
        12: .line 394
      StackMap locals:
      StackMap stack:
            new java.util.zip.ZipException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Found unsupported compression method "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        13: .line 395
            aload 1 /* ze */
            invokevirtual org.apache.tools.zip.ZipEntry.getMethod:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        14: .line 394
            invokespecial java.util.zip.ZipException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // org.apache.tools.zip.ZipFile$BoundedInputStream bis
        end local 3 // long start
        end local 2 // org.apache.tools.zip.ZipFile$OffsetEntry offsetEntry
        end local 1 // org.apache.tools.zip.ZipEntry ze
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lorg/apache/tools/zip/ZipFile;
            0   15     1           ze  Lorg/apache/tools/zip/ZipEntry;
            3   15     2  offsetEntry  Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            5   15     3        start  J
            7   15     5          bis  Lorg/apache/tools/zip/ZipFile$BoundedInputStream;
           11   12     6     inflater  Ljava/util/zip/Inflater;
    Exceptions:
      throws java.io.IOException, java.util.zip.ZipException
    MethodParameters:
      Name  Flags
      ze    final

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 400
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archiveName:Ljava/lang/String;
            areturn
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/tools/zip/ZipFile;

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 411
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.closed:Z
            ifne 9
         1: .line 412
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            ldc "Cleaning up unclosed %s for archive %s%n"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
         2: .line 413
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archiveName:Ljava/lang/String;
            aastore
         3: .line 412
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         4: .line 414
            aload 0 /* this */
            invokevirtual org.apache.tools.zip.ZipFile.close:()V
         5: .line 416
            goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: astore 1
         7: .line 417
            aload 0 /* this */
            invokespecial java.lang.Object.finalize:()V
         8: .line 418
            aload 1
            athrow
         9: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokespecial java.lang.Object.finalize:()V
        10: .line 419
            return
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/tools/zip/ZipFile;
      Exception table:
        from    to  target  type
           0     6       6  any
    Exceptions:
      throws java.lang.Throwable

  private java.util.Map<org.apache.tools.zip.ZipEntry, org.apache.tools.zip.ZipFile$NameAndComment> populateFromCentralDirectory();
    descriptor: ()Ljava/util/Map;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 459
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 1 /* noUTF8Flag */
        start local 1 // java.util.Map noUTF8Flag
         1: .line 461
            aload 0 /* this */
            invokevirtual org.apache.tools.zip.ZipFile.positionAtCentralDirectory:()V
         2: .line 463
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         3: .line 464
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokestatic org.apache.tools.zip.ZipLong.getValue:([B)J
            lstore 2 /* sig */
        start local 2 // long sig
         4: .line 466
            lload 2 /* sig */
            getstatic org.apache.tools.zip.ZipFile.CFH_SIG:J
            lcmp
            ifeq 11
            aload 0 /* this */
            invokevirtual org.apache.tools.zip.ZipFile.startsWithLocalFileHeader:()Z
            ifeq 11
         5: .line 467
            new java.io.IOException
            dup
         6: .line 468
            ldc "central directory is empty, can't expand corrupt archive."
         7: .line 467
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 472
      StackMap locals: java.util.Map long
      StackMap stack:
            aload 0 /* this */
            aload 1 /* noUTF8Flag */
            invokevirtual org.apache.tools.zip.ZipFile.readCentralDirectoryEntry:(Ljava/util/Map;)V
         9: .line 473
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
        10: .line 474
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokestatic org.apache.tools.zip.ZipLong.getValue:([B)J
            lstore 2 /* sig */
        11: .line 471
      StackMap locals:
      StackMap stack:
            lload 2 /* sig */
            getstatic org.apache.tools.zip.ZipFile.CFH_SIG:J
            lcmp
            ifeq 8
        12: .line 476
            aload 1 /* noUTF8Flag */
            areturn
        end local 2 // long sig
        end local 1 // java.util.Map noUTF8Flag
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lorg/apache/tools/zip/ZipFile;
            1   13     1  noUTF8Flag  Ljava/util/Map<Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$NameAndComment;>;
            4   13     2         sig  J
    Exceptions:
      throws java.io.IOException
    Signature: ()Ljava/util/Map<Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$NameAndComment;>;

  private void readCentralDirectoryEntry(java.util.Map<org.apache.tools.zip.ZipEntry, org.apache.tools.zip.ZipFile$NameAndComment>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=18, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.util.Map noUTF8Flag
         0: .line 491
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         1: .line 492
            iconst_0
            istore 2 /* off */
        start local 2 // int off
         2: .line 493
            new org.apache.tools.zip.ZipFile$OffsetEntry
            dup
            invokespecial org.apache.tools.zip.ZipFile$OffsetEntry.<init>:()V
            astore 3 /* offset */
        start local 3 // org.apache.tools.zip.ZipFile$OffsetEntry offset
         3: .line 494
            new org.apache.tools.zip.ZipFile$Entry
            dup
            aload 3 /* offset */
            invokespecial org.apache.tools.zip.ZipFile$Entry.<init>:(Lorg/apache/tools/zip/ZipFile$OffsetEntry;)V
            astore 4 /* ze */
        start local 4 // org.apache.tools.zip.ZipFile$Entry ze
         4: .line 496
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipShort.getValue:([BI)I
            istore 5 /* versionMadeBy */
        start local 5 // int versionMadeBy
         5: .line 497
            iinc 2 /* off */ 2
         6: .line 498
            aload 4 /* ze */
            iload 5 /* versionMadeBy */
            bipush 8
            ishr
            bipush 15
            iand
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setPlatform:(I)V
         7: .line 500
            iinc 2 /* off */ 2
         8: .line 502
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.GeneralPurposeBit.parse:([BI)Lorg/apache/tools/zip/GeneralPurposeBit;
            astore 6 /* gpFlag */
        start local 6 // org.apache.tools.zip.GeneralPurposeBit gpFlag
         9: .line 503
            aload 6 /* gpFlag */
            invokevirtual org.apache.tools.zip.GeneralPurposeBit.usesUTF8ForNames:()Z
            istore 7 /* hasUTF8Flag */
        start local 7 // boolean hasUTF8Flag
        10: .line 505
            iload 7 /* hasUTF8Flag */
            ifeq 11
            getstatic org.apache.tools.zip.ZipEncodingHelper.UTF8_ZIP_ENCODING:Lorg/apache/tools/zip/ZipEncoding;
            goto 12
      StackMap locals: org.apache.tools.zip.ZipFile java.util.Map int org.apache.tools.zip.ZipFile$OffsetEntry org.apache.tools.zip.ZipFile$Entry int org.apache.tools.zip.GeneralPurposeBit int
      StackMap stack:
        11: aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.zipEncoding:Lorg/apache/tools/zip/ZipEncoding;
        12: .line 504
      StackMap locals:
      StackMap stack: org.apache.tools.zip.ZipEncoding
            astore 8 /* entryEncoding */
        start local 8 // org.apache.tools.zip.ZipEncoding entryEncoding
        13: .line 506
            aload 4 /* ze */
            aload 6 /* gpFlag */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setGeneralPurposeBit:(Lorg/apache/tools/zip/GeneralPurposeBit;)V
        14: .line 508
            iinc 2 /* off */ 2
        15: .line 510
            aload 4 /* ze */
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipShort.getValue:([BI)I
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setMethod:(I)V
        16: .line 511
            iinc 2 /* off */ 2
        17: .line 513
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipLong.getValue:([BI)J
            invokestatic org.apache.tools.zip.ZipUtil.dosToJavaTime:(J)J
            lstore 9 /* time */
        start local 9 // long time
        18: .line 514
            aload 4 /* ze */
            lload 9 /* time */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setTime:(J)V
        19: .line 515
            iinc 2 /* off */ 4
        20: .line 517
            aload 4 /* ze */
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipLong.getValue:([BI)J
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setCrc:(J)V
        21: .line 518
            iinc 2 /* off */ 4
        22: .line 520
            aload 4 /* ze */
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipLong.getValue:([BI)J
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setCompressedSize:(J)V
        23: .line 521
            iinc 2 /* off */ 4
        24: .line 523
            aload 4 /* ze */
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipLong.getValue:([BI)J
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setSize:(J)V
        25: .line 524
            iinc 2 /* off */ 4
        26: .line 526
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipShort.getValue:([BI)I
            istore 11 /* fileNameLen */
        start local 11 // int fileNameLen
        27: .line 527
            iinc 2 /* off */ 2
        28: .line 529
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipShort.getValue:([BI)I
            istore 12 /* extraLen */
        start local 12 // int extraLen
        29: .line 530
            iinc 2 /* off */ 2
        30: .line 532
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipShort.getValue:([BI)I
            istore 13 /* commentLen */
        start local 13 // int commentLen
        31: .line 533
            iinc 2 /* off */ 2
        32: .line 535
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipShort.getValue:([BI)I
            istore 14 /* diskStart */
        start local 14 // int diskStart
        33: .line 536
            iinc 2 /* off */ 2
        34: .line 538
            aload 4 /* ze */
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipShort.getValue:([BI)I
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setInternalAttributes:(I)V
        35: .line 539
            iinc 2 /* off */ 2
        36: .line 541
            aload 4 /* ze */
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipLong.getValue:([BI)J
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setExternalAttributes:(J)V
        37: .line 542
            iinc 2 /* off */ 4
        38: .line 544
            iload 11 /* fileNameLen */
            newarray 8
            astore 15 /* fileName */
        start local 15 // byte[] fileName
        39: .line 545
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 15 /* fileName */
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
        40: .line 546
            aload 4 /* ze */
            aload 8 /* entryEncoding */
            aload 15 /* fileName */
            invokeinterface org.apache.tools.zip.ZipEncoding.decode:([B)Ljava/lang/String;
            aload 15 /* fileName */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setName:(Ljava/lang/String;[B)V
        41: .line 549
            aload 3 /* offset */
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.CFH_BUF:[B
            iload 2 /* off */
            invokestatic org.apache.tools.zip.ZipLong.getValue:([BI)J
            putfield org.apache.tools.zip.ZipFile$OffsetEntry.headerOffset:J
        42: .line 551
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.entries:Ljava/util/List;
            aload 4 /* ze */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        43: .line 553
            iload 12 /* extraLen */
            newarray 8
            astore 16 /* cdExtraData */
        start local 16 // byte[] cdExtraData
        44: .line 554
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 16 /* cdExtraData */
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
        45: .line 555
            aload 4 /* ze */
            aload 16 /* cdExtraData */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setCentralDirectoryExtra:([B)V
        46: .line 557
            aload 0 /* this */
            aload 4 /* ze */
            aload 3 /* offset */
            iload 14 /* diskStart */
            invokevirtual org.apache.tools.zip.ZipFile.setSizesAndOffsetFromZip64Extra:(Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$OffsetEntry;I)V
        47: .line 559
            iload 13 /* commentLen */
            newarray 8
            astore 17 /* comment */
        start local 17 // byte[] comment
        48: .line 560
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 17 /* comment */
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
        49: .line 561
            aload 4 /* ze */
            aload 8 /* entryEncoding */
            aload 17 /* comment */
            invokeinterface org.apache.tools.zip.ZipEncoding.decode:([B)Ljava/lang/String;
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setComment:(Ljava/lang/String;)V
        50: .line 563
            iload 7 /* hasUTF8Flag */
            ifne 52
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.useUnicodeExtraFields:Z
            ifeq 52
        51: .line 564
            aload 1 /* noUTF8Flag */
            aload 4 /* ze */
            new org.apache.tools.zip.ZipFile$NameAndComment
            dup
            aload 15 /* fileName */
            aload 17 /* comment */
            invokespecial org.apache.tools.zip.ZipFile$NameAndComment.<init>:([B[B)V
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        52: .line 566
      StackMap locals: org.apache.tools.zip.ZipFile java.util.Map int org.apache.tools.zip.ZipFile$OffsetEntry org.apache.tools.zip.ZipFile$Entry int org.apache.tools.zip.GeneralPurposeBit int org.apache.tools.zip.ZipEncoding long int int int int byte[] byte[] byte[]
      StackMap stack:
            return
        end local 17 // byte[] comment
        end local 16 // byte[] cdExtraData
        end local 15 // byte[] fileName
        end local 14 // int diskStart
        end local 13 // int commentLen
        end local 12 // int extraLen
        end local 11 // int fileNameLen
        end local 9 // long time
        end local 8 // org.apache.tools.zip.ZipEncoding entryEncoding
        end local 7 // boolean hasUTF8Flag
        end local 6 // org.apache.tools.zip.GeneralPurposeBit gpFlag
        end local 5 // int versionMadeBy
        end local 4 // org.apache.tools.zip.ZipFile$Entry ze
        end local 3 // org.apache.tools.zip.ZipFile$OffsetEntry offset
        end local 2 // int off
        end local 1 // java.util.Map noUTF8Flag
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   53     0           this  Lorg/apache/tools/zip/ZipFile;
            0   53     1     noUTF8Flag  Ljava/util/Map<Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$NameAndComment;>;
            2   53     2            off  I
            3   53     3         offset  Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            4   53     4             ze  Lorg/apache/tools/zip/ZipFile$Entry;
            5   53     5  versionMadeBy  I
            9   53     6         gpFlag  Lorg/apache/tools/zip/GeneralPurposeBit;
           10   53     7    hasUTF8Flag  Z
           13   53     8  entryEncoding  Lorg/apache/tools/zip/ZipEncoding;
           18   53     9           time  J
           27   53    11    fileNameLen  I
           29   53    12       extraLen  I
           31   53    13     commentLen  I
           33   53    14      diskStart  I
           39   53    15       fileName  [B
           44   53    16    cdExtraData  [B
           48   53    17        comment  [B
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/util/Map<Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$NameAndComment;>;)V
    MethodParameters:
            Name  Flags
      noUTF8Flag  final

  private void setSizesAndOffsetFromZip64Extra(org.apache.tools.zip.ZipEntry, org.apache.tools.zip.ZipFile$OffsetEntry, int);
    descriptor: (Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$OffsetEntry;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // org.apache.tools.zip.ZipEntry ze
        start local 2 // org.apache.tools.zip.ZipFile$OffsetEntry offset
        start local 3 // int diskStart
         0: .line 586
            aload 1 /* ze */
            getstatic org.apache.tools.zip.Zip64ExtendedInformationExtraField.HEADER_ID:Lorg/apache/tools/zip/ZipShort;
            invokevirtual org.apache.tools.zip.ZipEntry.getExtraField:(Lorg/apache/tools/zip/ZipShort;)Lorg/apache/tools/zip/ZipExtraField;
         1: .line 585
            checkcast org.apache.tools.zip.Zip64ExtendedInformationExtraField
         2: .line 584
            astore 4 /* z64 */
        start local 4 // org.apache.tools.zip.Zip64ExtendedInformationExtraField z64
         3: .line 587
            aload 4 /* z64 */
            ifnull 33
         4: .line 588
            aload 1 /* ze */
            invokevirtual org.apache.tools.zip.ZipEntry.getSize:()J
            ldc 4294967295
            lcmp
            ifne 5
            iconst_1
            goto 6
      StackMap locals: org.apache.tools.zip.Zip64ExtendedInformationExtraField
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: istore 5 /* hasUncompressedSize */
        start local 5 // boolean hasUncompressedSize
         7: .line 589
            aload 1 /* ze */
            invokevirtual org.apache.tools.zip.ZipEntry.getCompressedSize:()J
            ldc 4294967295
            lcmp
            ifne 8
            iconst_1
            goto 9
      StackMap locals: int
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: istore 6 /* hasCompressedSize */
        start local 6 // boolean hasCompressedSize
        10: .line 591
            aload 2 /* offset */
            getfield org.apache.tools.zip.ZipFile$OffsetEntry.headerOffset:J
            ldc 4294967295
            lcmp
            ifne 11
            iconst_1
            goto 12
      StackMap locals: int
      StackMap stack:
        11: iconst_0
        12: .line 590
      StackMap locals:
      StackMap stack: int
            istore 7 /* hasRelativeHeaderOffset */
        start local 7 // boolean hasRelativeHeaderOffset
        13: .line 592
            aload 4 /* z64 */
            iload 5 /* hasUncompressedSize */
        14: .line 593
            iload 6 /* hasCompressedSize */
        15: .line 594
            iload 7 /* hasRelativeHeaderOffset */
        16: .line 595
            iload 3 /* diskStart */
            ldc 65535
            if_icmpne 17
            iconst_1
            goto 18
      StackMap locals: org.apache.tools.zip.ZipFile org.apache.tools.zip.ZipEntry org.apache.tools.zip.ZipFile$OffsetEntry int org.apache.tools.zip.Zip64ExtendedInformationExtraField int int int
      StackMap stack: org.apache.tools.zip.Zip64ExtendedInformationExtraField int int int
        17: iconst_0
        18: .line 592
      StackMap locals: org.apache.tools.zip.ZipFile org.apache.tools.zip.ZipEntry org.apache.tools.zip.ZipFile$OffsetEntry int org.apache.tools.zip.Zip64ExtendedInformationExtraField int int int
      StackMap stack: org.apache.tools.zip.Zip64ExtendedInformationExtraField int int int int
            invokevirtual org.apache.tools.zip.Zip64ExtendedInformationExtraField.reparseCentralDirectoryData:(ZZZZ)V
        19: .line 597
            iload 5 /* hasUncompressedSize */
            ifeq 22
        20: .line 598
            aload 1 /* ze */
            aload 4 /* z64 */
            invokevirtual org.apache.tools.zip.Zip64ExtendedInformationExtraField.getSize:()Lorg/apache/tools/zip/ZipEightByteInteger;
            invokevirtual org.apache.tools.zip.ZipEightByteInteger.getLongValue:()J
            invokevirtual org.apache.tools.zip.ZipEntry.setSize:(J)V
        21: .line 599
            goto 24
      StackMap locals:
      StackMap stack:
        22: iload 6 /* hasCompressedSize */
            ifeq 24
        23: .line 600
            aload 4 /* z64 */
            new org.apache.tools.zip.ZipEightByteInteger
            dup
            aload 1 /* ze */
            invokevirtual org.apache.tools.zip.ZipEntry.getSize:()J
            invokespecial org.apache.tools.zip.ZipEightByteInteger.<init>:(J)V
            invokevirtual org.apache.tools.zip.Zip64ExtendedInformationExtraField.setSize:(Lorg/apache/tools/zip/ZipEightByteInteger;)V
        24: .line 603
      StackMap locals:
      StackMap stack:
            iload 6 /* hasCompressedSize */
            ifeq 27
        25: .line 604
            aload 1 /* ze */
            aload 4 /* z64 */
            invokevirtual org.apache.tools.zip.Zip64ExtendedInformationExtraField.getCompressedSize:()Lorg/apache/tools/zip/ZipEightByteInteger;
            invokevirtual org.apache.tools.zip.ZipEightByteInteger.getLongValue:()J
            invokevirtual org.apache.tools.zip.ZipEntry.setCompressedSize:(J)V
        26: .line 605
            goto 29
      StackMap locals:
      StackMap stack:
        27: iload 5 /* hasUncompressedSize */
            ifeq 29
        28: .line 606
            aload 4 /* z64 */
            new org.apache.tools.zip.ZipEightByteInteger
            dup
            aload 1 /* ze */
            invokevirtual org.apache.tools.zip.ZipEntry.getCompressedSize:()J
            invokespecial org.apache.tools.zip.ZipEightByteInteger.<init>:(J)V
            invokevirtual org.apache.tools.zip.Zip64ExtendedInformationExtraField.setCompressedSize:(Lorg/apache/tools/zip/ZipEightByteInteger;)V
        29: .line 609
      StackMap locals:
      StackMap stack:
            iload 7 /* hasRelativeHeaderOffset */
            ifeq 33
        30: .line 610
            aload 2 /* offset */
        31: .line 611
            aload 4 /* z64 */
            invokevirtual org.apache.tools.zip.Zip64ExtendedInformationExtraField.getRelativeHeaderOffset:()Lorg/apache/tools/zip/ZipEightByteInteger;
            invokevirtual org.apache.tools.zip.ZipEightByteInteger.getLongValue:()J
        32: .line 610
            putfield org.apache.tools.zip.ZipFile$OffsetEntry.headerOffset:J
        end local 7 // boolean hasRelativeHeaderOffset
        end local 6 // boolean hasCompressedSize
        end local 5 // boolean hasUncompressedSize
        33: .line 614
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.apache.tools.zip.Zip64ExtendedInformationExtraField z64
        end local 3 // int diskStart
        end local 2 // org.apache.tools.zip.ZipFile$OffsetEntry offset
        end local 1 // org.apache.tools.zip.ZipEntry ze
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   34     0                     this  Lorg/apache/tools/zip/ZipFile;
            0   34     1                       ze  Lorg/apache/tools/zip/ZipEntry;
            0   34     2                   offset  Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            0   34     3                diskStart  I
            3   34     4                      z64  Lorg/apache/tools/zip/Zip64ExtendedInformationExtraField;
            7   33     5      hasUncompressedSize  Z
           10   33     6        hasCompressedSize  Z
           13   33     7  hasRelativeHeaderOffset  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      ze         final
      offset     final
      diskStart  final

  private void positionAtCentralDirectory();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 716
            aload 0 /* this */
            invokevirtual org.apache.tools.zip.ZipFile.positionAtEndOfCentralDirectoryRecord:()V
         1: .line 717
            iconst_0
            istore 1 /* found */
        start local 1 // boolean found
         2: .line 719
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            ldc 20
            lcmp
            ifle 3
            iconst_1
            goto 4
      StackMap locals: int
      StackMap stack:
         3: iconst_0
         4: .line 718
      StackMap locals:
      StackMap stack: int
            istore 2 /* searchedForZip64EOCD */
        start local 2 // boolean searchedForZip64EOCD
         5: .line 720
            iload 2 /* searchedForZip64EOCD */
            ifeq 9
         6: .line 721
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            ldc 20
            lsub
            invokevirtual java.io.RandomAccessFile.seek:(J)V
         7: .line 722
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         8: .line 723
            getstatic org.apache.tools.zip.ZipOutputStream.ZIP64_EOCD_LOC_SIG:[B
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            istore 1 /* found */
         9: .line 725
      StackMap locals: int
      StackMap stack:
            iload 1 /* found */
            ifne 14
        10: .line 727
            iload 2 /* searchedForZip64EOCD */
            ifeq 12
        11: .line 728
            aload 0 /* this */
            bipush 16
            invokevirtual org.apache.tools.zip.ZipFile.skipBytes:(I)V
        12: .line 730
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.tools.zip.ZipFile.positionAtCentralDirectory32:()V
        13: .line 731
            goto 15
        14: .line 732
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.tools.zip.ZipFile.positionAtCentralDirectory64:()V
        15: .line 734
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean searchedForZip64EOCD
        end local 1 // boolean found
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   16     0                  this  Lorg/apache/tools/zip/ZipFile;
            2   16     1                 found  Z
            5   16     2  searchedForZip64EOCD  Z
    Exceptions:
      throws java.io.IOException

  private void positionAtCentralDirectory64();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 744
            aload 0 /* this */
            iconst_4
            invokevirtual org.apache.tools.zip.ZipFile.skipBytes:(I)V
         1: .line 746
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.DWORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         2: .line 747
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.DWORD_BUF:[B
            invokestatic org.apache.tools.zip.ZipEightByteInteger.getLongValue:([B)J
            invokevirtual java.io.RandomAccessFile.seek:(J)V
         3: .line 748
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         4: .line 749
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            getstatic org.apache.tools.zip.ZipOutputStream.ZIP64_EOCD_SIG:[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            ifne 8
         5: .line 750
            new java.util.zip.ZipException
            dup
         6: .line 751
            ldc "archive's ZIP64 end of central directory locator is corrupt."
         7: .line 750
            invokespecial java.util.zip.ZipException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 753
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 44
            invokevirtual org.apache.tools.zip.ZipFile.skipBytes:(I)V
         9: .line 755
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.DWORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
        10: .line 756
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.DWORD_BUF:[B
            invokestatic org.apache.tools.zip.ZipEightByteInteger.getLongValue:([B)J
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        11: .line 757
            return
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/apache/tools/zip/ZipFile;
    Exceptions:
      throws java.io.IOException

  private void positionAtCentralDirectory32();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 766
            aload 0 /* this */
            bipush 16
            invokevirtual org.apache.tools.zip.ZipFile.skipBytes:(I)V
         1: .line 767
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         2: .line 768
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokestatic org.apache.tools.zip.ZipLong.getValue:([B)J
            invokevirtual java.io.RandomAccessFile.seek:(J)V
         3: .line 769
            return
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/tools/zip/ZipFile;
    Exceptions:
      throws java.io.IOException

  private void positionAtEndOfCentralDirectoryRecord();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 777
            aload 0 /* this */
            ldc 22
            ldc 65557
         1: .line 778
            getstatic org.apache.tools.zip.ZipOutputStream.EOCD_SIG:[B
         2: .line 777
            invokevirtual org.apache.tools.zip.ZipFile.tryToLocateSignature:(JJ[B)Z
            istore 1 /* found */
        start local 1 // boolean found
         3: .line 779
            iload 1 /* found */
            ifne 5
         4: .line 780
            new java.util.zip.ZipException
            dup
            ldc "archive is not a ZIP archive"
            invokespecial java.util.zip.ZipException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 782
      StackMap locals: int
      StackMap stack:
            return
        end local 1 // boolean found
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/tools/zip/ZipFile;
            3    6     1  found  Z
    Exceptions:
      throws java.io.IOException

  private boolean tryToLocateSignature(long, long, byte[]);
    descriptor: (JJ[B)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=12, args_size=4
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // long minDistanceFromEnd
        start local 3 // long maxDistanceFromEnd
        start local 5 // byte[] sig
         0: .line 792
            iconst_0
            istore 6 /* found */
        start local 6 // boolean found
         1: .line 793
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.length:()J
            lload 1 /* minDistanceFromEnd */
            lsub
            lstore 7 /* off */
        start local 7 // long off
         2: .line 795
            lconst_0
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.length:()J
            lload 3 /* maxDistanceFromEnd */
            lsub
            invokestatic java.lang.Math.max:(JJ)J
         3: .line 794
            lstore 9 /* stopSearching */
        start local 9 // long stopSearching
         4: .line 796
            lload 7 /* off */
            lconst_0
            lcmp
            iflt 21
         5: .line 797
            goto 20
         6: .line 798
      StackMap locals: int long long
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            lload 7 /* off */
            invokevirtual java.io.RandomAccessFile.seek:(J)V
         7: .line 799
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 11 /* curr */
        start local 11 // int curr
         8: .line 800
            iload 11 /* curr */
            iconst_m1
            if_icmpne 10
         9: .line 801
            goto 21
        10: .line 803
      StackMap locals: int
      StackMap stack:
            iload 11 /* curr */
            aload 5 /* sig */
            iconst_0
            baload
            if_icmpne 19
        11: .line 804
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 11 /* curr */
        12: .line 805
            iload 11 /* curr */
            aload 5 /* sig */
            iconst_1
            baload
            if_icmpne 19
        13: .line 806
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 11 /* curr */
        14: .line 807
            iload 11 /* curr */
            aload 5 /* sig */
            iconst_2
            baload
            if_icmpne 19
        15: .line 808
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 11 /* curr */
        16: .line 809
            iload 11 /* curr */
            aload 5 /* sig */
            iconst_3
            baload
            if_icmpne 19
        17: .line 810
            iconst_1
            istore 6 /* found */
        18: .line 811
            goto 21
        end local 11 // int curr
        19: .line 797
      StackMap locals:
      StackMap stack:
            lload 7 /* off */
            lconst_1
            lsub
            lstore 7 /* off */
      StackMap locals:
      StackMap stack:
        20: lload 7 /* off */
            lload 9 /* stopSearching */
            lcmp
            ifge 6
        21: .line 818
      StackMap locals:
      StackMap stack:
            iload 6 /* found */
            ifeq 23
        22: .line 819
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            lload 7 /* off */
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        23: .line 821
      StackMap locals:
      StackMap stack:
            iload 6 /* found */
            ireturn
        end local 9 // long stopSearching
        end local 7 // long off
        end local 6 // boolean found
        end local 5 // byte[] sig
        end local 3 // long maxDistanceFromEnd
        end local 1 // long minDistanceFromEnd
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   24     0                this  Lorg/apache/tools/zip/ZipFile;
            0   24     1  minDistanceFromEnd  J
            0   24     3  maxDistanceFromEnd  J
            0   24     5                 sig  [B
            1   24     6               found  Z
            2   24     7                 off  J
            4   24     9       stopSearching  J
            8   19    11                curr  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                    Name  Flags
      minDistanceFromEnd  final
      maxDistanceFromEnd  final
      sig                 final

  private void skipBytes(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // int count
         0: .line 829
            iconst_0
            istore 2 /* totalSkipped */
        start local 2 // int totalSkipped
         1: .line 830
            goto 6
         2: .line 831
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            iload 1 /* count */
            iload 2 /* totalSkipped */
            isub
            invokevirtual java.io.RandomAccessFile.skipBytes:(I)I
            istore 3 /* skippedNow */
        start local 3 // int skippedNow
         3: .line 832
            iload 3 /* skippedNow */
            ifgt 5
         4: .line 833
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         5: .line 835
      StackMap locals: int
      StackMap stack:
            iload 2 /* totalSkipped */
            iload 3 /* skippedNow */
            iadd
            istore 2 /* totalSkipped */
        end local 3 // int skippedNow
         6: .line 830
      StackMap locals:
      StackMap stack:
            iload 2 /* totalSkipped */
            iload 1 /* count */
            if_icmplt 2
         7: .line 837
            return
        end local 2 // int totalSkipped
        end local 1 // int count
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Lorg/apache/tools/zip/ZipFile;
            0    8     1         count  I
            1    8     2  totalSkipped  I
            3    6     3    skippedNow  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      count  final

  private void resolveLocalFileHeaderData(java.util.Map<org.apache.tools.zip.ZipEntry, org.apache.tools.zip.ZipFile$NameAndComment>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=14, args_size=2
        start local 0 // org.apache.tools.zip.ZipFile this
        start local 1 // java.util.Map entriesWithoutUTF8Flag
         0: .line 864
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.entries:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 33
      StackMap locals: org.apache.tools.zip.ZipFile java.util.Map top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.tools.zip.ZipEntry
            astore 2 /* zipEntry */
        start local 2 // org.apache.tools.zip.ZipEntry zipEntry
         2: .line 867
            aload 2 /* zipEntry */
            checkcast org.apache.tools.zip.ZipFile$Entry
            astore 4 /* ze */
        start local 4 // org.apache.tools.zip.ZipFile$Entry ze
         3: .line 868
            aload 4 /* ze */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.getOffsetEntry:()Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            astore 5 /* offsetEntry */
        start local 5 // org.apache.tools.zip.ZipFile$OffsetEntry offsetEntry
         4: .line 869
            aload 5 /* offsetEntry */
            getfield org.apache.tools.zip.ZipFile$OffsetEntry.headerOffset:J
            lstore 6 /* offset */
        start local 6 // long offset
         5: .line 870
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            lload 6 /* offset */
            ldc 26
            ladd
            invokevirtual java.io.RandomAccessFile.seek:(J)V
         6: .line 871
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.SHORT_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         7: .line 872
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.SHORT_BUF:[B
            invokestatic org.apache.tools.zip.ZipShort.getValue:([B)I
            istore 8 /* fileNameLen */
        start local 8 // int fileNameLen
         8: .line 873
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.SHORT_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         9: .line 874
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.SHORT_BUF:[B
            invokestatic org.apache.tools.zip.ZipShort.getValue:([B)I
            istore 9 /* extraFieldLen */
        start local 9 // int extraFieldLen
        10: .line 875
            iload 8 /* fileNameLen */
            istore 10 /* lenToSkip */
        start local 10 // int lenToSkip
        11: .line 876
            goto 18
        12: .line 877
      StackMap locals: org.apache.tools.zip.ZipFile java.util.Map org.apache.tools.zip.ZipEntry java.util.Iterator org.apache.tools.zip.ZipFile$Entry org.apache.tools.zip.ZipFile$OffsetEntry long int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            iload 10 /* lenToSkip */
            invokevirtual java.io.RandomAccessFile.skipBytes:(I)I
            istore 11 /* skipped */
        start local 11 // int skipped
        13: .line 878
            iload 11 /* skipped */
            ifgt 17
        14: .line 879
            new java.io.IOException
            dup
        15: .line 880
            ldc "failed to skip file name in local file header"
        16: .line 879
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 882
      StackMap locals: int
      StackMap stack:
            iload 10 /* lenToSkip */
            iload 11 /* skipped */
            isub
            istore 10 /* lenToSkip */
        end local 11 // int skipped
        18: .line 876
      StackMap locals:
      StackMap stack:
            iload 10 /* lenToSkip */
            ifgt 12
        19: .line 884
            iload 9 /* extraFieldLen */
            newarray 8
            astore 11 /* localExtraData */
        start local 11 // byte[] localExtraData
        20: .line 885
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 11 /* localExtraData */
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
        21: .line 886
            aload 4 /* ze */
            aload 11 /* localExtraData */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.setExtra:([B)V
        22: .line 887
            aload 5 /* offsetEntry */
            lload 6 /* offset */
            ldc 26
            ladd
        23: .line 888
            ldc 2
            ladd
            ldc 2
            ladd
            iload 8 /* fileNameLen */
            i2l
            ladd
            iload 9 /* extraFieldLen */
            i2l
            ladd
        24: .line 887
            putfield org.apache.tools.zip.ZipFile$OffsetEntry.dataOffset:J
        25: .line 890
            aload 1 /* entriesWithoutUTF8Flag */
            aload 4 /* ze */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 30
        26: .line 891
            aload 1 /* entriesWithoutUTF8Flag */
            aload 4 /* ze */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.tools.zip.ZipFile$NameAndComment
            astore 12 /* nc */
        start local 12 // org.apache.tools.zip.ZipFile$NameAndComment nc
        27: .line 892
            aload 4 /* ze */
            aload 12 /* nc */
            getfield org.apache.tools.zip.ZipFile$NameAndComment.name:[B
        28: .line 893
            aload 12 /* nc */
            getfield org.apache.tools.zip.ZipFile$NameAndComment.comment:[B
        29: .line 892
            invokestatic org.apache.tools.zip.ZipUtil.setNameAndCommentFromExtraFields:(Lorg/apache/tools/zip/ZipEntry;[B[B)V
        end local 12 // org.apache.tools.zip.ZipFile$NameAndComment nc
        30: .line 896
      StackMap locals: byte[]
      StackMap stack:
            aload 4 /* ze */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.getName:()Ljava/lang/String;
            astore 12 /* name */
        start local 12 // java.lang.String name
        31: .line 897
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.nameMap:Ljava/util/Map;
            aload 12 /* name */
            invokedynamic apply()Ljava/util/function/Function;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)Ljava/lang/Object;
                  org/apache/tools/zip/ZipFile.lambda$2(Ljava/lang/String;)Ljava/util/LinkedList; (6)
                  (Ljava/lang/String;)Ljava/util/LinkedList;
            invokeinterface java.util.Map.computeIfAbsent:(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;
            checkcast java.util.LinkedList
            astore 13 /* entriesOfThatName */
        start local 13 // java.util.LinkedList entriesOfThatName
        32: .line 898
            aload 13 /* entriesOfThatName */
            aload 4 /* ze */
            invokevirtual java.util.LinkedList.addLast:(Ljava/lang/Object;)V
        end local 13 // java.util.LinkedList entriesOfThatName
        end local 12 // java.lang.String name
        end local 11 // byte[] localExtraData
        end local 10 // int lenToSkip
        end local 9 // int extraFieldLen
        end local 8 // int fileNameLen
        end local 6 // long offset
        end local 5 // org.apache.tools.zip.ZipFile$OffsetEntry offsetEntry
        end local 4 // org.apache.tools.zip.ZipFile$Entry ze
        end local 2 // org.apache.tools.zip.ZipEntry zipEntry
        33: .line 864
      StackMap locals: org.apache.tools.zip.ZipFile java.util.Map top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
        34: .line 900
            return
        end local 1 // java.util.Map entriesWithoutUTF8Flag
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   35     0                    this  Lorg/apache/tools/zip/ZipFile;
            0   35     1  entriesWithoutUTF8Flag  Ljava/util/Map<Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$NameAndComment;>;
            2   33     2                zipEntry  Lorg/apache/tools/zip/ZipEntry;
            3   33     4                      ze  Lorg/apache/tools/zip/ZipFile$Entry;
            4   33     5             offsetEntry  Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            5   33     6                  offset  J
            8   33     8             fileNameLen  I
           10   33     9           extraFieldLen  I
           11   33    10               lenToSkip  I
           13   18    11                 skipped  I
           20   33    11          localExtraData  [B
           27   30    12                      nc  Lorg/apache/tools/zip/ZipFile$NameAndComment;
           31   33    12                    name  Ljava/lang/String;
           32   33    13       entriesOfThatName  Ljava/util/LinkedList<Lorg/apache/tools/zip/ZipEntry;>;
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/util/Map<Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipFile$NameAndComment;>;)V
    MethodParameters:
                        Name  Flags
      entriesWithoutUTF8Flag  final

  private boolean startsWithLocalFileHeader();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.tools.zip.ZipFile this
         0: .line 907
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            lconst_0
            invokevirtual java.io.RandomAccessFile.seek:(J)V
         1: .line 908
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.archive:Ljava/io/RandomAccessFile;
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            invokevirtual java.io.RandomAccessFile.readFully:([B)V
         2: .line 909
            aload 0 /* this */
            getfield org.apache.tools.zip.ZipFile.WORD_BUF:[B
            getstatic org.apache.tools.zip.ZipOutputStream.LFH_SIG:[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            ireturn
        end local 0 // org.apache.tools.zip.ZipFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/tools/zip/ZipFile;
    Exceptions:
      throws java.io.IOException

  private static int lambda$0(org.apache.tools.zip.ZipEntry, org.apache.tools.zip.ZipEntry);
    descriptor: (Lorg/apache/tools/zip/ZipEntry;Lorg/apache/tools/zip/ZipEntry;)I
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.apache.tools.zip.ZipEntry e1
        start local 1 // org.apache.tools.zip.ZipEntry e2
         0: .line 999
            aload 0 /* e1 */
            aload 1 /* e2 */
            if_acmpne 2
         1: .line 1000
            iconst_0
            ireturn
         2: .line 1003
      StackMap locals:
      StackMap stack:
            aload 0 /* e1 */
            instanceof org.apache.tools.zip.ZipFile$Entry
            ifeq 3
            aload 0 /* e1 */
            checkcast org.apache.tools.zip.ZipFile$Entry
            goto 4
      StackMap locals:
      StackMap stack:
         3: aconst_null
      StackMap locals:
      StackMap stack: org.apache.tools.zip.ZipFile$Entry
         4: astore 2 /* ent1 */
        start local 2 // org.apache.tools.zip.ZipFile$Entry ent1
         5: .line 1004
            aload 1 /* e2 */
            instanceof org.apache.tools.zip.ZipFile$Entry
            ifeq 6
            aload 1 /* e2 */
            checkcast org.apache.tools.zip.ZipFile$Entry
            goto 7
      StackMap locals: org.apache.tools.zip.ZipFile$Entry
      StackMap stack:
         6: aconst_null
      StackMap locals:
      StackMap stack: org.apache.tools.zip.ZipFile$Entry
         7: astore 3 /* ent2 */
        start local 3 // org.apache.tools.zip.ZipFile$Entry ent2
         8: .line 1005
            aload 2 /* ent1 */
            ifnonnull 10
         9: .line 1006
            iconst_1
            ireturn
        10: .line 1008
      StackMap locals: org.apache.tools.zip.ZipFile$Entry
      StackMap stack:
            aload 3 /* ent2 */
            ifnonnull 12
        11: .line 1009
            iconst_m1
            ireturn
        12: .line 1011
      StackMap locals:
      StackMap stack:
            aload 2 /* ent1 */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.getOffsetEntry:()Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            getfield org.apache.tools.zip.ZipFile$OffsetEntry.headerOffset:J
        13: .line 1012
            aload 3 /* ent2 */
            invokevirtual org.apache.tools.zip.ZipFile$Entry.getOffsetEntry:()Lorg/apache/tools/zip/ZipFile$OffsetEntry;
            getfield org.apache.tools.zip.ZipFile$OffsetEntry.headerOffset:J
        14: .line 1011
            lsub
            lstore 4 /* val */
        start local 4 // long val
        15: .line 1013
            lload 4 /* val */
            lconst_0
            lcmp
            ifne 16
            iconst_0
            goto 18
      StackMap locals: long
      StackMap stack:
        16: lload 4 /* val */
            lconst_0
            lcmp
            ifge 17
            iconst_m1
            goto 18
      StackMap locals:
      StackMap stack:
        17: iconst_1
      StackMap locals:
      StackMap stack: int
        18: ireturn
        end local 4 // long val
        end local 3 // org.apache.tools.zip.ZipFile$Entry ent2
        end local 2 // org.apache.tools.zip.ZipFile$Entry ent1
        end local 1 // org.apache.tools.zip.ZipEntry e2
        end local 0 // org.apache.tools.zip.ZipEntry e1
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0    e1  Lorg/apache/tools/zip/ZipEntry;
            0   19     1    e2  Lorg/apache/tools/zip/ZipEntry;
            5   19     2  ent1  Lorg/apache/tools/zip/ZipFile$Entry;
            8   19     3  ent2  Lorg/apache/tools/zip/ZipFile$Entry;
           15   19     4   val  J

  private static java.util.LinkedList lambda$2(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/util/LinkedList;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String k
         0: .line 897
            new java.util.LinkedList
            dup
            invokespecial java.util.LinkedList.<init>:()V
            areturn
        end local 0 // java.lang.String k
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     k  Ljava/lang/String;
}
SourceFile: "ZipFile.java"
NestMembers:
  org.apache.tools.zip.ZipFile$1  org.apache.tools.zip.ZipFile$BoundedInputStream  org.apache.tools.zip.ZipFile$Entry  org.apache.tools.zip.ZipFile$NameAndComment  org.apache.tools.zip.ZipFile$OffsetEntry
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  org.apache.tools.zip.ZipFile$1
  private BoundedInputStream = org.apache.tools.zip.ZipFile$BoundedInputStream of org.apache.tools.zip.ZipFile
  private Entry = org.apache.tools.zip.ZipFile$Entry of org.apache.tools.zip.ZipFile
  private final NameAndComment = org.apache.tools.zip.ZipFile$NameAndComment of org.apache.tools.zip.ZipFile
  private final OffsetEntry = org.apache.tools.zip.ZipFile$OffsetEntry of org.apache.tools.zip.ZipFile