public class it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap extends it.unimi.dsi.fastutil.ints.AbstractInt2BooleanSortedMap implements java.io.Serializable, java.lang.Cloneable, it.unimi.dsi.fastutil.Hash
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  super_class: it.unimi.dsi.fastutil.ints.AbstractInt2BooleanSortedMap
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final boolean ASSERTS;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  protected transient int[] key;
    descriptor: [I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient boolean[] value;
    descriptor: [Z
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int mask;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient boolean containsNullKey;
    descriptor: Z
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int first;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int last;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient long[] link;
    descriptor: [J
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int n;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient int maxFill;
    descriptor: I
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected final transient int minN;
    descriptor: I
    flags: (0x0094) ACC_PROTECTED, ACC_FINAL, ACC_TRANSIENT

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

  protected final float f;
    descriptor: F
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected transient it.unimi.dsi.fastutil.ints.Int2BooleanSortedMap$FastSortedEntrySet entries;
    descriptor: Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient it.unimi.dsi.fastutil.ints.IntSortedSet keys;
    descriptor: Lit/unimi/dsi/fastutil/ints/IntSortedSet;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  protected transient it.unimi.dsi.fastutil.booleans.BooleanCollection values;
    descriptor: Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
    flags: (0x0084) ACC_PROTECTED, ACC_TRANSIENT

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int expected
        start local 2 // float f
         0: .line 153
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.ints.AbstractInt2BooleanSortedMap.<init>:()V
         1: .line 108
            aload 0 /* this */
            iconst_m1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         2: .line 113
            aload 0 /* this */
            iconst_m1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
         3: .line 154
            fload 2 /* f */
            fconst_0
            fcmpg
            ifle 4
            fload 2 /* f */
            fconst_1
            fcmpl
            ifle 5
         4: .line 155
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int float
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Load factor must be greater than 0 and smaller than or equal to 1"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 156
      StackMap locals:
      StackMap stack:
            iload 1 /* expected */
            ifge 7
         6: .line 157
            new java.lang.IllegalArgumentException
            dup
            ldc "The expected number of elements must be nonnegative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 158
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* f */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
         8: .line 159
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* expected */
            fload 2 /* f */
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.minN:I
         9: .line 160
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
        10: .line 161
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            fload 2 /* f */
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
        11: .line 162
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 10
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
        12: .line 163
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 4
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
        13: .line 164
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
        14: .line 165
            return
        end local 2 // float f
        end local 1 // int expected
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   15     1  expected  I
            0   15     2         f  F
    MethodParameters:
          Name  Flags
      expected  final
      f         final

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int expected
         0: .line 173
            aload 0 /* this */
            iload 1 /* expected */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:(IF)V
         1: .line 174
            return
        end local 1 // int expected
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    2     1  expected  I
    MethodParameters:
          Name  Flags
      expected  final

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 181
            aload 0 /* this */
            bipush 16
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:(IF)V
         1: .line 182
            return
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public void <init>(java.util.Map<? extends java.lang.Integer, ? extends java.lang.Boolean>, );
    descriptor: (Ljava/util/Map;F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // java.util.Map m
        start local 2 // float f
         0: .line 192
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            fload 2 /* f */
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:(IF)V
         1: .line 193
            aload 0 /* this */
            aload 1 /* m */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.putAll:(Ljava/util/Map;)V
         2: .line 194
            return
        end local 2 // float f
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    3     1     m  Ljava/util/Map<+Ljava/lang/Integer;+Ljava/lang/Boolean;>;
            0    3     2     f  F
    Signature: (Ljava/util/Map<+Ljava/lang/Integer;+Ljava/lang/Boolean;>;F)V
    MethodParameters:
      Name  Flags
      m     final
      f     final

  public void <init>(java.util.Map<? extends java.lang.Integer, ? extends java.lang.Boolean>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // java.util.Map m
         0: .line 203
            aload 0 /* this */
            aload 1 /* m */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:(Ljava/util/Map;F)V
         1: .line 204
            return
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    2     1     m  Ljava/util/Map<+Ljava/lang/Integer;+Ljava/lang/Boolean;>;
    Signature: (Ljava/util/Map<+Ljava/lang/Integer;+Ljava/lang/Boolean;>;)V
    MethodParameters:
      Name  Flags
      m     final

  public void <init>(it.unimi.dsi.fastutil.ints.Int2BooleanMap, float);
    descriptor: (Lit/unimi/dsi/fastutil/ints/Int2BooleanMap;F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanMap m
        start local 2 // float f
         0: .line 214
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface it.unimi.dsi.fastutil.ints.Int2BooleanMap.size:()I
            fload 2 /* f */
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:(IF)V
         1: .line 215
            aload 0 /* this */
            aload 1 /* m */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.putAll:(Ljava/util/Map;)V
         2: .line 216
            return
        end local 2 // float f
        end local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanMap m
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    3     1     m  Lit/unimi/dsi/fastutil/ints/Int2BooleanMap;
            0    3     2     f  F
    MethodParameters:
      Name  Flags
      m     final
      f     final

  public void <init>(it.unimi.dsi.fastutil.ints.Int2BooleanMap);
    descriptor: (Lit/unimi/dsi/fastutil/ints/Int2BooleanMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanMap m
         0: .line 225
            aload 0 /* this */
            aload 1 /* m */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:(Lit/unimi/dsi/fastutil/ints/Int2BooleanMap;F)V
         1: .line 226
            return
        end local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanMap m
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    2     1     m  Lit/unimi/dsi/fastutil/ints/Int2BooleanMap;
    MethodParameters:
      Name  Flags
      m     final

  public void <init>(int[], boolean[], float);
    descriptor: ([I[ZF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int[] k
        start local 2 // boolean[] v
        start local 3 // float f
         0: .line 240
            aload 0 /* this */
            aload 1 /* k */
            arraylength
            fload 3 /* f */
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:(IF)V
         1: .line 241
            aload 1 /* k */
            arraylength
            aload 2 /* v */
            arraylength
            if_icmpeq 5
         2: .line 242
            new java.lang.IllegalArgumentException
            dup
         3: .line 243
            new java.lang.StringBuilder
            dup
            ldc "The key array and the value array have different lengths ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* k */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " and "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* v */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 242
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 244
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int[] boolean[] float
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 9
         7: .line 245
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* k */
            iload 4 /* i */
            iaload
            aload 2 /* v */
            iload 4 /* i */
            baload
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.put:(IZ)Z
            pop
         8: .line 244
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            aload 1 /* k */
            arraylength
            if_icmplt 7
        end local 4 // int i
        10: .line 246
            return
        end local 3 // float f
        end local 2 // boolean[] v
        end local 1 // int[] k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   11     1     k  [I
            0   11     2     v  [Z
            0   11     3     f  F
            6   10     4     i  I
    MethodParameters:
      Name  Flags
      k     final
      v     final
      f     final

  public void <init>(int[], boolean[]);
    descriptor: ([I[Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int[] k
        start local 2 // boolean[] v
         0: .line 259
            aload 0 /* this */
            aload 1 /* k */
            aload 2 /* v */
            ldc 0.75
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.<init>:([I[ZF)V
         1: .line 260
            return
        end local 2 // boolean[] v
        end local 1 // int[] k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    2     1     k  [I
            0    2     2     v  [Z
    MethodParameters:
      Name  Flags
      k     final
      v     final

  private int realSize();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 262
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 1
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            isub
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int capacity
         0: .line 265
            iload 1 /* capacity */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            istore 2 /* needed */
        start local 2 // int needed
         1: .line 266
            iload 2 /* needed */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            if_icmple 3
         2: .line 267
            aload 0 /* this */
            iload 2 /* needed */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
         3: .line 268
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int needed
        end local 1 // int capacity
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    4     1  capacity  I
            1    4     2    needed  I
    MethodParameters:
          Name  Flags
      capacity  final

  private void tryCapacity(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // long capacity
         0: .line 270
            ldc 1073741824
         1: .line 271
            ldc 2
            lload 1 /* capacity */
            l2f
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            fdiv
            f2d
            invokestatic java.lang.Math.ceil:(D)D
            d2l
            invokestatic it.unimi.dsi.fastutil.HashCommon.nextPowerOfTwo:(J)J
            invokestatic java.lang.Math.max:(JJ)J
         2: .line 270
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 3 /* needed */
        start local 3 // int needed
         3: .line 272
            iload 3 /* needed */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            if_icmple 5
         4: .line 273
            aload 0 /* this */
            iload 3 /* needed */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
         5: .line 274
      StackMap locals: int
      StackMap stack:
            return
        end local 3 // int needed
        end local 1 // long capacity
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    6     1  capacity  J
            3    6     3    needed  I
    MethodParameters:
          Name  Flags
      capacity  final

  private boolean removeEntry(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int pos
         0: .line 276
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 1 /* pos */
            baload
            istore 2 /* oldValue */
        start local 2 // boolean oldValue
         1: .line 277
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
         2: .line 278
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.fixPointers:(I)V
         3: .line 279
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.shiftKeys:(I)V
         4: .line 280
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.minN:I
            if_icmple 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 6
         5: .line 281
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
         6: .line 282
      StackMap locals: int
      StackMap stack:
            iload 2 /* oldValue */
            ireturn
        end local 2 // boolean oldValue
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    7     1       pos  I
            1    7     2  oldValue  Z
    MethodParameters:
      Name  Flags
      pos   final

  private boolean removeNullEntry();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 285
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
         1: .line 286
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            istore 1 /* oldValue */
        start local 1 // boolean oldValue
         2: .line 287
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
         3: .line 288
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.fixPointers:(I)V
         4: .line 289
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.minN:I
            if_icmple 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 6
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 6
         5: .line 290
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
         6: .line 291
      StackMap locals: int
      StackMap stack:
            iload 1 /* oldValue */
            ireturn
        end local 1 // boolean oldValue
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            2    7     1  oldValue  Z

  public void putAll(java.util.Map<? extends java.lang.Integer, ? extends java.lang.Boolean>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // java.util.Map m
         0: .line 295
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            f2d
            ldc 0.5
            dcmpg
            ifgt 2
         1: .line 296
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.ensureCapacity:(I)V
            goto 3
         2: .line 298
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:()I
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            iadd
            i2l
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.tryCapacity:(J)V
         3: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* m */
            invokespecial it.unimi.dsi.fastutil.ints.AbstractInt2BooleanSortedMap.putAll:(Ljava/util/Map;)V
         4: .line 301
            return
        end local 1 // java.util.Map m
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    5     1     m  Ljava/util/Map<+Ljava/lang/Integer;+Ljava/lang/Boolean;>;
    Signature: (Ljava/util/Map<+Ljava/lang/Integer;+Ljava/lang/Boolean;>;)V
    MethodParameters:
      Name  Flags
      m     

  private int find(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
         0: .line 304
            iload 1 /* k */
            ifne 4
         1: .line 305
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            iadd
            ineg
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 3 /* key */
        start local 3 // int[] key
         5: .line 310
            aload 3 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
        start local 4 // int pos
         6: iaload
            dup
            istore 2 /* curr */
        start local 2 // int curr
         7: ifne 9
         8: .line 311
            iload 4 /* pos */
            iconst_1
            iadd
            ineg
            ireturn
         9: .line 312
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 11
        10: .line 313
            iload 4 /* pos */
            ireturn
        11: .line 316
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            iload 4 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
            iaload
            dup
            istore 2 /* curr */
            ifne 13
        12: .line 317
            iload 4 /* pos */
            iconst_1
            iadd
            ineg
            ireturn
        13: .line 318
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 11
        14: .line 319
            iload 4 /* pos */
            ireturn
        end local 4 // int pos
        end local 3 // int[] key
        end local 2 // int curr
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   15     1     k  I
            7   15     2  curr  I
            5   15     3   key  [I
            6   15     4   pos  I
    MethodParameters:
      Name  Flags
      k     final

  private void insert(int, int, boolean);
    descriptor: (IIZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=4, args_size=4
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int pos
        start local 2 // int k
        start local 3 // boolean v
         0: .line 323
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            if_icmpne 2
         1: .line 324
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
         2: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            iload 1 /* pos */
            iload 2 /* k */
            iastore
         3: .line 326
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 1 /* pos */
            iload 3 /* v */
            bastore
         4: .line 327
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 8
         5: .line 328
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         6: .line 330
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            ldc -1
            lastore
         7: .line 331
            goto 11
         8: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            laload
            iload 1 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
         9: .line 333
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
        10: .line 334
            aload 0 /* this */
            iload 1 /* pos */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
        11: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
            if_icmplt 13
        12: .line 337
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
        13: .line 340
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean v
        end local 2 // int k
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   14     1   pos  I
            0   14     2     k  I
            0   14     3     v  Z
    MethodParameters:
      Name  Flags
      pos   final
      k     final
      v     final

  public boolean put(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean v
         0: .line 343
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 3 /* pos */
        start local 3 // int pos
         1: .line 344
            iload 3 /* pos */
            ifge 4
         2: .line 345
            aload 0 /* this */
            iload 3 /* pos */
            ineg
            iconst_1
            isub
            iload 1 /* k */
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.insert:(IIZ)V
         3: .line 346
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         4: .line 348
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            baload
            istore 4 /* oldValue */
        start local 4 // boolean oldValue
         5: .line 349
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            iload 2 /* v */
            bastore
         6: .line 350
            iload 4 /* oldValue */
            ireturn
        end local 4 // boolean oldValue
        end local 3 // int pos
        end local 2 // boolean v
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    7     1         k  I
            0    7     2         v  Z
            1    7     3       pos  I
            5    7     4  oldValue  Z
    MethodParameters:
      Name  Flags
      k     final
      v     final

  protected final void shiftKeys(int);
    descriptor: (I)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int pos
         0: .line 363
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 5 /* key */
        start local 5 // int[] key
         1: .line 365
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int top top top int[]
      StackMap stack:
            iload 1 /* pos */
            dup
            istore 2 /* last */
        start local 2 // int last
         2: iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            istore 1 /* pos */
         3: .line 367
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int top top int[]
      StackMap stack:
            aload 5 /* key */
            iload 1 /* pos */
            iaload
            dup
            istore 4 /* curr */
        start local 4 // int curr
         4: ifne 7
         5: .line 368
            aload 5 /* key */
            iload 2 /* last */
            iconst_0
            iastore
         6: .line 369
            return
         7: .line 371
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int top int int[]
      StackMap stack:
            iload 4 /* curr */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            istore 3 /* slot */
        start local 3 // int slot
         8: .line 372
            iload 2 /* last */
            iload 1 /* pos */
            if_icmpgt 9
            iload 2 /* last */
            iload 3 /* slot */
            if_icmpge 13
            iload 3 /* slot */
            iload 1 /* pos */
            if_icmple 11
            goto 13
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int int int int[]
      StackMap stack:
         9: iload 2 /* last */
            iload 3 /* slot */
            if_icmplt 11
            iload 3 /* slot */
            iload 1 /* pos */
            if_icmple 11
        10: .line 373
            goto 13
        11: .line 374
      StackMap locals:
      StackMap stack:
            iload 1 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            istore 1 /* pos */
        end local 4 // int curr
        end local 3 // int slot
        12: .line 366
            goto 3
        start local 3 // int slot
        start local 4 // int curr
        13: .line 376
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 2 /* last */
            iload 4 /* curr */
            iastore
        14: .line 377
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 2 /* last */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 1 /* pos */
            baload
            bastore
        15: .line 378
            aload 0 /* this */
            iload 1 /* pos */
            iload 2 /* last */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.fixPointers:(II)V
        end local 4 // int curr
        end local 3 // int slot
        end local 2 // int last
        16: .line 364
            goto 1
        end local 5 // int[] key
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   17     1   pos  I
            2   16     2  last  I
            8   12     3  slot  I
           13   16     3  slot  I
            4   12     4  curr  I
           13   16     4  curr  I
            1   17     5   key  [I
    MethodParameters:
      Name  Flags
      pos   

  public boolean remove(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
         0: .line 384
            iload 1 /* k */
            ifne 4
         1: .line 385
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 3
         2: .line 386
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeNullEntry:()Z
            ireturn
         3: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         4: .line 390
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 3 /* key */
        start local 3 // int[] key
         5: .line 393
            aload 3 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
        start local 4 // int pos
         6: iaload
            dup
            istore 2 /* curr */
        start local 2 // int curr
         7: ifne 9
         8: .line 394
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         9: .line 395
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 11
        10: .line 396
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeEntry:(I)Z
            ireturn
        11: .line 398
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            iload 4 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
            iaload
            dup
            istore 2 /* curr */
            ifne 13
        12: .line 399
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        13: .line 400
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 11
        14: .line 401
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeEntry:(I)Z
            ireturn
        end local 4 // int pos
        end local 3 // int[] key
        end local 2 // int curr
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   15     1     k  I
            7   15     2  curr  I
            5   15     3   key  [I
            6   15     4   pos  I
    MethodParameters:
      Name  Flags
      k     final

  private boolean setValue(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int pos
        start local 2 // boolean v
         0: .line 405
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 1 /* pos */
            baload
            istore 3 /* oldValue */
        start local 3 // boolean oldValue
         1: .line 406
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 1 /* pos */
            iload 2 /* v */
            bastore
         2: .line 407
            iload 3 /* oldValue */
            ireturn
        end local 3 // boolean oldValue
        end local 2 // boolean v
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    3     1       pos  I
            0    3     2         v  Z
            1    3     3  oldValue  Z
    MethodParameters:
      Name  Flags
      pos   final
      v     final

  public boolean removeFirstBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 418
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 2
         1: .line 419
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            istore 1 /* pos */
        start local 1 // int pos
         3: .line 422
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            laload
            l2i
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         4: .line 423
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iflt 6
         5: .line 425
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            dup2
            laload
            ldc -4294967296
            lor
            lastore
         6: .line 427
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
         7: .line 428
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 1 /* pos */
            baload
            istore 2 /* v */
        start local 2 // boolean v
         8: .line 429
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            if_icmpne 11
         9: .line 430
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
        10: .line 431
            goto 12
        11: .line 432
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.shiftKeys:(I)V
        12: .line 433
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.minN:I
            if_icmple 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 14
        13: .line 434
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
        14: .line 435
      StackMap locals:
      StackMap stack:
            iload 2 /* v */
            ireturn
        end local 2 // boolean v
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            3   15     1   pos  I
            8   15     2     v  Z

  public boolean removeLastBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 445
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 2
         1: .line 446
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            istore 1 /* pos */
        start local 1 // int pos
         3: .line 449
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* pos */
            laload
            bipush 32
            lushr
            l2i
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
         4: .line 450
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            iflt 6
         5: .line 452
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            dup2
            laload
            ldc 4294967295
            lor
            lastore
         6: .line 454
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
         7: .line 455
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 1 /* pos */
            baload
            istore 2 /* v */
        start local 2 // boolean v
         8: .line 456
            iload 1 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            if_icmpne 11
         9: .line 457
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
        10: .line 458
            goto 12
        11: .line 459
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.shiftKeys:(I)V
        12: .line 460
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.minN:I
            if_icmple 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
            iconst_4
            idiv
            if_icmpge 14
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            bipush 16
            if_icmple 14
        13: .line 461
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_2
            idiv
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
        14: .line 462
      StackMap locals:
      StackMap stack:
            iload 2 /* v */
            ireturn
        end local 2 // boolean v
        end local 1 // int pos
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            3   15     1   pos  I
            8   15     2     v  Z

  private void moveIndexToFirst(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int i
         0: .line 465
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            if_icmpeq 1
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iload 1 /* i */
            if_icmpne 2
         1: .line 466
      StackMap locals:
      StackMap stack:
            return
         2: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            iload 1 /* i */
            if_icmpne 6
         3: .line 468
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            bipush 32
            lushr
            l2i
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
         4: .line 470
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            dup2
            laload
            ldc 4294967295
            lor
            lastore
         5: .line 471
            goto 11
         6: .line 472
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            lstore 2 /* linki */
        start local 2 // long linki
         7: .line 473
            lload 2 /* linki */
            bipush 32
            lushr
            l2i
            istore 4 /* prev */
        start local 4 // int prev
         8: .line 474
            lload 2 /* linki */
            l2i
            istore 5 /* next */
        start local 5 // int next
         9: .line 475
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            laload
            lload 2 /* linki */
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        10: .line 476
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* next */
            laload
            lload 2 /* linki */
            ldc -4294967296
            land
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        end local 5 // int next
        end local 4 // int prev
        end local 2 // long linki
        11: .line 478
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            laload
            iload 1 /* i */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        12: .line 479
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            ldc -4294967296
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            i2l
            ldc 4294967295
            land
            lor
            lastore
        13: .line 480
            aload 0 /* this */
            iload 1 /* i */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
        14: .line 481
            return
        end local 1 // int i
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   15     1      i  I
            7   11     2  linki  J
            8   11     4   prev  I
            9   11     5   next  I
    MethodParameters:
      Name  Flags
      i     final

  private void moveIndexToLast(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int i
         0: .line 483
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            if_icmpeq 1
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            iload 1 /* i */
            if_icmpne 2
         1: .line 484
      StackMap locals:
      StackMap stack:
            return
         2: .line 485
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iload 1 /* i */
            if_icmpne 6
         3: .line 486
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            l2i
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         4: .line 488
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            dup2
            laload
            ldc -4294967296
            lor
            lastore
         5: .line 489
            goto 11
         6: .line 490
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            lstore 2 /* linki */
        start local 2 // long linki
         7: .line 491
            lload 2 /* linki */
            bipush 32
            lushr
            l2i
            istore 4 /* prev */
        start local 4 // int prev
         8: .line 492
            lload 2 /* linki */
            l2i
            istore 5 /* next */
        start local 5 // int next
         9: .line 493
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            laload
            lload 2 /* linki */
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        10: .line 494
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* next */
            laload
            lload 2 /* linki */
            ldc -4294967296
            land
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        end local 5 // int next
        end local 4 // int prev
        end local 2 // long linki
        11: .line 496
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            laload
            iload 1 /* i */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        12: .line 497
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
        13: .line 498
            aload 0 /* this */
            iload 1 /* i */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
        14: .line 499
            return
        end local 1 // int i
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   15     1      i  I
            7   11     2  linki  J
            8   11     4   prev  I
            9   11     5   next  I
    MethodParameters:
      Name  Flags
      i     final

  public boolean getAndMoveToFirst(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
         0: .line 510
            iload 1 /* k */
            ifne 5
         1: .line 511
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 512
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToFirst:(I)V
         3: .line 513
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            ireturn
         4: .line 515
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         5: .line 518
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 3 /* key */
        start local 3 // int[] key
         6: .line 521
            aload 3 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
        start local 4 // int pos
         7: iaload
            dup
            istore 2 /* curr */
        start local 2 // int curr
         8: ifne 10
         9: .line 522
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        10: .line 523
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 13
        11: .line 524
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToFirst:(I)V
        12: .line 525
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            ireturn
        13: .line 529
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            iload 4 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
            iaload
            dup
            istore 2 /* curr */
            ifne 15
        14: .line 530
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        15: .line 531
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 13
        16: .line 532
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToFirst:(I)V
        17: .line 533
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            ireturn
        end local 4 // int pos
        end local 3 // int[] key
        end local 2 // int curr
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   18     1     k  I
            8   18     2  curr  I
            6   18     3   key  [I
            7   18     4   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean getAndMoveToLast(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
         0: .line 547
            iload 1 /* k */
            ifne 5
         1: .line 548
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 549
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToLast:(I)V
         3: .line 550
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            ireturn
         4: .line 552
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         5: .line 555
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 3 /* key */
        start local 3 // int[] key
         6: .line 558
            aload 3 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
        start local 4 // int pos
         7: iaload
            dup
            istore 2 /* curr */
        start local 2 // int curr
         8: ifne 10
         9: .line 559
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        10: .line 560
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 13
        11: .line 561
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToLast:(I)V
        12: .line 562
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            ireturn
        13: .line 566
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            iload 4 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
            iaload
            dup
            istore 2 /* curr */
            ifne 15
        14: .line 567
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        15: .line 568
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 13
        16: .line 569
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToLast:(I)V
        17: .line 570
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            ireturn
        end local 4 // int pos
        end local 3 // int[] key
        end local 2 // int curr
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   18     1     k  I
            8   18     2  curr  I
            6   18     3   key  [I
            7   18     4   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean putAndMoveToFirst(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean v
         0: .line 587
            iload 1 /* k */
            ifne 7
         1: .line 588
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 589
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToFirst:(I)V
         3: .line 590
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.setValue:(IZ)Z
            ireturn
         4: .line 592
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
         5: .line 593
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            istore 3 /* pos */
        start local 3 // int pos
         6: .line 594
            goto 18
        end local 3 // int pos
         7: .line 596
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 5 /* key */
        start local 5 // int[] key
         8: .line 598
            aload 5 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 3 /* pos */
        start local 3 // int pos
         9: iaload
            dup
            istore 4 /* curr */
        start local 4 // int curr
        10: ifeq 18
        11: .line 599
            iload 4 /* curr */
            iload 1 /* k */
            if_icmpne 17
        12: .line 600
            aload 0 /* this */
            iload 3 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToFirst:(I)V
        13: .line 601
            aload 0 /* this */
            iload 3 /* pos */
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.setValue:(IZ)Z
            ireturn
        14: .line 604
      StackMap locals: int int int[]
      StackMap stack:
            iload 4 /* curr */
            iload 1 /* k */
            if_icmpne 17
        15: .line 605
            aload 0 /* this */
            iload 3 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToFirst:(I)V
        16: .line 606
            aload 0 /* this */
            iload 3 /* pos */
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.setValue:(IZ)Z
            ireturn
        17: .line 603
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 3 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 3 /* pos */
            iaload
            dup
            istore 4 /* curr */
            ifne 14
        end local 5 // int[] key
        end local 4 // int curr
        18: .line 610
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            iload 3 /* pos */
            iload 1 /* k */
            iastore
        19: .line 611
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            iload 2 /* v */
            bastore
        20: .line 612
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 24
        21: .line 613
            aload 0 /* this */
            aload 0 /* this */
            iload 3 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
        22: .line 615
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 3 /* pos */
            ldc -1
            lastore
        23: .line 616
            goto 27
        24: .line 617
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            laload
            iload 3 /* pos */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        25: .line 618
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 3 /* pos */
            ldc -4294967296
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            i2l
            ldc 4294967295
            land
            lor
            lastore
        26: .line 619
            aload 0 /* this */
            iload 3 /* pos */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
        27: .line 621
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
            if_icmplt 29
        28: .line 622
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
        29: .line 625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        end local 3 // int pos
        end local 2 // boolean v
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   30     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   30     1     k  I
            0   30     2     v  Z
            6    7     3   pos  I
            9   30     3   pos  I
           10   18     4  curr  I
            8   18     5   key  [I
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean putAndMoveToLast(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean v
         0: .line 640
            iload 1 /* k */
            ifne 7
         1: .line 641
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
         2: .line 642
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToLast:(I)V
         3: .line 643
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.setValue:(IZ)Z
            ireturn
         4: .line 645
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
         5: .line 646
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            istore 3 /* pos */
        start local 3 // int pos
         6: .line 647
            goto 18
        end local 3 // int pos
         7: .line 649
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 5 /* key */
        start local 5 // int[] key
         8: .line 651
            aload 5 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 3 /* pos */
        start local 3 // int pos
         9: iaload
            dup
            istore 4 /* curr */
        start local 4 // int curr
        10: ifeq 18
        11: .line 652
            iload 4 /* curr */
            iload 1 /* k */
            if_icmpne 17
        12: .line 653
            aload 0 /* this */
            iload 3 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToLast:(I)V
        13: .line 654
            aload 0 /* this */
            iload 3 /* pos */
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.setValue:(IZ)Z
            ireturn
        14: .line 657
      StackMap locals: int int int[]
      StackMap stack:
            iload 4 /* curr */
            iload 1 /* k */
            if_icmpne 17
        15: .line 658
            aload 0 /* this */
            iload 3 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.moveIndexToLast:(I)V
        16: .line 659
            aload 0 /* this */
            iload 3 /* pos */
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.setValue:(IZ)Z
            ireturn
        17: .line 656
      StackMap locals:
      StackMap stack:
            aload 5 /* key */
            iload 3 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 3 /* pos */
            iaload
            dup
            istore 4 /* curr */
            ifne 14
        end local 5 // int[] key
        end local 4 // int curr
        18: .line 663
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            iload 3 /* pos */
            iload 1 /* k */
            iastore
        19: .line 664
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            iload 2 /* v */
            bastore
        20: .line 665
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 24
        21: .line 666
            aload 0 /* this */
            aload 0 /* this */
            iload 3 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
        22: .line 668
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 3 /* pos */
            ldc -1
            lastore
        23: .line 669
            goto 27
        24: .line 670
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            laload
            iload 3 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        25: .line 671
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 3 /* pos */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            ldc 4294967295
            lor
            lastore
        26: .line 672
            aload 0 /* this */
            iload 3 /* pos */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
        27: .line 674
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            dup_x1
            iconst_1
            iadd
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
            if_icmplt 29
        28: .line 675
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
        29: .line 678
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        end local 3 // int pos
        end local 2 // boolean v
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   30     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   30     1     k  I
            0   30     2     v  Z
            6    7     3   pos  I
            9   30     3   pos  I
           10   18     4  curr  I
            8   18     5   key  [I
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean get(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
         0: .line 683
            iload 1 /* k */
            ifne 4
         1: .line 684
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 686
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 3 /* key */
        start local 3 // int[] key
         5: .line 689
            aload 3 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
        start local 4 // int pos
         6: iaload
            dup
            istore 2 /* curr */
        start local 2 // int curr
         7: ifne 9
         8: .line 690
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         9: .line 691
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 11
        10: .line 692
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            ireturn
        11: .line 695
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            iload 4 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
            iaload
            dup
            istore 2 /* curr */
            ifne 13
        12: .line 696
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        13: .line 697
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 11
        14: .line 698
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            ireturn
        end local 4 // int pos
        end local 3 // int[] key
        end local 2 // int curr
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   15     1     k  I
            7   15     2  curr  I
            5   15     3   key  [I
            6   15     4   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean containsKey(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
         0: .line 704
            iload 1 /* k */
            ifne 2
         1: .line 705
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ireturn
         2: .line 707
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 3 /* key */
        start local 3 // int[] key
         3: .line 710
            aload 3 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
        start local 4 // int pos
         4: iaload
            dup
            istore 2 /* curr */
        start local 2 // int curr
         5: ifne 7
         6: .line 711
            iconst_0
            ireturn
         7: .line 712
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 9
         8: .line 713
            iconst_1
            ireturn
         9: .line 716
      StackMap locals:
      StackMap stack:
            aload 3 /* key */
            iload 4 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 4 /* pos */
            iaload
            dup
            istore 2 /* curr */
            ifne 11
        10: .line 717
            iconst_0
            ireturn
        11: .line 718
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 2 /* curr */
            if_icmpne 9
        12: .line 719
            iconst_1
            ireturn
        end local 4 // int pos
        end local 3 // int[] key
        end local 2 // int curr
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   13     1     k  I
            5   13     2  curr  I
            3   13     3   key  [I
            4   13     4   pos  I
    MethodParameters:
      Name  Flags
      k     final

  public boolean containsValue(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // boolean v
         0: .line 724
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            astore 2 /* value */
        start local 2 // boolean[] value
         1: .line 725
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 3 /* key */
        start local 3 // int[] key
         2: .line 726
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
            aload 2 /* value */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            iload 1 /* v */
            if_icmpne 4
         3: .line 727
            iconst_1
            ireturn
         4: .line 728
      StackMap locals: boolean[] int[]
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            istore 4 /* i */
        start local 4 // int i
         5: goto 8
         6: .line 729
      StackMap locals: int
      StackMap stack:
            aload 3 /* key */
            iload 4 /* i */
            iaload
            ifeq 8
            aload 2 /* value */
            iload 4 /* i */
            baload
            iload 1 /* v */
            if_icmpne 8
         7: .line 730
            iconst_1
            ireturn
         8: .line 728
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            iinc 4 /* i */ -1
            ifne 6
        end local 4 // int i
         9: .line 731
            iconst_0
            ireturn
        end local 3 // int[] key
        end local 2 // boolean[] value
        end local 1 // boolean v
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   10     1      v  Z
            1   10     2  value  [Z
            2   10     3    key  [I
            5    9     4      i  I
    MethodParameters:
      Name  Flags
      v     final

  public boolean getOrDefault(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean defaultValue
         0: .line 737
            iload 1 /* k */
            ifne 4
         1: .line 738
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            goto 3
      StackMap locals:
      StackMap stack:
         2: iload 2 /* defaultValue */
      StackMap locals:
      StackMap stack: int
         3: ireturn
         4: .line 740
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 4 /* key */
        start local 4 // int[] key
         5: .line 743
            aload 4 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
        start local 5 // int pos
         6: iaload
            dup
            istore 3 /* curr */
        start local 3 // int curr
         7: ifne 9
         8: .line 744
            iload 2 /* defaultValue */
            ireturn
         9: .line 745
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 3 /* curr */
            if_icmpne 11
        10: .line 746
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 5 /* pos */
            baload
            ireturn
        11: .line 749
      StackMap locals:
      StackMap stack:
            aload 4 /* key */
            iload 5 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
            iaload
            dup
            istore 3 /* curr */
            ifne 13
        12: .line 750
            iload 2 /* defaultValue */
            ireturn
        13: .line 751
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 3 /* curr */
            if_icmpne 11
        14: .line 752
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 5 /* pos */
            baload
            ireturn
        end local 5 // int pos
        end local 4 // int[] key
        end local 3 // int curr
        end local 2 // boolean defaultValue
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   15     1             k  I
            0   15     2  defaultValue  Z
            7   15     3          curr  I
            5   15     4           key  [I
            6   15     5           pos  I
    MethodParameters:
              Name  Flags
      k             final
      defaultValue  final

  public boolean putIfAbsent(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean v
         0: .line 758
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 3 /* pos */
        start local 3 // int pos
         1: .line 759
            iload 3 /* pos */
            iflt 3
         2: .line 760
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            baload
            ireturn
         3: .line 761
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* pos */
            ineg
            iconst_1
            isub
            iload 1 /* k */
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.insert:(IIZ)V
         4: .line 762
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        end local 3 // int pos
        end local 2 // boolean v
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    5     1     k  I
            0    5     2     v  Z
            1    5     3   pos  I
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean remove(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean v
         0: .line 768
            iload 1 /* k */
            ifne 5
         1: .line 769
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 4
            iload 2 /* v */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            if_icmpne 4
         2: .line 770
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeNullEntry:()Z
            pop
         3: .line 771
            iconst_1
            ireturn
         4: .line 773
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         5: .line 776
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 4 /* key */
        start local 4 // int[] key
         6: .line 779
            aload 4 /* key */
            iload 1 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
        start local 5 // int pos
         7: iaload
            dup
            istore 3 /* curr */
        start local 3 // int curr
         8: ifne 10
         9: .line 780
            iconst_0
            ireturn
        10: .line 781
      StackMap locals: int int[] int
      StackMap stack:
            iload 1 /* k */
            iload 3 /* curr */
            if_icmpne 13
            iload 2 /* v */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 5 /* pos */
            baload
            if_icmpne 13
        11: .line 782
            aload 0 /* this */
            iload 5 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeEntry:(I)Z
            pop
        12: .line 783
            iconst_1
            ireturn
        13: .line 786
      StackMap locals:
      StackMap stack:
            aload 4 /* key */
            iload 5 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            dup
            istore 5 /* pos */
            iaload
            dup
            istore 3 /* curr */
            ifne 15
        14: .line 787
            iconst_0
            ireturn
        15: .line 788
      StackMap locals:
      StackMap stack:
            iload 1 /* k */
            iload 3 /* curr */
            if_icmpne 13
            iload 2 /* v */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 5 /* pos */
            baload
            if_icmpne 13
        16: .line 789
            aload 0 /* this */
            iload 5 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeEntry:(I)Z
            pop
        17: .line 790
            iconst_1
            ireturn
        end local 5 // int pos
        end local 4 // int[] key
        end local 3 // int curr
        end local 2 // boolean v
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   18     1     k  I
            0   18     2     v  Z
            8   18     3  curr  I
            6   18     4   key  [I
            7   18     5   pos  I
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean replace(int, boolean, boolean);
    descriptor: (IZZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean oldValue
        start local 3 // boolean v
         0: .line 797
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 4 /* pos */
        start local 4 // int pos
         1: .line 798
            iload 4 /* pos */
            iflt 2
            iload 2 /* oldValue */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            if_icmpeq 3
         2: .line 799
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
         3: .line 800
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            iload 3 /* v */
            bastore
         4: .line 801
            iconst_1
            ireturn
        end local 4 // int pos
        end local 3 // boolean v
        end local 2 // boolean oldValue
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    5     1         k  I
            0    5     2  oldValue  Z
            0    5     3         v  Z
            1    5     4       pos  I
    MethodParameters:
          Name  Flags
      k         final
      oldValue  final
      v         final

  public boolean replace(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean v
         0: .line 806
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 3 /* pos */
        start local 3 // int pos
         1: .line 807
            iload 3 /* pos */
            ifge 3
         2: .line 808
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         3: .line 809
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            baload
            istore 4 /* oldValue */
        start local 4 // boolean oldValue
         4: .line 810
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            iload 2 /* v */
            bastore
         5: .line 811
            iload 4 /* oldValue */
            ireturn
        end local 4 // boolean oldValue
        end local 3 // int pos
        end local 2 // boolean v
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    6     1         k  I
            0    6     2         v  Z
            1    6     3       pos  I
            4    6     4  oldValue  Z
    MethodParameters:
      Name  Flags
      k     final
      v     final

  public boolean computeIfAbsent(int, java.util.function.IntPredicate);
    descriptor: (ILjava/util/function/IntPredicate;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // java.util.function.IntPredicate mappingFunction
         0: .line 816
            aload 2 /* mappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 817
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 3 /* pos */
        start local 3 // int pos
         2: .line 818
            iload 3 /* pos */
            iflt 4
         3: .line 819
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            baload
            ireturn
         4: .line 820
      StackMap locals: int
      StackMap stack:
            aload 2 /* mappingFunction */
            iload 1 /* k */
            invokeinterface java.util.function.IntPredicate.test:(I)Z
            istore 4 /* newValue */
        start local 4 // boolean newValue
         5: .line 821
            aload 0 /* this */
            iload 3 /* pos */
            ineg
            iconst_1
            isub
            iload 1 /* k */
            iload 4 /* newValue */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.insert:(IIZ)V
         6: .line 822
            iload 4 /* newValue */
            ireturn
        end local 4 // boolean newValue
        end local 3 // int pos
        end local 2 // java.util.function.IntPredicate mappingFunction
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    7     1                k  I
            0    7     2  mappingFunction  Ljava/util/function/IntPredicate;
            2    7     3              pos  I
            5    7     4         newValue  Z
    MethodParameters:
                 Name  Flags
      k                final
      mappingFunction  final

  public boolean computeIfAbsentNullable(int, java.util.function.IntFunction<? extends java.lang.Boolean>);
    descriptor: (ILjava/util/function/IntFunction;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // java.util.function.IntFunction mappingFunction
         0: .line 828
            aload 2 /* mappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 829
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 3 /* pos */
        start local 3 // int pos
         2: .line 830
            iload 3 /* pos */
            iflt 4
         3: .line 831
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            baload
            ireturn
         4: .line 832
      StackMap locals: int
      StackMap stack:
            aload 2 /* mappingFunction */
            iload 1 /* k */
            invokeinterface java.util.function.IntFunction.apply:(I)Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 4 /* newValue */
        start local 4 // java.lang.Boolean newValue
         5: .line 833
            aload 4 /* newValue */
            ifnonnull 7
         6: .line 834
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         7: .line 835
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 4 /* newValue */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            istore 5 /* v */
        start local 5 // boolean v
         8: .line 836
            aload 0 /* this */
            iload 3 /* pos */
            ineg
            iconst_1
            isub
            iload 1 /* k */
            iload 5 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.insert:(IIZ)V
         9: .line 837
            iload 5 /* v */
            ireturn
        end local 5 // boolean v
        end local 4 // java.lang.Boolean newValue
        end local 3 // int pos
        end local 2 // java.util.function.IntFunction mappingFunction
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   10     0             this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   10     1                k  I
            0   10     2  mappingFunction  Ljava/util/function/IntFunction<+Ljava/lang/Boolean;>;
            2   10     3              pos  I
            5   10     4         newValue  Ljava/lang/Boolean;
            8   10     5                v  Z
    Signature: (ILjava/util/function/IntFunction<+Ljava/lang/Boolean;>;)Z
    MethodParameters:
                 Name  Flags
      k                final
      mappingFunction  final

  public boolean computeIfPresent(int, java.util.function.BiFunction<? super java.lang.Integer, ? super java.lang.Boolean, ? extends java.lang.Boolean>);
    descriptor: (ILjava/util/function/BiFunction;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // java.util.function.BiFunction remappingFunction
         0: .line 843
            aload 2 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 844
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 3 /* pos */
        start local 3 // int pos
         2: .line 845
            iload 3 /* pos */
            ifge 4
         3: .line 846
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
         4: .line 847
      StackMap locals: int
      StackMap stack:
            aload 2 /* remappingFunction */
            iload 1 /* k */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            baload
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 4 /* newValue */
        start local 4 // java.lang.Boolean newValue
         5: .line 848
            aload 4 /* newValue */
            ifnonnull 10
         6: .line 849
            iload 1 /* k */
            ifne 8
         7: .line 850
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeNullEntry:()Z
            pop
            goto 9
         8: .line 852
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 0 /* this */
            iload 3 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeEntry:(I)Z
            pop
         9: .line 853
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        10: .line 855
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            aload 4 /* newValue */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            dup_x2
            bastore
            ireturn
        end local 4 // java.lang.Boolean newValue
        end local 3 // int pos
        end local 2 // java.util.function.BiFunction remappingFunction
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   11     0               this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   11     1                  k  I
            0   11     2  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Integer;-Ljava/lang/Boolean;+Ljava/lang/Boolean;>;
            2   11     3                pos  I
            5   11     4           newValue  Ljava/lang/Boolean;
    Signature: (ILjava/util/function/BiFunction<-Ljava/lang/Integer;-Ljava/lang/Boolean;+Ljava/lang/Boolean;>;)Z
    MethodParameters:
                   Name  Flags
      k                  final
      remappingFunction  final

  public boolean compute(int, java.util.function.BiFunction<? super java.lang.Integer, ? super java.lang.Boolean, ? extends java.lang.Boolean>);
    descriptor: (ILjava/util/function/BiFunction;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // java.util.function.BiFunction remappingFunction
         0: .line 861
            aload 2 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 862
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 3 /* pos */
        start local 3 // int pos
         2: .line 863
            aload 2 /* remappingFunction */
            iload 1 /* k */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         3: .line 864
            iload 3 /* pos */
            iflt 4
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            baload
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            goto 5
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int java.util.function.BiFunction int
      StackMap stack: java.util.function.BiFunction java.lang.Integer
         4: aconst_null
         5: .line 863
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int java.util.function.BiFunction int
      StackMap stack: java.util.function.BiFunction java.lang.Integer java.lang.Boolean
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 4 /* newValue */
        start local 4 // java.lang.Boolean newValue
         6: .line 865
            aload 4 /* newValue */
            ifnonnull 12
         7: .line 866
            iload 3 /* pos */
            iflt 11
         8: .line 867
            iload 1 /* k */
            ifne 10
         9: .line 868
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeNullEntry:()Z
            pop
            goto 11
        10: .line 870
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 0 /* this */
            iload 3 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeEntry:(I)Z
            pop
        11: .line 872
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        12: .line 874
      StackMap locals:
      StackMap stack:
            aload 4 /* newValue */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            istore 5 /* newVal */
        start local 5 // boolean newVal
        13: .line 875
            iload 3 /* pos */
            ifge 16
        14: .line 876
            aload 0 /* this */
            iload 3 /* pos */
            ineg
            iconst_1
            isub
            iload 1 /* k */
            iload 5 /* newVal */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.insert:(IIZ)V
        15: .line 877
            iload 5 /* newVal */
            ireturn
        16: .line 879
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* pos */
            iload 5 /* newVal */
            dup_x2
            bastore
            ireturn
        end local 5 // boolean newVal
        end local 4 // java.lang.Boolean newValue
        end local 3 // int pos
        end local 2 // java.util.function.BiFunction remappingFunction
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   17     0               this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   17     1                  k  I
            0   17     2  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Integer;-Ljava/lang/Boolean;+Ljava/lang/Boolean;>;
            2   17     3                pos  I
            6   17     4           newValue  Ljava/lang/Boolean;
           13   17     5             newVal  Z
    Signature: (ILjava/util/function/BiFunction<-Ljava/lang/Integer;-Ljava/lang/Boolean;+Ljava/lang/Boolean;>;)Z
    MethodParameters:
                   Name  Flags
      k                  final
      remappingFunction  final

  public boolean merge(int, boolean, java.util.function.BiFunction<? super java.lang.Boolean, ? super java.lang.Boolean, ? extends java.lang.Boolean>);
    descriptor: (IZLjava/util/function/BiFunction;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int k
        start local 2 // boolean v
        start local 3 // java.util.function.BiFunction remappingFunction
         0: .line 885
            aload 3 /* remappingFunction */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 886
            aload 0 /* this */
            iload 1 /* k */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.find:(I)I
            istore 4 /* pos */
        start local 4 // int pos
         2: .line 887
            iload 4 /* pos */
            ifge 5
         3: .line 888
            aload 0 /* this */
            iload 4 /* pos */
            ineg
            iconst_1
            isub
            iload 1 /* k */
            iload 2 /* v */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.insert:(IIZ)V
         4: .line 889
            iload 2 /* v */
            ireturn
         5: .line 891
      StackMap locals: int
      StackMap stack:
            aload 3 /* remappingFunction */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            baload
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            iload 2 /* v */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 5 /* newValue */
        start local 5 // java.lang.Boolean newValue
         6: .line 892
            aload 5 /* newValue */
            ifnonnull 11
         7: .line 893
            iload 1 /* k */
            ifne 9
         8: .line 894
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeNullEntry:()Z
            pop
            goto 10
         9: .line 896
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 0 /* this */
            iload 4 /* pos */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.removeEntry:(I)Z
            pop
        10: .line 897
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.defRetValue:Z
            ireturn
        11: .line 899
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 4 /* pos */
            aload 5 /* newValue */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            dup_x2
            bastore
            ireturn
        end local 5 // java.lang.Boolean newValue
        end local 4 // int pos
        end local 3 // java.util.function.BiFunction remappingFunction
        end local 2 // boolean v
        end local 1 // int k
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   12     0               this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   12     1                  k  I
            0   12     2                  v  Z
            0   12     3  remappingFunction  Ljava/util/function/BiFunction<-Ljava/lang/Boolean;-Ljava/lang/Boolean;+Ljava/lang/Boolean;>;
            2   12     4                pos  I
            6   12     5           newValue  Ljava/lang/Boolean;
    Signature: (IZLjava/util/function/BiFunction<-Ljava/lang/Boolean;-Ljava/lang/Boolean;+Ljava/lang/Boolean;>;)Z
    MethodParameters:
                   Name  Flags
      k                  final
      v                  final
      remappingFunction  final

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 910
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 2
         1: .line 911
            return
         2: .line 912
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
         3: .line 913
            aload 0 /* this */
            iconst_0
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
         4: .line 914
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            iconst_0
            invokestatic java.util.Arrays.fill:([II)V
         5: .line 915
            aload 0 /* this */
            aload 0 /* this */
            iconst_m1
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         6: .line 916
            return
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 919
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ireturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 923
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  protected void fixPointers(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=6, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int i
         0: .line 1008
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 3
         1: .line 1009
            aload 0 /* this */
            aload 0 /* this */
            iconst_m1
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         2: .line 1010
            return
         3: .line 1012
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iload 1 /* i */
            if_icmpne 8
         4: .line 1013
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            l2i
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         5: .line 1014
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iflt 7
         6: .line 1016
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            dup2
            laload
            ldc -4294967296
            lor
            lastore
         7: .line 1018
      StackMap locals:
      StackMap stack:
            return
         8: .line 1020
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            iload 1 /* i */
            if_icmpne 13
         9: .line 1021
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            bipush 32
            lushr
            l2i
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
        10: .line 1022
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            iflt 12
        11: .line 1024
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            dup2
            laload
            ldc 4294967295
            lor
            lastore
        12: .line 1026
      StackMap locals:
      StackMap stack:
            return
        13: .line 1028
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* i */
            laload
            lstore 2 /* linki */
        start local 2 // long linki
        14: .line 1029
            lload 2 /* linki */
            bipush 32
            lushr
            l2i
            istore 4 /* prev */
        start local 4 // int prev
        15: .line 1030
            lload 2 /* linki */
            l2i
            istore 5 /* next */
        start local 5 // int next
        16: .line 1031
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 4 /* prev */
            laload
            lload 2 /* linki */
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        17: .line 1032
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* next */
            laload
            lload 2 /* linki */
            ldc -4294967296
            land
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        18: .line 1033
            return
        end local 5 // int next
        end local 4 // int prev
        end local 2 // long linki
        end local 1 // int i
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   19     1      i  I
           14   19     2  linki  J
           15   19     4   prev  I
           16   19     5   next  I
    MethodParameters:
      Name  Flags
      i     final

  protected void fixPointers(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=7, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int s
        start local 2 // int d
         0: .line 1045
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iconst_1
            if_icmpne 4
         1: .line 1046
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* d */
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         2: .line 1048
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 2 /* d */
            ldc -1
            lastore
         3: .line 1049
            return
         4: .line 1051
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iload 1 /* s */
            if_icmpne 9
         5: .line 1052
            aload 0 /* this */
            iload 2 /* d */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         6: .line 1053
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            l2i
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            l2i
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
         7: .line 1054
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 2 /* d */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            lastore
         8: .line 1055
            return
         9: .line 1057
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            iload 1 /* s */
            if_icmpne 14
        10: .line 1058
            aload 0 /* this */
            iload 2 /* d */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
        11: .line 1059
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            bipush 32
            lushr
            l2i
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            bipush 32
            lushr
            l2i
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        12: .line 1060
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 2 /* d */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            lastore
        13: .line 1061
            return
        14: .line 1063
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 1 /* s */
            laload
            lstore 3 /* links */
        start local 3 // long links
        15: .line 1064
            lload 3 /* links */
            bipush 32
            lushr
            l2i
            istore 5 /* prev */
        start local 5 // int prev
        16: .line 1065
            lload 3 /* links */
            l2i
            istore 6 /* next */
        start local 6 // int next
        17: .line 1066
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* prev */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 5 /* prev */
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        18: .line 1067
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 6 /* next */
            dup2
            laload
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 6 /* next */
            laload
            iload 2 /* d */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        19: .line 1068
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            iload 2 /* d */
            lload 3 /* links */
            lastore
        20: .line 1069
            return
        end local 6 // int next
        end local 5 // int prev
        end local 3 // long links
        end local 2 // int d
        end local 1 // int s
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   21     0   this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   21     1      s  I
            0   21     2      d  I
           15   21     3  links  J
           16   21     5   prev  I
           17   21     6   next  I
    MethodParameters:
      Name  Flags
      s     
      d     

  public int firstIntKey();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1077
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 2
         1: .line 1078
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1079
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iaload
            ireturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public int lastIntKey();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1088
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            ifne 2
         1: .line 1089
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 1090
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            iaload
            ireturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.ints.Int2BooleanSortedMap tailMap(int);
    descriptor: (I)Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int from
         0: .line 1099
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // int from
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    1     1  from  I
    MethodParameters:
      Name  Flags
      from  

  public it.unimi.dsi.fastutil.ints.Int2BooleanSortedMap headMap(int);
    descriptor: (I)Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int to
         0: .line 1108
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // int to
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    1     1    to  I
    MethodParameters:
      Name  Flags
      to    

  public it.unimi.dsi.fastutil.ints.Int2BooleanSortedMap subMap(int, int);
    descriptor: (II)Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int from
        start local 2 // int to
         0: .line 1117
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 2 // int to
        end local 1 // int from
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    1     1  from  I
            0    1     2    to  I
    MethodParameters:
      Name  Flags
      from  
      to    

  public it.unimi.dsi.fastutil.ints.IntComparator comparator();
    descriptor: ()Lit/unimi/dsi/fastutil/ints/IntComparator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1126
            aconst_null
            areturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.ints.Int2BooleanSortedMap$FastSortedEntrySet int2BooleanEntrySet();
    descriptor: ()Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1540
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
            ifnonnull 2
         1: .line 1541
            aload 0 /* this */
            new it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapEntrySet
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapEntrySet.<init>:(Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
         2: .line 1542
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
            areturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.ints.IntSortedSet keySet();
    descriptor: ()Lit/unimi/dsi/fastutil/ints/IntSortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1638
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/ints/IntSortedSet;
            ifnonnull 2
         1: .line 1639
            aload 0 /* this */
            new it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$KeySet
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$KeySet.<init>:(Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/ints/IntSortedSet;
         2: .line 1640
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/ints/IntSortedSet;
            areturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public it.unimi.dsi.fastutil.booleans.BooleanCollection values();
    descriptor: ()Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1666
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
            ifnonnull 2
         1: .line 1667
            aload 0 /* this */
            new it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$1
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$1.<init>:(Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;)V
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
         2: .line 1694
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
            areturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public boolean trim();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1711
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.trim:(I)Z
            ireturn
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public boolean trim(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int n
         0: .line 1735
            iload 1 /* n */
            i2f
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            fdiv
            f2d
            invokestatic java.lang.Math.ceil:(D)D
            d2i
            invokestatic it.unimi.dsi.fastutil.HashCommon.nextPowerOfTwo:(I)I
            istore 2 /* l */
        start local 2 // int l
         1: .line 1736
            iload 2 /* l */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            if_icmpge 2
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            iload 2 /* l */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            if_icmple 3
         2: .line 1737
      StackMap locals: int
      StackMap stack:
            iconst_1
            ireturn
         3: .line 1739
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* l */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.rehash:(I)V
         4: .line 1740
            goto 7
      StackMap locals:
      StackMap stack: java.lang.OutOfMemoryError
         5: pop
         6: .line 1741
            iconst_0
            ireturn
         7: .line 1743
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // int l
        end local 1 // int n
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0    8     1     n  I
            1    8     2     l  I
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.OutOfMemoryError
    MethodParameters:
      Name  Flags
      n     final

  protected void rehash(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=15, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // int newN
         0: .line 1759
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 2 /* key */
        start local 2 // int[] key
         1: .line 1760
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            astore 3 /* value */
        start local 3 // boolean[] value
         2: .line 1761
            iload 1 /* newN */
            iconst_1
            isub
            istore 4 /* mask */
        start local 4 // int mask
         3: .line 1762
            iload 1 /* newN */
            iconst_1
            iadd
            newarray 10
            astore 5 /* newKey */
        start local 5 // int[] newKey
         4: .line 1763
            iload 1 /* newN */
            iconst_1
            iadd
            newarray 4
            astore 6 /* newValue */
        start local 6 // boolean[] newValue
         5: .line 1764
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            istore 7 /* i */
        start local 7 // int i
         6: iconst_m1
            istore 8 /* prev */
        start local 8 // int prev
         7: iconst_m1
            istore 9 /* newPrev */
        start local 9 // int newPrev
         8: .line 1765
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            astore 12 /* link */
        start local 12 // long[] link
         9: .line 1766
            iload 1 /* newN */
            iconst_1
            iadd
            newarray 11
            astore 13 /* newLink */
        start local 13 // long[] newLink
        10: .line 1767
            aload 0 /* this */
            iconst_m1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
        11: .line 1768
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            istore 14 /* j */
        start local 14 // int j
        12: goto 32
        13: .line 1769
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int[] boolean[] int int[] boolean[] int int int top top long[] long[] int
      StackMap stack:
            aload 2 /* key */
            iload 7 /* i */
            iaload
            ifne 16
        14: .line 1770
            iload 1 /* newN */
            istore 11 /* pos */
        start local 11 // int pos
        15: goto 20
        end local 11 // int pos
        16: .line 1772
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 7 /* i */
            iaload
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            iload 4 /* mask */
            iand
            istore 11 /* pos */
        start local 11 // int pos
        17: .line 1773
            goto 19
        18: .line 1774
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int[] boolean[] int int[] boolean[] int int int top int long[] long[] int
      StackMap stack:
            iload 11 /* pos */
            iconst_1
            iadd
            iload 4 /* mask */
            iand
            istore 11 /* pos */
        19: .line 1773
      StackMap locals:
      StackMap stack:
            aload 5 /* newKey */
            iload 11 /* pos */
            iaload
            ifne 18
        20: .line 1776
      StackMap locals:
      StackMap stack:
            aload 5 /* newKey */
            iload 11 /* pos */
            aload 2 /* key */
            iload 7 /* i */
            iaload
            iastore
        21: .line 1777
            aload 6 /* newValue */
            iload 11 /* pos */
            aload 3 /* value */
            iload 7 /* i */
            baload
            bastore
        22: .line 1778
            iload 8 /* prev */
            iconst_m1
            if_icmpeq 27
        23: .line 1779
            aload 13 /* newLink */
            iload 9 /* newPrev */
            dup2
            laload
            aload 13 /* newLink */
            iload 9 /* newPrev */
            laload
            iload 11 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        24: .line 1780
            aload 13 /* newLink */
            iload 11 /* pos */
            dup2
            laload
            aload 13 /* newLink */
            iload 11 /* pos */
            laload
            iload 9 /* newPrev */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        25: .line 1781
            iload 11 /* pos */
            istore 9 /* newPrev */
        26: .line 1782
            goto 29
        27: .line 1783
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 11 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            istore 9 /* newPrev */
        28: .line 1785
            aload 13 /* newLink */
            iload 11 /* pos */
            ldc -1
            lastore
        29: .line 1787
      StackMap locals:
      StackMap stack:
            iload 7 /* i */
            istore 10 /* t */
        start local 10 // int t
        30: .line 1788
            aload 12 /* link */
            iload 7 /* i */
            laload
            l2i
            istore 7 /* i */
        31: .line 1789
            iload 10 /* t */
            istore 8 /* prev */
        end local 11 // int pos
        end local 10 // int t
        32: .line 1768
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int[] boolean[] int int[] boolean[] int int int top top long[] long[] int
      StackMap stack:
            iload 14 /* j */
            iinc 14 /* j */ -1
            ifne 13
        end local 14 // int j
        33: .line 1791
            aload 0 /* this */
            aload 13 /* newLink */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
        34: .line 1792
            aload 0 /* this */
            iload 9 /* newPrev */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
        35: .line 1793
            iload 9 /* newPrev */
            iconst_m1
            if_icmpeq 37
        36: .line 1795
            aload 13 /* newLink */
            iload 9 /* newPrev */
            dup2
            laload
            ldc 4294967295
            lor
            lastore
        37: .line 1796
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newN */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
        38: .line 1797
            aload 0 /* this */
            iload 4 /* mask */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
        39: .line 1798
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
        40: .line 1799
            aload 0 /* this */
            aload 5 /* newKey */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
        41: .line 1800
            aload 0 /* this */
            aload 6 /* newValue */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
        42: .line 1801
            return
        end local 13 // long[] newLink
        end local 12 // long[] link
        end local 9 // int newPrev
        end local 8 // int prev
        end local 7 // int i
        end local 6 // boolean[] newValue
        end local 5 // int[] newKey
        end local 4 // int mask
        end local 3 // boolean[] value
        end local 2 // int[] key
        end local 1 // int newN
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   43     0      this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   43     1      newN  I
            1   43     2       key  [I
            2   43     3     value  [Z
            3   43     4      mask  I
            4   43     5    newKey  [I
            5   43     6  newValue  [Z
            6   43     7         i  I
            7   43     8      prev  I
            8   43     9   newPrev  I
           30   32    10         t  I
           15   16    11       pos  I
           17   32    11       pos  I
            9   43    12      link  [J
           10   43    13   newLink  [J
           12   33    14         j  I
    MethodParameters:
      Name  Flags
      newN  final

  public it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap clone();
    descriptor: ()Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1817
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
            astore 1 /* c */
        start local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap c
         1: .line 1818
            goto 4
        end local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap c
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
         2: pop
         3: .line 1819
            new java.lang.InternalError
            dup
            invokespecial java.lang.InternalError.<init>:()V
            athrow
        start local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap c
         4: .line 1821
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
      StackMap stack:
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.keys:Lit/unimi/dsi/fastutil/ints/IntSortedSet;
         5: .line 1822
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.values:Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
         6: .line 1823
            aload 1 /* c */
            aconst_null
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.entries:Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
         7: .line 1824
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
         8: .line 1825
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            invokevirtual int[].clone:()Ljava/lang/Object;
            checkcast int[]
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
         9: .line 1826
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            invokevirtual boolean[].clone:()Ljava/lang/Object;
            checkcast boolean[]
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
        10: .line 1827
            aload 1 /* c */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            invokevirtual long[].clone:()Ljava/lang/Object;
            checkcast long[]
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
        11: .line 1828
            aload 1 /* c */
            areturn
        end local 1 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap c
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            1    2     1     c  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            4   12     1     c  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.CloneNotSupportedException

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1841
            iconst_0
            istore 1 /* h */
        start local 1 // int h
         1: .line 1842
            aload 0 /* this */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.realSize:()I
            istore 2 /* j */
        start local 2 // int j
         2: iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: iconst_0
            istore 4 /* t */
        start local 4 // int t
         4: goto 13
         5: .line 1844
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int int int
      StackMap stack:
            iinc 3 /* i */ 1
         6: .line 1843
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            iload 3 /* i */
            iaload
            ifeq 5
         7: .line 1845
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            iload 3 /* i */
            iaload
            istore 4 /* t */
         8: .line 1846
            iload 4 /* t */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            iload 3 /* i */
            baload
            ifeq 9
            sipush 1231
            goto 10
      StackMap locals:
      StackMap stack: int
         9: sipush 1237
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int int int int
      StackMap stack: int int
        10: ixor
            istore 4 /* t */
        11: .line 1847
            iload 1 /* h */
            iload 4 /* t */
            iadd
            istore 1 /* h */
        12: .line 1848
            iinc 3 /* i */ 1
        13: .line 1842
      StackMap locals:
      StackMap stack:
            iload 2 /* j */
            iinc 2 /* j */ -1
            ifne 6
        end local 4 // int t
        end local 3 // int i
        end local 2 // int j
        14: .line 1851
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
            ifeq 18
        15: .line 1852
            iload 1 /* h */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            baload
            ifeq 16
            sipush 1231
            goto 17
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int
      StackMap stack: int
        16: sipush 1237
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap int
      StackMap stack: int int
        17: iadd
            istore 1 /* h */
        18: .line 1853
      StackMap locals:
      StackMap stack:
            iload 1 /* h */
            ireturn
        end local 1 // int h
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            1   19     1     h  I
            2   14     2     j  I
            3   14     3     i  I
            4   14     4     t  I

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // java.io.ObjectOutputStream s
         0: .line 1856
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 2 /* key */
        start local 2 // int[] key
         1: .line 1857
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            astore 3 /* value */
        start local 3 // boolean[] value
         2: .line 1858
            new it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator
            dup
            aload 0 /* this */
            invokespecial it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator.<init>:(Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;)V
            astore 4 /* i */
        start local 4 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator i
         3: .line 1859
            aload 1 /* s */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         4: .line 1860
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            istore 5 /* j */
        start local 5 // int j
         5: goto 9
         6: .line 1861
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap java.io.ObjectOutputStream int[] boolean[] it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator int
      StackMap stack:
            aload 4 /* i */
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator.nextEntry:()I
            istore 6 /* e */
        start local 6 // int e
         7: .line 1862
            aload 1 /* s */
            aload 2 /* key */
            iload 6 /* e */
            iaload
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         8: .line 1863
            aload 1 /* s */
            aload 3 /* value */
            iload 6 /* e */
            baload
            invokevirtual java.io.ObjectOutputStream.writeBoolean:(Z)V
        end local 6 // int e
         9: .line 1860
      StackMap locals:
      StackMap stack:
            iload 5 /* j */
            iinc 5 /* j */ -1
            ifne 6
        end local 5 // int j
        10: .line 1865
            return
        end local 4 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator i
        end local 3 // boolean[] value
        end local 2 // int[] key
        end local 1 // java.io.ObjectOutputStream s
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   11     1      s  Ljava/io/ObjectOutputStream;
            1   11     2    key  [I
            2   11     3  value  [Z
            3   11     4      i  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap$MapIterator;
            5   10     5      j  I
            7    9     6      e  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=10, args_size=2
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
        start local 1 // java.io.ObjectInputStream s
         0: .line 1868
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 1869
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.arraySize:(IF)I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
         2: .line 1870
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.f:F
            invokestatic it.unimi.dsi.fastutil.HashCommon.maxFill:(IF)I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.maxFill:I
         3: .line 1871
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            isub
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
         4: .line 1872
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 10
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.key:[I
            astore 2 /* key */
        start local 2 // int[] key
         5: .line 1873
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 4
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.value:[Z
            astore 3 /* value */
        start local 3 // boolean[] value
         6: .line 1874
            aload 0 /* this */
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            iconst_1
            iadd
            newarray 11
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.link:[J
            astore 4 /* link */
        start local 4 // long[] link
         7: .line 1875
            iconst_m1
            istore 5 /* prev */
        start local 5 // int prev
         8: .line 1876
            aload 0 /* this */
            aload 0 /* this */
            iconst_m1
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
         9: .line 1879
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.size:I
            istore 8 /* i */
        start local 8 // int i
        10: goto 30
        11: .line 1880
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap java.io.ObjectInputStream int[] boolean[] long[] int top top int
      StackMap stack:
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 6 /* k */
        start local 6 // int k
        12: .line 1881
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readBoolean:()Z
            istore 7 /* v */
        start local 7 // boolean v
        13: .line 1882
            iload 6 /* k */
            ifne 17
        14: .line 1883
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.n:I
            istore 9 /* pos */
        start local 9 // int pos
        15: .line 1884
            aload 0 /* this */
            iconst_1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.containsNullKey:Z
        16: .line 1885
            goto 21
        end local 9 // int pos
        17: .line 1886
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap java.io.ObjectInputStream int[] boolean[] long[] int int int int
      StackMap stack:
            iload 6 /* k */
            invokestatic it.unimi.dsi.fastutil.HashCommon.mix:(I)I
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            istore 9 /* pos */
        start local 9 // int pos
        18: .line 1887
            goto 20
        19: .line 1888
      StackMap locals: int
      StackMap stack:
            iload 9 /* pos */
            iconst_1
            iadd
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.mask:I
            iand
            istore 9 /* pos */
        20: .line 1887
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 9 /* pos */
            iaload
            ifne 19
        21: .line 1890
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            iload 9 /* pos */
            iload 6 /* k */
            iastore
        22: .line 1891
            aload 3 /* value */
            iload 9 /* pos */
            iload 7 /* v */
            bastore
        23: .line 1892
            aload 0 /* this */
            getfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            iconst_m1
            if_icmpeq 28
        24: .line 1893
            aload 4 /* link */
            iload 5 /* prev */
            dup2
            laload
            aload 4 /* link */
            iload 5 /* prev */
            laload
            iload 9 /* pos */
            i2l
            ldc 4294967295
            land
            lxor
            ldc 4294967295
            land
            lxor
            lastore
        25: .line 1894
            aload 4 /* link */
            iload 9 /* pos */
            dup2
            laload
            aload 4 /* link */
            iload 9 /* pos */
            laload
            iload 5 /* prev */
            i2l
            ldc 4294967295
            land
            bipush 32
            lshl
            lxor
            ldc -4294967296
            land
            lxor
            lastore
        26: .line 1895
            iload 9 /* pos */
            istore 5 /* prev */
        27: .line 1896
            goto 30
        28: .line 1897
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 9 /* pos */
            dup_x1
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.first:I
            istore 5 /* prev */
        29: .line 1899
            aload 4 /* link */
            iload 9 /* pos */
            dup2
            laload
            ldc -4294967296
            lor
            lastore
        end local 9 // int pos
        end local 7 // boolean v
        end local 6 // int k
        30: .line 1879
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap java.io.ObjectInputStream int[] boolean[] long[] int top top int
      StackMap stack:
            iload 8 /* i */
            iinc 8 /* i */ -1
            ifne 11
        end local 8 // int i
        31: .line 1902
            aload 0 /* this */
            iload 5 /* prev */
            putfield it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.last:I
        32: .line 1903
            iload 5 /* prev */
            iconst_m1
            if_icmpeq 34
        33: .line 1905
            aload 4 /* link */
            iload 5 /* prev */
            dup2
            laload
            ldc 4294967295
            lor
            lastore
        34: .line 1908
      StackMap locals: it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap java.io.ObjectInputStream int[] boolean[] long[] int
      StackMap stack:
            return
        end local 5 // int prev
        end local 4 // long[] link
        end local 3 // boolean[] value
        end local 2 // int[] key
        end local 1 // java.io.ObjectInputStream s
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   35     0   this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            0   35     1      s  Ljava/io/ObjectInputStream;
            5   35     2    key  [I
            6   35     3  value  [Z
            7   35     4   link  [J
            8   35     5   prev  I
           12   30     6      k  I
           13   30     7      v  Z
           10   31     8      i  I
           15   17     9    pos  I
           18   30     9    pos  I
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      s     

  private void checkTable();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
         0: .line 1910
            return
        end local 0 // it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;

  public java.util.Set keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.keySet:()Lit/unimi/dsi/fastutil/ints/IntSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public it.unimi.dsi.fastutil.ints.IntSet keySet();
    descriptor: ()Lit/unimi/dsi/fastutil/ints/IntSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.keySet:()Lit/unimi/dsi/fastutil/ints/IntSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Comparator comparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.comparator:()Lit/unimi/dsi/fastutil/ints/IntComparator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Collection values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.values:()Lit/unimi/dsi/fastutil/booleans/BooleanCollection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public it.unimi.dsi.fastutil.objects.ObjectSet int2BooleanEntrySet();
    descriptor: ()Lit/unimi/dsi/fastutil/objects/ObjectSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.int2BooleanEntrySet:()Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public it.unimi.dsi.fastutil.objects.ObjectSortedSet int2BooleanEntrySet();
    descriptor: ()Lit/unimi/dsi/fastutil/objects/ObjectSortedSet;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.int2BooleanEntrySet:()Lit/unimi/dsi/fastutil/ints/Int2BooleanSortedMap$FastSortedEntrySet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap.clone:()Lit/unimi/dsi/fastutil/ints/Int2BooleanLinkedOpenHashMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "Int2BooleanLinkedOpenHashMap.java"
NestMembers:
  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$1  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$EntryIterator  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$FastEntryIterator  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$KeyIterator  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$KeySet  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapEntry  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapEntrySet  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$ValueIterator
InnerClasses:
  it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$1
  private EntryIterator = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$EntryIterator of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  private FastEntryIterator = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$FastEntryIterator of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  private final KeyIterator = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$KeyIterator of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  private final KeySet = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$KeySet of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  final MapEntry = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapEntry of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  private final MapEntrySet = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapEntrySet of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  private MapIterator = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$MapIterator of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  private final ValueIterator = it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap$ValueIterator of it.unimi.dsi.fastutil.ints.Int2BooleanLinkedOpenHashMap
  public abstract Entry = it.unimi.dsi.fastutil.ints.Int2BooleanMap$Entry of it.unimi.dsi.fastutil.ints.Int2BooleanMap
  public abstract FastSortedEntrySet = it.unimi.dsi.fastutil.ints.Int2BooleanSortedMap$FastSortedEntrySet of it.unimi.dsi.fastutil.ints.Int2BooleanSortedMap